/* ==========================================================================
   Santoro's Italian Kitchen — Lake Oconee
   "Little Italy at the Lake" design system
   Cream parchment + brick red + basil green + candlelight gold
   Fraunces (display) · Inter (body) · Italianno (script accents)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500..700;1,9..144,500..600&family=Inter:wght@400;500;600;700&family=Italianno&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* palette */
  --cream:        #F7F0E1;
  --cream-2:      #EFE3CC;
  --cream-3:      #E6D7B8;
  --espresso:     #1F130B;
  --espresso-2:   #2B1B10;
  --espresso-3:   #382415;
  --ink:          #2B1B10;
  --muted:        #6E563E;
  --brick:        #A12D21;
  --brick-dark:   #7E1F16;
  --brick-deep:   #5E150E;
  --basil:        #3A5538;
  --basil-dark:   #2A4028;
  --gold:         #C9953F;
  --gold-bright:  #E3B260;
  --light:        #F7EBD7;
  --light-muted:  #D8C1A1;

  /* type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script:  'Italianno', 'Brush Script MT', cursive;

  /* scale */
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(31, 19, 11, .08);
  --shadow-md: 0 10px 30px rgba(31, 19, 11, .14);
  --shadow-lg: 0 24px 60px rgba(31, 19, 11, .22);
  --container: 1180px;
  --header-h:  78px;

  /* z-scale */
  --z-nav: 50; --z-menu: 60; --z-lightbox: 80; --z-top: 40;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
a { color: var(--brick); text-decoration: none; }
a:hover { color: var(--brick-dark); }

::selection { background: var(--brick); color: var(--light); }

/* custom scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brick), var(--brick-dark));
  border-radius: 8px; border: 3px solid var(--cream-2);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--espresso); color: var(--light);
  padding: 10px 18px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

section { position: relative; }

/* ---------- Utility type ---------- */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: var(--brick);
  display: block;
}
.on-dark .script, .script--gold { color: var(--gold-bright); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brick);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.on-dark .eyebrow { color: var(--gold-bright); }

.lead { font-size: 1.16rem; color: var(--muted); }
.on-dark .lead { color: var(--light-muted); }

/* tricolore ribbon — the Italian-flag signature divider */
.tricolore {
  display: block; width: 86px; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg,
    var(--basil) 0 33.4%, var(--cream) 33.4% 66.7%, var(--brick) 66.7% 100%);
  box-shadow: 0 1px 4px rgba(31,19,11,.25);
  margin: 18px 0 26px;
}
.tricolore--center { margin-inline: auto; }
.on-dark .tricolore {
  background: linear-gradient(90deg,
    #4E7048 0 33.4%, var(--light) 33.4% 66.7%, #C04A3B 66.7% 100%);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--espresso);
  color: var(--light-muted);
  font-size: .82rem;
  position: relative; z-index: calc(var(--z-nav) + 1);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 38px; padding-block: 4px;
}
.topbar a { color: var(--light); font-weight: 500; }
.topbar a:hover { color: var(--gold-bright); }
.topbar__loc { display: inline-flex; align-items: center; gap: 7px; }
.topbar__loc svg { color: var(--gold); flex: none; }

.status-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; letter-spacing: .04em;
}
.status-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 0 rgba(201,149,63,.5);
}
.status-chip.is-open .dot   { background: #6FBF73; animation: pulse 2.4s infinite; }
.status-chip.is-closed .dot { background: #D96A5B; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(111,191,115,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(111,191,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,191,115,0); }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(247, 240, 225, 0);
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-solid {
  background: rgba(247, 240, 225, .94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(31,19,11,.08), var(--shadow-sm);
}
/* over the dark hero the header text is light until it solidifies */
.header-dark .site-header:not(.is-solid) .nav__link { color: var(--light); }
.header-dark .site-header:not(.is-solid) .brand__name { color: var(--light); }
.header-dark .site-header:not(.is-solid) .brand__tag  { color: var(--light-muted); }
.header-dark .site-header:not(.is-solid) .nav__burger { color: var(--light); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand__name {
  font-family: var(--font-script);
  font-size: 2.35rem; color: var(--ink);
  transition: color .35s ease;
}
.brand__tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted);
  transition: color .35s ease;
}

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative; display: inline-block;
  padding: 12px 14px; font-size: .92rem; font-weight: 600;
  color: var(--ink); transition: color .25s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 7px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link:hover { color: var(--brick); }
.nav__link[aria-current="page"] { color: var(--brick); }
.header-dark .site-header:not(.is-solid) .nav__link:hover,
.header-dark .site-header:not(.is-solid) .nav__link[aria-current="page"] { color: var(--gold-bright); }

.nav__cta { margin-left: 10px; }

.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--ink); padding: 10px; min-width: 44px; min-height: 44px;
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  pointer-events: none; overflow: hidden; visibility: hidden;
  transition: visibility 0s linear .45s;
}
.mobile-menu.is-open { pointer-events: auto; visibility: visible; transition-delay: 0s; }
.mobile-menu__backdrop {
  position: absolute; inset: 0; background: rgba(31,19,11,.55);
  opacity: 0; transition: opacity .35s ease;
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--espresso);
  color: var(--light);
  padding: 28px 28px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(102%);
  transition: transform .45s cubic-bezier(.22,1,.3,1);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end; background: none; border: 0; cursor: pointer;
  color: var(--light); padding: 10px; min-width: 44px; min-height: 44px;
}
.mobile-menu__brand { font-family: var(--font-script); font-size: 2.6rem; color: var(--gold-bright); margin-bottom: 12px; }
.mobile-menu__link {
  display: block; padding: 14px 6px; font-family: var(--font-display);
  font-size: 1.5rem; color: var(--light);
  border-bottom: 1px solid rgba(247,235,215,.12);
  transition: color .25s ease, padding-left .25s ease;
}
.mobile-menu__link:hover, .mobile-menu__link[aria-current="page"] { color: var(--gold-bright); padding-left: 14px; }
.mobile-menu__foot { margin-top: auto; padding-top: 26px; font-size: .9rem; color: var(--light-muted); }
.mobile-menu__foot a { color: var(--gold-bright); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 30px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  letter-spacing: .03em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn svg { flex: none; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }

/* glossy sheen sweep */
.btn::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%;
  width: 55%; transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transition: left .6s ease;
}
.btn:hover::before { left: 130%; }

.btn--primary {
  background: linear-gradient(160deg, var(--brick), var(--brick-dark));
  color: var(--light);
  box-shadow: 0 8px 22px rgba(126,31,22,.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(126,31,22,.45);
  color: var(--light);
}

.btn--gold {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: var(--espresso);
  box-shadow: 0 8px 22px rgba(201,149,63,.35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201,149,63,.5); color: var(--espresso); }

.btn--outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
  z-index: 0;
}
.btn--outline::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, var(--brick), var(--brick-dark));
  transform: translateY(102%); transition: transform .35s cubic-bezier(.22,1,.3,1);
}
.btn--outline:hover { color: var(--light); border-color: var(--brick-dark); }
.btn--outline:hover::after { transform: translateY(0); }

.btn--outline-light { background: transparent; color: var(--light); border-color: rgba(247,235,215,.7); z-index: 0; }
.btn--outline-light::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  transform: translateY(102%); transition: transform .35s cubic-bezier(.22,1,.3,1);
}
.btn--outline-light:hover { color: var(--espresso); border-color: var(--gold); }
.btn--outline-light:hover::after { transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative; display: grid; place-items: center;
  min-height: calc(100svh + 0px);
  margin-top: calc(-1 * (var(--header-h) + 38px)); /* sit beneath transparent header+topbar */
  padding: calc(var(--header-h) + 90px) 0 110px;
  color: var(--light);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 105%, rgba(31,19,11,.35), transparent 60%),
    linear-gradient(180deg, rgba(31,19,11,.78) 0%, rgba(31,19,11,.56) 40%, rgba(31,19,11,.84) 100%);
}
.hero__content { text-align: center; max-width: 880px; padding-inline: 24px; position: relative; }
.hero__script { font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--gold-bright); display: block; }
.hero__title {
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  font-weight: 700; color: var(--light);
  margin: 6px 0 18px; letter-spacing: -.01em;
}
.hero__title em { font-style: italic; color: var(--gold-bright); }
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: var(--light-muted); max-width: 620px; margin: 0 auto 34px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero__meta {
  margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center;
  font-size: .88rem; color: var(--light-muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { color: var(--gold-bright); flex: none; }

/* short page hero */
.hero--page { min-height: 64svh; padding-bottom: 80px; }
.hero--page .hero__title { font-size: clamp(2.5rem, 5.6vw, 4.2rem); }

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--light-muted); font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  cursor: pointer; z-index: 2; padding: 8px;
  background: none; border: 0; font-family: inherit;
}
.scroll-cue__mouse {
  width: 26px; height: 42px; border: 2px solid rgba(247,235,215,.65);
  border-radius: 14px; position: relative;
}
.scroll-cue__mouse::after {
  content: ""; position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--gold-bright);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60%      { transform: translate(-50%, 14px); opacity: 0; }
  61%      { transform: translate(-50%, 0); opacity: 0; }
}

/* string lights (built by JS into .hero) */
.string-lights {
  position: absolute; top: calc(var(--header-h) + 30px); left: -2%; width: 104%;
  z-index: 1; pointer-events: none;
  transform-origin: 50% 0;
  animation: lights-sway 9s ease-in-out infinite alternate;
}
.string-lights .bulb-glass { animation: bulb-flicker 4.2s ease-in-out infinite; }
.string-lights .bulb-halo  { animation: halo-breathe 4.2s ease-in-out infinite; }
@keyframes lights-sway { from { transform: rotate(.5deg); } to { transform: rotate(-.5deg); } }
@keyframes bulb-flicker {
  0%, 100% { opacity: .96; } 48% { opacity: .82; } 52% { opacity: .95; } 76% { opacity: .88; }
}
@keyframes halo-breathe {
  0%, 100% { opacity: .55; } 50% { opacity: .3; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--brick);
  border-block: 4px solid var(--gold);
  color: var(--light); overflow: hidden;
  padding: 13px 0;
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 18px; padding-inline: 18px;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; letter-spacing: .04em; white-space: nowrap;
}
.marquee__item svg { color: var(--gold-bright); flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--cream-2); }
.section--dark {
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(201,149,63,.10), transparent 55%),
    linear-gradient(180deg, var(--espresso) 0%, var(--espresso-2) 100%);
  color: var(--light);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--light); }
.section--dark p { color: var(--light-muted); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px); align-items: center;
}
.split--rev > .split__media { order: 2; }

/* ---------- Imagery ---------- */
.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.3,1); }
.frame:hover img { transform: scale(1.05); }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(247,235,215,.4); border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

/* polaroid collage */
.polaroids { position: relative; min-height: 520px; }
.polaroid {
  position: absolute; background: #FFFDF6; padding: 12px 12px 44px;
  border-radius: 6px; box-shadow: var(--shadow-md);
  transition: transform .45s cubic-bezier(.22,1,.3,1), box-shadow .45s ease, z-index 0s;
  will-change: transform;
}
.polaroid img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.polaroid figcaption {
  position: absolute; left: 0; right: 0; bottom: 10px; text-align: center;
  font-family: var(--font-script); font-size: 1.5rem; color: var(--espresso-3);
}
.polaroid--1 { width: 58%; aspect-ratio: 4/4.4; top: 0; left: 0; transform: rotate(-4deg); z-index: 1; }
.polaroid--2 { width: 52%; aspect-ratio: 4/4.4; top: 16%; right: 0; transform: rotate(3.5deg); z-index: 2; }
.polaroid--3 { width: 56%; aspect-ratio: 4/4.2; bottom: 0; left: 10%; transform: rotate(-1.5deg); z-index: 3; }
.polaroid:hover { transform: rotate(0deg) scale(1.04); z-index: 5; box-shadow: var(--shadow-lg); }

/* stamp ornament */
.stamp {
  position: absolute; right: -26px; top: -26px; width: 110px; height: 110px;
  z-index: 4; pointer-events: none;
  animation: stamp-spin 26s linear infinite;
}
@keyframes stamp-spin { to { transform: rotate(360deg); } }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 54px;
}
.stat {
  text-align: center; padding: 30px 18px;
  background: #FFFDF6; border-radius: var(--radius);
  border: 1px solid rgba(31,19,11,.07);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.7rem); color: var(--brick); line-height: 1;
}
.stat__label { margin-top: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Dish cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.card {
  position: relative; display: flex; flex-direction: column;
  background: #FFFDF6; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(31,19,11,.08);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.22,1,.3,1), box-shadow .35s ease, border-color .35s ease;
  cursor: pointer; text-decoration: none; color: inherit;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,149,63,.5); color: inherit; }
.card__media { aspect-ratio: 4/3.1; overflow: hidden; position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.3,1); }
.card:hover .card__media img { transform: scale(1.08); }
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31,19,11,.35));
  opacity: 0; transition: opacity .35s ease;
}
.card:hover .card__media::after { opacity: 1; }
.card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(31,19,11,.82); color: var(--gold-bright);
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body h3 { font-size: 1.32rem; margin: 0; }
.card__body p { font-size: .94rem; color: var(--muted); margin: 0; flex: 1; }
.card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brick); margin-top: 8px;
}
.card__link svg { transition: transform .25s ease; }
.card:hover .card__link svg { transform: translateX(5px); }

/* ---------- Wood-fired oven feature ---------- */
.oven { overflow: hidden; }
.oven::before {
  content: ""; position: absolute; left: -10%; bottom: -30%;
  width: 70%; height: 90%;
  background: radial-gradient(closest-side, rgba(224,128,48,.22), rgba(161,45,33,.10), transparent 75%);
  filter: blur(40px);
  animation: ember-glow 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ember-glow {
  from { opacity: .65; transform: scale(1) translateY(0); }
  to   { opacity: 1;   transform: scale(1.12) translateY(-12px); }
}
.oven .frame::after { border-color: rgba(247,235,215,.25); }
.oven__flames { display: inline-flex; gap: 4px; margin-bottom: 16px; }
.oven__flames svg { animation: flame-dance 1.6s ease-in-out infinite; transform-origin: 50% 100%; }
.oven__flames svg:nth-child(2) { animation-delay: .35s; }
.oven__flames svg:nth-child(3) { animation-delay: .7s; }
@keyframes flame-dance {
  0%, 100% { transform: scaleY(1) rotate(0deg); }
  35%      { transform: scaleY(1.18) rotate(-3deg); }
  70%      { transform: scaleY(.92) rotate(3deg); }
}
.oven__points { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; gap: 14px; }
.oven__points li { display: flex; gap: 14px; align-items: flex-start; color: var(--light-muted); }
.oven__points svg { flex: none; color: var(--gold-bright); margin-top: 3px; }
.oven__points strong { color: var(--light); }

/* ---------- Experience teasers (private dining / lounge) ---------- */
.teasers { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.teaser {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 440px; display: flex; align-items: flex-end;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .35s cubic-bezier(.22,1,.3,1), box-shadow .35s ease;
}
.teaser:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.teaser img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.3,1);
}
.teaser:hover img { transform: scale(1.07); }
.teaser::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(31,19,11,.18) 15%, rgba(31,19,11,.55) 55%, rgba(31,19,11,.92) 100%);
  transition: background .35s ease;
}
.teaser__body { position: relative; z-index: 2; padding: 34px; color: var(--light); }
.teaser__body .script { font-size: 2rem; color: var(--gold-bright); }
.teaser__body h3 { color: var(--light); font-size: 1.9rem; margin: 2px 0 10px; }
.teaser__body p { color: var(--light-muted); max-width: 420px; margin-bottom: 16px; }
.teaser__cta {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--gold-bright); font-weight: 700; font-size: .85rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.teaser__cta svg { transition: transform .25s ease; }
.teaser:hover .teaser__cta svg { transform: translateX(5px); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: #FFFDF6; border-radius: var(--radius-lg);
  padding: 34px 30px 28px; position: relative;
  border: 1px solid rgba(31,19,11,.08); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote__mark {
  font-family: var(--font-script); font-size: 4.4rem; line-height: .6;
  color: var(--gold); margin-bottom: 18px;
}
.quote p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--ink); flex: 1; }
.quote footer { margin-top: 18px; display: flex; align-items: center; gap: 12px; font-size: .88rem; font-weight: 600; color: var(--muted); }
.quote__stars { display: inline-flex; gap: 2px; color: var(--gold); }

/* ---------- Visit / hours ---------- */
.visit { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table th, .hours-table td { text-align: left; padding: 11px 6px; border-bottom: 1px dashed rgba(31,19,11,.18); font-size: .98rem; }
.section--dark .hours-table th, .section--dark .hours-table td { border-color: rgba(247,235,215,.16); }
.hours-table th { font-weight: 600; }
.hours-table td { text-align: right; color: var(--muted); }
.section--dark .hours-table td { color: var(--light-muted); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--gold-bright); font-weight: 700; }

.status-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  margin-bottom: 14px;
  background: rgba(111,191,115,.14); color: #5BA660;
  border: 1px solid rgba(111,191,115,.4);
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-pill.is-closed { background: rgba(217,106,91,.12); color: #C45A4B; border-color: rgba(217,106,91,.4); }
.section--dark .status-pill { background: rgba(111,191,115,.12); }

.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(31,19,11,.1);
  aspect-ratio: 4/3.4; background: var(--cream-3);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.info-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list svg { flex: none; color: var(--brick); margin-top: 3px; }
.section--dark .info-list svg { color: var(--gold-bright); }
.info-list strong { display: block; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.section--dark .info-list strong { color: var(--light-muted); }
.info-list a { font-weight: 600; }
.section--dark .info-list a { color: var(--light); }
.section--dark .info-list a:hover { color: var(--gold-bright); }

/* ---------- Menu page ---------- */
.menu-nav {
  position: sticky; top: var(--header-h); z-index: var(--z-top);
  background: rgba(247,240,225,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31,19,11,.1);
  padding: 14px 0;
}
.menu-nav__track { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.menu-nav__track::-webkit-scrollbar { display: none; }
.menu-nav__link {
  flex: none; padding: 10px 20px; min-height: 44px; display: inline-flex; align-items: center;
  border-radius: 999px; font-size: .88rem; font-weight: 600;
  color: var(--ink); border: 1.5px solid rgba(31,19,11,.18);
  cursor: pointer; transition: all .25s ease; background: transparent;
}
.menu-nav__link:hover { border-color: var(--brick); color: var(--brick); }
.menu-nav__link.is-active {
  background: var(--brick); border-color: var(--brick); color: var(--light);
  box-shadow: 0 6px 16px rgba(126,31,22,.3);
}

.menu-section { padding: 76px 0 20px; }
.menu-section:last-of-type { padding-bottom: 90px; }
.menu-section__head { text-align: center; max-width: 560px; margin: 0 auto 46px; }
.menu-section__head .script { font-size: 2.4rem; }
.menu-section__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 8px; }
.menu-section__head p { color: var(--muted); font-size: .98rem; }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 56px; max-width: 1020px; margin-inline: auto; }
.menu-item { padding: 16px 10px; border-radius: 10px; transition: background .25s ease; }
.menu-item:hover { background: rgba(255,253,246,.9); }
.menu-item__row { display: flex; align-items: baseline; gap: 10px; }
.menu-item__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; }
.menu-item__name .flag {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; vertical-align: 3px;
  color: var(--brick); border: 1px solid currentColor; border-radius: 4px; padding: 2px 6px; margin-left: 8px;
  white-space: nowrap;
}
.menu-item__dots { flex: 1; border-bottom: 2px dotted rgba(31,19,11,.28); transform: translateY(-4px); min-width: 24px; }
.menu-item__price { font-family: var(--font-display); font-weight: 700; color: var(--brick); font-size: 1.1rem; white-space: nowrap; }
.menu-item__desc { margin: 5px 0 0; font-size: .92rem; color: var(--muted); max-width: 92%; }

.menu-note {
  max-width: 760px; margin: 64px auto 0; text-align: center;
  background: #FFFDF6; border: 1px dashed rgba(161,45,33,.4); border-radius: var(--radius);
  padding: 22px 30px; font-size: .9rem; color: var(--muted);
}
.menu-note strong { color: var(--brick); }

/* ---------- Story / about ---------- */
.dropcap::first-letter {
  font-family: var(--font-display); font-weight: 700;
  font-size: 4.6em; line-height: .78; float: left;
  padding: 8px 14px 0 0; color: var(--brick);
}
.pullquote {
  border-left: 4px solid var(--gold); margin: 34px 0; padding: 8px 0 8px 26px;
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--ink);
}
.pullquote cite { display: block; margin-top: 10px; font-family: var(--font-body); font-style: normal; font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* timeline */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--gold), var(--brick));
}
.timeline__item { position: relative; padding: 0 0 46px 26px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -36px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--cream); border: 4px solid var(--brick);
  box-shadow: 0 0 0 4px rgba(161,45,33,.15);
}
.timeline__year {
  font-family: var(--font-script); font-size: 2.1rem; color: var(--brick); line-height: 1;
}
.timeline__item h3 { font-size: 1.45rem; margin: 6px 0 8px; }
.timeline__item p { color: var(--muted); margin: 0; max-width: 560px; }

/* values */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value {
  text-align: center; padding: 40px 28px;
  background: rgba(255,253,246,.06); border: 1px solid rgba(247,235,215,.14);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.value:hover { transform: translateY(-6px); border-color: rgba(201,149,63,.5); background: rgba(255,253,246,.09); }
.value__icon {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(201,149,63,.22), rgba(161,45,33,.18));
  color: var(--gold-bright); border: 1px solid rgba(201,149,63,.4);
}
.value h3 { font-size: 1.4rem; }
.value p { font-size: .95rem; margin: 0; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; border: 0; padding: 0; background: var(--cream-3);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.3,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,19,11,.5));
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(247,240,225,.92); color: var(--brick);
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .zoom { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  display: grid; place-items: center;
  background: rgba(23, 13, 6, .93);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
  padding: 30px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage { max-width: min(960px, 92vw); width: 100%; }
.lightbox__img { width: 100%; max-height: 74vh; object-fit: contain; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__caption { text-align: center; color: var(--light-muted); margin-top: 16px; font-size: .95rem; }
.lightbox__counter { color: var(--gold-bright); font-weight: 700; margin-right: 10px; }
.lightbox__btn {
  position: absolute; display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(247,240,225,.1); color: var(--light);
  border: 1px solid rgba(247,235,215,.25); cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.lightbox__btn:hover { background: rgba(247,240,225,.22); transform: scale(1.06); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- Forms ---------- */
.form-card {
  background: #FFFDF6; border-radius: var(--radius-lg);
  border: 1px solid rgba(31,19,11,.09); box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 48px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px; font: inherit; color: var(--ink);
  background: var(--cream); border: 1.5px solid rgba(31,19,11,.16); border-radius: 10px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brick);
  box-shadow: 0 0 0 4px rgba(161,45,33,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; margin-top: 18px; padding: 16px 20px; border-radius: 10px;
  background: rgba(111,191,115,.14); border: 1px solid rgba(111,191,115,.45);
  color: #3E7B43; font-weight: 600;
}
.form-success.is-visible { display: flex; align-items: center; gap: 10px; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.accordion details {
  background: #FFFDF6; border: 1px solid rgba(31,19,11,.1);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.accordion details[open] { border-color: rgba(201,149,63,.55); box-shadow: var(--shadow-sm); }
.accordion summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  min-height: 44px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary svg { flex: none; color: var(--brick); transition: transform .3s ease; }
.accordion details[open] summary svg { transform: rotate(45deg); }
.accordion .accordion__body { padding: 0 24px 22px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(80% 120% at 50% -20%, rgba(201,149,63,.18), transparent 60%),
    linear-gradient(170deg, var(--brick-deep), var(--brick-dark) 55%, var(--brick));
  color: var(--light);
  padding: 96px 0;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; inset-inline: 0; height: 4px;
  background: linear-gradient(90deg, var(--basil) 0 33.4%, var(--cream) 33.4% 66.7%, #C04A3B 66.7% 100%);
}
.cta-band::before { top: 0; } .cta-band::after { bottom: 0; }
.cta-band .script { color: var(--gold-bright); }
.cta-band h2 { color: var(--light); font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.cta-band p { color: rgba(247,235,215,.8); max-width: 560px; margin: 0 auto 34px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso); color: var(--light-muted);
  border-top: 5px solid;
  border-image: linear-gradient(90deg, var(--basil) 0 33.4%, var(--cream) 33.4% 66.7%, #C04A3B 66.7% 100%) 1;
  padding: 76px 0 36px;
  font-size: .94rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand .brand__name { color: var(--gold-bright); font-size: 2.8rem; }
.footer-brand p { margin-top: 14px; max-width: 320px; }
.footer-col h4 {
  color: var(--light); font-family: var(--font-body); font-size: .8rem;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--light-muted); transition: color .25s ease, padding-left .25s ease; }
.footer-col a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer-col .hours-line { display: flex; justify-content: space-between; gap: 14px; }
.footer-col .hours-line span:last-child { color: var(--light); }

.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(247,235,215,.25); color: var(--light-muted);
  transition: all .25s ease;
}
.social-row a:hover {
  color: var(--espresso); background: var(--gold-bright);
  border-color: var(--gold-bright); transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px; padding-top: 26px;
  border-top: 1px solid rgba(247,235,215,.12);
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(216,193,161,.75);
}
.footer-bottom .tri-dot { color: var(--gold); }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed; right: 26px; bottom: 26px; z-index: var(--z-top);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: linear-gradient(160deg, var(--brick), var(--brick-dark));
  color: var(--light); border: 0; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}
.back-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ---------- Cinematic vignette ---------- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 99;
  background: radial-gradient(130% 110% at 50% 45%, transparent 78%, rgba(31,19,11,.16));
}

/* ==========================================================================
   Motion (gated — hidden states live inside no-preference so reduced-motion
   users always see content)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {

  /* scroll reveals */
  .reveal {
    opacity: 0; transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22,1,.3,1), transform .8s cubic-bezier(.22,1,.3,1);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform;
  }
  .reveal--left  { transform: translateX(-44px); }
  .reveal--right { transform: translateX(44px); }
  .reveal--zoom  { transform: scale(.92); }
  .reveal.is-in  { opacity: 1; transform: none; }

  /* hero entrance */
  .hero__script, .hero__title, .hero__sub, .hero__ctas, .hero__meta {
    opacity: 0; transform: translateY(28px);
    animation: hero-rise 1s cubic-bezier(.22,1,.3,1) forwards;
  }
  .hero__script { animation-delay: .15s; }
  .hero__title  { animation-delay: .3s; }
  .hero__sub    { animation-delay: .5s; }
  .hero__ctas   { animation-delay: .68s; }
  .hero__meta   { animation-delay: .85s; }
  @keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }

  /* slow ken-burns on hero imagery */
  .hero__bg img { animation: ken-burns 18s ease-in-out infinite alternate; }
  @keyframes ken-burns {
    from { transform: scale(1) translateY(0); }
    to   { transform: scale(1.12) translateY(-2.2%); }
  }

  /* page fade-in */
  body { animation: page-in .6s ease-out; }
  @keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

  /* parallax handled by JS via --py */
  [data-parallax] { transform: translateY(calc(var(--py, 0) * 1px)); will-change: transform; }
}

/* pause looping animations while off screen */
.is-offscreen, .is-offscreen::before, .is-offscreen::after,
.is-offscreen .bulb-glass, .is-offscreen .bulb-halo,
.is-offscreen .oven__flames svg, .is-offscreen .marquee__track {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .string-lights { display: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev > .split__media { order: 0; }
  .visit { grid-template-columns: 1fr; }
  .teasers { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .menu-grid { grid-template-columns: 1fr; max-width: 640px; }
  .values { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
  .topbar__hours { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .container { width: calc(100% - 36px); }
  .stats { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; margin-top: 44px; }
  .cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .gallery { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn, .cta-band__btns .btn { width: 100%; }
  .hero__meta { gap: 8px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .polaroids { min-height: 420px; }
  .back-top { right: 18px; bottom: 18px; }
  .lightbox__prev { left: 50%; top: auto; bottom: 18px; transform: translateX(-110%); }
  .lightbox__next { right: 50%; top: auto; bottom: 18px; transform: translateX(110%); }
  .lightbox__prev:hover { transform: translateX(-110%) scale(1.06); }
  .lightbox__next:hover { transform: translateX(110%) scale(1.06); }
  .timeline { padding-left: 30px; }
  .topbar__phone-label { display: none; }
  .topbar__loc { display: none; }
  .topbar__inner { justify-content: center; }
}
