/* =================================================================
   CASA BRAVA SOCIAL CLUB
   Latin rooftop · Midtown Houston
   Mobile-first. Motif: Talavera tile + brass arch + tropical leaf.
   Palette: deep palm-night green canvas, warm cream paper,
   marigold/coral nightlife glow, brass line accents.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --night:    #5A1A24;   /* deep burgundy — primary dark bg (logo direction) */
  --night-2:  #6E2531;   /* lifted burgundy panel */
  --night-3:  #3E0F18;   /* deepest burgundy */
  --ink:      #2A1116;   /* warm near-black, burgundy-tinted */
  --cream:    #F3E9D4;   /* logo cream — warm paper */
  --cream-2:  #E9DBC0;
  --coral:    #E8506E;   /* bougainvillea hot coral — energy accent */
  --coral-dk: #D63E5C;   /* decorative coral — non-text use only */
  --coral-text:#A82742;  /* AA-safe coral for text on cream (~6:1) */
  --marigold: #D98A3C;   /* warm amber-copper — primary CTA (celebratory) */
  --marigold-dk:#BE6F26;
  --brass:    #B0764A;   /* copper line accent */
  --leaf:     #6E8060;   /* muted palm green — botanical accent */
  --leaf-dk:  #586B4A;
  --tile-blue:#3E7C8C;   /* muted talavera teal */

  --text-dk:  #2A1116;            /* text on cream */
  --text-lt:  #F3E9D4;            /* cream text on burgundy */
  --muted-lt: rgba(243,233,212,.70);
  --muted-dk: rgba(42,17,22,.62);
  --hair-lt:  rgba(243,233,212,.14);
  --hair-dk:  rgba(42,17,22,.12);

  --display: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --wrap: 1140px;
  --r: 16px;
  --glow: 0 10px 40px -8px rgba(232,80,110,.45), 0 4px 14px -6px rgba(217,138,60,.5);
  --shadow: 0 24px 60px -28px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text-dk);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 6vw, 3.1rem); }
h3 { font-size: 1.3rem; line-height: 1.15; }
p { margin: 0; }
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
/* Grid children must be allowed to shrink below their content size, or wide
   content (e.g. the map iframe) blows the track past the viewport on mobile. */
.atmos__inner > *, .acts > *, .events__inner > *, .reserve__inner > *, .story__inner > *, .visit__inner > * { min-width: 0; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.ic { width: 1.15em; height: 1.15em; flex: none; }
.hide-sm { display: none !important; }
/* Fabricated venue — blur real-looking contact details so nobody acts on them */
.redact { filter: blur(5px); -webkit-user-select: none; user-select: none; cursor: default; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--marigold); color: var(--ink); padding: 10px 16px; border-radius: 10px; font-weight: 600;
}
.skip-link:focus { left: 12px; }

:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; box-shadow: 0 0 0 5px rgba(217,138,60,.7); }

/* ---------- Eyebrows / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral-text); margin: 0 0 16px;
}
.eyebrow--light { color: var(--marigold); }
.eyebrow .ic { color: currentColor; width: 1em; height: 1em; }

.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.075rem; color: var(--muted-dk); margin-top: 16px; line-height: 1.65; }
.lead--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 14px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: .98rem;
  padding: var(--pad); border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; min-height: 48px;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--solid { background: var(--marigold); color: var(--ink); box-shadow: 0 8px 26px -12px rgba(243,162,58,.8); }
.btn--solid:hover { background: var(--coral); color: var(--ink); box-shadow: var(--glow); transform: translateY(-2px); }
.btn--outline { border-color: rgba(244,234,218,.4); color: var(--text-lt); background: rgba(255,255,255,.03); }
.btn--outline:hover { border-color: var(--marigold); color: var(--marigold); transform: translateY(-2px); }
.btn--ghost { border-color: var(--hair-dk); color: var(--text-dk); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--sm { --pad: 10px 18px; min-height: 42px; font-size: .9rem; }
.btn--lg { --pad: 17px 30px; min-height: 56px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none;
  color: var(--coral-text); border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: gap .2s ease, border-color .2s ease;
}
.link-arrow:hover { gap: 13px; border-color: var(--coral-text); }

/* =================================================================
   SCENE SYSTEM
   Art-directed atmospheric panels (not photographs, not cartoons) —
   layered gradients + grain + botanical silhouettes. These are the
   styled slots where the real photo shoot drops in later.
   ================================================================= */
.scene { position: relative; overflow: hidden; background: var(--night-2); isolation: isolate; }
.scene__grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* rooftop dusk (hero) */
.scene--rooftop .scene__sky {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(243,162,58,.5), transparent 46%),
    radial-gradient(120% 70% at 20% 0%, rgba(236,84,112,.42), transparent 50%),
    linear-gradient(178deg, #2A3A2E 0%, #1B2C24 30%, var(--night) 64%, var(--night-3) 100%);
}
/* warm bar glow */
.scene--bar {
  background:
    radial-gradient(90% 80% at 30% 20%, rgba(243,162,58,.55), transparent 55%),
    radial-gradient(80% 90% at 85% 90%, rgba(236,84,112,.4), transparent 55%),
    linear-gradient(160deg, #2A2018, var(--night) 80%);
}
.scene--dusk {
  background:
    radial-gradient(100% 80% at 70% 10%, rgba(243,162,58,.6), transparent 55%),
    linear-gradient(165deg, #C9663C, #6E3A3A 45%, var(--night) 100%);
}
.scene--dinner {
  background:
    radial-gradient(70% 60% at 50% 70%, rgba(243,162,58,.55), transparent 60%),
    linear-gradient(160deg, #214034, var(--night) 85%);
}
.scene--night {
  background:
    radial-gradient(70% 70% at 30% 20%, rgba(236,84,112,.6), transparent 55%),
    radial-gradient(70% 70% at 80% 80%, rgba(44,125,160,.5), transparent 55%),
    linear-gradient(160deg, #2A1830, var(--night-3) 90%);
}
.scene--map { background: var(--night-2); }
.scene--map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) saturate(1.05); }

/* leaves */
.leaf { position: absolute; z-index: 2; opacity: .55; pointer-events: none; }
.leaf--tl { width: 230px; top: -56px; left: -64px; transform: rotate(-18deg); opacity: .42; }
.leaf--br { width: 280px; right: -84px; bottom: -90px; transform: rotate(160deg); opacity: .3; }
.leaf--corner { width: 150px; top: -34px; right: -28px; transform: rotate(22deg); opacity: .4; }

/* skyline + string lights in hero */
.scene__skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 30%; z-index: 1; opacity: .9; }
.scene__lights { position: absolute; top: 0; left: 0; width: 100%; height: 90px; z-index: 2; }
.scene__lights .bulb { fill: var(--marigold); filter: drop-shadow(0 0 5px rgba(243,162,58,.9)); }

/* framed panels with brass arch */
.frame { position: relative; margin: 0; border-radius: var(--r); box-shadow: var(--shadow); border: 1px solid var(--hair-lt); }
.frame--arch { border-radius: 140px 140px var(--r) var(--r); }
.frame__cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 4;
  font-size: .82rem; color: var(--text-lt); display: flex; align-items: center; gap: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.frame__cap .mono { color: var(--marigold); font-weight: 700; }

/* ---------- Tile divider (repeated motif) ---------- */
.tile-divider { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 30px 22px; }
.tile-divider svg { width: 30px; height: 30px; }
.tile-divider .rule { height: 1px; flex: 1; max-width: 120px; background: linear-gradient(90deg, transparent, var(--brass)); }
.tile-divider .rule:last-child { background: linear-gradient(270deg, transparent, var(--brass)); }
.tile-divider--footer { padding: 8px 22px 30px; }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(42,12,18,.62); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--hair-lt);
  color: var(--text-lt);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(46,12,18,.95); }
.site-header__inner { display: flex; align-items: center; gap: 16px; min-height: 66px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text-lt); margin-right: auto; }
.brand__word { display: flex; flex-direction: column; line-height: 1; font-family: var(--display); }
.brand__word small { font-style: italic; font-weight: 500; font-size: .82rem; color: var(--brass); letter-spacing: .06em; margin-bottom: 2px; }
.brand__word > span { font-size: 1.5rem; font-weight: 400; color: var(--cream); letter-spacing: .005em; }
.brand__casita { width: 46px; height: 35px; flex: none; color: var(--brass); }
.brand--big .brand__word small { font-size: 1.05rem; }
.brand--big .brand__word > span { font-size: 2.1rem; }
.brand--big .brand__casita { width: 62px; height: 47px; }
.brand__name small { font-family: var(--mono); font-size: .52rem; letter-spacing: .26em; color: var(--marigold); font-weight: 700; margin-top: 3px; }

.nav { display: none; }
.nav a { text-decoration: none; color: var(--text-lt); font-size: .74rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; transition: color .2s ease; }
.nav a:hover { color: var(--brass); }

.site-header__cta { display: flex; align-items: center; gap: 10px; }
.hours-chip {
  display: none; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: .72rem; font-weight: 500; color: var(--text-lt);
  padding: 6px 11px; border: 1px solid var(--hair-lt); border-radius: 999px;
}
.hours-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 3px rgba(63,162,119,.25); }
.hours-chip.is-closed .hours-chip__dot { background: var(--coral); box-shadow: 0 0 0 3px rgba(236,84,112,.25); }

/* mobile hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 11px; background: none; border: 1px solid var(--hair-lt); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text-lt); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: var(--night-3); border-bottom: 1px solid var(--hair-lt);
  padding: 14px 22px 22px; display: flex; flex-direction: column; gap: 12px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  text-decoration: none; color: var(--text-lt); font-family: var(--display); font-size: 1.4rem;
  padding: 11px 0; border-bottom: 1px solid var(--hair-lt);
}
.mobile-nav nav a:active { color: var(--marigold); }

/* =================================================================
   HERO (split brand panel + arch photo + quick-book widget)
   ================================================================= */
.hero { position: relative; background: var(--night); color: var(--text-lt); }
.hero__pin { position: relative; --p: 1; display: flex; flex-direction: column; }
.hero__left { position: relative; z-index: 2; padding: 30px 22px 26px; display: flex; flex-direction: column; }
.hero__eyebrow { font-family: var(--mono); text-transform: uppercase; letter-spacing: .26em; font-size: .66rem; color: var(--brass); margin: 0 0 16px; }
.hero__title { font-family: var(--display); font-weight: 340; font-optical-sizing: auto; font-size: clamp(3.6rem, 22vw, 7rem); line-height: .88; letter-spacing: -0.015em; color: var(--cream); margin: 0; }
.hero__kicker { font-family: var(--mono); text-transform: uppercase; letter-spacing: .22em; font-size: .7rem; color: var(--brass); margin: 16px 0 18px; }
.hero__sub { font-size: 1.04rem; line-height: 1.6; color: var(--muted-lt); max-width: 34ch; }
.hero__cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero__badge { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--brass); }
.hero__badge .laurel { width: 22px; height: 50px; flex: none; }
.hero__badge .laurel--r { transform: scaleX(-1); }
.hero__badge span { font-family: var(--mono); text-transform: uppercase; letter-spacing: .15em; font-size: .58rem; line-height: 1.65; text-align: center; color: var(--muted-lt); }

.hero__media { position: relative; z-index: 1; margin: 0 14px; overflow: hidden; aspect-ratio: 4 / 4.3; border-radius: 50% 50% 16px 16px / 26% 26% 16px 16px; box-shadow: var(--shadow); border: 1px solid var(--hair-lt); }
.hero__media .scene__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__cue { display: none; }

.book-widget { position: relative; margin: -34px 20px 34px; background: rgba(58,15,24,.94); backdrop-filter: blur(10px); border: 1px solid var(--hair-lt); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); z-index: 4; }
.book-widget__title { font-family: var(--mono); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; color: var(--brass); margin: 0 0 12px; }
.book-widget__row { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 12px; }
.book-widget input, .book-widget select { width: 100%; font-family: var(--body); font-size: .9rem; color: var(--text-lt); background: rgba(255,255,255,.07); border: 1px solid var(--hair-lt); border-radius: 10px; padding: 11px 12px; min-height: 46px; color-scheme: dark; }
.book-widget input:focus, .book-widget select:focus { outline: none; border-color: var(--brass); }
.book-widget .select-wrap::after { border-color: var(--brass); right: 11px; }
.book-widget .select-wrap select { padding-right: 26px; }
.book-widget__fine { text-align: center; font-size: .74rem; color: var(--muted-lt); margin-top: 10px; }
.book-widget__fine a { color: var(--cream); font-weight: 600; text-decoration: none; }
.book-widget__success { text-align: center; }
.book-widget__msg { font-size: .82rem; color: var(--muted-lt); line-height: 1.5; }

/* cream CTA (hero) */
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: #fff; color: var(--ink); transform: translateY(-2px); box-shadow: var(--glow); }

/* =================================================================
   ATMOSPHERE STRIP (Delbar)
   ================================================================= */
.atmos { background: var(--cream); padding: 64px 0 56px; }
.atmos__inner { display: grid; gap: 36px; }
.atmos h2 { color: var(--ink); max-width: 14ch; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip {
  font-family: var(--mono); font-size: .76rem; font-weight: 500;
  padding: 8px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--hair-dk); color: var(--text-dk);
}
.atmos__visual .frame { aspect-ratio: 4 / 5; }

/* =================================================================
   THE NIGHT (three acts)
   ================================================================= */
.night { background: var(--cream); padding: 30px 0 70px; }
.acts { display: grid; gap: 26px; }
.act .frame { aspect-ratio: 3 / 4; margin-bottom: 18px; }
.act__time {
  position: absolute; z-index: 4; left: 14px; top: 14px;
  background: rgba(10,24,18,.6); backdrop-filter: blur(4px);
  color: var(--marigold); font-weight: 700; font-size: .8rem;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--hair-lt);
}
.act h3 { color: var(--ink); font-size: 1.55rem; margin-bottom: 8px; }
.act p { color: var(--muted-dk); }

/* =================================================================
   COCKTAILS (dark)
   ================================================================= */
.bar-sec { position: relative; background: var(--night); color: var(--text-lt); padding: 72px 0; overflow: hidden; isolation: isolate; }
.bar-sec__grain { position: absolute; inset: 0; z-index: 0; }
.bar-sec__leaf { width: 360px; top: -80px; right: -120px; opacity: .2; }
.bar-sec__inner { position: relative; z-index: 2; }
.bar-sec h2 { color: var(--text-lt); }

.drinks { list-style: none; padding: 0; margin: 0 0 40px; display: grid; gap: 4px; }
.drink { padding: 22px 0; border-bottom: 1px solid var(--hair-lt); }
.drink:first-child { border-top: 1px solid var(--hair-lt); }
.drink__head { display: flex; align-items: baseline; gap: 14px; }
.drink__head h3 { color: var(--text-lt); font-size: 1.45rem; }
.drink__head .price { margin-left: auto; color: var(--marigold); font-size: 1.1rem; font-weight: 700; }
.drink__head .price::before { content: "$"; opacity: .6; font-size: .8em; }
.drink p { color: var(--muted-lt); margin-top: 6px; max-width: 52ch; }

.batch {
  display: grid; gap: 20px; align-items: center;
  background: linear-gradient(135deg, rgba(236,84,112,.14), rgba(243,162,58,.1));
  border: 1px solid var(--hair-lt); border-radius: var(--r); padding: 28px;
}
.batch h3 { color: var(--text-lt); margin: 6px 0 6px; font-size: 1.5rem; }
.batch p { color: var(--muted-lt); }
.batch .mono { color: var(--marigold); font-weight: 700; }

/* =================================================================
   MENU (cream paper)
   ================================================================= */
.menu-sec { background: var(--cream-2); padding: 70px 0; position: relative; }
.menu-grid { display: grid; gap: 14px; }
.dish {
  background: #FFFBF3; border: 1px solid var(--hair-dk); border-radius: 14px; padding: 20px 20px 18px;
  position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.dish:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(0,0,0,.4); }
.dish--star { border-color: rgba(236,84,112,.4); box-shadow: 0 0 0 1px rgba(236,84,112,.2); }
.dish__row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.dish__row h3 { color: var(--ink); font-size: 1.22rem; }
.dish__row .price { margin-left: auto; font-weight: 700; color: var(--coral-text); }
.dish__row .price::before { content: "$"; opacity: .55; font-size: .8em; }
.dish p { color: var(--muted-dk); font-size: .96rem; }
.tags { display: inline-flex; gap: 6px; margin-top: 12px; }
.tag {
  font-family: var(--mono); font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; background: rgba(63,162,119,.16); color: #2c6e51;
}
.tag--hot { background: rgba(236,84,112,.16); color: var(--coral-text); }
.menu-sec__foot { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 36px; text-align: center; }

/* =================================================================
   WHAT'S ON (dark)
   ================================================================= */
.whatson { background: var(--night-2); color: var(--text-lt); padding: 70px 0; }
.whatson h2 { color: var(--text-lt); }
.lineup { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.gig {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.03); border: 1px solid var(--hair-lt);
  border-radius: 14px; padding: 16px 18px; transition: border-color .2s, background .2s;
}
.gig:hover { border-color: var(--marigold); background: rgba(243,162,58,.06); }
.gig__day {
  font-weight: 700; font-size: .85rem; color: var(--ink);
  background: var(--marigold); border-radius: 9px; padding: 9px 11px; flex: none; min-width: 46px; text-align: center;
}
.gig__body { flex: 1; }
.gig__body h3 { color: var(--text-lt); font-size: 1.22rem; }
.gig__body p { color: var(--muted-lt); font-size: .9rem; }
.gig__time { color: var(--marigold); font-weight: 700; }
.whatson__follow { margin-top: 22px; color: var(--muted-lt); font-size: .95rem; }
.whatson__follow a { color: var(--marigold); font-weight: 600; text-decoration: none; }

/* =================================================================
   PRIVATE EVENTS (Cosme — prominent funnel)
   ================================================================= */
.events { position: relative; background: linear-gradient(165deg, var(--night-3), var(--night) 70%); color: var(--text-lt); padding: 74px 0; overflow: hidden; isolation: isolate; }
.events__grain { position: absolute; inset: 0; z-index: 0; }
.events__leaf { width: 320px; bottom: -90px; left: -100px; opacity: .16; }
.events__inner { position: relative; z-index: 2; display: grid; gap: 40px; }
.events h2 { color: var(--text-lt); }
.events .lead { color: var(--muted-lt); }

.event-types { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.event-types li {
  display: flex; align-items: center; gap: 9px; font-size: .94rem; color: var(--text-lt);
}
.event-types li::before {
  content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--coral); flex: none;
  transform: rotate(45deg);
}
.events__proof { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--hair-lt); }
.events__proof div { display: flex; flex-direction: column; }
.events__proof strong { font-size: 1.7rem; color: var(--marigold); line-height: 1; }
.events__proof span { font-size: .8rem; color: var(--muted-lt); margin-top: 4px; }

/* lead form */
.events__form-wrap { scroll-margin-top: 84px; }
.lead-form, .lead-form__success {
  background: rgba(246,238,224,.97); color: var(--text-dk);
  border-radius: 20px; padding: 30px 26px; box-shadow: var(--shadow);
  border-top: 5px solid var(--marigold);
}
.lead-form__title { color: var(--ink); font-size: 1.7rem; }
.lead-form__sub { color: var(--muted-dk); font-size: .95rem; margin-top: 6px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 7px; color: var(--text-dk); }
.field input, .field select {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--text-dk);
  padding: 13px 14px; border: 1.5px solid #6E6A63; border-radius: 11px; background: #fff;
  min-height: 50px; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--marigold); box-shadow: 0 0 0 3px rgba(243,162,58,.25); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
.select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--coral-dk); border-bottom: 2px solid var(--coral-dk);
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}
.lead-form__fine { text-align: center; font-size: .88rem; color: var(--muted-dk); margin-top: 14px; }
.lead-form__fine a { color: var(--coral-text); font-weight: 600; text-decoration: none; }

.lead-form__success { text-align: center; }
.lead-form__success .ic--xl { width: 54px; height: 54px; margin: 0 auto 14px; color: var(--leaf); padding: 12px; border: 2px solid var(--leaf); border-radius: 50%; }
.lead-form__success h3 { color: var(--ink); font-size: 1.6rem; }
.lead-form__success p { color: var(--muted-dk); margin-top: 10px; }

/* =================================================================
   PROOF / TESTIMONIALS
   ================================================================= */
.proof { background: var(--cream); padding: 64px 0; }
.rating { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 40px; text-align: center; }
.rating__stars { display: inline-flex; gap: 3px; color: var(--marigold); }
.rating__stars svg { width: 26px; height: 26px; }
.rating__text { color: var(--text-dk); font-size: 1.05rem; }
.rating__text strong { font-size: 1.3rem; color: var(--coral-text); }
.quotes { display: grid; gap: 18px; }
.quote { margin: 0; background: #FFFBF3; border: 1px solid var(--hair-dk); border-radius: 16px; padding: 26px; position: relative; }
.quote::before { content: "\201C"; font-family: var(--display); font-size: 4rem; color: var(--coral); opacity: .25; position: absolute; top: 2px; left: 16px; line-height: 1; }
.quote blockquote { margin: 10px 0 0; font-family: var(--display); font-size: 1.18rem; line-height: 1.4; color: var(--ink); }
.quote figcaption { margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--text-dk); }
.quote figcaption span { color: var(--muted-dk); font-weight: 400; }

/* =================================================================
   VISIT
   ================================================================= */
.visit { background: var(--night); color: var(--text-lt); padding: 70px 0; }
.visit h2 { color: var(--text-lt); }
.visit__inner { display: grid; gap: 36px; }
.visit__addr { font-family: var(--mono); font-size: 1rem; line-height: 1.7; color: var(--text-lt); margin: 22px 0; }
.hours { margin: 26px 0; }
.hours h3 { color: var(--marigold); font-size: 1rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.hours__table { width: 100%; border-collapse: collapse; font-size: .96rem; max-width: 360px; }
.hours__table th { text-align: left; font-weight: 600; color: var(--text-lt); padding: 9px 0; border-bottom: 1px solid var(--hair-lt); }
.hours__table td { text-align: right; font-family: var(--mono); color: var(--muted-lt); padding: 9px 0; border-bottom: 1px solid var(--hair-lt); }
.hours__table tr.is-today th, .hours__table tr.is-today td { color: var(--marigold); }
.hours__note { font-size: .82rem; color: var(--muted-lt); margin-top: 12px; }
.visit__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.visit__cta .btn--ghost { color: var(--text-lt); border-color: var(--hair-lt); }
.visit__cta .btn--ghost:hover { border-color: var(--marigold); color: var(--marigold); }
.visit__detail { margin-top: 22px; font-size: .88rem; color: var(--muted-lt); }
.visit__map .frame { aspect-ratio: 4 / 3; width: 100%; min-height: 280px; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--night-3); color: var(--text-lt); padding-top: 8px; padding-bottom: 100px; }
.site-footer__inner { display: grid; gap: 32px; padding-top: 20px; }
.brand__name--big { font-size: 1.9rem; }
.site-footer__brand p { color: var(--muted-lt); margin-top: 14px; max-width: 30ch; font-size: .95rem; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 1px solid var(--hair-lt); border-radius: 12px; color: var(--text-lt); transition: all .2s ease;
}
.socials a:hover { border-color: var(--marigold); color: var(--marigold); }
.site-footer__col h4 { font-family: var(--mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--marigold); margin-bottom: 14px; }
.site-footer__col a, .site-footer__col p { display: block; color: var(--muted-lt); text-decoration: none; font-size: .95rem; line-height: 1.8; margin-bottom: 8px; transition: color .2s; }
.site-footer__col a:hover { color: var(--text-lt); }
.mono--foot { font-size: .85rem; }
.site-footer__base {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--hair-lt);
  font-size: .82rem; color: var(--muted-lt);
}

/* =================================================================
   STICKY MOBILE ACTION BAR (Strange Taco Bar)
   ================================================================= */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(40,12,18,.95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--hair-lt);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 11px 4px; text-decoration: none; color: var(--muted-lt); font-size: .68rem; font-weight: 600;
  min-height: 58px;
}
.action-bar a:active { color: var(--marigold); }
.action-bar .ic { width: 22px; height: 22px; }
.action-bar__primary { color: var(--ink) !important; background: var(--marigold); position: relative; }
.action-bar__primary .ic { width: 24px; height: 24px; }

/* =================================================================
   REVEAL ANIMATION
   ================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .dish, .gig { transition: none; }
}

/* =================================================================
   HERO DEPTH — glow on lit windows + haze where city meets sky
   ================================================================= */
.scene__skyline > g:last-child rect { filter: drop-shadow(0 0 3px rgba(243,162,58,.9)); }
.scene--rooftop .scene__sky::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 27%; height: 48px;
  background: linear-gradient(to top, rgba(243,162,58,.16), transparent);
  filter: blur(8px); pointer-events: none;
}

/* ---------- Act-panel motifs (so the storytelling scenes aren't bare swatches) ---------- */
.act__motif { position: absolute; z-index: 2; right: 14px; bottom: 14px; width: 30px; height: 30px; color: var(--marigold); opacity: .55; }
.act__sun { position: absolute; z-index: 0; right: -8px; top: 16px; width: 130px; height: 130px; fill: rgba(243,162,58,.4); filter: blur(2px); }
.act__leaf { position: absolute; z-index: 1; left: -28px; bottom: -26px; width: 150px; opacity: .32; }
.act__lights { position: absolute; z-index: 1; left: 0; right: 0; top: 16px; width: 100%; height: 52px; }
.act__lights circle { fill: var(--marigold); filter: drop-shadow(0 0 4px rgba(243,162,58,.9)); }

/* ---------- Mobile today's-hours strip (live status, always visible) ---------- */
.hours-strip {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 22px; background: var(--night-3);
  border-bottom: 1px solid var(--hair-lt);
  font-family: var(--mono); font-size: .74rem; color: var(--text-lt);
}
.hours-strip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 3px rgba(63,162,119,.25); flex: none; }
.hours-strip__dot.is-closed { background: var(--coral); box-shadow: 0 0 0 3px rgba(236,84,112,.25); }
.hours-strip__text { color: var(--text-lt); letter-spacing: -0.01em; }
.hours-strip__link { margin-left: auto; color: var(--marigold); text-decoration: none; font-weight: 700; white-space: nowrap; }

/* ---------- Near-fold trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center; align-items: center;
  background: var(--night-2); border-bottom: 1px solid var(--hair-lt);
  padding: 14px 22px; font-size: .85rem; text-align: center;
}
.trust-strip__rating { display: inline-flex; align-items: center; gap: 7px; color: var(--text-lt); font-family: var(--mono); }
.trust-strip__rating .ic { color: var(--marigold); width: 16px; height: 16px; }
.trust-strip__rating strong { color: var(--marigold); font-size: 1rem; }
.trust-strip__press { color: var(--muted-lt); }
.trust-strip__press em { color: var(--text-lt); font-style: italic; }

/* =================================================================
   STORY (owner / founder)
   ================================================================= */
.story { background: var(--cream); padding: 64px 0; }
.story__inner { display: grid; gap: 32px; }
.story h2 { color: var(--ink); max-width: 16ch; }
.story__visual { aspect-ratio: 4 / 5; }

/* =================================================================
   RESERVE A TABLE (primary funnel)
   ================================================================= */
.reserve { background: var(--cream); padding: 64px 0; }
.reserve__inner { display: grid; gap: 30px; }
.reserve h2 { color: var(--ink); max-width: 12ch; }
.reserve__events { margin-top: 20px; font-size: .96rem; color: var(--muted-dk); }
.reserve__events a { color: var(--coral-text); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid transparent; transition: border-color .2s ease; }
.reserve__events a:hover { border-color: var(--coral-text); }
.book-form, .book-form__success {
  background: #FFFBF3; border: 1px solid var(--hair-dk); border-radius: 20px;
  padding: 28px 24px; box-shadow: var(--shadow); border-top: 5px solid var(--marigold);
}
.book-form__title { color: var(--ink); font-size: 1.5rem; margin-bottom: 18px; }
.book-form__fine { text-align: center; font-size: .88rem; color: var(--muted-dk); margin-top: 14px; }
.book-form__fine a { color: var(--coral-text); font-weight: 600; text-decoration: none; }
.book-form__success { text-align: center; }
.book-form__success .ic--xl { width: 54px; height: 54px; margin: 0 auto 14px; color: var(--leaf); padding: 12px; border: 2px solid var(--leaf); border-radius: 50%; }
.book-form__success h3 { color: var(--ink); font-size: 1.5rem; }
.book-form__success p { color: var(--muted-dk); margin-top: 10px; }

/* =================================================================
   PHOTO LAYER — the real shoot drops into the scene slots
   ================================================================= */
.scene__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.scene__scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.scene__scrim--hero {
  background:
    linear-gradient(76deg, rgba(42,12,18,.84) 0%, rgba(42,12,18,.4) 44%, transparent 70%),
    linear-gradient(0deg, rgba(42,12,18,.72) 0%, transparent 34%);
}
.scene__scrim--cap { background: linear-gradient(0deg, rgba(28,8,12,.82) 0%, transparent 42%); }
.scene__scrim--soft { background: linear-gradient(0deg, rgba(28,8,12,.6) 0%, transparent 54%); }

/* dish photos (signature plates) */
.dish__img { display: block; width: calc(100% + 40px); height: 172px; object-fit: cover; margin: -20px -20px 16px; border-radius: 13px 13px 0 0; }

/* cocktail trio */
.drink-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 2px 0 40px; }
.drink-shot { position: relative; margin: 0; aspect-ratio: 3 / 4; border-radius: 14px; overflow: hidden; border: 1px solid var(--hair-lt); }
.drink-shot img, .drink-shot video { width: 100%; height: 100%; object-fit: cover; display: block; }
.drink-shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 9px;
  font-family: var(--mono); font-size: .72rem; color: var(--text-lt);
  background: linear-gradient(0deg, rgba(28,8,12,.86), transparent);
}

/* faint atmosphere backgrounds behind dark sections */
.bg-photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; pointer-events: none; }
.whatson, .visit { position: relative; overflow: hidden; }
.whatson .wrap, .visit .wrap { position: relative; z-index: 2; }
.whatson .bg-photo { opacity: .18; }
.events .bg-photo { opacity: .26; }
.visit .bg-photo { opacity: .14; }

/* =================================================================
   RESPONSIVE  — tablet
   ================================================================= */
@media (min-width: 680px) {
  .wrap { padding: 0 32px; }
  .acts { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .drinks { grid-template-columns: 1fr 1fr; gap: 0 36px; }
  .batch { grid-template-columns: 1fr auto; }
  .menu-sec__foot { flex-direction: row; justify-content: center; }
  .hero__cta { flex-direction: row; }
  .hero__sub { font-size: 1.22rem; }
  .site-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .site-footer__base { font-size: .85rem; }
}

/* =================================================================
   RESPONSIVE  — desktop
   ================================================================= */
@media (min-width: 960px) {
  body { font-size: 17px; }
  .nav { display: flex; gap: 28px; margin-right: 28px; }
  .hours-chip { display: inline-flex; }
  .nav-toggle { display: none; }
  .action-bar { display: none; }
  .hours-strip { display: none; }
  .site-footer { padding-bottom: 40px; }

  .atmos { padding: 96px 0 84px; }
  .atmos__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
  .atmos__visual .frame { aspect-ratio: 5 / 6; }

  .night { padding: 40px 0 96px; }
  .bar-sec, .whatson, .menu-sec, .proof, .visit, .events, .reserve, .story { padding: 100px 0; }

  .reserve__inner { grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .story__inner { grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
  .events__inner { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .visit__inner { grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
  .visit__map .frame { aspect-ratio: 4 / 4.4; }

  .hide-sm { display: inline-flex !important; }
  /* HERO — settled split "window" at --p:1; JS animates --p:0→1 for the scroll zoom-out */
  .hero { min-height: 92vh; }
  .hero__pin { display: block; position: relative; min-height: 92vh; overflow: hidden; }
  .hero__left { position: absolute; z-index: 2; left: 0; top: 0; width: 44%; height: 100%; justify-content: center; padding: 64px 56px 64px clamp(40px, 6vw, 96px); }
  .hero__media {
    position: absolute; z-index: 1; margin: 0; aspect-ratio: auto; border: none; box-shadow: none;
    top: calc(var(--p) * 26px); right: calc(var(--p) * 26px); bottom: 0; left: calc(var(--p) * 44%);
    border-radius: calc(var(--p) * 46%) calc(var(--p) * 46%) 0 0 / calc(var(--p) * 34%) calc(var(--p) * 34%) 0 0;
  }
  .hero__media .scene__img { transform: scale(calc(1 + (1 - var(--p)) * 0.14)); transform-origin: 72% 46%; }
  .hero__media .scene__scrim--hero { opacity: calc(0.2 + var(--p) * 0.25); }
  .book-widget { position: absolute; z-index: 3; right: 5%; bottom: 7%; width: 400px; margin: 0; opacity: clamp(0, calc((var(--p) - 0.55) * 2.6), 1); transform: translateY(calc((1 - var(--p)) * 18px)); }
  .book-widget__row { grid-template-columns: 1.3fr 1fr 1fr; gap: 6px; }
  .book-widget input, .book-widget select { font-size: .78rem; padding: 9px 8px; }
  .book-widget .select-wrap select { padding-right: 22px; }

  /* cinematic scroll: tall hero + pinned stage (JS adds .hero--cine on desktop + motion) */
  .hero--cine { height: 200vh; min-height: 0; }
  .hero--cine .hero__pin { position: sticky; top: 0; height: 100vh; min-height: 0; }
  /* pure full-bleed image at p=0 — the entire brand panel fades in during the zoom-out */
  .hero--cine .hero__left {
    opacity: clamp(0, calc((var(--p) - 0.25) * 2.2), 1);
    pointer-events: none;
  }
  .hero--cine.hero--settled .hero__left { pointer-events: auto; }
  .hero--cine .book-widget { pointer-events: none; }
  .hero--cine.hero--settled .book-widget { pointer-events: auto; }
  .hero--cine .hero__kicker, .hero--cine .hero__sub, .hero--cine .hero__cta, .hero--cine .hero__badge {
    opacity: clamp(0, calc((var(--p) - 0.45) * 2.4), 1);
    transform: translateY(calc((1 - var(--p)) * 12px));
  }
  .hero--cine .hero__cue { display: inline-flex; align-items: center; gap: 8px; position: absolute; z-index: 3; left: clamp(40px, 6vw, 96px); bottom: 34px; color: var(--brass); font-family: var(--mono); text-transform: uppercase; letter-spacing: .2em; font-size: .62rem; text-decoration: none; opacity: calc(1 - var(--p)); }
  .hero--cine .hero__cue-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); }

  .lineup { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (min-width: 1140px) {
  .hero__title { font-size: 7.4rem; }
}

/* =================================================================
   MOCKUP SECTIONS — signature · story collage · promo · gallery · newsletter
   ================================================================= */
.link-arrow--light { color: var(--brass); }
.link-arrow--light:hover { border-color: var(--brass); }

/* Signature Experience */
.signature { background: var(--night); color: var(--text-lt); padding: 64px 0; }
.signature__inner { display: grid; gap: 36px; }
.signature__intro h2 { color: var(--cream); font-weight: 360; font-size: clamp(2rem, 7vw, 3rem); line-height: 1.06; }
.signature__intro .link-arrow { margin-top: 22px; }
.signature__cards { display: grid; gap: 18px; }
.sig-card { text-decoration: none; color: var(--text-lt); display: block; }
.sig-card__img { position: relative; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid var(--hair-lt); border-radius: 50% 50% 12px 12px / 22% 22% 12px 12px; }
.sig-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.sig-card:hover .sig-card__img img, .sig-card:focus-visible .sig-card__img img { transform: scale(1.06); }
.sig-card h3 { margin-top: 16px; font-family: var(--mono); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--cream); }
.sig-card p { margin-top: 6px; color: var(--muted-lt); font-size: .9rem; }
.sig-card__go { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-top: 14px; border: 1px solid var(--hair-lt); border-radius: 50%; color: var(--brass); transition: background .2s, color .2s; }
.sig-card:hover .sig-card__go { background: var(--brass); color: var(--ink); }

/* Our Story collage */
.story__copy .link-arrow { margin-top: 22px; }
.story__collage { position: relative; width: 100%; aspect-ratio: 1 / 0.92; min-height: 320px; }
.collage-item { position: absolute; margin: 0; }
.collage-arch { left: 26%; top: 2%; width: 50%; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 46% 46% 8px 8px / 30% 30% 8px 8px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.12); }
.collage-arch img { width: 100%; height: 100%; object-fit: cover; }
.collage-polaroid { left: 0; top: 34%; width: 42%; background: #fff; padding: 8px 8px 24px; transform: rotate(-6deg); box-shadow: var(--shadow); border: 1px solid var(--hair-dk); }
.collage-polaroid img { display: block; width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.collage-card { right: 0; top: 14%; width: 30%; min-width: 104px; aspect-ratio: 3 / 4; background: #FBF2E2; border: 1px solid var(--hair-dk); border-radius: 8px; transform: rotate(5deg); box-shadow: var(--shadow); }
.collage-olive { position: absolute; left: 14%; top: 9%; width: 32%; }
.collage-seal { position: absolute; right: 12%; bottom: 12%; width: 46%; }

/* Menu + Private Events promo band */
.promo { display: grid; grid-template-columns: 1fr; }
.promo__card { display: grid; grid-template-columns: 1fr; background: var(--night); color: var(--text-lt); overflow: hidden; }
.promo__card--events { background: var(--night-2); }
.promo__text { padding: 38px 26px; display: flex; flex-direction: column; justify-content: center; }
.promo__text h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 5vw, 2.1rem); color: var(--cream); margin: 4px 0 12px; line-height: 1.12; }
.promo__text p { color: var(--muted-lt); font-size: .98rem; line-height: 1.6; }
.promo__text .link-arrow { margin-top: 20px; }
.promo__img img { display: block; width: 100%; height: 100%; min-height: 220px; object-fit: cover; }

/* Gallery */
.gallery { background: var(--cream); padding: 56px 0; }
.gallery__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.gallery__head .eyebrow { margin: 0; }
.gallery__nav { display: flex; gap: 8px; }
.gallery__btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--hair-dk); background: transparent; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.gallery__btn:hover { background: var(--ink); color: var(--cream); }
.gallery__track { list-style: none; margin: 0; padding: 4px 0; display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track li { flex: 0 0 auto; width: 260px; aspect-ratio: 1; scroll-snap-align: start; border-radius: 14px; overflow: hidden; border: 1px solid var(--hair-dk); }
.gallery__track img { width: 100%; height: 100%; object-fit: cover; }

/* Newsletter */
.newsletter { background: var(--night-2); color: var(--text-lt); padding: 56px 0; }
.newsletter__inner { display: grid; gap: 22px; }
.newsletter__copy h2 { color: var(--cream); font-weight: 360; }
.newsletter__copy p { color: var(--muted-lt); margin-top: 8px; max-width: 44ch; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__form input { flex: 1; min-width: 200px; font-family: var(--body); font-size: 1rem; color: var(--text-lt); background: rgba(255,255,255,.07); border: 1px solid var(--hair-lt); border-radius: 999px; padding: 13px 20px; min-height: 50px; color-scheme: dark; }
.newsletter__form input:focus { outline: none; border-color: var(--brass); }
.newsletter__done { color: var(--brass); font-weight: 600; }

/* Footer (expanded) */
.site-footer__brand .brand { margin: 0 0 14px; }
.site-footer__visit .btn { margin-top: 6px; }
.site-footer__legal a { display: inline; color: var(--muted-lt); text-decoration: none; }
.site-footer__legal a:hover { color: var(--text-lt); }
.socials a:hover { color: var(--brass); }

@media (min-width: 680px) {
  .signature__cards { grid-template-columns: repeat(3, 1fr); }
  .gallery__track li { width: 300px; }
  .site-footer__inner { grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr; }
}

@media (min-width: 960px) {
  .signature { padding: 100px 0; }
  .signature__inner { grid-template-columns: 0.85fr 1.6fr; gap: 56px; align-items: center; }
  .promo { grid-template-columns: 1fr 1fr; }
  .promo__card { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .promo__text { padding: 56px 44px; }
  .gallery { padding: 90px 0; }
  .newsletter { padding: 80px 0; }
  .newsletter__inner { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .story__collage { min-height: 460px; }
}
