:root {
  color-scheme: dark;
  --bg: #060707;
  --panel: #0d0f0d;
  --gold: #d7a441;
  --gold-soft: rgba(215, 164, 65, 0.22);
  --gold-bright: #f6d98f;
  --emerald: #215f35;
  --emerald-deep: #103b22;
  --text: rgba(246, 240, 223, 0.92);
  --text-soft: rgba(246, 240, 223, 0.7);
  --line: rgba(215, 164, 65, 0.28);
  --line-soft: rgba(215, 164, 65, 0.12);
  --shadow: rgba(0, 0, 0, 0.42);
  --mx: 0.5;
  --my: 0.5;
  --shine-x: 50%;
  --headline-proximity: 0.16;
  --spotlight-opacity: 0;
}

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

html {
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 164, 65, 0.1), transparent 20%),
    linear-gradient(180deg, #060707 0%, #070909 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Rajdhani", sans-serif;
  color: var(--text);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-shell {
  position: relative;
  background:
    linear-gradient(180deg, rgba(3, 4, 4, 0.88), rgba(6, 7, 7, 0.98)),
    radial-gradient(circle at calc(var(--mx) * 100%) 0%, rgba(255, 255, 255, 0.04), transparent 18%);
}

.site-grain,
.site-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-grain {
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.2px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0 1px, transparent 1.4px),
    radial-gradient(circle at 60% 75%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.2px);
  background-size: 160px 160px, 190px 190px, 220px 220px;
}

.site-vignette {
  background: radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.58) 100%);
}

.site-header {
  position: fixed;
  top: 0.9rem;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(95vw, 1280px);
  padding: 0.95rem 1.15rem;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.92), rgba(7, 8, 8, 0.75));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0.8rem 1.7rem rgba(0, 0, 0, 0.15);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-lockup__crest {
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(246, 217, 143, 0.45);
  box-shadow: 0 0 1.8rem rgba(215, 164, 65, 0.16);
}

.brand-lockup__copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-lockup__copy strong,
.site-nav a,
.eyebrow,
.fact-band span,
.contact-grid__item small,
.scroll-mark span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-lockup__copy strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: #f5f5f5;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.brand-lockup__copy small {
  color: rgba(246, 240, 223, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  font-size: 0.76rem;
  color: #f5f5f5;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.chapter {
  position: relative;
  z-index: 1;
}

.chapter__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
}

.chapter--hero .chapter__sticky {
  --shine-x: 50%;
  --headline-proximity: 0.16;
  --spotlight-opacity: 0;
}

.chapter--hero,
.chapter--structure,
.chapter--details,
.chapter--contact {
  min-height: 180svh;
}

.chapter--gallery {
  min-height: auto;
}

.hero-photo,
.structure-layout__main,
.structure-layout__detail,
.detail-card,
.media-tile,
.contact-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--panel);
  box-shadow:
    0 2rem 3.2rem rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

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

.hero-photo {
  inset: 1.4rem 1.4rem 1.4rem 1.4rem;
  border-radius: 2.2rem;
  transform-style: preserve-3d;
  perspective: 1600px;
  transform: translateZ(0);
  will-change: transform;
}

.hero-photo__motion,
.hero-layer {
  position: absolute;
  inset: -2.5%;
  transform: translateZ(0);
}

.hero-photo__motion {
  transform-style: preserve-3d;
  will-change: transform;
}

.venue-image--hero {
  object-position: center 54%;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.04) brightness(0.9);
  will-change: transform;
}

.venue-image--hero-base {
  filter: saturate(1.02) contrast(1.03) brightness(0.86);
}

.hero-layer--sky {
  clip-path: inset(0 0 50% 0);
}

.hero-layer--lights {
  clip-path: inset(6% 0 31% 0);
}

.hero-layer--turf {
  clip-path: inset(58% 0 0 0);
}

.venue-image--hero-sky {
  filter: saturate(0.92) brightness(0.72) contrast(1.04);
}

.venue-image--hero-lights {
  filter: saturate(1.1) brightness(1.04) contrast(1.08);
}

.venue-image--hero-turf {
  filter: saturate(1.12) brightness(0.96) contrast(1.08);
}

.hero-photo__glow,
.hero-photo__spotlight,
.hero-photo__shade,
.contact-photo__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo__glow {
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.hero-photo__spotlight {
  clip-path: inset(56% 0 0 0);
  background:
    radial-gradient(
      circle 28rem at calc(var(--mx) * 100%) calc(var(--my) * 100%),
      rgba(242, 255, 234, 0.22),
      rgba(184, 229, 153, 0.14) 22%,
      rgba(102, 162, 87, 0.08) 38%,
      transparent 62%
    );
  opacity: var(--spotlight-opacity);
  filter: none;
  will-change: opacity;
}

.hero-photo__glow--left {
  background: radial-gradient(circle at 16% 28%, rgba(246, 248, 232, 0.38), transparent 18%);
}

.hero-photo__glow--center {
  background: radial-gradient(circle at 52% 22%, rgba(246, 248, 232, 0.28), transparent 20%);
}

.hero-photo__glow--right {
  background: radial-gradient(circle at 82% 20%, rgba(246, 248, 232, 0.42), transparent 18%);
}

.hero-photo__shade {
  background:
    linear-gradient(180deg, rgba(4, 5, 5, 0.84) 0%, rgba(4, 5, 5, 0.56) 14%, rgba(4, 5, 5, 0.18) 25%, rgba(4, 5, 5, 0) 34%),
    radial-gradient(circle at 50% 4%, rgba(16, 56, 33, 0.16), transparent 24%);
}

.hero-copy,
.fact-band,
.scroll-mark,
.structure-layout,
.section-copy,
.detail-reel,
.contact-copy,
.contact-grid {
  position: absolute;
  left: 50%;
  width: min(94vw, 1240px);
  transform: translateX(-50%);
  z-index: 3;
}

.hero-copy {
  top: auto;
  bottom: 12svh;
  width: min(90vw, 44rem);
  max-width: 44rem;
  text-align: left;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
}

.hero-copy__halo {
  position: absolute;
  inset: -2rem -3rem -1rem -3rem;
  z-index: -1;
  background:
    radial-gradient(
      circle at calc(var(--shine-x)) 58%,
      rgba(246, 217, 143, calc(0.18 + var(--headline-proximity) * 0.26)),
      rgba(246, 217, 143, calc(var(--headline-proximity) * 0.12)) 18%,
      transparent 48%
    );
  filter: blur(18px);
  opacity: calc(0.45 + var(--headline-proximity) * 0.5);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(246, 217, 143, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-copy h1,
.structure-layout__copy h2,
.section-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
  color: #fcf6ea;
  text-shadow:
    0 0 1.5rem rgba(0, 0, 0, 0.22),
    0 0.6rem 2rem rgba(0, 0, 0, 0.4);
}

.hero-copy h1 {
  font-size: clamp(4.4rem, 9vw, 8rem);
}

.hero-headline {
  color: #fcf6ea;
  text-shadow:
    0 0 calc(8px + var(--headline-proximity) * 18px) rgba(246, 217, 143, calc(0.14 + var(--headline-proximity) * 0.18)),
    0 0 calc(18px + var(--headline-proximity) * 22px) rgba(255, 255, 255, calc(0.08 + var(--headline-proximity) * 0.08)),
    0 0.6rem 2rem rgba(0, 0, 0, 0.38);
  will-change: transform, background-position;
}

.hero-copy h1 span,
.structure-layout__copy h2 span,
.section-copy h2 span,
.contact-copy h2 span {
  display: block;
}

.hero-text,
.structure-layout__copy p:last-child,
.section-copy p:last-child {
  margin: 1.2rem 0 0;
  max-width: 34rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
}

.hero-text,
.hero-copy .eyebrow {
  position: relative;
  z-index: 1;
  will-change: transform;
}

.fact-band {
  bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.fact-band span {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(246, 240, 223, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.scroll-mark {
  bottom: 1.2rem;
  text-align: center;
}

.scroll-mark::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.6rem;
  margin: 0 auto 0.8rem;
  background: linear-gradient(180deg, rgba(246, 217, 143, 0), rgba(246, 217, 143, 0.88));
}

.scroll-mark span {
  color: rgba(246, 217, 143, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.structure-layout {
  top: 9rem;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 1.2rem;
}

.structure-layout__main {
  position: relative;
  min-height: 70svh;
}

.venue-image--structure {
  object-position: center 56%;
  transform: scale(1.02);
}

.structure-layout__copy {
  position: relative;
  align-self: end;
  padding: 2rem 1rem 0.5rem 0.5rem;
}

.structure-layout__copy h2 {
  font-size: clamp(3rem, 5.8vw, 5.4rem);
}

.structure-layout__detail {
  position: relative;
  min-height: 18rem;
}

.structure-layout__detail--lights {
  grid-column: 2;
}

.structure-layout__detail--ground {
  grid-column: 1;
  width: min(48vw, 560px);
  justify-self: end;
  margin-top: -7rem;
}

.venue-image--lights {
  object-position: center 18%;
}

.venue-image--ground {
  object-position: center 86%;
}

.section-copy {
  top: 9.5rem;
}

.section-copy--centered,
.section-copy--gallery,
.contact-copy {
  text-align: center;
}

.section-copy--centered p:last-child,
.section-copy--gallery p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.section-copy h2 {
  font-size: clamp(3rem, 6.8vw, 6rem);
}

.detail-reel {
  top: 34svh;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.detail-card {
  position: relative;
  min-height: 24rem;
}

.venue-image--detail-top {
  object-position: center 18%;
}

.venue-image--detail-goal {
  object-position: center 62%;
}

.venue-image--detail-surface {
  object-position: center 84%;
}

.detail-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(246, 240, 223, 0.86);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}

.play-grid {
  position: absolute;
  top: 34svh;
  left: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(94vw, 1240px);
  transform: translateX(-50%);
}

.chapter--details {
  min-height: auto;
}

.chapter--details .chapter__sticky {
  position: relative;
  top: auto;
  min-height: auto;
  overflow: visible;
  padding: 8rem 0 4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 164, 65, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(6, 7, 7, 0.9), rgba(5, 6, 6, 1));
}

.chapter--details .section-copy {
  position: relative;
  top: auto;
  left: auto;
  width: min(94vw, 1240px);
  margin: 0 auto;
  transform: none;
}

.chapter--details .section-copy h2 {
  font-size: clamp(3.2rem, 6.2vw, 5.8rem);
}

.chapter--details .section-copy p:last-child {
  max-width: 44rem;
}

.chapter--details .play-grid {
  position: relative;
  top: auto;
  left: auto;
  width: min(94vw, 1240px);
  margin: 2.5rem auto 0;
  transform: none;
}

.play-card,
.facility-item,
.review-rating,
.review-card,
.venue-note,
.trust-chip,
.review-status,
.review-shell,
.review-owner-reply {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(12, 13, 13, 0.92), rgba(8, 9, 9, 0.98));
  box-shadow:
    0 1.4rem 2.4rem rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.play-card {
  min-height: 13rem;
  padding: 1.25rem 1.1rem 1.2rem;
}

.play-card span,
.facility-item span {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.play-card strong,
.facility-item strong,
.review-rating span,
.review-card strong,
.venue-note strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fcf6ea;
}

.play-card p,
.review-card p,
.review-rating p,
.venue-note p,
.facility-item p,
.review-status p,
.review-shell p,
.review-owner-reply p {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.section-shell {
  position: relative;
  z-index: 1;
  padding: 7rem 0 3.4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 164, 65, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(6, 7, 7, 0.92), rgba(5, 6, 6, 1));
}

.section-shell__inner {
  width: min(94vw, 1240px);
  margin: 0 auto;
}

.section-copy--flow {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  max-width: 46rem;
  transform: none;
  text-align: left;
}

.facilities-grid,
.review-feed,
.review-feed__grid,
.trust-strip,
.reviews-layout {
  display: grid;
  gap: 1rem;
}

.facilities-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3rem;
}

.facility-item {
  position: relative;
  min-height: 12.2rem;
  padding: 1.35rem 1.15rem 1.2rem;
  overflow: hidden;
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.facility-item::before {
  content: "";
  position: absolute;
  inset: -20% 42% 58% -10%;
  background: radial-gradient(circle, rgba(246, 217, 143, 0.18), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.facility-item:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(246, 217, 143, 0.42);
  box-shadow:
    0 1.9rem 2.9rem rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.facility-icon {
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(246, 217, 143, 0.08), rgba(246, 217, 143, 0.02));
}

.facility-icon svg {
  width: 2.3rem;
  height: 2.3rem;
  stroke: var(--gold-bright);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 0.4rem rgba(246, 217, 143, 0.16));
  transform-origin: center;
  transition: transform 280ms ease;
}

.facility-item:hover .facility-icon svg {
  transform: scale(1.05);
}

.facility-item p {
  max-width: 15rem;
}

.facility-item:nth-child(1) .facility-icon svg,
.facility-item:nth-child(4) .facility-icon svg,
.facility-item:nth-child(8) .facility-icon svg {
  animation: facilityBob 5.2s ease-in-out infinite;
}

.facility-item:nth-child(2) .facility-icon svg,
.facility-item:nth-child(6) .facility-icon svg,
.facility-item:nth-child(9) .facility-icon svg {
  animation: facilityPulse 4.8s ease-in-out infinite;
}

.facility-item:nth-child(3) .facility-icon svg,
.facility-item:nth-child(5) .facility-icon svg,
.facility-item:nth-child(7) .facility-icon svg,
.facility-item:nth-child(10) .facility-icon svg {
  animation: facilitySweep 6s ease-in-out infinite;
}

.trust-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 2.7rem;
}

.trust-chip {
  min-height: 7.2rem;
  padding: 1.15rem 1rem;
}

.trust-chip strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.08rem;
  text-transform: uppercase;
  color: #fcf6ea;
  line-height: 1;
}

.trust-chip span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(246, 217, 143, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.reviews-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3rem;
  gap: 1.2rem;
}

.review-column {
  min-width: 0;
}

.review-column__intro {
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.review-column__intro h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: #fcf6ea;
}

.review-column__intro p:last-child {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

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

.review-status,
.review-shell {
  padding: 1.3rem 1.2rem 1.2rem;
}

.review-shell--summary strong,
.review-shell > strong,
.review-status strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #fcf6ea;
  line-height: 1;
}

.review-summary__score {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.review-summary__score strong {
  font-size: clamp(3.8rem, 7vw, 5.6rem);
  line-height: 0.9;
  color: var(--gold-bright);
}

.review-summary__meta {
  padding-bottom: 0.45rem;
}

.review-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(246, 217, 143, 0.88);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-platform::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0.8rem rgba(246, 217, 143, 0.34);
}

.review-stars {
  color: var(--gold-bright);
  letter-spacing: 0.18em;
  font-size: 0.88rem;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin-top: 0.7rem;
  color: rgba(246, 240, 223, 0.64);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-author__avatar {
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 auto;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(246, 217, 143, 0.32);
  background: linear-gradient(180deg, rgba(246, 217, 143, 0.18), rgba(33, 95, 53, 0.2));
}

.review-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  color: #fcf6ea;
}

.review-author__copy strong,
.review-owner-reply strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #fcf6ea;
  line-height: 1;
}

.review-author__copy a {
  color: inherit;
  text-decoration: none;
}

.review-author__copy span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(246, 217, 143, 0.78);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-copy {
  margin-top: 0.95rem;
}

.review-copy p {
  margin: 0;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.review-links a {
  color: rgba(246, 217, 143, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.review-owner-reply {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, rgba(16, 59, 34, 0.52), rgba(11, 18, 12, 0.75));
}

.review-attribution {
  margin-top: 0.8rem;
  color: rgba(246, 240, 223, 0.58);
  font-size: 0.76rem;
  line-height: 1.5;
}

.visit-actions,
.visit-map {
  position: absolute;
  left: 50%;
  width: min(94vw, 1240px);
  transform: translateX(-50%);
  z-index: 3;
}

.visit-actions {
  top: 46svh;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.visit-actions a {
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 8, 8, 0.7);
  color: #fcf6ea;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.visit-map {
  bottom: 2rem;
  height: 28rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow:
    0 1.6rem 2.6rem rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(1.02) brightness(0.9);
}

.site-credit {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  z-index: 3;
  margin: 0;
  width: min(94vw, 1240px);
  transform: translateX(-50%);
  color: rgba(246, 240, 223, 0.42);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
}

.site-credit a {
  color: rgba(246, 217, 143, 0.56);
  text-decoration: none;
}

.contact-grid {
  bottom: 31rem;
}

.is-firefox .site-grain,
.is-firefox .hero-layer--sky,
.is-firefox .hero-layer--lights,
.is-firefox .hero-photo__glow,
.is-firefox .hero-copy__halo {
  display: none;
}

.is-firefox .hero-photo__spotlight {
  opacity: 0;
}

.is-firefox .hero-photo,
.is-firefox .hero-photo__motion,
.is-firefox .media-tile,
.is-firefox .structure-layout__main,
.is-firefox .contact-photo,
.is-firefox .site-header,
.is-firefox .play-card,
.is-firefox .facility-item,
.is-firefox .trust-chip,
.is-firefox .review-status,
.is-firefox .review-shell,
.is-firefox .visit-map {
  box-shadow:
    0 1rem 1.8rem rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.is-firefox .media-tile::after {
  display: none;
}

.is-firefox .facility-icon svg {
  animation: none !important;
}

.chapter--gallery .chapter__sticky {
  position: relative;
  top: auto;
  min-height: auto;
  overflow: visible;
  padding: 7.4rem 0 3.4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 164, 65, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.22), rgba(7, 8, 8, 0.9));
}

.section-copy--gallery {
  position: relative;
  top: auto;
}

.media-wall {
  position: relative;
  top: auto;
  left: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  width: min(94vw, 1380px);
  margin-top: 3rem;
  padding-bottom: 3rem;
  transform: translateX(-50%);
}

.media-tile {
  position: relative;
  grid-column: span 4;
  min-height: 18rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(11, 12, 12, 0.9), rgba(8, 9, 9, 0.96));
  transform-style: preserve-3d;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, transparent 44%, rgba(4, 5, 5, 0.72) 100%);
  pointer-events: none;
}

.media-tile img,
.venue-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile--poster {
  grid-column: span 4;
  grid-row: span 2;
}

.media-tile--wide,
.media-tile--landscape {
  grid-column: span 8;
}

.media-tile--portrait {
  grid-column: span 4;
  min-height: 31rem;
}

.media-tile--tall {
  min-height: 39rem;
}

.venue-video {
  display: block;
  background: #050606;
}

.media-tile figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(246, 217, 143, 0.28);
  color: rgba(246, 240, 223, 0.86);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.88rem;
  line-height: 1.35;
}

.contact-photo {
  inset: 1.4rem 1.4rem 1.4rem 1.4rem;
  border-radius: 2.2rem;
}

.venue-image--contact {
  object-position: center 56%;
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.02) brightness(0.88);
}

.contact-photo__shade {
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.1), rgba(5, 6, 6, 0.38) 52%, rgba(5, 6, 6, 0.84) 100%),
    linear-gradient(90deg, rgba(5, 6, 6, 0.14), rgba(5, 6, 6, 0.02) 35%, rgba(5, 6, 6, 0.22) 100%);
}

.contact-copy {
  top: 12svh;
}

.contact-copy h2 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.contact-grid {
  bottom: 31rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: rgba(7, 8, 8, 0.7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-grid__item {
  padding: 1rem 1rem 1.2rem;
  border-right: 1px solid var(--line-soft);
}

.contact-grid__item:last-child {
  border-right: 0;
}

.contact-grid__item small {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(246, 217, 143, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-grid__item p {
  margin: 0;
  color: rgba(246, 240, 223, 0.88);
  font-size: 0.98rem;
  line-height: 1.38;
}

.contact-grid__phone {
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 1;
  letter-spacing: 0.04em;
}

@keyframes facilityBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes facilityPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.94;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes facilitySweep {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(2deg) translateX(1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .facility-icon svg {
    animation: none !important;
  }

  .facility-item,
  .review-shell,
  .review-status,
  .trust-chip {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

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

  .structure-layout {
    grid-template-columns: 1fr;
  }

  .structure-layout__detail--lights {
    grid-column: auto;
  }

  .structure-layout__detail--ground {
    grid-column: auto;
    width: auto;
    justify-self: auto;
    margin-top: 0;
  }

  .detail-reel {
    grid-template-columns: 1fr;
    top: 30svh;
  }

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

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

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

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .media-wall {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .media-tile,
  .media-tile--poster,
  .media-tile--portrait {
    grid-column: span 4;
  }

  .media-tile--wide,
  .media-tile--landscape {
    grid-column: span 8;
  }

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

  .visit-actions {
    top: 44svh;
  }

  .visit-map {
    height: 22rem;
  }

  .contact-grid {
    bottom: 24rem;
  }

  .site-credit {
    width: calc(100% - 1.2rem);
  }

  .contact-grid__item:nth-child(2) {
    border-right: 0;
  }

  .contact-grid__item:nth-child(1),
  .contact-grid__item:nth-child(2) {
    border-bottom: 1px solid var(--line-soft);
  }
}

@media (max-width: 820px) {
  .site-grain {
    display: none;
  }

  .hero-copy__halo {
    filter: blur(10px);
    opacity: 0.34;
  }

  .chapter--hero {
    min-height: auto;
  }

  .chapter--hero .chapter__sticky {
    position: relative;
    top: auto;
    min-height: auto;
    overflow: visible;
    padding: 6.4rem 0 2rem;
  }

  .site-header {
    top: 0.7rem;
    width: calc(100vw - 1rem);
    padding: 0.82rem 0.95rem;
    gap: 0.8rem;
  }

  .brand-lockup {
    gap: 0.85rem;
  }

  .brand-lockup__crest {
    width: 3.4rem;
    height: 3.4rem;
  }

  .brand-lockup__copy small {
    display: none;
  }

  .hero-photo,
  .contact-photo {
    inset: 1rem 1rem 1rem 1rem;
    border-radius: 1.5rem;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    width: calc(100% - 1.2rem);
    min-height: 31rem;
    margin: 0 auto;
  }

  .hero-copy {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 2rem);
    max-width: none;
    margin: -8rem auto 0;
    padding: 0 0.5rem;
    transform: none;
    z-index: 4;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    line-height: 0.9;
  }

  .hero-copy .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .hero-text {
    max-width: 18rem;
    margin-top: 0.8rem;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .fact-band {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 1.2rem);
    margin: 1rem auto 0;
    transform: none;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .fact-band span {
    padding: 0.75rem 0.8rem;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .scroll-mark {
    display: none;
  }

  .structure-layout,
  .section-copy,
  .detail-reel,
  .play-grid,
  .media-wall,
  .contact-copy,
  .contact-grid,
  .visit-actions,
  .visit-map {
    width: calc(100% - 1.2rem);
  }

  .structure-layout {
    top: 8rem;
  }

  .section-copy,
  .section-copy--gallery,
  .contact-copy {
    top: 8.5rem;
  }

  .section-copy--gallery {
    top: auto;
  }

  .section-copy h2,
  .contact-copy h2,
  .structure-layout__copy h2 {
    font-size: clamp(2.6rem, 12vw, 4.6rem);
  }

  .media-wall {
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 1rem);
  }

  .media-tile,
  .media-tile--poster,
  .media-tile--wide,
  .media-tile--landscape,
  .media-tile--portrait {
    grid-column: auto;
    min-height: 19rem;
    border-radius: 1.4rem;
  }

  .media-tile--tall,
  .media-tile--portrait {
    min-height: 26rem;
  }

  .play-grid,
  .facilities-grid,
  .review-feed__grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 7rem 0 3.5rem;
  }

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

  .visit-actions {
    top: 43svh;
  }

  .visit-map {
    bottom: 1rem;
    height: 18rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    bottom: 20.5rem;
  }

  .site-credit {
    width: calc(100% - 1.2rem);
    bottom: 0.35rem;
    text-align: center;
    font-size: 0.5rem;
  }

  .contact-grid__item {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .contact-grid__item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .brand-lockup__copy strong {
    font-size: 0.92rem;
  }

  .brand-lockup__crest {
    width: 3rem;
    height: 3rem;
  }

  .hero-copy,
  .fact-band,
  .structure-layout,
  .section-copy,
  .detail-reel,
  .play-grid,
  .media-wall,
  .contact-copy,
  .contact-grid,
  .visit-actions,
  .visit-map {
    width: calc(100% - 0.8rem);
  }

  .hero-photo {
    min-height: 26rem;
  }

  .hero-copy {
    margin-top: -6.6rem;
    padding: 0 0.15rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .hero-text {
    max-width: 15rem;
    font-size: 0.88rem;
  }

  .fact-band {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .structure-layout__main,
  .structure-layout__detail,
  .detail-card {
    border-radius: 1.2rem;
  }

  .structure-layout__main {
    min-height: 52svh;
  }

  .detail-card {
    min-height: 19rem;
  }

  .play-card,
  .facility-item,
  .review-card,
  .review-rating,
  .trust-chip,
  .review-status,
  .review-shell,
  .review-owner-reply {
    border-radius: 1.2rem;
  }

  .visit-actions a {
    width: 100%;
    text-align: center;
  }

  .media-wall {
    top: auto;
    grid-template-columns: 1fr;
  }

  .media-tile,
  .media-tile--poster,
  .media-tile--wide,
  .media-tile--landscape {
    min-height: 15rem;
  }

  .media-tile--portrait,
  .media-tile--tall {
    min-height: 22rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .visit-map {
    height: 16rem;
  }

  .contact-grid {
    bottom: 18rem;
  }

  .site-credit {
    width: calc(100% - 0.8rem);
    font-size: 0.48rem;
  }
}

@media (max-width: 820px) {
  .chapter--structure,
  .chapter--details,
  .chapter--contact {
    min-height: auto;
  }

  .chapter--structure .chapter__sticky,
  .chapter--details .chapter__sticky,
  .chapter--contact .chapter__sticky {
    position: relative;
    top: auto;
    min-height: auto;
    overflow: visible;
    padding: 7rem 0 2rem;
  }

  .structure-layout,
  .section-copy,
  .play-grid,
  .contact-copy,
  .contact-grid,
  .visit-actions,
  .visit-map,
  .site-credit {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }

  .structure-layout {
    width: calc(100% - 1.2rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .structure-layout__main,
  .structure-layout__detail,
  .contact-photo {
    position: relative;
    inset: auto;
    width: calc(100% - 1.2rem);
    margin: 0 auto;
  }

  .structure-layout__main {
    min-height: 18rem;
  }

  .structure-layout__detail {
    min-height: 14rem;
  }

  .structure-layout__copy {
    padding: 0.2rem 0.2rem 0;
    text-align: left;
  }

  .section-copy {
    width: calc(100% - 1.2rem);
    margin-bottom: 1.2rem;
  }

  .play-grid {
    width: calc(100% - 1.2rem);
    margin-top: 1.2rem;
  }

  .contact-photo {
    min-height: 20rem;
    margin-bottom: 1rem;
  }

  .contact-copy {
    width: calc(100% - 1.2rem);
    margin-bottom: 1rem;
  }

  .visit-actions {
    width: calc(100% - 1.2rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .visit-actions a {
    width: 100%;
    text-align: center;
  }

  .contact-grid {
    width: calc(100% - 1.2rem);
    margin-top: 1rem;
  }

  .visit-map {
    width: calc(100% - 1.2rem);
    margin-top: 1rem;
    height: 16rem;
  }

  .site-credit {
    width: calc(100% - 1.2rem);
    margin-top: 0.9rem;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .chapter--structure .chapter__sticky,
  .chapter--details .chapter__sticky,
  .chapter--contact .chapter__sticky {
    padding: 6.5rem 0 1.5rem;
  }

  .structure-layout,
  .section-copy,
  .play-grid,
  .contact-copy,
  .contact-grid,
  .visit-actions,
  .visit-map,
  .site-credit,
  .structure-layout__main,
  .structure-layout__detail,
  .contact-photo {
    width: calc(100% - 0.8rem);
  }

  .visit-actions {
    grid-template-columns: 1fr;
  }

  .structure-layout__main {
    min-height: 15rem;
  }

  .structure-layout__detail,
  .contact-photo {
    min-height: 13rem;
  }

  .visit-map {
    height: 14rem;
  }
}
