:root {
  --bg: #0f0f0f;
  --panel: #151515;
  --panel-strong: #1a1a1a;
  --panel-soft: #101313;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f3ef;
  --muted: #a8a49d;
  --muted-strong: #c4c0b9;
  --accent: #dfff5a;
  --accent-ink: #121212;
  --felt: #123225;
  --felt-glow: rgba(57, 143, 96, 0.22);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --container: min(1280px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.26;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
}

.page-shell {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 44px;
}

.section {
  position: relative;
  padding: 52px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.section-head {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.section-head__row,
.section-head__stack {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2,
.intro h2,
.footer-cta h2 {
  margin: 0;
  max-width: 15ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-note {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 16px 18px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(16, 16, 16, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.site-nav a,
.header-cta,
.hero-tags span,
.pill,
.top-badge {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.site-nav a {
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted-strong);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  background: var(--text);
  color: #111111;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

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

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

.hero {
  padding-top: 80px;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.top-badge,
.hero-tags span,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.03);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 48px;
  align-items: end;
}

.hero-copy h1 {
  margin: 0;
  max-width: 8ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero-copy h1 span {
  color: rgba(255, 255, 255, 0.56);
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-side {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.hero-side p {
  max-width: 430px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.orbital-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 240px;
  height: 240px;
}

.orbital-mark__ring {
  position: absolute;
  inset: 0;
  animation: spin 18s linear infinite;
}

.orbital-mark__ring text {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.84);
}

.orbital-mark img {
  width: 132px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.34));
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 10px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: var(--text);
  color: #111111;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 12px;
  background: #111111;
  color: var(--text);
}

.button--small {
  min-height: 50px;
  padding-left: 18px;
}

.hero-meta,
.stats-grid,
.badge-row,
.journal-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
}

.meta-card,
.stat-card,
.night-row,
.journal-card,
.venue-note,
.testimonial-mini,
.footer-cta,
.service-card,
.floating-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.meta-card {
  padding: 22px 24px;
  border-radius: 24px;
}

.meta-card span,
.stat-card span,
.contact-item span,
.journal-card__meta {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-card strong,
.contact-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.intro {
  padding-top: 94px;
  text-align: center;
}

.intro h2 {
  max-width: 16ch;
  margin: 18px auto 0;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.service-card--light {
  background: linear-gradient(180deg, #efede7 0%, #e7e4dc 100%);
  color: #111111;
}

.service-card__copy {
  position: relative;
  z-index: 1;
  max-width: 25ch;
}

.service-card h3,
.floating-card h3,
.journal-card h3,
.venue-note h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-card p,
.floating-card p,
.journal-card p,
.venue-note p {
  margin: 18px 0 0;
  color: inherit;
  opacity: 0.78;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: inherit;
  font-weight: 700;
}

.service-card li::before {
  content: "\2022";
  margin-right: 10px;
}

.service-card img {
  position: absolute;
  right: -16px;
  bottom: -12px;
  width: 178px;
  opacity: 0.94;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.35));
}

.feature-wall {
  display: block;
  min-height: 860px;
  padding-top: 110px;
  overflow: hidden;
}

.feature-wall__type {
  position: absolute;
  inset: 70px 0 auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  pointer-events: none;
}

.feature-wall__type span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(7rem, 17vw, 15rem);
  line-height: 0.84;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.92);
}

.floating-card {
  position: absolute;
  max-width: 285px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(22, 22, 22, 0.92);
}

.floating-card img {
  width: 34px;
  margin-bottom: 18px;
}

.floating-card--top {
  top: 140px;
  left: 24px;
}

.floating-card--right {
  top: 110px;
  right: 42px;
}

.floating-card--center {
  top: 320px;
  left: 50%;
  transform: translateX(-46%);
}

.floating-card--accent {
  bottom: 70px;
  left: 110px;
  background: var(--accent);
  color: var(--accent-ink);
}

.venue-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.venue-note {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.venue-note > span {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-visual {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(41, 109, 77, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.venue-visual__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #111111;
  font-size: 0.76rem;
  font-weight: 800;
}

.venue-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.stat-card {
  padding: 18px 22px 20px;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
}

.testimonial-visual,
.journal-card__visual {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.testimonial-visual {
  display: grid;
  place-items: center;
  min-height: 400px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #c7b188 0%, #6b4e28 100%);
}

.testimonial-visual__glow {
  position: absolute;
  inset: 14% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 238, 0.55), transparent 64%);
  filter: blur(10px);
}

.testimonial-visual img {
  position: relative;
  z-index: 1;
  width: min(280px, 70%);
}

.testimonial-copy {
  min-height: 400px;
  padding: 40px 18px;
}

.quote-mark {
  margin-bottom: 20px;
  font-family: "Sora", sans-serif;
  font-size: 4.8rem;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-copy blockquote {
  margin: 0 0 26px;
  max-width: 600px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
  color: var(--text);
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author span {
  color: var(--muted);
}

.testimonial-mini {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
}

.testimonial-mini__avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.badge-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}

.pill {
  min-height: 78px;
  justify-content: center;
  padding-inline: 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  color: var(--text);
}

.night-list {
  overflow: hidden;
}

.night-list__backdrop {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Sora", sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.night-rows {
  display: grid;
  gap: 14px;
}

.night-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 160px 34px;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 999px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

a.night-row:hover,
a.night-row:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.night-row span,
.night-row em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.night-row strong {
  font-size: 1.16rem;
}

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

.game-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.game-page-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.game-page-card:hover,
.game-page-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.game-page-card--dark {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(13, 13, 13, 0.96));
}

.game-page-card--light {
  background: linear-gradient(180deg, #efede7 0%, #e5e1d7 100%);
  color: #111111;
}

.game-page-card--felt {
  background:
    radial-gradient(circle at center, rgba(49, 121, 82, 0.22), transparent 36%),
    linear-gradient(180deg, #173024 0%, #101612 100%);
}

.game-page-card--gold {
  background: linear-gradient(180deg, #c9b18a 0%, #7b5931 100%);
}

.game-page-card__eyebrow,
.subhero__eyebrow,
.page-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.72;
}

.game-page-card h3,
.subhero__copy h1,
.detail-card h3,
.page-panel h3,
.contact-form-shell h2,
.legal-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.06em;
}

.game-page-card h3 {
  margin-top: 14px;
  max-width: 11ch;
  font-size: clamp(1.7rem, 2.15vw, 2.5rem);
  line-height: 0.96;
}

.game-page-card p {
  max-width: 28ch;
  margin: 18px 0 0;
  color: inherit;
  opacity: 0.78;
}

.game-page-card img {
  position: absolute;
  right: -14px;
  bottom: -8px;
  width: 170px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.28));
}

.game-page-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  font-size: 0.86rem;
  font-weight: 800;
}

.journal-card {
  display: block;
}

.journal-card {
  overflow: hidden;
  border-radius: 28px;
}

.journal-card__visual {
  display: grid;
  place-items: center;
  min-height: 276px;
}

.journal-card__visual img {
  width: 190px;
}

.journal-card__visual--felt {
  background:
    radial-gradient(circle at center, rgba(63, 157, 102, 0.24), transparent 38%),
    linear-gradient(180deg, #223428 0%, #0f1310 100%);
}

.journal-card__visual--light {
  background: linear-gradient(180deg, #efede7 0%, #d7d2c7 100%);
}

.journal-card__visual--dark {
  background:
    radial-gradient(circle at 60% 38%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
}

.journal-card h3 {
  padding: 0 24px 28px;
  font-size: clamp(1.4rem, 2vw, 2.15rem);
}

.journal-card__meta {
  padding: 18px 24px 10px;
  margin-bottom: 0;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 26px;
  padding: 36px;
  border-radius: 34px;
}

.footer-cta__main {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 24px;
}

.footer-cta__side {
  display: grid;
  gap: 20px;
  padding: 12px 0 0;
}

.contact-item strong a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 4px;
}

.footer-bottom {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}

.map-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.map-card__copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 6px 4px 6px 2px;
}

.map-card__copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.map-card__copy p {
  margin: 0;
  color: var(--muted-strong);
}

.map-card__frame {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #0c0c0c;
}

.map-card__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) saturate(0.78) contrast(1.04);
}

.footer-copy {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.subpage-main {
  padding-top: 18px;
}

.subhero {
  padding-top: 54px;
}

.subhero__grid,
.page-split,
.contact-layout,
.legal-layout {
  display: grid;
  gap: 18px;
}

.subhero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: stretch;
}

.subhero__copy {
  display: grid;
  align-content: end;
  gap: 20px;
}

.subhero__copy h1 {
  max-width: 9.5ch;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.92;
}

.subhero__copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.subhero__visual,
.detail-card,
.page-panel,
.contact-panel,
.contact-form-shell,
.legal-nav,
.legal-card,
.page-cta {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.subhero__visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
  background:
    radial-gradient(circle at center, rgba(64, 154, 101, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.subhero__visual img {
  width: min(250px, 62%);
  margin: 36px auto 26px;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.3));
}

.subhero__visual p {
  max-width: 32ch;
  margin: 0;
  color: var(--muted-strong);
}

.subhero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 28px;
}

.detail-card--light {
  background: linear-gradient(180deg, #efede7 0%, #e5e1d7 100%);
  color: #111111;
}

.detail-card h3,
.page-panel h3 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 0.98;
}

.detail-card p,
.page-panel p,
.contact-panel p,
.legal-card p,
.legal-card li {
  margin: 16px 0 0;
  color: inherit;
  opacity: 0.8;
}

.info-list,
.legal-card ul {
  margin: 18px 0 0;
  padding: 0;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.info-list li::before {
  content: "\2022";
  margin-right: 10px;
}

.page-split {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.page-panel {
  padding: 30px;
}

.page-panel--visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background:
    radial-gradient(circle at center, rgba(34, 91, 64, 0.2), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.page-panel--visual img {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 190px;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
}

.page-panel--visual .page-panel__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.page-links {
  display: grid;
  gap: 14px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-link:hover,
.page-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-link strong,
.contact-line strong {
  display: block;
  font-size: 1rem;
}

.page-link em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.page-link svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.page-cta p {
  margin: 14px 0 0;
  color: var(--muted-strong);
}

.contact-layout {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: start;
}

.contact-panel,
.contact-form-shell,
.legal-nav,
.legal-card {
  padding: 30px;
}

.contact-panel__grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-line {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-line span,
.field label,
.legal-nav h3,
.legal-card h3 {
  display: block;
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line p {
  margin: 10px 0 0;
}

.contact-form-shell h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.96;
}

.contact-form-shell > p {
  margin: 14px 0 0;
  color: var(--muted-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

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

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.field select {
  cursor: pointer;
}

.field textarea {
  min-height: 156px;
  padding: 16px 18px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: rgba(223, 255, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(223, 255, 90, 0.08);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.field.is-invalid .check-row {
  border-color: rgba(255, 129, 129, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 129, 129, 0.08);
}

.field__error {
  min-height: 18px;
  color: #ffbcbc;
  font-size: 0.82rem;
}

.field--check {
  gap: 8px;
}

.check-row {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.check-row input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin: 2px 0 0;
  accent-color: #dfff5a;
}

.check-row label {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.96rem;
  color: var(--text);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.form-submit {
  cursor: pointer;
}

.form-helper {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 0.88rem;
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.popup-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  position: relative;
  width: min(100%, 520px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.popup-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(223, 255, 90, 0.14);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.popup-card h2 {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.popup-card p {
  margin: 14px 0 0;
  color: var(--muted-strong);
}

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

.legal-nav a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-weight: 700;
}

.legal-nav a:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.96;
}

.legal-card section + section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal-card ul {
  padding-left: 18px;
}

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

.legal-note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.legal-note p {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.text-link svg {
  width: 28px;
  height: 28px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    left: 24px;
    right: 24px;
    display: grid;
    justify-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(15, 15, 15, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    text-align: center;
  }

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

  .header-cta {
    display: none;
  }

  .hero-grid,
  .service-grid,
  .game-directory__grid,
  .venue-grid,
  .testimonial-grid,
  .journal-grid,
  .footer-cta,
  .map-card,
  .stats-grid,
  .hero-meta,
  .badge-row,
  .subhero__grid,
  .subhero__stats,
  .page-grid,
  .page-split,
  .contact-layout,
  .legal-layout,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .feature-wall {
    min-height: 1180px;
  }

  .feature-wall__type {
    inset: 140px 0 auto;
  }

  .floating-card--top {
    top: 90px;
    left: 0;
  }

  .floating-card--right {
    top: 340px;
    right: 0;
  }

  .floating-card--center {
    top: 560px;
    left: 20px;
    transform: none;
  }

  .floating-card--accent {
    bottom: 54px;
    left: 20px;
  }

  .night-row {
    grid-template-columns: 70px minmax(0, 1fr) 120px 24px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(1280px, calc(100vw - 20px));
    --radius-xl: 28px;
    --radius-lg: 24px;
  }

  .page-shell {
    padding-bottom: 28px;
  }

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

  .brand span {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 54px;
  }

  .subhero {
    padding-top: 40px;
  }

  .hero-topline,
  .section-head__row,
  .section-head__stack {
    align-items: start;
    flex-direction: column;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .subhero__copy h1,
  .legal-card h2,
  .contact-form-shell h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 4rem);
  }

  .intro {
    text-align: left;
  }

  .section-head h2,
  .intro h2,
  .footer-cta h2 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8vw, 2.5rem);
  }

  .intro h2 {
    max-width: 13ch;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-copy h1 span {
    text-decoration-thickness: 3px;
  }

  .orbital-mark {
    width: 210px;
    height: 210px;
  }

  .hero-side p,
  .section-note {
    max-width: 100%;
  }

  .feature-wall {
    display: grid;
    gap: 16px;
    min-height: 980px;
    padding-top: 150px;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }

  .feature-wall__type {
    inset: 220px 0 auto;
  }

  .floating-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 252px);
    max-width: 100%;
    transform: none;
    padding: 24px;
  }

  .floating-card--right {
    margin-left: 0;
  }

  .floating-card--center {
    margin-left: 0;
  }

  .feature-wall__type span {
    font-size: clamp(5rem, 24vw, 8rem);
  }

  .game-page-card,
  .detail-card,
  .page-panel,
  .contact-panel,
  .contact-form-shell,
  .map-card,
  .legal-nav,
  .legal-card,
  .page-cta {
    padding: 24px;
  }

  .service-card h3,
  .floating-card h3,
  .journal-card h3,
  .venue-note h3,
  .detail-card h3,
  .page-panel h3 {
    font-size: clamp(1.45rem, 7.2vw, 1.9rem);
  }

  .floating-card {
    max-width: calc(100vw - 60px);
  }

  .game-page-card {
    min-height: 300px;
  }

  .game-page-card img,
  .page-panel--visual img {
    width: 150px;
  }

  .page-panel--visual {
    min-height: 320px;
  }

  .venue-visual {
    min-height: 420px;
  }

  .testimonial-copy {
    min-height: auto;
    padding: 10px 0 0;
  }

  .testimonial-copy blockquote {
    font-size: clamp(1.18rem, 6vw, 1.5rem);
  }

  .testimonial-visual {
    min-height: 320px;
  }

  .night-row {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 26px;
  }

  .night-row svg {
    display: none;
  }

  .journal-card__visual {
    min-height: 240px;
  }

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

  .footer-links {
    align-items: flex-start;
  }

  .map-card__frame,
  .map-card__frame iframe {
    min-height: 320px;
  }

  .footer-cta {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orbital-mark__ring,
  .reveal,
  .button,
  .header-cta,
  .site-nav,
  .nav-toggle span {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
