/* ============================================================
   The Yard Family Fun Center — Full Rebuild
   Brand: Dark red · Black · Gold
   Dark fun, modern, clean. Content visible by default.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --red:        #5c0a0a;
  --red-deep:   #3a0606;
  --red-mid:    #7a1a1a;
  --red-muted:  #4a0808;
  --black:      #080808;
  --black-100:  #0f0f0f;
  --black-150:  #141414;
  --black-200:  #1a1a1a;
  --black-300:  #242424;
  --gold:       #c5a059;
  --gold-light: #d4af37;
  --gold-dim:   #a68b4a;
  --gold-pale:  rgba(197,160,89,0.18);
  --cream:      #faf8f5;
  --cream-dim:  rgba(250,248,245,0.82);
  --cream-faint:rgba(250,248,245,0.5);
  --white:      #ffffff;

  /* Gold gradient used on headings */
  --grad-gold: linear-gradient(135deg, #d4af37 0%, #c5a059 50%, #a68b4a 100%);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --text-xs:   clamp(0.75rem,  0.72rem + 0.15vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.84rem + 0.2vw,  1rem);
  --text-base: clamp(1rem,     0.96rem + 0.3vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 1.05rem + 0.45vw, 1.3125rem);
  --text-xl:   clamp(1.25rem,  1.1rem  + 0.75vw, 1.75rem);
  --text-2xl:  clamp(1.625rem, 1.3rem  + 1.2vw,  2.5rem);
  --text-3xl:  clamp(2.25rem,  1.6rem  + 2.5vw,  4rem);

  --radius-sm: 0.5rem;
  --radius:    0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;

  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  --nav-h:    72px;
  --banner-h: 38px;

  --shadow-card:  0 4px 24px rgba(0,0,0,0.45);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.65), 0 0 0 1px rgba(197,160,89,0.35);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--banner-h) + 1rem);
}
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  background: var(--black);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
ul { list-style: none; }
strong { font-weight: 700; }

/* ── Accessibility ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -120%;
  left: var(--sp-2);
  padding: 0.5rem 1.2rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Scroll progress bar ───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-mid), var(--gold-light));
  z-index: 10001;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Back to top ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-3); right: var(--sp-3);
  width: 44px; height: 44px;
  background: rgba(92,10,10,0.92);
  border: 1px solid rgba(197,160,89,0.4);
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red-mid);
  color: var(--gold-light);
  border-color: var(--gold-dim);
}

/* ── Navbar ────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.35s, border-color 0.35s, transform 0.32s ease, box-shadow 0.35s;
}
.navbar--scrolled {
  background: rgba(10,10,10,0.96);
  border-bottom-color: rgba(197,160,89,0.22);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.navbar--hidden { transform: translateY(-110%); }

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.navbar-brand:hover { opacity: 0.85; }
.navbar-logo-img { height: 54px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }

.navbar-mobile {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}
.navbar-mobile a,
.navbar-mobile .nav-coming-soon {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--cream-dim);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.navbar-mobile a:hover {
  color: var(--gold);
  background: rgba(197,160,89,0.09);
  text-decoration: none;
}
.nav-coming-soon {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
  font-style: italic;
}

.navbar-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 1.35rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}
.navbar-toggle:hover { background: rgba(255,255,255,0.07); }

/* ── Top banner ────────────────────────────────────────────────── */
.top-banner {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 900;
  background: var(--red-muted);
  border-bottom: 1px solid rgba(197,160,89,0.16);
  padding: 0.4rem var(--sp-2);
  text-align: center;
  transition: transform 0.32s ease, opacity 0.28s ease;
}
.top-banner.banner--hidden {
  transform: translateY(-200px);
  opacity: 0;
  pointer-events: none;
}
.top-banner-inner { max-width: 1200px; margin: 0 auto; }
.top-banner-hours {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(250,248,245,0.9);
  letter-spacing: 0.025em;
}

/* ── Floating actions ──────────────────────────────────────────── */
.floating-actions {
  position: fixed;
  bottom: var(--sp-8);
  left: var(--sp-2);
  z-index: 400;
  display: none;
}
.floating-actions-grid { display: flex; flex-direction: column; gap: 0.5rem; }
.floating-action {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background: rgba(58,6,6,0.92);
  border: 1px solid rgba(197,160,89,0.35);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.floating-action:hover {
  background: var(--red-mid);
  color: var(--gold-light);
  border-color: var(--gold-dim);
  transform: translateX(2px);
  text-decoration: none;
}
.floating-action--muted {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
  font-style: italic;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.025em;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s, box-shadow 0.22s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--outline {
  background: transparent;
  border-color: rgba(197,160,89,0.5);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197,160,89,0.25);
}
.btn--muted {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
  font-style: italic;
  border-color: rgba(197,160,89,0.22);
  color: var(--cream-faint);
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--sp-3);
}

/* ── Layout ────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 var(--sp-3); }
.main--landing { padding-top: 0; }
.main--page {
  padding-top: calc(var(--nav-h) + var(--banner-h) + var(--sp-8));
  min-height: 60vh;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--banner-h));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/the yard/backgroundheroimage.webp') center 40% / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.5)  0%,
    rgba(74,8,8,0.28) 45%,
    rgba(8,8,8,0.88)  100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
/* Frosted glass backdrop — isolates busy logo from photo background */
.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2.25rem;
  background: rgba(4,4,4,0.52);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  box-shadow:
    0 12px 56px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(0,0,0,0.35);
}
.hero-logo-img {
  width: min(540px, 82vw);
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
.hero-tagline {
  font-size: var(--text-lg);
  color: rgba(250,248,245,0.7);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
/* Decorative silhouette — sports scene at 6% opacity */
.hero-silhouette {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.hero-silhouette svg {
  width: 100%;
  height: auto;
  opacity: 0.06;
  color: var(--gold);
}
/* Wave transition to next section */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  width: 100%; height: 72px;
  z-index: 3;
  pointer-events: none;
  fill: var(--black-100);
}

/* ── Sections ──────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: var(--sp-12) var(--sp-3);
}
.section--dark  { background: var(--black-100); }
.section--red   { background: var(--red-deep); }
.section--mid   { background: var(--black-150); }

/* Gold rule on top */
.section--ruled::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(100px, 35%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* Section content wrappers */
.section-wrap          { max-width: 880px;  margin: 0 auto; }
.section-wrap--wide    { max-width: 1100px; margin: 0 auto; }
.section-wrap--narrow  { max-width: 620px;  margin: 0 auto; }
.section-wrap--center  { text-align: center; }
.section-wrap--center .section-lead  { margin-left: auto; margin-right: auto; }
.section-wrap--center .section-prose { margin-left: auto; margin-right: auto; }

/* ── Section typography ────────────────────────────────────────── */
.section-heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading--white {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--cream);
  background-clip: unset;
  color: var(--cream);
}
.section-lead {
  font-size: var(--text-lg);
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
  max-width: 640px;
}
.section-prose {
  font-size: var(--text-base);
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}
.section-prose--muted { color: var(--cream-faint); font-size: var(--text-sm); }

/* ── Play & eat section — image background ──────────────────────── */
.section--play-eat {
  background:
    url('assets/the yard/playandeat.webp') center 38% / cover no-repeat;
  position: relative;
}
.section--play-eat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.78) 0%,
    rgba(10,3,3,0.88) 40%,
    rgba(10,3,3,0.88) 65%,
    rgba(5,5,5,0.92) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.section--play-eat > * {
  position: relative;
  z-index: 1;
}
/* Stronger text legibility over image */
.section--play-eat .section-heading {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.95));
}
.section--play-eat .section-lead {
  color: var(--cream);
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}
/* Frosted glass card wraps the content block for legibility over image */
.section--play-eat .landing-copy {
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: 0 12px 60px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.04);
}
/* Amenity pills — solid backdrop over image */
.section--play-eat .amenities-inline a {
  background: rgba(0,0,0,0.55);
  border-color: rgba(197,160,89,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section--play-eat .amenities-inline a:hover {
  background: rgba(197,160,89,0.2);
  border-color: var(--gold);
  color: var(--gold);
}
/* Buttons over image — backed by dark scrim */
.section--play-eat .btn--outline {
  background: rgba(0,0,0,0.5);
  border-color: rgba(197,160,89,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section--play-eat .btn--outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.section--play-eat .btn--muted {
  background: rgba(0,0,0,0.45);
  border-color: rgba(197,160,89,0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Copy layout variants ──────────────────────────────────────── */
.landing-copy { max-width: 660px; }
.landing-copy--left  { margin-right: auto; }
.landing-copy--right { margin-left: auto; }
.landing-copy--center { margin: 0 auto; text-align: center; }
.landing-copy--center .section-lead  { margin: 0 auto var(--sp-3); }
.landing-copy--center .section-prose { margin: 0 auto var(--sp-2); }
.landing-copy--center .btn { display: inline-flex; }

/* ── Amenities inline quick-nav ────────────────────────────────── */
.amenities-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: var(--sp-3) 0 var(--sp-4);
}
.amenities-inline a {
  color: var(--gold-dim);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(197,160,89,0.22);
  border-radius: 2rem;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.amenities-inline a:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(197,160,89,0.09);
  text-decoration: none;
}
.amenities-inline-sep { display: none; }
.amenities-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: var(--sp-2);
}

/* ── Events section ────────────────────────────────────────────── */
.event-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(197,160,89,0.45);
  border-radius: 2rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  background: rgba(197,160,89,0.06);
}
.events-headline {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: var(--sp-2);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: var(--sp-4) 0;
}
.event-card {
  padding: var(--sp-4);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(197,160,89,0.12);
  backdrop-filter: blur(4px);
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
}
.event-card:hover {
  border-color: rgba(197,160,89,0.38);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.event-card--live  { border-top: 3px solid var(--gold-dim); }
.event-card--soon  { border-top: 3px solid rgba(197,160,89,0.22); }
.event-card-tag {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.event-card--soon .event-card-tag { color: var(--cream-faint); }
.event-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.event-card-text {
  font-size: var(--text-sm);
  color: var(--cream-dim);
  line-height: 1.65;
}
.events-follow {
  font-size: var(--text-sm);
  color: var(--cream-faint);
  margin-top: var(--sp-2);
}

/* ── Concession feature image ──────────────────────────────────── */
.concession-feature {
  width: 100%;
  max-width: 860px;
  margin: var(--sp-4) auto var(--sp-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(197,160,89,0.22);
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
}
.concession-feature img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.concession-feature:hover img { transform: scale(1.018); }

/* ── Menu gallery — horizontal scroll strip ────────────────────── */
.menu-strip-wrap {
  margin: var(--sp-4) calc(-1 * var(--sp-3)) var(--sp-2);
  padding: 0 var(--sp-3) var(--sp-2);
}
.menu-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) rgba(255,255,255,0.05);
  padding-bottom: var(--sp-2);
}
.menu-strip::-webkit-scrollbar { height: 3px; }
.menu-strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 2px; }
.menu-strip::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* NO opacity:0 default — content visible by default */
.menu-card {
  flex: 0 0 220px;
  height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--black-200);
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.menu-card:hover {
  border-color: rgba(197,160,89,0.55);
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-hover);
}
.menu-card--wide {
  flex: 0 0 400px;
  height: 290px;
}
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.menu-card:hover img { transform: scale(1.05); }

/* Category label at top */
.menu-card-cat {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 0.65rem 0.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, transparent 100%);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  z-index: 1;
}
/* "Tap to enlarge" at bottom */
.menu-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 0.75rem 0.6rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, transparent 100%);
  color: rgba(250,248,245,0.55);
  font-size: var(--text-xs);
  font-style: italic;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.menu-card:hover .menu-card-label { opacity: 1; }

.menu-hint {
  text-align: center;
  color: rgba(250,248,245,0.3);
  font-size: var(--text-xs);
  font-style: italic;
  margin-top: var(--sp-1);
}

/* ── Menu lightbox ─────────────────────────────────────────────── */
.menu-lightbox {
  max-width: min(94vw, 940px);
  max-height: 92svh;
  border: 1px solid rgba(197,160,89,0.28);
  border-radius: var(--radius-xl);
  background: var(--black-150);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.85);
}
.menu-lightbox::backdrop { background: rgba(0,0,0,0.9); }
.menu-lightbox-close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-size: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.menu-lightbox-close:hover { background: var(--red); }
.menu-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 90svh;
  object-fit: contain;
}

/* ── Contact ───────────────────────────────────────────────────── */
.contact-link { color: var(--gold); font-weight: 500; }
.contact-link:hover { color: var(--gold-light); text-decoration: underline; }

/* ── Amenity cards ─────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
/* NO opacity:0 default — visible by default */
.amenity-card {
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(197,160,89,0.13);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
}
.amenity-card:hover {
  border-color: rgba(197,160,89,0.42);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.amenity-card-img-wrap {
  overflow: hidden;
  height: 240px;
}
.amenity-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.amenity-card:hover .amenity-card-img { transform: scale(1.04); }
.amenity-card-body { padding: var(--sp-4); }
.amenity-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}
.amenity-icon { color: var(--gold); flex-shrink: 0; }
.amenity-card-prose {
  color: var(--cream-dim);
  font-size: var(--text-base);
  line-height: 1.68;
  margin-bottom: var(--sp-2);
}
.amenity-detail {
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.amenity-detail-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  margin-top: var(--sp-2);
}
.amenity-detail-label:first-child { margin-top: 0; }
.amenity-detail-label--highlight  { color: var(--gold); }
.amenity-detail-list { padding-left: 0; }
.amenity-detail-list li {
  font-size: var(--text-sm);
  color: var(--cream-dim);
  padding: 0.2rem 0 0.2rem 1.2rem;
  position: relative;
}
.amenity-detail-list li::before {
  content: '·';
  position: absolute;
  left: 0.3rem;
  color: var(--gold-dim);
}
.amenity-detail-text { font-size: var(--text-sm); color: var(--cream-dim); line-height: 1.6; }

/* ── Decorative sports silhouettes — shared system ─────────────── */
/* SVG silhouettes are positioned absolute behind section content.
   Sections using this must have position:relative (all .section already do).
   Content stays visible: .section-deco is z-index 0, content is z-index 1. */
.section-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.section-deco svg {
  width: 100%;
  height: 100%;
  color: var(--cream);
  opacity: 0.052;
}
/* Any section using .section--deco must lift its content above deco */
.section--deco > * { position: relative; z-index: 1; }
.section--deco > .section-deco { z-index: 0; position: absolute; }

/* Depth variants — radial warm glow behind content */
.section--depth-red {
  background:
    radial-gradient(ellipse 82% 68% at 50% 52%, rgba(58,6,6,0.54) 0%, transparent 70%),
    var(--black-100);
  overflow: hidden;
}
.section--depth-mid {
  background:
    radial-gradient(ellipse 75% 60% at 50% 55%, rgba(32,8,8,0.42) 0%, transparent 65%),
    var(--black-150);
  overflow: hidden;
}
.section--depth-dark {
  background:
    radial-gradient(ellipse 72% 62% at 50% 50%, rgba(26,5,5,0.48) 0%, transparent 65%),
    var(--black-100);
  overflow: hidden;
}

/* Corner bracket accent frame (add .landing-copy--framed to copy block) */
.landing-copy--framed { position: relative; padding: var(--sp-4) var(--sp-6); }
.landing-copy--framed::before,
.landing-copy--framed::after {
  content: '';
  position: absolute;
  width: 38px; height: 38px;
  border-color: rgba(197,160,89,0.22);
  border-style: solid;
  pointer-events: none;
}
.landing-copy--framed::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.landing-copy--framed::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: none;
  padding: 0;
}
/* Cinematic image band at top of footer */
.footer-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.footer-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: transform 0.6s ease;
}
.footer-banner:hover img { transform: scale(1.025); }
.footer-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.35) 55%,
    rgba(8,8,8,0.92) 100%
  );
  pointer-events: none;
}
/* Footer text content block */
.footer-body {
  padding: var(--sp-8) var(--sp-3) var(--sp-6);
  border-top: 1px solid rgba(197,160,89,0.14);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}
.footer-inner::before {
  content: '';
  display: block;
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin-bottom: var(--sp-2);
}
.footer-logo-img { height: 50px; width: auto; }
.footer-tagline  { font-size: var(--text-base); font-weight: 700; color: var(--cream); }
.footer-contact  {
  font-size: var(--text-sm); color: var(--cream-faint);
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 0.25rem 0.5rem;
}
.footer-contact a { color: var(--gold-dim); }
.footer-contact a:hover { color: var(--gold); text-decoration: none; }
.footer-contact-sep { color: rgba(197,160,89,0.25); }
.footer-address { color: var(--cream-faint); }
.footer-nav {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.2rem;
}
.footer-nav a,
.footer-nav .nav-coming-soon {
  color: var(--cream-faint);
  font-size: var(--text-sm);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover {
  color: var(--gold);
  background: rgba(197,160,89,0.07);
  text-decoration: none;
}
.footer-credit { font-size: 0.72rem; color: rgba(250,248,245,0.2); margin-top: var(--sp-2); }

/* ── Scroll reveal ─────────────────────────────────────────────── */
/* Content VISIBLE by default. JS adds .sr-pending only to below-fold elements. */
.scroll-reveal {
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.scroll-reveal.sr-pending  { opacity: 0; transform: translateY(26px); }
.scroll-reveal.visible     { opacity: 1; transform: none; }

/* Menu cards — same safe pattern */
.menu-card.sr-pending  { opacity: 0 !important; transform: translateY(20px) !important; }
.menu-card.visible     { opacity: 1 !important; transform: translateY(0) !important; }

/* Amenity cards */
.amenity-card.sr-pending { opacity: 0 !important; transform: translateY(20px) !important; }
.amenity-card.visible    { opacity: 1 !important; transform: translateY(0) !important; }

/* ── Reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── Mobile nav (≤768px) ───────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-mobile {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197,160,89,0.14);
    padding: 0.75rem;
    gap: 0.2rem;
  }
  .navbar-mobile.active { display: flex; }
  .navbar-mobile a,
  .navbar-mobile .nav-coming-soon {
    padding: 0.8rem 1.1rem;
    font-size: var(--text-base);
    border-radius: var(--radius-sm);
    text-align: left;
  }
  .navbar-toggle { display: flex; }
  /* Show tagline on mobile at smaller size — still conveys key info */
  .hero-tagline  { font-size: var(--text-xs); letter-spacing: 0.04em; }
  .main--page {
    padding-top: calc(var(--nav-h) + var(--banner-h) + var(--sp-6));
  }
}

/* ── Tablet (≥600px) ───────────────────────────────────────────── */
@media (min-width: 600px) {
  .events-grid    { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-actions { display: block; }
}

/* ── Desktop (≥768px) ──────────────────────────────────────────── */
@media (min-width: 768px) {
  .section { padding: var(--sp-16) var(--sp-4); }
  .menu-card { flex: 0 0 260px; height: 380px; }
  .menu-card--wide { flex: 0 0 460px; height: 320px; }
  .amenity-card-img-wrap { height: 280px; }
  .hero-tagline { display: block; }
  .footer-banner { height: 360px; }
}
