/* =========================================================
   BRUNNA RISTORANTE — style.css v2
   ========================================================= */

:root {
  --bg:      #0d0b08;
  --bg-2:    #121009;
  --surface: #181410;
  --coal:    #080706;
  --ivory:   #f5eddd;
  --ivory-2: #e8ddc8;
  --beige:   #cfc3a8;
  --gold:    #b8935a;
  --gold-2:  #d9b47c;
  --gold-3:  #f0cc98;
  --muted:   rgba(245, 237, 221, .55);
  --line:    rgba(245, 237, 221, .10);
  --line-2:  rgba(245, 237, 221, .22);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --pad: clamp(1.25rem, 5vw, 3.5rem);
  --w:   1400px;
  --r:   2px;
  --ease:     cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --img-hero:  url("photos/1.jpg");
  --img-pres1: url("photos/2.jpg");
  --img-pres2: url("photos/3.jpg");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold); color: var(--coal); }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--bg);
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -.015em;
  color: var(--ivory);
}
.h-display em { font-style: italic; color: var(--gold-2); font-weight: 300; }
.h-display--xl { font-size: clamp(3rem, 8vw, 7rem); }

.eyebrow {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ivory-2);
  max-width: 58ch;
  line-height: 1.6;
}

.rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 1.75rem 0;
}

.link-underline {
  position: relative; display: inline-block;
  padding-bottom: 1px;
}
.link-underline::after {
  content: ""; position: absolute;
  left: 0; bottom: 0; height: 1px;
  width: 100%; background: currentColor;
  transform: scaleX(.25); transform-origin: right;
  transition: transform .5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .9 0 0 0 0 .85 0 0 0 0 .75 0 0 0 .07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .6; mix-blend-mode: overlay;
}

.section {
  padding: clamp(4.5rem, 11vw, 9rem) var(--pad);
  max-width: var(--w);
  margin: 0 auto;
  position: relative;
}
.section__head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.section__head .h-display { margin-top: .6rem; }
.section__head .lead { margin-top: 1.25rem; }

/* ── PROGRESS ────────────────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  pointer-events: none;
  transition: width .08s linear;
}

/* ── LOADER ──────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--coal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  font-family: var(--serif);
}
.loader__word {
  color: var(--ivory);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: .55em;
  padding-left: .55em;
  opacity: 0;
  animation: ldrIn .9s var(--ease) forwards;
}
.loader__word--sub {
  font-size: clamp(.9rem, 1.5vw, 1.3rem);
  letter-spacing: .35em;
  color: var(--gold-2);
  animation-delay: .3s;
}
.loader__line {
  height: 1px; background: var(--gold);
  width: 0; animation: ldrLine .7s .1s var(--ease) forwards;
}
@keyframes ldrIn   { from { opacity:0; transform:translateY(14px) } to { opacity:1; transform:none } }
@keyframes ldrLine { from { width:0; opacity:0 } to { width:120px; opacity:1 } }

/* ── CURSOR ──────────────────────────────────────────────── */
.cursor { display: none; }
@media (hover:hover) and (pointer:fine) {
  .cursor {
    display: block; position: fixed;
    top: 0; left: 0; z-index: 9998;
    pointer-events: none; mix-blend-mode: difference;
  }
  .cursor__dot, .cursor__ring {
    position: absolute; top: 0; left: 0; border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor__dot  { width: 5px; height: 5px; background: var(--ivory); }
  .cursor__ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(245,237,221,.45);
    transition: transform .3s var(--ease-out), width .3s, height .3s, border-color .3s;
  }
  .cursor.is-hover .cursor__ring {
    width: 56px; height: 56px; border-color: var(--gold-2);
  }
  .cursor.is-text .cursor__ring {
    width: 80px; height: 80px; border-radius: var(--r);
    border-color: var(--gold); mix-blend-mode: normal;
    background: rgba(184,147,90,.08);
  }
  body, a, button, input, select, label { cursor: none; }
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s, padding .3s;
}
.nav.is-scrolled {
  padding: .3rem 0;
  background: var(--ivory);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: rgba(184,147,90,.25);
}
.nav.is-scrolled .nav__links a { color: #3a2e1e; }
.nav.is-scrolled .nav__links a:hover { color: var(--gold); }
.nav.is-scrolled .nav__burger span { background: var(--coal); }
.nav__inner {
  max-width: var(--w); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
}
.nav__logo { display: flex; align-items: center; line-height: 1; }
.nav__logo-img { height: 32px; width: auto; object-fit: contain; display: block; }
.nav__links {
  display: flex; gap: 2rem; justify-content: center;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
}
.nav__links a {
  position: relative; padding: .4rem 0; color: var(--ivory-2);
  transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px;
  width: 100%; background: var(--gold-2);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { justify-self: end; }
.nav__burger {
  display: none; width: 40px; height: 40px; position: relative; justify-self: end;
}
.nav__burger span {
  position: absolute; left: 8px; right: 8px; height: 1px; background: var(--ivory);
  transition: transform .4s var(--ease), top .4s .1s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 24px; }
.nav__burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__inner { grid-template-columns: 1fr auto; }
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--coal);
  transform: translateY(-102%);
  transition: transform .85s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__inner {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem var(--pad) 3rem;
}
.mobile-menu nav {
  display: flex; flex-direction: column; gap: .6rem;
  font-family: var(--serif); font-size: clamp(2rem, 7vw, 3rem);
}
.mobile-menu nav a {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
  color: var(--ivory-2);
}
.mobile-menu nav a:hover { color: var(--gold-2); }
.mobile-menu.is-open nav a { opacity: 1; transform: none; }
.mobile-menu.is-open nav a:nth-child(1) { transition-delay: .18s; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: .24s; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: .30s; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: .36s; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: .42s; }
.mobile-menu.is-open nav a:nth-child(6) { transition-delay: .48s; }
.mobile-menu.is-open nav a:nth-child(7) { transition-delay: .54s; }
.mobile-menu__cta { color: var(--gold-2) !important; font-family: var(--sans) !important; font-size: 1rem !important; letter-spacing: .3em; text-transform: uppercase; margin-top: .8rem; }
.mobile-menu__foot { margin-top: 3.5rem; color: var(--muted); font-size: .82rem; letter-spacing: .1em; line-height: 2; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 2.2rem;
  font-size: .63rem; letter-spacing: .42em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap;
  border: 1px solid transparent; border-radius: 1px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease), transform .35s var(--ease);
}

/* shimmer sweep on all buttons */
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(140%); }

/* fill layer (outline / ghost) */
.btn::after {
  content: "";
  position: absolute; inset: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
  z-index: -1; pointer-events: none;
}
.btn:hover::after { transform: scaleX(1); }

/* ── Gold ── */
.btn--gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 55%, var(--gold) 100%);
  background-size: 220% auto;
  color: #100d07;
  border-color: transparent;
  box-shadow: 0 1px 18px rgba(184,147,90,.18), inset 0 1px 0 rgba(255,255,255,.13);
}
.btn--gold::after { display: none; }
.btn--gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(184,147,90,.38), 0 2px 8px rgba(184,147,90,.22),
              inset 0 1px 0 rgba(255,255,255,.18);
}

/* ── Outline ── */
.btn--outline {
  border-color: rgba(245,237,221,.45);
  color: var(--ivory);
}
.btn--outline::after { background: var(--ivory); }
.btn--outline:hover { color: #100d07; border-color: var(--ivory); }

/* ── Ghost ── */
.btn--ghost {
  border-color: rgba(245,237,221,.18);
  color: var(--ivory-2);
}
.btn--ghost::after { background: rgba(245,237,221,.07); }
.btn--ghost:hover { color: var(--ivory); border-color: rgba(245,237,221,.42); }

.btn--block { width: 100%; padding: 1rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 var(--pad) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero__img {
  position: absolute; inset: -10% 0 0 0;
  background: var(--img-hero) center/cover no-repeat;
  will-change: transform; transform: scale(1.1);
  animation: heroZoom 22s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1.02); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(8,7,6,.98) 0%, rgba(8,7,6,.55) 30%, rgba(8,7,6,.2) 65%, rgba(8,7,6,.45) 100%),
    radial-gradient(ellipse at 25% 40%, rgba(184,147,90,.18) 0%, transparent 55%);
}
.hero__deco {
  position: absolute; right: -3%; bottom: -10%;
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(12rem, 30vw, 26rem);
  letter-spacing: -.06em; line-height: .85;
  color: var(--ivory); opacity: .028;
  pointer-events: none; user-select: none;
  transform: rotate(-4deg);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1000px;
  padding-top: 7rem;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .68rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 1.8rem;
}
.hero__tag-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.8); opacity: .5; }
}
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: .92; letter-spacing: -.02em;
  margin-bottom: 1.8rem;
  color: var(--ivory);
  display: flex; flex-direction: column;
}
.hero__title em {
  font-style: italic; font-weight: 300; color: var(--gold-2);
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ivory-2); max-width: 42ch;
  margin-bottom: 2.8rem; line-height: 1.65;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__meta {
  position: absolute; bottom: clamp(3rem, 6vw, 5rem); right: var(--pad);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .58rem; letter-spacing: .45em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__meta-sep { width: 1px; height: 30px; background: var(--line-2); }
@media (max-width: 720px) { .hero__meta { display: none; } .hero__scroll { display: none; } }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .6rem; letter-spacing: .4em; text-transform: uppercase;
}
.hero__scroll-line {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold-2), transparent);
  animation: scrollPulse 2.6s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
}
.stats-strip__inner {
  max-width: var(--w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: 1.5rem;
}
.stat { text-align: center; }
.stat__num-wrap {
  display: flex; align-items: baseline; justify-content: center;
  gap: .1rem; margin-bottom: .55rem;
}
.stat__num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1; color: var(--gold-2);
  transition: color .3s;
}
.stat__num--rating { color: var(--gold-3); }
.stat__sfx {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: var(--gold); line-height: 1;
}
.stat__label {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.stat__sep {
  width: 1px; height: 64px; background: var(--line-2); align-self: center;
}
@media (max-width: 700px) {
  .stats-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .stat__sep { display: none; }
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 1.1rem 0;
}
.marquee--reverse { border-top: 1px solid var(--line); border-bottom: none; }
.marquee__track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: marqueeMove 28s linear infinite;
}
.marquee__track--rev { animation-direction: reverse; animation-duration: 32s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.marquee__sep { color: var(--gold) !important; }
@keyframes marqueeMove { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── PRESENTATION ────────────────────────────────────────── */
.presentation__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem); align-items: center;
}
.presentation__images { position: relative; aspect-ratio: 4/5; }
.presentation__img {
  background-size: cover; background-position: center;
  border-radius: var(--r);
  transition: transform 1.2s var(--ease);
}
.presentation__img--big {
  position: absolute; inset: 0 18% 14% 0;
  background-image: var(--img-pres1);
}
.presentation__img--big:hover { transform: scale(1.02); }
.presentation__img--small {
  position: absolute; right: 0; bottom: 0;
  width: 52%; height: 52%;
  background-image: var(--img-pres2);
  border: 6px solid var(--bg);
  box-shadow: -12px -12px 0 var(--bg);
}
.presentation__img-num {
  position: absolute; top: -1.5rem; left: -1rem;
  font-family: var(--serif); font-size: 7rem; font-weight: 700;
  color: var(--ivory); opacity: .04; line-height: 1;
  pointer-events: none; user-select: none;
}
.presentation__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.presentation__copy > * + * { margin-top: .8rem; }
.presentation__copy .rule { margin: .8rem 0; }
.presentation__copy p { color: var(--ivory-2); max-width: 50ch; }
.presentation__copy .btn { margin-top: 2rem; }
@media (max-width: 820px) {
  .presentation__grid { grid-template-columns: 1fr; }
  .presentation__images { aspect-ratio: 3/2; margin-bottom: 2rem; }
}

/* ── EXPERIENCE ──────────────────────────────────────────── */
.experience__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.experience__list { border-top: 1px solid var(--line); }
.exp-item {
  display: grid; grid-template-columns: 100px 1fr 1fr;
  gap: 2rem 3rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.exp-item:hover { background: linear-gradient(90deg, rgba(184,147,90,.04), transparent); }
.exp-item__num {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: var(--line-2); line-height: 1;
  transition: color .4s;
}
.exp-item:hover .exp-item__num { color: var(--gold); }
.exp-item__icon {
  width: 28px; height: 28px; color: var(--gold-2);
  margin-bottom: .75rem;
}
.exp-item__icon svg { width: 100%; height: 100%; }
.exp-item__title {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; color: var(--ivory); line-height: 1.1;
}
.exp-item__text { color: var(--muted); font-size: .95rem; line-height: 1.6; align-self: center; }
@media (max-width: 780px) {
  .exp-item { grid-template-columns: 60px 1fr; }
  .exp-item__text { grid-column: 2; }
}
@media (max-width: 480px) {
  .exp-item { grid-template-columns: 1fr; gap: .8rem; }
  .exp-item__num { font-size: 2.5rem; }
}

/* ── MENU ────────────────────────────────────────────────── */
.menu__tabs {
  display: flex; flex-wrap: nowrap; gap: .4rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.menu__tabs::-webkit-scrollbar { display: none; }
.menu__tab {
  padding: .65rem 1.4rem;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); border: 1px solid transparent;
  border-radius: 100px; white-space: nowrap;
  transition: all .3s var(--ease);
}
.menu__tab:hover { color: var(--ivory); border-color: var(--line-2); }
.menu__tab.is-active { color: var(--coal); background: var(--ivory); border-color: var(--ivory); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.75rem 3.5rem;
}
.dish {
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
  animation: dishIn .45s var(--ease) both;
}
@keyframes dishIn { from { opacity:0; transform:translateY(10px) } to { opacity:1; transform:none } }
.dish__head {
  display: flex; align-items: baseline; gap: .75rem; margin-bottom: .35rem;
}
.dish__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.dish__dots  { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.dish__price { font-family: var(--serif); font-size: 1rem; color: var(--gold-2); white-space: nowrap; }
.dish__desc  { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.dish__badge {
  font-size: .55rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-2); margin-left: .5rem; vertical-align: middle;
}
.menu__cta { text-align: center; margin-top: 4rem; }

/* ── FAVORITES ───────────────────────────────────────────── */
.favorites__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.fav-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; border-radius: var(--r); cursor: pointer;
}
.fav-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s var(--ease);
}
.fav-card:hover .fav-card__img { transform: scale(1.09); }
.fav-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8,7,6,.9) 100%);
}
.fav-card__content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.75rem;
  transform: translateY(20px); transition: transform .5s var(--ease);
}
.fav-card:hover .fav-card__content { transform: none; }
.fav-card__eyebrow { font-size: .6rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .4rem; }
.fav-card__title   { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin-bottom: .4rem; }
.fav-card__desc    { font-size: .85rem; color: var(--ivory-2); opacity: 0; max-height: 0; transition: opacity .5s var(--ease), max-height .5s var(--ease); line-height: 1.5; }
.fav-card:hover .fav-card__desc { opacity: 1; max-height: 80px; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: .75rem;
}
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--r); cursor: pointer;
  background: var(--surface);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .5s;
  filter: brightness(.88) saturate(.95);
}
.gallery__item:hover img { transform: scale(1.07); filter: brightness(1) saturate(1.1); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,7,6,.5));
  opacity: 0; transition: opacity .4s;
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery__item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery__item:nth-child(4) { grid-column: span 7; grid-row: span 2; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) { grid-column: span 2 !important; grid-row: span 2 !important; }
}
@media (max-width: 500px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
}

/* ── INSTAGRAM ───────────────────────────────────────────── */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .6rem;
}
.instagram__item { aspect-ratio: 1; overflow: hidden; border-radius: var(--r); }
.instagram__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .5s;
  filter: brightness(.82) saturate(.9);
}
.instagram__item:hover img { transform: scale(1.12); filter: brightness(1) saturate(1); }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews.section {
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.reviews__badge {
  max-width: var(--w); margin: 0 auto 3rem;
  padding: 0 var(--pad);
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}
.reviews__badge #reviewStars { color: var(--gold-2); font-size: 1rem; letter-spacing: .12em; }
.reviews__badge #reviewRating {
  font-family: var(--serif); font-size: 2.2rem; color: var(--ivory); line-height: 1;
}
.reviews__badge #reviewCount { color: var(--muted); font-size: .85rem; }
.reviews__slider { overflow: hidden; width: 100%; position: relative; }
.reviews__track {
  display: flex;
  width: 100%;
  transition: transform .9s var(--ease);
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  padding: 3rem var(--pad);
  text-align: center;
  box-sizing: border-box;
}
.review-card__quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.3; color: var(--ivory);
  max-width: 820px; margin: 0 auto 2.5rem;
  position: relative;
}
.review-card__quote::before {
  content: "\201C";
  display: block; font-size: 6rem; line-height: .7;
  color: var(--gold); font-family: var(--serif);
  margin-bottom: .75rem;
}
.review-card__author { font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2); }
.review-card__source { color: var(--muted); font-size: .72rem; margin-top: .35rem; }
.reviews__controls {
  max-width: var(--w); margin: 2rem auto 0;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.reviews__btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--ivory-2);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.reviews__btn svg { width: 18px; height: 18px; }
.reviews__btn:hover { border-color: var(--gold-2); color: var(--gold-2); }
.reviews__dots { display: flex; gap: .5rem; }
.reviews__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--line-2); border: none; cursor: pointer;
  transition: all .35s;
}
.reviews__dot.is-active { background: var(--gold-2); width: 22px; border-radius: 4px; }

/* ── RESERVATIONS ────────────────────────────────────────── */
.reservations { max-width: 1200px; }
.reservations__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem); align-items: start;
}
.reservations__copy > * + * { margin-top: 1.2rem; }
.reservations__copy .eyebrow { margin-bottom: .5rem; }
.reservations__copy .h-display--xl { margin: .6rem 0; }
.reservations__contact { display: flex; flex-direction: column; gap: .75rem; margin-top: 2.5rem; }
.reservations__contact-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .82rem; letter-spacing: .1em; color: var(--ivory-2);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: .85rem 1.2rem;
  transition: all .35s var(--ease);
}
.reservations__contact-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-2); }
.reservations__contact-item:hover { border-color: var(--gold-2); color: var(--ivory); background: rgba(184,147,90,.06); }

.reservations__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px); padding: 2.5rem;
}
.reservations__form .btn--block { grid-column: 1 / -1; margin-top: .5rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-2);
}
.field input, .field select {
  padding: .9rem 1rem;
  background: transparent; border: 1px solid var(--line-2);
  border-radius: var(--r); color: var(--ivory);
  font-size: .92rem; transition: border-color .3s;
  appearance: none;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-2); }
.field select option { background: var(--coal); }

.field--float { position: relative; grid-column: span 1; }
.field--float label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; transition: all .3s var(--ease);
  font-size: .88rem; letter-spacing: .04em; text-transform: none; color: var(--muted);
}
.field--float input {
  padding: 1.5rem 1rem .5rem; width: 100%;
}
.field--float input:focus + label,
.field--float input:not(:placeholder-shown) + label {
  top: .7rem; transform: none; font-size: .6rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-2);
}

@media (max-width: 860px) {
  .reservations__inner { grid-template-columns: 1fr; }
  .reservations__form { grid-template-columns: 1fr; }
}

/* ── LOCATION ────────────────────────────────────────────── */
.location__grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.location__map {
  aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  filter: grayscale(40%) contrast(1.05) brightness(.9);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__info { display: flex; flex-direction: column; gap: 2.2rem; }
.info-block .eyebrow { margin-bottom: .85rem; }
.info-block p { color: var(--ivory-2); line-height: 1.75; }
.info-block a { color: var(--ivory); }
.status {
  font-size: .52rem; padding: .28rem .65rem; border-radius: 100px; letter-spacing: .2em;
}
.status--open   { background: rgba(184,147,90,.15); color: var(--gold-2); }
.status--closed { background: rgba(200,80,80,.15);  color: #d99090; }
.hours li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; border-bottom: 1px solid var(--line);
  font-size: .88rem; color: var(--ivory-2);
}
.hours li.is-today { color: var(--gold-2); }
.hours__note { font-size: .75rem; color: var(--muted); margin-top: .85rem; font-style: italic; }
.hours span:first-child { text-transform: capitalize; letter-spacing: .04em; }
@media (max-width: 820px) { .location__grid { grid-template-columns: 1fr; } }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ivory); border-top: 1px solid rgba(184,147,90,.25);
  padding: 5rem var(--pad) 2rem;
}
.footer__top {
  max-width: var(--w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(184,147,90,.25);
}
.footer__brand { max-width: 320px; }
.footer__logo-img-footer { height: 64px; width: auto; object-fit: contain; display: block; }
.footer__logo {
  font-family: var(--serif); font-size: 2.4rem;
  letter-spacing: .08em; text-transform: uppercase; display: block; line-height: 1;
  color: var(--coal);
}
.footer__logo-sub {
  font-size: .6rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold); display: block; margin-top: 5px;
}
.footer__tag { color: #5a4a2e; font-family: var(--serif); font-style: italic; margin-top: 1.2rem; font-size: 1.1rem; }
.footer__cols { display: flex; gap: 4rem; }
.footer__col { display: flex; flex-direction: column; gap: .45rem; }
.footer__col .eyebrow { margin-bottom: .75rem; color: var(--gold); }
.footer__col a, .footer__col p { color: #4a3b25; font-size: .88rem; transition: color .3s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--w); margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  color: #7a6545; font-size: .75rem; letter-spacing: .1em;
}
.footer__ig { color: #7a6545; transition: color .3s; }
.footer__ig:hover { color: var(--gold); }
.footer__ig svg { width: 20px; height: 20px; }
@media (max-width: 800px) {
  .footer__top { flex-direction: column; gap: 2.5rem; }
  .footer__cols { flex-direction: column; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── FAB ─────────────────────────────────────────────────── */
.fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem;
  z-index: 80; display: flex; flex-direction: column; gap: .55rem;
}
.fab__btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-2);
  color: var(--ivory); box-shadow: 0 8px 28px rgba(0,0,0,.45);
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.fab__btn svg { width: 22px; height: 22px; }
.fab__btn:hover { transform: translateY(-3px) scale(1.08); }
.fab__btn--wa:hover  { background: #25D366; color: white; border-color: #25D366; }
.fab__btn--ig:hover  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: white; border-color: transparent; }
.fab__btn--res:hover { background: var(--gold); color: var(--coal); border-color: var(--gold); }
@media (max-width: 720px) { .fab { display: none; } }

/* ── MOBILE ACTION BAR ───────────────────────────────────── */
.m-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 85;
  background: rgba(8,7,6,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: .5rem;
}
.m-bar__btn {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); padding: .5rem;
  border-radius: var(--r); border: 1px solid transparent;
  transition: all .3s var(--ease);
}
.m-bar__btn svg { width: 22px; height: 22px; }
.m-bar__btn:hover, .m-bar__btn:active { color: var(--gold-2); border-color: var(--line); }
.m-bar__btn--main {
  color: var(--coal); background: var(--gold); border-color: var(--gold);
  border-radius: var(--r);
}
.m-bar__btn--main:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--coal); }
@media (max-width: 720px) {
  .m-bar { display: grid; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,7,6,.96);
  display: none; align-items: center; justify-content: center; padding: 4rem 2rem;
}
.lightbox.is-open { display: flex; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; animation: scaleIn .5s var(--ease); }
@keyframes scaleIn { from { transform: scale(.94); opacity: 0 } to { transform: none; opacity: 1 } }
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); font-size: 1.6rem; color: var(--ivory);
  transition: all .3s;
}
.lightbox__close:hover { background: var(--ivory); color: var(--coal); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--line-2); font-size: 2rem; color: var(--ivory);
  transition: all .3s; display: grid; place-items: center;
}
.lightbox__nav:hover { background: var(--ivory); color: var(--coal); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--muted); font-size: .75rem; letter-spacing: .2em;
}

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
.magnetic { transition: transform .4s var(--ease); }

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__img { animation: none; transform: scale(1); }
  .marquee__track { animation: none; }
}

/* ── SMALL SCREENS ───────────────────────────────────────── */
@media (max-width: 540px) {
  .btn { padding: .85rem 1.4rem; font-size: .68rem; }
  .hero__actions { flex-direction: column; gap: .75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .reservations__form { padding: 1.5rem; }
  .gallery__grid { grid-auto-rows: 120px; }
  .section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .h-display { font-size: clamp(2rem, 9vw, 2.8rem); }
  .dish__name { font-size: 1.1rem; }
  .menu__grid { grid-template-columns: 1fr; gap: 1.25rem 0; }
  .favorites__grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .fav-card { aspect-ratio: 3/4; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .review-card { padding: 2rem 1.25rem; }
  .review-card__quote { font-size: clamp(1.25rem, 5vw, 1.8rem); }
  .review-card__quote::before { font-size: 4rem; }
  .reservations__form { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; gap: 2rem; }
  .footer__cols { flex-direction: column; gap: 1.5rem; }
}
