/* ===================================================================
   Portobello Ristorante — Design System
   Cream / Olive / Wine / Charcoal / Gold  •  Serif + Sans
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --cream: #F8F5EF;
  --cream-2: #F1EBDF;
  --olive: #5B6B3A;
  --olive-dark: #47542D;
  --wine: #7A1F28;
  --wine-dark: #5E141C;
  --charcoal: #2E2E2E;
  --charcoal-soft: #3a3a3a;
  --gold: #C89D4E;
  --gold-soft: #d9b874;
  --wood: #6b4f34;

  --ink: #2E2E2E;
  --ink-soft: #55524c;
  --bg: var(--cream);
  --surface: #ffffff;
  --surface-2: var(--cream-2);
  --border: #e3dccd;
  --shadow: 0 10px 30px -12px rgba(46, 46, 46, .22);
  --shadow-lg: 0 24px 60px -20px rgba(46, 46, 46, .35);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

/* Dark mode */
:root[data-theme="dark"] {
  --cream: #1c1a17;
  --cream-2: #24211d;
  --ink: #ece7dc;
  --ink-soft: #b8b2a5;
  --bg: #17150f;
  --surface: #211e18;
  --surface-2: #26221b;
  --border: #38332a;
  --olive: #8b9a63;
  --gold: #d9b874;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, .55);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, .7);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--wine); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--ink); margin: 0 0 .4em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); letter-spacing: -.5px; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1rem; }

/* ---------- Utilities ---------- */
.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.divider { width: 64px; height: 2px; background: var(--gold); border: 0; margin: 1.2rem 0; }
.center .divider { margin-inline: auto; }
.text-wine { color: var(--wine); }
.muted { color: var(--ink-soft); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--wine);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.7rem;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bg);
  border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  box-shadow: 0 8px 20px -10px rgba(122, 31, 40, .6);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -10px rgba(122, 31, 40, .7); color: #fff; }
.btn--gold { --bg: var(--gold); color: var(--charcoal); box-shadow: 0 8px 20px -10px rgba(200, 157, 78, .7); }
.btn--gold:hover { color: var(--charcoal); }
.btn--olive { --bg: var(--olive); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: currentColor; box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); box-shadow: none; }
.btn--light:hover { background: #fff; color: var(--charcoal); }
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s, height .35s;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px -12px rgba(0,0,0,.25);
  height: 64px;
}
.nav { width: min(var(--wrap), 94vw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: .5px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--gold-soft), var(--gold) 55%, var(--wine-dark));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--serif); font-size: 1.2rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
  flex: none;
}
/* transparent header over dark hero -> light text */
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav__links a { color: #fff; }
.site-header:not(.scrolled) .nav__toggle span { background: #fff; }

.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: .95rem; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: .7rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.theme-toggle {
  background: none; border: 1.5px solid currentColor; color: inherit; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center; font-size: 1.1rem; transition: transform .3s, background .3s; flex: none;
  color: var(--ink);
}
.site-header:not(.scrolled) .theme-toggle { color: #fff; }
.theme-toggle:hover { transform: rotate(20deg) scale(1.08); }

/* Mobile menu */
@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    background: var(--surface); padding: 2rem 2.2rem; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); z-index: 1100;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.2rem; }
  .nav__cta .btn:not(.nav__cta-keep) { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 1050; }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease), transform 8s linear;
  transform: scale(1.08);
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(20,15,12,.55) 0%, rgba(20,15,12,.35) 40%, rgba(20,15,12,.8) 100%);
}
.hero__inner { width: min(var(--wrap), 92vw); margin-inline: auto; padding-top: var(--header-h); max-width: 60rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero__eyebrow { color: var(--gold-soft); }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 44ch; color: rgba(255,255,255,.92); margin-bottom: 2rem; }
.hero .btn-row { margin-top: .5rem; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.9), transparent);
  animation: scrolldown 2s infinite;
}
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero__dots { position: absolute; bottom: 26px; right: 5vw; display: flex; gap: 10px; }
.hero__dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: .3s; }
.hero__dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }

/* ---------- Page hero (sub pages) ---------- */
.pagehero {
  position: relative; padding: calc(var(--header-h) + 4rem) 0 3.5rem; color: #fff; text-align: center; isolation: isolate;
  background-size: cover; background-position: center;
}
.pagehero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(30,20,16,.6), rgba(30,20,16,.75)); }
.pagehero h1 { color: #fff; }
.pagehero p { color: rgba(255,255,255,.9); max-width: 60ch; margin-inline: auto; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span[aria-current] { color: var(--gold-soft); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.8rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__badge { position: absolute; top: 12px; left: 12px; background: var(--wine); color: #fff; padding: .28rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35rem; }
.card__price { color: var(--gold); font-weight: 700; font-family: var(--serif); font-size: 1.35rem; margin-top: auto; }
.card__desc { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1rem; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .8rem; }

/* feature (icon) cards */
.feature { text-align: center; padding: 2rem 1.5rem; }
.feature__icon { font-size: 2.4rem; margin-bottom: .8rem; display: block; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.split__media { position: relative; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 780px; margin-inline: auto; padding-left: 0; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.tl-item { position: relative; width: 50%; padding: 0 2.4rem 2.6rem; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-item::after { content: ""; position: absolute; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--gold); }
.tl-item:nth-child(odd)::after { right: -8px; }
.tl-item:nth-child(even)::after { left: -8px; }
.tl-item .tl-year { font-family: var(--serif); font-size: 1.6rem; color: var(--wine); font-weight: 700; }
.tl-item h3 { margin: .1rem 0 .3rem; }
@media (max-width: 700px) {
  .timeline::before { left: 8px; }
  .tl-item, .tl-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding-left: 2.6rem; padding-right: 0; }
  .tl-item:nth-child(odd) { text-align: left; }
  .tl-item::after, .tl-item:nth-child(odd)::after, .tl-item:nth-child(even)::after { left: 0; right: auto; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold); font-weight: 700; line-height: 1; }
.stat__label { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--ink-soft); margin-top: .4rem; }

/* ---------- Menu page ---------- */
.menu-toolbar { position: sticky; top: 64px; z-index: 500; background: color-mix(in srgb, var(--bg) 94%, transparent); backdrop-filter: blur(8px); padding: 1rem 0; border-bottom: 1px solid var(--border); }
.menu-toolbar__inner { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.menu-search { flex: 1; min-width: 200px; position: relative; }
.menu-search input {
  width: 100%; padding: .7rem 1rem .7rem 2.6rem; border: 1.5px solid var(--border); border-radius: 999px;
  background: var(--surface); color: var(--ink); font-size: .95rem; font-family: var(--sans);
}
.menu-search input:focus { outline: none; border-color: var(--gold); }
.menu-search::before { content: "🔍"; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); opacity: .5; }
.filter-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  padding: .5rem 1rem; border-radius: 999px; border: 1.5px solid var(--border); background: var(--surface);
  color: var(--ink); font-size: .85rem; font-weight: 500; cursor: pointer; transition: .25s; font-family: var(--sans);
}
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--wine); color: #fff; border-color: var(--wine); }

.menu-cat { margin-top: 3rem; scroll-margin-top: 140px; }
.menu-cat__head { display: flex; align-items: center; gap: 1rem; cursor: pointer; user-select: none; padding-bottom: .6rem; border-bottom: 2px solid var(--gold); }
.menu-cat__head h2 { margin: 0; }
.menu-cat__toggle { margin-left: auto; font-size: 1.4rem; transition: transform .3s; color: var(--wine); }
.menu-cat.collapsed .menu-cat__toggle { transform: rotate(-90deg); }
.menu-cat__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.3rem 2.5rem; margin-top: 1.6rem; transition: max-height .4s var(--ease), opacity .3s; }
.menu-cat.collapsed .menu-cat__list { display: none; }
.menu-item {
  display: flex; gap: 1rem; padding: .3rem 0;
}
.menu-item__thumb { width: 84px; height: 84px; border-radius: 10px; object-fit: cover; flex: none; box-shadow: var(--shadow); }
.menu-item__info { flex: 1; }
.menu-item__top { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.menu-item__name { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin: 0; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--border); margin: 0 .5rem 4px; min-width: 12px; }
.menu-item__price { color: var(--gold); font-weight: 700; font-family: var(--serif); font-size: 1.2rem; white-space: nowrap; }
.menu-item__desc { color: var(--ink-soft); font-size: .92rem; margin: .2rem 0 0; }
.diet { display: inline-flex; gap: .35rem; margin-top: .4rem; }
.diet span {
  font-size: .68rem; font-weight: 600; padding: .15rem .5rem; border-radius: 999px; letter-spacing: .03em;
}
.diet .v { background: #e5efd8; color: #3f5720; }
.diet .gf { background: #fbecd2; color: #8a6414; }
.diet .vg { background: #d8efe6; color: #1d6b52; }
.diet .chef { background: var(--wine); color: #fff; }
:root[data-theme="dark"] .diet .v { background: #2c3a1a; color: #a9c47f; }
:root[data-theme="dark"] .diet .gf { background: #3d3115; color: #d9b874; }
:root[data-theme="dark"] .diet .vg { background: #17362b; color: #7fd0b3; }
.menu-empty { text-align: center; padding: 3rem; color: var(--ink-soft); display: none; }

/* ---------- Reviews ---------- */
.review-card { background: var(--surface); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.review-card__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .8rem; }
.review-card__text { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink); margin-bottom: 1.2rem; line-height: 1.5; }
.review-card__author { display: flex; align-items: center; gap: .8rem; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--olive); color: #fff; display: grid; place-items: center; font-weight: 700; }
.review-card__name { font-weight: 600; }
.review-card__meta { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid var(--border); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: .97rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,157,78,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .6rem; }
.form-success { background: #e5efd8; color: #3f5720; padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-top: 1rem; display: none; }
.form-success.show { display: block; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.gallery-grid { columns: 3 260px; column-gap: 1rem; }
.gallery-grid figure { margin: 0 0 1rem; break-inside: avoid; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; transition: transform .6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem 1rem .8rem; color: #fff; font-size: .9rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7)); opacity: 0; transition: opacity .3s;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(15,12,10,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 24px; }
.lightbox__nav.next { right: 24px; }
.lightbox__cap { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.3rem 0; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: "+"; font-size: 1.6rem; color: var(--gold); transition: transform .3s; flex: none; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 1.3rem; margin: 0; }

/* ---------- Info / location ---------- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.info-block { padding: 1.6rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.info-block h3 { font-size: 1.15rem; }
.info-block .icon { font-size: 1.6rem; margin-bottom: .5rem; display: block; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dashed var(--border); font-size: .93rem; }
.hours-list li:last-child { border: 0; }
.hours-list .closed { color: var(--wine); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Banner (express lunch etc) ---------- */
.banner {
  position: relative; color: #fff; text-align: center; isolation: isolate; border-radius: var(--radius); overflow: hidden;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem; background-size: cover; background-position: center;
}
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(91,107,58,.85), rgba(71,84,45,.9)); }
.banner h2 { color: #fff; }
.banner p { color: rgba(255,255,255,.92); max-width: 60ch; margin-inline: auto; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--wine); color: #fff; text-align: center; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 55ch; margin-inline: auto 1.6rem; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #cfc9be; padding: 4rem 0 1.5rem; }
:root[data-theme="dark"] .site-footer { background: #0f0e0b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .85rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1rem; }
.site-footer a { color: #cfc9be; font-size: .93rem; }
.site-footer a:hover { color: var(--gold); }
.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; color: #a8a298; }
.social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1.1rem; transition: .3s; }
.social a:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-3px); }
.newsletter { display: flex; gap: .5rem; margin-top: .8rem; }
.newsletter input { flex: 1; padding: .65rem .9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font-size: .9rem; }
.newsletter input::placeholder { color: #8f8a80; }
.newsletter button { border: 0; background: var(--gold); color: var(--charcoal); border-radius: 999px; padding: 0 1.1rem; font-weight: 600; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .84rem; color: #8f8a80; }
.footer-bottom a { color: #8f8a80; }

/* ---------- Floating action buttons ---------- */
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: flex; flex-direction: column; gap: .7rem; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.4rem;
  box-shadow: var(--shadow-lg); border: 0; cursor: pointer; text-decoration: none; position: relative; transition: transform .25s;
}
.fab:hover { transform: scale(1.1); color: #fff; }
.fab--call { background: var(--olive); }
.fab--order { background: var(--gold); color: var(--charcoal); }
.fab--reserve { background: var(--wine); }
.fab__tip { position: absolute; right: 66px; top: 50%; transform: translateY(-50%); background: var(--charcoal); color: #fff; padding: .35rem .7rem; border-radius: 6px; font-size: .78rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.fab:hover .fab__tip { opacity: 1; }
@media (max-width: 640px) { .fab { width: 52px; height: 52px; } .fab__tip { display: none; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 3000; background: var(--cream); display: grid; place-items: center; transition: opacity .6s, visibility .6s; }
.loader.hide { opacity: 0; visibility: hidden; }
.loader__mark { width: 70px; height: 70px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, var(--gold-soft), var(--gold) 55%, var(--wine-dark)); display: grid; place-items: center; color: #fff; font-family: var(--serif); font-size: 2rem; font-weight: 700; animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }

/* parallax */
.parallax { background-attachment: fixed; background-size: cover; background-position: center; }
@media (hover: none) { .parallax { background-attachment: scroll; } }

/* No-JS fallback: reveal + loader must not hide content */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
.no-js .loader { display: none !important; }
.no-js .hero__slide:not(.active) { opacity: 1; }
