:root {
  --bg: #02080d;
  --bg-soft: #07121a;
  --panel: rgba(8, 18, 26, 0.92);
  --panel-strong: rgba(6, 15, 22, 0.97);
  --panel-muted: rgba(10, 23, 34, 0.84);
  --line: rgba(27, 68, 92, 0.74);
  --line-soft: rgba(18, 46, 63, 0.48);
  --line-bright: rgba(16, 184, 255, 0.42);
  --text: #f5f8fb;
  --text-soft: #a4b2bc;
  --text-dim: #7f8c96;
  --accent: #10b8ff;
  --accent-strong: #0f8fe5;
  --accent-soft: rgba(16, 184, 255, 0.16);
  --gold: #f1a95c;
  --danger: #ff6b77;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1240px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 0%, rgba(8, 77, 112, 0.2), transparent 32%),
    radial-gradient(circle at 86% 100%, rgba(15, 144, 229, 0.12), transparent 28%),
    linear-gradient(180deg, #02070c 0%, #031019 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(16, 184, 255, 0.02) 0%, rgba(16, 184, 255, 0.2) 50%, rgba(16, 184, 255, 0.02) 100%);
  pointer-events: none;
  transform: translateX(-0.5px);
  z-index: 0;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0;
  z-index: 1;
}

.section + .section {
  padding-top: 30px;
}

.section-grid,
.page-grid,
.split-grid,
.contact-layout,
.legal-layout,
.footer-grid,
.page-cta,
.hero,
.responsible-grid {
  display: grid;
  gap: 34px;
}

.section-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: start;
}

.page-grid,
.contact-layout,
.page-cta {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.split-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

.section-heading h2,
.about__content h2,
.experience__copy h2,
.contact__intro h2,
.footer-brand h2,
.notice h2,
.page-hero__copy h1,
.legal-intro h1,
.cta-copy h2 {
  margin-bottom: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-hero__copy h1,
.legal-intro h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.section-heading p:last-child,
.about__content p,
.experience__copy p,
.contact__intro p,
.footer-brand p,
.notice p,
.page-hero__copy p,
.legal-intro p,
.cta-copy p,
.info-card p,
.legal-card p,
.legal-card li,
.metric-card p,
.contact-copy p {
  color: var(--text-soft);
  line-height: 1.78;
}

.eyebrow,
.breadcrumbs {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
}

.breadcrumbs a {
  color: var(--text-soft);
}

.breadcrumbs span:last-child {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(16, 184, 255, 0.16);
  background: linear-gradient(180deg, #1eb6ff 0%, #0d98e7 100%);
  color: #02111b;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  box-shadow: 0 18px 40px rgba(16, 184, 255, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(16, 184, 255, 0.22);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(16, 184, 255, 0.45);
  background: rgba(7, 23, 34, 0.9);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 6px -24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  background: rgba(3, 10, 15, 0.48);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand span span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a,
.footer-nav a,
.footer-links a {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  text-shadow: 0 0 24px rgba(16, 184, 255, 0.22);
}

.nav-toggle {
  display: none;
  grid-template-columns: 1fr;
  gap: 5px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  place-items: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: 34px;
}

.hero__copy,
.page-hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.accent-line {
  display: block;
  margin-top: 0.12em;
  color: var(--accent);
}

#rotating-copy {
  position: relative;
  display: inline-block;
  min-width: 5.8ch;
}

#rotating-copy::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 10%;
  width: 2px;
  height: 0.82em;
  background: currentColor;
  animation: blink 900ms step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero__lead,
.page-hero__copy > p:last-child {
  max-width: 560px;
  margin: 28px 0 34px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero__actions,
.action-row,
.page-badges,
.chip-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__meta-card,
.fact-card,
.stat-card,
.mini-card,
.feature-card,
.game-card,
.story-card,
.package-card,
.contact-panel,
.contact-note,
.responsible-grid,
.page-hero__media,
.metric-card,
.info-card,
.legal-card,
.cta-panel,
.contact-map,
.arrival-card,
.form-panel {
  border: 1px solid var(--line-soft);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero__meta-card,
.page-meta,
.contact-map,
.arrival-card {
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 184, 255, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(7, 19, 28, 0.96) 0%, rgba(6, 16, 24, 0.88) 100%);
}

.hero__meta-card a,
.contact-list a,
.footer-contact a,
.page-meta a {
  color: var(--text);
}

.meta-label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__facts,
.stats-grid,
.metric-grid,
.card-grid,
.game-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid--two,
.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fact-card,
.metric-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius-sm);
}

.fact-card strong,
.metric-card h3,
.cta-copy h3,
.info-card h3,
.legal-card h3,
.arrival-card h3 {
  display: block;
  margin-bottom: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.fact-card span,
.metric-card p,
.info-card p,
.arrival-card p,
.contact-copy p:last-child {
  display: block;
  color: var(--text-soft);
  line-height: 1.6;
}

.hero__visual,
.page-hero__media {
  position: relative;
}

.hero__visual {
  min-height: 780px;
}

.hero__visual::before,
.page-hero__media::before,
.page-hero__figure::before {
  content: "";
  position: absolute;
  inset: -40px -40px 130px 28%;
  background: radial-gradient(circle, rgba(241, 169, 92, 0.14), transparent 48%);
  filter: blur(30px);
  pointer-events: none;
}

.hero__portrait,
.page-hero__figure {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  background: #031018;
}

.page-hero__media {
  padding: 18px;
  min-height: 100%;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 184, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(6, 15, 22, 0.98) 0%, rgba(5, 13, 20, 0.92) 100%);
}

.page-hero__figure {
  position: relative;
  min-height: 500px;
}

.hero__portrait::before,
.page-hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.92) 0%, rgba(2, 8, 13, 0.56) 24%, rgba(2, 8, 13, 0.15) 45%, transparent 60%),
    linear-gradient(180deg, rgba(2, 8, 13, 0.22) 0%, rgba(2, 8, 13, 0) 24%, rgba(2, 8, 13, 0.55) 100%);
  z-index: 1;
}

.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.07) 50%, transparent 50.2%),
    radial-gradient(circle at 18% 50%, rgba(4, 15, 22, 0.65), transparent 40%);
  z-index: 1;
}

.hero__portrait img,
.page-hero__figure img,
.experience__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero__figure img {
  min-height: 500px;
  object-fit: cover;
}

.hero__badge,
.page-hero__aside {
  position: absolute;
  right: 32px;
  bottom: 28px;
  max-width: 310px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(4, 13, 20, 0.82);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.page-hero__aside {
  position: static;
  max-width: none;
  margin-top: 18px;
}

.hero__badge span,
.page-hero__aside span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__badge strong,
.page-hero__aside strong {
  display: block;
  line-height: 1.55;
}

.chip-row span,
.page-badges span,
.tag-row span,
.footer-links a {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: var(--line-bright);
}

.about__rail {
  display: grid;
  gap: 18px;
}

.stat-card,
.mini-card,
.feature-card,
.game-card,
.story-card,
.package-card,
.info-card,
.legal-card,
.cta-panel,
.contact-map,
.arrival-card,
.form-panel {
  border-radius: var(--radius-lg);
}

.stat-card {
  position: relative;
  padding: 34px;
  min-height: 380px;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 52%;
  height: 52%;
  background: radial-gradient(circle at top left, rgba(16, 184, 255, 0.34), transparent 72%);
  pointer-events: none;
}

.stat-card__overline {
  margin-bottom: 24px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.stat-card__number-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
}

.stat-card__number,
.stat-card__suffix {
  font-size: clamp(5rem, 10vw, 6.6rem);
  line-height: 0.88;
}

.stat-card h2 {
  margin-bottom: 16px;
  max-width: 7ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
}

.mini-card__icon,
.feature-card__icon,
.info-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(16, 184, 255, 0.5);
  background: radial-gradient(circle at 30% 30%, rgba(16, 184, 255, 0.32), rgba(16, 184, 255, 0.05));
  color: var(--accent);
  font-size: 1.35rem;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.mini-card span {
  color: var(--text-soft);
}

.about__content {
  padding-top: 12px;
}

.about__content > p:last-of-type {
  margin-bottom: 26px;
}

.events-copy {
  padding-top: 12px;
}

.events-copy > p:last-of-type {
  margin-bottom: 24px;
}

.feature-grid,
.package-grid,
.games-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 26px;
}

.feature-card,
.info-card,
.legal-card {
  padding: 24px;
}

.feature-card h3,
.game-card__body h3,
.story-card h3,
.package-card h3,
.contact-map h3,
.contact-copy h3 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-pill {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(10, 22, 32, 0.9);
  color: var(--text-soft);
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.filter-pill:hover,
.filter-pill:focus-visible,
.filter-pill.is-active {
  color: var(--text);
  border-color: rgba(16, 184, 255, 0.38);
  background: linear-gradient(180deg, rgba(8, 29, 43, 1) 0%, rgba(7, 22, 31, 1) 100%);
}

.games-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-card {
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, opacity 200ms ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 184, 255, 0.42);
}

.game-card.is-hidden {
  display: none;
}

.game-card__media {
  padding: 12px 12px 0;
}

.game-card__media img {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #041018;
}

.game-card__body {
  padding: 20px 20px 22px;
}

.game-card__body h3 {
  font-size: 1.8rem;
}

.game-card__body p {
  margin-bottom: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.story-list,
.legal-stack,
.contact-stack {
  display: grid;
  gap: 16px;
}

.story-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 24px 22px;
}

.story-card__index {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.experience__visual {
  position: sticky;
  top: 110px;
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 184, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(6, 15, 22, 0.98) 0%, rgba(5, 13, 20, 0.92) 100%);
  border: 1px solid var(--line);
}

.experience__visual img {
  border-radius: 24px;
}

.experience__caption {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 0 8px 4px;
}

.experience__caption span {
  color: var(--text-soft);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  padding: 28px;
  min-height: 100%;
}

.package-card--featured {
  border-color: rgba(16, 184, 255, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 184, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(8, 21, 31, 0.98) 0%, rgba(6, 15, 22, 0.92) 100%);
}

.package-card__label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card__lead {
  margin-bottom: 18px;
  color: var(--text-soft);
  line-height: 1.72;
}

.package-card ul,
.bullet-list {
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
}

.package-card ul {
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.package-card li + li,
.bullet-list li + li {
  margin-top: 12px;
}

.package-card li,
.bullet-list li,
.notice-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
}

.package-card li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(16, 184, 255, 0.45);
}

.contact-panel,
.form-panel {
  display: grid;
  gap: 30px;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 184, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(8, 18, 26, 0.98) 0%, rgba(5, 14, 21, 0.92) 100%);
}

.contact-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-list,
.page-meta-list,
.footer-contact,
.legal-meta {
  display: grid;
  gap: 16px;
}

.contact-note {
  padding: 22px 24px;
  border-radius: 22px;
}

.contact__intro .contact-map {
  margin-top: 26px;
}

.contact-form,
.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field > span:first-child {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(4, 12, 18, 0.88);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(16, 184, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(16, 184, 255, 0.12);
}

.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: rgba(255, 107, 119, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 107, 119, 0.12);
}

.field-error {
  min-height: 1em;
  color: var(--danger);
  font-size: 0.82rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 12, 18, 0.74);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.checkbox-row span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-footnote {
  margin: -6px 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.responsible-grid,
.cta-panel,
.legal-card {
  padding: 34px;
}

.responsible-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  line-height: 1.82;
}

.notice-list li + li {
  margin-top: 12px;
}

.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(241, 169, 92, 0.4);
}

.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 74px 0 40px;
}

.page-hero__copy {
  padding-top: 24px;
}

.page-hero__copy p:last-child {
  margin-bottom: 24px;
}

.page-meta {
  margin-top: 26px;
}

.metric-card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.info-card h3,
.legal-card h3 {
  font-size: 1.4rem;
}

.info-card__icon {
  margin-bottom: 18px;
}

.legal-intro,
.legal-copy,
.cta-copy,
.contact-copy {
  padding-top: 12px;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.72;
}

.legal-card li + li {
  margin-top: 8px;
}

.cta-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 184, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(8, 18, 26, 0.98) 0%, rgba(5, 14, 21, 0.92) 100%);
}

.cta-copy h2 {
  margin-bottom: 18px;
}

.cta-side {
  display: grid;
  gap: 16px;
}

.arrival-card {
  min-height: 100%;
}

.contact-map__frame {
  min-height: 260px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(16, 184, 255, 0.12), transparent 30%),
    radial-gradient(circle at 70% 24%, rgba(16, 184, 255, 0.18), transparent 18%),
    linear-gradient(180deg, #06121a 0%, #030a10 100%);
  position: relative;
  overflow: hidden;
}

.contact-map__frame--embed {
  padding: 0;
  background: linear-gradient(180deg, #06121a 0%, #030a10 100%);
}

.contact-map__frame::before,
.contact-map__frame::after {
  content: "";
  position: absolute;
  inset: 14% 10%;
  border: 1px solid rgba(16, 184, 255, 0.08);
  border-radius: 24px;
}

.contact-map__frame::after {
  inset: 24% 16%;
  border-style: dashed;
}

.contact-map__frame--embed::before,
.contact-map__frame--embed::after,
.contact-map__frame--embed .contact-pin {
  display: none;
}

.contact-map__frame--embed iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.contact-pin {
  position: absolute;
  left: 54%;
  top: 44%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(16, 184, 255, 0.12);
}

.contact-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 10px;
  height: 16px;
  background: var(--accent);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.contact-map__action {
  justify-self: start;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: 36px;
  padding: 90px 0 36px;
  background:
    radial-gradient(circle at 90% 16%, rgba(16, 184, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(3, 12, 18, 0.96) 0%, rgba(4, 14, 20, 0.98) 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 0.8px, transparent 1.1px) 10% 14% / 160px 160px,
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 0.9px, transparent 1.2px) 72% 4% / 190px 190px,
    linear-gradient(160deg, transparent 76%, rgba(50, 143, 255, 0.26) 85%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}

.footer-grid,
.footer-bottom {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  z-index: 1;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  padding-bottom: 54px;
}

.footer-brand h2 {
  max-width: 10ch;
  margin: 28px 0 20px;
}

.brand--footer {
  align-items: center;
}

.footer-mail {
  display: inline-grid;
  gap: 10px;
  min-width: min(100%, 420px);
  margin-top: 26px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-mail span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-nav,
.footer-contact {
  margin-top: 22px;
}

.footer-nav {
  display: grid;
  gap: 14px;
}

.site-footer h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.footer-contact strong,
.footer-contact span {
  color: var(--text-soft);
  line-height: 1.72;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(16, 184, 255, 0.18);
  color: var(--text-dim);
  font-size: 0.92rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 13, 0.72);
  backdrop-filter: blur(10px);
}

.modal__card {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  margin: min(12vh, 90px) auto 0;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(16, 184, 255, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 184, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(8, 18, 26, 0.98) 0%, rgba(5, 14, 21, 0.96) 100%);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

.modal__card h2 {
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.modal__content {
  margin-bottom: 22px;
}

.modal__content p {
  color: var(--text-soft);
  line-height: 1.72;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 1180px) {
  .hero,
  .page-grid,
  .page-cta,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__facts,
  .stats-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  body::before {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 12, 18, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .section-grid,
  .split-grid,
  .legal-layout,
  .contact-panel,
  .responsible-grid,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .experience__visual {
    position: relative;
    top: 0;
  }

  .feature-grid,
  .games-grid,
  .package-grid,
  .metric-grid--two,
  .card-grid--two {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 620px;
  }

  .hero__copy,
  .about__content {
    max-width: 720px;
  }

  .page-hero {
    padding-top: 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1240px);
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    gap: 14px;
    padding: 14px 0;
  }

  .site-header::before {
    inset: 4px -10px;
  }

  .brand {
    font-size: 1.02rem;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 20px;
  }

  .hero__portrait,
  .page-hero__figure {
    border-radius: 26px;
  }

  .hero__badge {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .hero__visual {
    min-height: 500px;
  }

  .hero__meta-card,
  .page-meta,
  .contact-panel,
  .responsible-grid,
  .stat-card,
  .mini-card,
  .feature-card,
  .story-card,
  .package-card,
  .page-hero__media,
  .metric-card,
  .info-card,
  .legal-card,
  .cta-panel,
  .contact-map,
  .arrival-card,
  .form-panel {
    border-radius: 24px;
  }

  .contact-form,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .about__content h2,
  .experience__copy h2,
  .contact__intro h2,
  .footer-brand h2,
  .notice h2,
  .page-hero__copy h1,
  .legal-intro h1,
  .cta-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .page-hero__figure img {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__meta-card,
  .page-meta,
  .contact-panel,
  .stat-card,
  .mini-card,
  .feature-card,
  .story-card,
  .package-card,
  .responsible-grid,
  .metric-card,
  .info-card,
  .legal-card,
  .cta-panel,
  .contact-map,
  .arrival-card,
  .form-panel {
    padding-inline: 20px;
  }

  .hero__meta-card,
  .page-meta,
  .page-hero__media {
    padding-block: 18px;
  }

  .fact-card {
    padding-inline: 16px;
  }

  .footer-bottom {
    padding-bottom: 8px;
  }

  .modal__card {
    padding: 22px;
  }
}
