/* ============================================================
   KARAZ HOOKAH LOUNGE — Design System
   A dark, luxe, late-night lounge aesthetic.
   Palette: night plum + cherry + gold.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --ink:        #0a0610;   /* page background */
  --ink-700:    #110a1a;   /* raised surface */
  --ink-600:    #180f25;   /* cards */
  --ink-500:    #221634;   /* hover / borders */

  /* brand */
  --cherry:     #e0285a;   /* karaz cherry */
  --cherry-200: #f4537e;
  --gold:       #cda85f;
  --gold-200:   #e6c989;

  /* text */
  --cream:      #f5efe7;
  --text:       #d7ccdf;
  --muted:      #9a8aab;
  --faint:      #6f6280;

  /* lines */
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(205,168,95,.28);

  /* type */
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--gold-200); outline-offset: 3px; border-radius: 4px; }

/* subtle film grain / vignette behind everything */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(205,168,95,.10), transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, rgba(224,40,90,.13), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; color: var(--cream); letter-spacing: .2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { color: var(--text); }
strong { color: var(--cream); font-weight: 600; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-200);
  display: inline-flex; align-items: center; gap: .8rem;
}
.eyebrow.center { justify-content: center; }

.script { font-family: var(--display); font-style: italic; color: var(--gold-200); }

/* visually hidden, still available to assistive tech */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* skip-to-content link — off-screen until keyboard focus (WCAG 2.4.1) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; padding: .7rem 1.1rem; background: var(--ink-600); color: var(--cream); border: 1px solid var(--gold); border-radius: 8px; font-size: .85rem; }

/* comfortable touch targets on pill controls (WCAG 2.5.5) */
.menu-tabs button, .gallery-filter button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1rem; color: var(--muted); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); border: 0; }

.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--cherry);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 1.7rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 8px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .3s, box-shadow .4s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--cherry); color: #fff; box-shadow: 0 10px 30px -14px rgba(224,40,90,.32); }
.btn--primary:hover { background: #c81f4e; box-shadow: 0 16px 40px -16px rgba(224,40,90,.4); }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-200)); color: #1a1206; box-shadow: 0 10px 30px -14px rgba(205,168,95,.3); }
.btn--gold:hover { box-shadow: 0 16px 42px -16px rgba(205,168,95,.4); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); background: rgba(205,168,95,.08); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: .85rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-200); transition: gap .3s var(--ease), color .3s; }
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--cream); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,6,16,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo svg { width: 34px; height: 34px; flex: none; }
.logo-mark { height: 42px; width: auto; flex: none; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--cream); letter-spacing: 1.5px; }
.logo-sub { font-size: .56rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-200); margin-top: 3px; padding-left: 2px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 2.3rem; }
.nav a {
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text);
  position: relative; padding: .3rem 0; transition: color .3s;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--cream); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header-cta { display: inline-flex; align-items: center; gap: 1.2rem; }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 60; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--header-h);
  background: var(--ink);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,6,16,.78) 0%, rgba(10,6,16,.45) 35%, rgba(10,6,16,.55) 70%, rgba(10,6,16,.8) 100%),
    linear-gradient(0deg, rgba(10,6,16,.95) 2%, rgba(10,6,16,0) 45%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 720px; margin-inline: auto; text-align: center; padding-block: 6vh; }
.hero__inner .eyebrow { margin-bottom: 1.4rem; justify-content: center; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 .accent { color: var(--cherry-200); font-style: italic; }
.hero__logo { width: clamp(165px, 23vw, 250px); height: auto; margin: 0 auto 1.6rem; filter: drop-shadow(0 14px 34px rgba(0,0,0,.55)); }
.hero__slogan { font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.14; margin-bottom: 1.2rem; }
.hero__slogan em { color: var(--cherry-200); font-style: italic; }
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--text); max-width: 52ch; margin: 0 auto 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
/* Page banner (inner pages) */
.page-hero {
  position: relative; padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden; text-align: center;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,6,16,.7), rgba(10,6,16,.82) 60%, var(--ink) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero p { max-width: 56ch; margin: 1.1rem auto 0; color: var(--muted); }
.breadcrumb { margin-top: 1.6rem; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a:hover { color: var(--gold-200); }
.breadcrumb span { color: var(--gold-200); }

/* ---------- Cards / media ---------- */
.media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink-600); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.media:hover img { transform: scale(1.06); }

.feature-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-600);
  display: flex; flex-direction: column; min-height: 380px;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.feature-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.feature-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature-card:hover .feature-card__img img { transform: scale(1.07); }
.feature-card__body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.feature-card__body h3 { color: var(--cream); }
.feature-card__body p { color: var(--muted); font-size: .96rem; flex: 1; }
.feature-card__body .link-arrow { margin-top: .4rem; }

/* alternating image+text block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px -40px rgba(0,0,0,.9); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 1.2rem; }
.split__body p + p { margin-top: 1rem; }
.split__body .eyebrow { margin-bottom: 1.1rem; }

/* chips / stat row */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; letter-spacing: .06em; color: var(--text); background: rgba(255,255,255,.02); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cherry); }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--ink-700); padding: 1.8rem 1.4rem; text-align: center; }
.stat__num { font-family: var(--display); font-size: clamp(2rem,4vw,2.8rem); color: var(--gold-200); line-height: 1; }
.stat__label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; }

/* ---------- Quote band ---------- */
.quote-band { position: relative; overflow: hidden; text-align: center; padding-block: clamp(5rem, 12vw, 9rem); }
.quote-band__bg { position: absolute; inset: 0; z-index: 0; }
.quote-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(10,6,16,.72); }
.quote-band .container { position: relative; z-index: 1; }
.quote-band blockquote { font-family: var(--display); font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.25; color: var(--cream); max-width: 18ch; margin-inline: auto; font-style: italic; }
.quote-band cite { display: block; margin-top: 1.6rem; font-family: var(--body); font-style: normal; font-size: .78rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-200); }

/* ---------- Reviews ---------- */
.review-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-600); padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1.1rem; transition: transform .5s var(--ease), border-color .5s, box-shadow .5s; }
.review-card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 30px 60px -34px rgba(0,0,0,.8); }
.review-card .stars { color: var(--gold-200); letter-spacing: 3px; font-size: 1.05rem; }
.review-card blockquote { font-family: var(--display); font-style: italic; font-size: 1.22rem; line-height: 1.42; color: var(--cream); flex: 1; }
.review-card figcaption { font-size: .9rem; color: var(--cream); font-weight: 600; }
.review-card figcaption span { color: var(--muted); font-weight: 400; }

/* ---------- Menu teaser / menu page ---------- */
.menu-list { display: grid; gap: 1.4rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: baseline; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item__name { font-family: var(--display); font-size: 1.3rem; color: var(--cream); }
.menu-item__tag { display: inline-block; margin-left: .6rem; font-family: var(--body); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cherry-200); border: 1px solid rgba(224,40,90,.4); padding: .12rem .5rem; border-radius: 6px; vertical-align: middle; }
.menu-item__desc { font-size: .92rem; color: var(--muted); margin-top: .3rem; max-width: 52ch; }
.menu-item__price { font-family: var(--display); font-size: 1.25rem; color: var(--gold-200); white-space: nowrap; }

.menu-cat { border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-600); padding: clamp(1.6rem, 3vw, 2.4rem); }
.menu-cat__head { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-bottom: 1.8rem; }
.menu-cat__head h3 { color: var(--cream); white-space: nowrap; }
.menu-cat__head .line { flex: 1; height: 1px; background: var(--line-2); }

.flavor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: .7rem; }
.flavor { padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: linear-gradient(150deg, rgba(224,40,90,.16), rgba(205,168,95,.06)); font-size: .92rem; color: var(--text); transition: border-color .3s, transform .3s, box-shadow .3s; }
.flavor:hover { border-color: var(--gold); background: linear-gradient(150deg, rgba(224,40,90,.24), rgba(205,168,95,.10)); transform: translateY(-2px); box-shadow: 0 12px 26px -16px rgba(224,40,90,.5); }
.flavor b { display: block; color: var(--cream); font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.flavor span { font-size: .76rem; color: var(--muted); }

/* ---------- Menu tabs & price tables ---------- */
.menu-tabs-wrap { position: sticky; top: var(--header-h); z-index: 30; background: rgba(10,6,16,.94); border-bottom: 1px solid var(--line); padding-block: .85rem; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.menu-tabs button { padding: .6rem 1.35rem; border-radius: 8px; border: 1px solid var(--line); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--muted); transition: color .3s, background .3s, border-color .3s; white-space: nowrap; }
.menu-tabs button:hover { color: var(--cream); border-color: var(--line-2); }
.menu-tabs button.active { background: var(--cherry); border-color: var(--cherry); color: #fff; }

/* Tabs are a JS enhancement: with .js only the active panel shows; without JS
   every panel is visible (below) and the dead tab bar is hidden. */
html.js .menu-panel { display: none; }
html.js .menu-panel.is-active { display: block; animation: panelfade .5s var(--ease); }
html.no-js .menu-tabs-wrap { display: none; }
@keyframes panelfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.menu-panel .menu-cat { margin-bottom: 2rem; }
.menu-panel .menu-cat:last-child { margin-bottom: 0; }

.price-badge { margin-left: auto; font-family: var(--display); font-size: 1.35rem; color: var(--gold-200); white-space: nowrap; }
.price-badge small { font-family: var(--body); font-size: .68rem; color: var(--muted); letter-spacing: .03em; }
.cat-note { font-size: .86rem; color: var(--muted); margin: -.6rem 0 1.4rem; }

.flavor.plain { display: flex; align-items: center; }
.flavor.plain b { margin: 0; font-size: 1rem; }

/* S / M / L price table */
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead th { font-family: var(--body); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-200); font-weight: 600; padding: 0 0 .9rem; text-align: right; }
.price-table thead th:first-child { text-align: left; }
.price-table tbody td { padding: .72rem 0; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; text-align: right; color: var(--cream); }
.price-table tbody td:first-child { text-align: left; font-family: var(--display); font-size: 1.16rem; color: var(--cream); padding-right: 1rem; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table .sz { width: 74px; }
.price-table tbody td .sub { display: block; font-family: var(--body); font-size: .8rem; color: var(--muted); }

@media (max-width: 760px) {
  .price-table .sz { width: 56px; }
  .price-table tbody td:first-child { font-size: 1.05rem; }
  /* let a wide price-badge (e.g. Mini Pancakes' two prices) wrap instead of clipping */
  .menu-cat__head .line { display: none; }
  .price-badge { margin-left: 0; white-space: normal; }
}

.allergy-note { text-align: center; color: var(--muted); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin: 2.6rem auto 0; max-width: 60ch; }

/* ---------- Gallery ---------- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.gallery-filter button {
  padding: .55rem 1.2rem; border-radius: 8px; border: 1px solid var(--line);
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  transition: all .3s var(--ease);
}
.gallery-filter button:hover { color: var(--cream); border-color: var(--line-2); }
.gallery-filter button.active { background: var(--cherry); border-color: var(--cherry); color: #fff; }

.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; background: var(--ink-600); }
.gallery-grid .g-item img { width: 100%; transition: transform .7s var(--ease), filter .5s; }
.gallery-grid .g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,6,16,.5), transparent 50%); opacity: 0; transition: opacity .4s; }
.gallery-grid .g-item:hover img { transform: scale(1.05); }
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-item .g-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); opacity: 0; transform: translateY(6px); transition: .4s var(--ease); }
.gallery-grid .g-item:hover .g-cap { opacity: 1; transform: none; }
.gallery-grid .g-item:focus-within::after { opacity: 1; }
.gallery-grid .g-item:focus-within .g-cap { opacity: 1; transform: none; }
.g-item.is-hidden { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(5,3,8,.94); backdrop-filter: blur(6px); padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 8px; box-shadow: 0 40px 120px -30px rgba(0,0,0,.9); }
.lightbox__cap { position: absolute; bottom: 4vh; left: 0; right: 0; text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); pointer-events: none; }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: var(--cream); border: 1px solid var(--line-2); background: rgba(255,255,255,.04); transition: background .3s, border-color .3s; }
.lightbox__btn:hover { background: rgba(205,168,95,.12); border-color: var(--gold); }
.lightbox__prev { left: 3vw; } .lightbox__next { right: 3vw; }
.lightbox__close { position: absolute; top: 3vh; right: 3vw; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: var(--cream); border: 1px solid var(--line-2); transition: .3s; }
.lightbox__close:hover { background: rgba(224,40,90,.18); border-color: var(--cherry); }

/* ---------- Info / hours ---------- */
.info-list { display: grid; gap: 1.3rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic { width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--gold-200); }
.info-item h3 { font-family: var(--body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; font-weight: 600; }
.info-item p { color: var(--cream); }
.info-item a:hover { color: var(--gold-200); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td, .hours-table th { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-table tr:last-child td, .hours-table tr:last-child th { border-bottom: 0; }
.hours-table th { text-align: left; font-weight: 400; color: var(--text); }
.hours-table td:last-child { text-align: right; color: var(--cream); font-variant-numeric: tabular-nums; }
.hours-table tr.today td, .hours-table tr.today th { color: var(--gold-200); }
.hours-table tr.today th::before { content: "● "; color: var(--cherry); font-size: .7em; vertical-align: middle; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; background: var(--ink-700); position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) invert(.92) hue-rotate(180deg) brightness(.9) contrast(.9); }

/* CTA band */
.cta-band { text-align: center; border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 4.5rem); background: linear-gradient(160deg, var(--ink-600), var(--ink-700)); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(224,40,90,.25), transparent 70%); top: -150px; right: -100px; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--muted); max-width: 50ch; margin: 0 auto 2rem; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-700); border-top: 1px solid var(--line); padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem,4vw,3rem); margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1.1rem; }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 32ch; }
.footer-col h3 { font-family: var(--body); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-200); margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a, .footer-col li { color: var(--muted); font-size: .94rem; transition: color .3s; }
/* Footer hours: aligned day-group (left) → open–close range (right, highlighted) */
.foot-hours li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.foot-hours .t { color: var(--cream); white-space: nowrap; }
.footer-col a:hover { color: var(--cream); }
.socials { display: flex; gap: .7rem; margin-top: 1.3rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); transition: .3s var(--ease); }
.socials a:hover { border-color: var(--gold); color: var(--gold-200); transform: translateY(-3px); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.footer-bottom .age { display: inline-flex; align-items: center; gap: .5rem; }
.footer-bottom .age b { color: var(--cherry-200); }

/* ---------- Reveal animation ---------- */
/* Scoped to html.js so that without JS the content is visible by default (no
   fallback trap). .reveal.in is also scoped so it out-specifies html.js .reveal. */
html.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .05s; } .reveal.d2 { transition-delay: .1s; } .reveal.d3 { transition-delay: .15s; } .reveal.d4 { transition-delay: .2s; }

/* ---------- Intro entrance (on page load) ---------- */
@keyframes introUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes introFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes introBg { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }

/* header fades in with opacity only — no transform, so it never becomes a containing
   block that would trap the fixed, full-screen mobile nav overlay inside it */
.site-header { animation: introFade .7s var(--ease) both; }
.hero__bg img, .page-hero__bg img { animation: introBg 1.5s var(--ease) both; }
.hero__inner > *, .page-hero .container > * { animation: introUp .8s var(--ease) both; }
.hero__inner > *:nth-child(1), .page-hero .container > *:nth-child(1) { animation-delay: .10s; }
.hero__inner > *:nth-child(2), .page-hero .container > *:nth-child(2) { animation-delay: .22s; }
.hero__inner > *:nth-child(3), .page-hero .container > *:nth-child(3) { animation-delay: .34s; }
.hero__inner > *:nth-child(4), .page-hero .container > *:nth-child(4) { animation-delay: .46s; }
/* inner-page banner: snappier entrance than the home hero (visitors navigate with intent) */
.page-hero__bg img { animation: introFade .6s var(--ease) both; }
.page-hero .container > * { animation: introUp .4s var(--ease) both; }
.page-hero .container > *:nth-child(1) { animation-delay: .04s; }
.page-hero .container > *:nth-child(2) { animation-delay: .10s; }
.page-hero .container > *:nth-child(3) { animation-delay: .16s; }
.page-hero .container > *:nth-child(4) { animation-delay: .22s; }
/* when the mobile nav overlay is open, drop the header's backdrop-filter so it can't
   create a containing block that clips the fixed overlay (header sits behind it anyway) */
body.no-scroll .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; }
@media (prefers-reduced-motion: reduce) {
  .site-header, .hero__bg img, .page-hero__bg img, .hero__inner > *, .page-hero .container > * { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16/11; max-height: 460px; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn { display: none; }
  /* Only show the hamburger when JS can open the overlay; without JS it would be a
     dead control, so it stays hidden and the footer "Explore" links are the fallback. */
  html.js .nav-toggle { display: block; }
  /* mobile overlay nav */
  .nav.is-open {
    display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
    position: fixed; inset: 0; z-index: 55; background: rgba(10,6,16,.98); backdrop-filter: blur(8px);
    padding: 2rem; text-align: center;
  }
  .nav.is-open a { font-family: var(--display); font-size: 1.8rem; text-transform: none; letter-spacing: .5px; }
  .nav.is-open a::after { display: none; }
  .nav.is-open .mobile-cta { margin-top: 1rem; display: inline-flex; }
  /* keep the gold button's dark label legible (out-specify .nav a) */
  .nav a.btn--gold { color: #1a1206; font-size: .9rem; font-family: var(--body); text-transform: uppercase; letter-spacing: .12em; }
}
@media (max-width: 760px) {
  .cols-3, .cols-4, .cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero__inner { margin-inline: auto; text-align: center; }
  .hero__inner .eyebrow { justify-content: center; }
  .hero__logo { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
.mobile-cta { display: none; }
