/* ============================================================================
   HEART OF KABUL — Stylesheet
   Palette: espresso + gold (precious accent) + olive/cream (organic seconds)
   Type: Cormorant Garamond (display) · Jost (UI / labels / body)
   ========================================================================== */

:root {
  /* Espresso base */
  --espresso-900: #140f0c;
  --espresso-800: #1b1410;
  --espresso-700: #221a14;
  --espresso-600: #2c211a;
  --espresso-500: #382a20;

  /* Gold / bronze — official brand colors (#AC824D gray-orange, #846F38 deep) */
  --gold: #ac824d;
  --gold-200: #d3ad72;
  --gold-100: #e8d0a0;
  --gold-600: #846f38;
  --gold-grad: linear-gradient(180deg, #dcb87f 0%, #ac824d 50%, #846f38 100%);

  /* Organic seconds — official brand olive (#47482C) & green (#37493C) */
  --olive: #47482c;
  --olive-300: #6b6c46;
  --green: #37493c;
  --cream: #f3e9df;
  --ivory: #f7f1e8;
  --blush: #ecdcd6;

  /* Ink on dark */
  --ink: #efe6d8;
  --ink-soft: #cbbba6;
  --muted: #9b8b76;
  --hair: rgba(172, 130, 77, 0.30);
  --hair-soft: rgba(243, 233, 223, 0.10);

  --bg: var(--espresso-800);
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 14px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
iframe { border: 0; }

.skip-link {
  position: fixed; left: 1rem; top: -100px; z-index: 200;
  background: var(--gold); color: #1a1209; padding: .6rem 1rem; border-radius: 8px;
  font-family: var(--sans); font-size: .85rem; transition: top .3s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* Subtle global texture: warm vignette + faint geometric wash */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(172,130,77,0.10), transparent 60%),
    radial-gradient(100% 60% at 50% 120%, rgba(55,73,60,0.12), transparent 60%),
    var(--espresso-800);
}

/* ----------------------------- Typography utils ----------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(.66rem, 1.1vw, .76rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-200);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); padding: 0 var(--gutter); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--cream);
}
.section-sub {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--ink-soft);
  font-weight: 300;
}

.divider { display: inline-flex; align-items: center; justify-content: center; }
.divider__mark { width: 46px; height: 46px; opacity: .9; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-100);
  border: 1px solid var(--hair);
  background: rgba(172,130,77,0.05);
  padding: .5rem .9rem; border-radius: 100px;
}
.chip--quiet { color: var(--ink-soft); }
.chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-weight: 500; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: 100px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  will-change: transform;
}
.btn--gold {
  background: var(--gold-grad); color: #21160a;
  box-shadow: 0 10px 30px -12px rgba(172,130,77,.6);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(172,130,77,.75); }
.btn--ghost {
  border: 1px solid var(--hair); color: var(--gold-100); background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-200); transform: translateY(-2px); }

.link-gold {
  display: inline-block; font-family: var(--sans); font-size: .92rem; letter-spacing: .04em;
  color: var(--gold-200); position: relative; padding-bottom: 2px;
}
.link-gold::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(.25); transform-origin: left; opacity: .5;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.link-gold:hover::after { transform: scaleX(1); opacity: 1; }

/* Capture/still mode — freezes continuous motion for screenshots & print */
body.capture-still *, body.capture-still *::before, body.capture-still *::after {
  animation-play-state: paused !important;
  backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
}
body.capture-still #preloader { display: none !important; }
body.capture-still .reveal { opacity: 1 !important; transform: none !important; }

/* Reveal-on-scroll base state */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Section vertical rhythm */
section { padding-block: clamp(4.5rem, 10vw, 9rem); position: relative; }
.section-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--hair), transparent); }

/* ----------------------------- Preloader ----------------------------- */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--espresso-900);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
#preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.preloader__mark { width: 92px; opacity: 0; transform: translateY(10px) scale(.96); animation: pmark 1.1s var(--ease) forwards; }
.preloader__word {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold-100);
  letter-spacing: .02em; opacity: 0; animation: pword .9s var(--ease) .35s forwards;
}
.preloader__line { width: 0; height: 1px; background: var(--gold); animation: pline 1.2s var(--ease) .5s forwards; }
@keyframes pmark { to { opacity: 1; transform: none; } }
@keyframes pword { to { opacity: 1; } }
@keyframes pline { to { width: 120px; } }

/* ----------------------------- Nav ----------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(17, 12, 9, 0.95);
  border-bottom-color: var(--hair);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: padding .5s var(--ease);
}
.nav.is-scrolled .nav__inner { padding-block: .75rem; }
.nav__brand { display: flex; align-items: center; gap: .9rem; transition: opacity .7s var(--ease), transform .7s var(--ease); }
/* Hero-first reveal: brand stays hidden over the hero, materializes on scroll */
.nav:not(.is-scrolled) .nav__brand { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.nav__mark { width: 52px; transition: width .5s var(--ease); }
.nav.is-scrolled .nav__mark { width: 40px; }
.nav__lockup { display: flex; flex-direction: column; line-height: 1; }
.nav__name { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; color: var(--cream); letter-spacing: .012em; transition: font-size .5s var(--ease); }
.nav.is-scrolled .nav__name { font-size: 1.32rem; }
.nav__kicker { font-family: var(--sans); font-weight: 500; font-size: .55rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-200); margin-top: .34rem; max-height: 1.2em; opacity: 1; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .5s var(--ease); }
.nav.is-scrolled .nav__kicker { max-height: 0; opacity: 0; margin-top: 0; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: .3rem 0;
  transition: color .35s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--gold-100); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__cta { padding: .7rem 1.5rem; }
.nav__status { display: inline-flex; align-items: center; gap: .45rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.nav__status .dot, .visit__status .dot { width: 7px; height: 7px; border-radius: 50%; background: #7d7; box-shadow: 0 0 8px #6c6; }
.nav__status.is-closed .dot, .visit__status.is-closed .dot { background: #c87; box-shadow: 0 0 8px #b65; }

.nav__burger { display: none; width: 42px; height: 42px; position: relative; }
.nav__burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--gold-100); transition: transform .4s var(--ease), opacity .3s var(--ease); }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { bottom: 16px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(16, 11, 8, 0.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mobile-menu__links a { font-family: var(--serif); font-size: 2rem; color: var(--cream); }
.mobile-menu__links .btn { font-family: var(--sans); font-size: .85rem; margin-top: .8rem; }
.mobile-menu__foot { display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--muted); font-size: .85rem; }

/* ----------------------------- Hero ----------------------------- */
.hero { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 8rem var(--gutter) 5.5rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ac824d' stroke-width='0.6' stroke-opacity='0.5'%3E%3Cpath d='M40 4 76 40 40 76 4 40z'/%3E%3Cpath d='M40 20 60 40 40 60 20 40z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px; opacity: .05;
  -webkit-mask-image: radial-gradient(120% 90% at 60% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 60% 30%, #000 30%, transparent 75%);
}
.hero__mandala { position: absolute; left: 50%; top: 47%; transform: translate(-50%, -50%); width: min(88vw, 660px); opacity: .075; }
.hero__glow { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(172,130,77,.15), transparent 62%); filter: blur(20px); }

.hero__inner {
  position: relative; z-index: 1; width: 100%; max-width: 880px;
  margin: 0 auto; display: flex; flex-direction: column; align-items: center;
}
.hero__emblem { width: clamp(68px, 11vw, 100px); margin-bottom: 1.7rem; }
.hero__inner .eyebrow { margin-bottom: 1.5rem; }
.hero__title { font-family: var(--serif); font-weight: 600; line-height: .9; margin-bottom: 1.1rem; }
.hero__title-top { display: block; font-style: italic; font-weight: 500; font-size: clamp(2rem, 6vw, 3.6rem); color: var(--ink); }
.hero__title-bottom {
  display: block; font-size: clamp(4rem, 16vw, 9.5rem); letter-spacing: .01em; line-height: .86;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__tag { font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.55rem); color: var(--ink-soft); font-style: italic; margin-bottom: 1.6rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; justify-content: center; }
.chips { margin-top: .3rem; justify-content: center; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-200); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ----------------------------- Ethos ----------------------------- */
.ethos { text-align: center; }
.ethos__inner { max-width: 900px; margin: 0 auto; padding-inline: var(--gutter); }
.ethos .divider { margin-bottom: 2rem; }
.ethos__lead {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.6rem, 4.2vw, 2.9rem); line-height: 1.3; color: var(--cream);
}
.ethos__cuisines {
  display: inline-flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem;
  font-family: var(--sans); letter-spacing: .3em; text-transform: uppercase; font-size: .82rem; color: var(--gold-200);
}
.ethos__amp { font-family: var(--serif); font-style: italic; font-size: 1.6rem; letter-spacing: 0; color: var(--gold); text-transform: none; }

/* ----------------------------- Dishes ----------------------------- */
.dishes__grid {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
@media (max-width: 1080px) { .dishes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dishes__grid { grid-template-columns: 1fr; } }
.dish {
  position: relative; border: 1px solid var(--hair-soft); border-radius: var(--radius);
  background: linear-gradient(165deg, var(--espresso-600), var(--espresso-800));
  padding: 1.9rem 1.7rem; overflow: hidden; min-height: 232px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.dish:hover { transform: translateY(-6px); border-color: var(--hair); box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); }
.dish__index { position: absolute; top: .4rem; right: 1.1rem; font-family: var(--serif); font-size: 3.6rem; line-height: 1; color: var(--gold); opacity: .12; pointer-events: none; }
.dish__cuisine { font-family: var(--sans); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--olive-300); margin-bottom: .8rem; }
.dish__name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2vw, 1.7rem); color: var(--cream); line-height: 1.12; margin-bottom: .6rem; }
.dish__desc { font-size: .92rem; color: var(--ink-soft); font-weight: 300; flex: 1; }
.dish__tagrow { display: flex; gap: .45rem; flex-wrap: wrap; margin-top: 1.1rem; }
.dish__tag { font-family: var(--sans); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-100); border: 1px solid var(--hair); padding: .28rem .6rem; border-radius: 100px; }
.dishes__cta { text-align: center; margin-top: 3rem; }

/* ----------------------------- Gallery ----------------------------- */
.gallery__grid { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); column-count: 4; column-gap: 1rem; }
@media (max-width: 1024px) { .gallery__grid { column-count: 3; } }
@media (max-width: 680px) { .gallery__grid { column-count: 2; } }
.gallery__item {
  position: relative; display: block; width: 100%; margin-bottom: 1rem; break-inside: avoid;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hair-soft);
  background: var(--espresso-700); cursor: zoom-in;
}
.gallery__item img { width: 100%; height: auto; display: block; transition: transform .9s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,15,12,.5), transparent 45%); opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; }
.gallery__item:hover::after { opacity: 1; }
.gallery__cta { text-align: center; padding: 1rem var(--gutter) 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 4vmin; background: rgba(12,9,7,.93); opacity: 0; transition: opacity .35s var(--ease); }
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.85); }
.lightbox__btn { position: absolute; border-radius: 50%; border: 1px solid var(--hair); color: var(--gold-100); background: rgba(20,15,12,.55); display: grid; place-items: center; transition: border-color .3s var(--ease), background .3s var(--ease); }
.lightbox__btn:hover { border-color: var(--gold); background: rgba(172,130,77,.16); }
.lightbox__close { top: 1.4rem; right: 1.6rem; width: 46px; height: 46px; font-size: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.6rem; }
.lightbox__prev { left: 1.4rem; } .lightbox__next { right: 1.4rem; }
@media (max-width: 600px) { .lightbox__nav { width: 42px; height: 42px; } }

/* ----------------------------- Menu (PDF) ----------------------------- */
.menu { background: linear-gradient(180deg, var(--espresso-800), var(--espresso-900)); }
.menu__frame {
  max-width: 980px; margin: 0 auto; padding: clamp(1rem, 2.5vw, 1.8rem);
  background: linear-gradient(165deg, var(--espresso-600), var(--espresso-700));
  border: 1px solid var(--hair); border-radius: 18px;
  box-shadow: 0 50px 90px -50px rgba(0,0,0,.9), inset 0 1px 0 rgba(243,233,223,.05);
}
.menu__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-bottom: 1rem; border-bottom: 1px solid var(--hair-soft); margin-bottom: 1.2rem; }
.menu__pager { display: flex; align-items: center; gap: 1rem; }
.menu__count { font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; color: var(--ink-soft); }
.menu__tools { display: flex; gap: .6rem; flex-wrap: wrap; }
.menu__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 .6rem; border-radius: 100px;
  border: 1px solid var(--hair); color: var(--gold-100); font-size: 1.2rem;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.menu__btn--text { font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; padding: 0 1rem; }
.menu__btn:hover { background: rgba(172,130,77,.12); border-color: var(--gold); }
.menu__btn:disabled { opacity: .35; cursor: default; }
.menu__viewer { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; min-height: 300px; justify-content: center; }
.menu__viewer canvas { max-width: 100%; height: auto; border-radius: 6px; box-shadow: 0 24px 50px -24px rgba(0,0,0,.8); background: #fff; }
.menu__loading { display: flex; align-items: center; gap: .7rem; color: var(--ink-soft); font-size: .92rem; }
.spinner { width: 16px; height: 16px; border: 2px solid var(--hair); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.menu__order { text-align: center; margin-top: 2.6rem; }
.menu__order p { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink-soft); margin-bottom: 1.2rem; }

/* Order buttons */
.order-buttons { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.order-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--hair); border-radius: 100px; padding: .8rem 1.4rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease), background .4s var(--ease);
}
.order-btn::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent, var(--gold)); box-shadow: 0 0 10px var(--accent, var(--gold)); }
.order-btn:hover { transform: translateY(-2px); border-color: var(--accent, var(--gold)); color: #fff; }
.visit__info .order-buttons { justify-content: flex-start; margin-top: 1.8rem; }

/* Social icon buttons */
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; flex-wrap: wrap; }
.social { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--hair); color: var(--gold-100); transition: transform .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease); }
.social svg { width: 18px; height: 18px; display: block; }
.social:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-200); background: rgba(172,130,77,.12); }

/* ----------------------------- Praise ----------------------------- */
.praise__ratings { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; margin-top: 1.6rem; }
.rating { display: inline-flex; flex-direction: column; align-items: center; gap: .15rem; min-width: 90px; }
.rating__score { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-200); line-height: 1; }
.rating__stars { color: var(--gold); font-size: .78rem; letter-spacing: .1em; }
.rating__platform { font-family: var(--sans); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.rating__count { font-family: var(--sans); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .15rem; }
.rating__count:empty { display: none; }

.praise__carousel { max-width: 980px; margin: 0 auto; padding-inline: var(--gutter); }
.review-card {
  height: auto; box-sizing: border-box; padding: clamp(2rem, 4vw, 3.4rem);
  text-align: center; background: linear-gradient(165deg, var(--espresso-600), var(--espresso-800));
  border: 1px solid var(--hair-soft); border-radius: var(--radius);
}
.review-card__stars { color: var(--gold); letter-spacing: .3em; font-size: 1rem; margin-bottom: 1.4rem; }
.review-card__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.45; color: var(--cream); }
.review-card__quote::before { content: "\201C"; }
.review-card__quote::after { content: "\201D"; }
.review-card__meta { margin-top: 1.6rem; font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-200); }
.review-card__src { color: var(--muted); }
.swiper { padding-bottom: 3rem !important; }
.swiper-pagination-bullet { background: var(--ink-soft); opacity: .4; }
.swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ----------------------------- Visit ----------------------------- */
.visit__grid { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.visit__info .section-title { text-align: left; margin-top: 1rem; }
.visit__info .eyebrow { display: block; }
.visit__block { margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid var(--hair-soft); }
.visit__block:first-of-type { border-top: 0; padding-top: 0; }
.visit__block h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; color: var(--gold-100); margin-bottom: .7rem; display: flex; align-items: center; gap: .8rem; }
.visit__block p { color: var(--ink-soft); font-size: 1.02rem; }
.visit__muted { color: var(--muted) !important; font-size: .9rem !important; margin-top: .2rem; }
.visit__status { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .4rem; }
.hours { display: flex; flex-direction: column; gap: .55rem; }
.hours li { display: flex; justify-content: space-between; gap: 1.5rem; padding-bottom: .55rem; border-bottom: 1px dotted var(--hair-soft); font-size: .98rem; }
.hours li.is-today { color: var(--gold-100); }
.hours li.is-today .hours__day::after { content: " · Today"; color: var(--gold); font-size: .7rem; letter-spacing: .1em; }
.hours__day { color: var(--ink-soft); }
.hours li.is-today .hours__day { color: var(--gold-100); }
.hours__time { color: var(--ink); font-variant-numeric: tabular-nums; }

.visit__map { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hair); box-shadow: 0 40px 80px -50px rgba(0,0,0,.9); min-height: 460px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 460px; filter: grayscale(.3) sepia(.25) saturate(1.1) brightness(.85); }

/* ----------------------------- Press ----------------------------- */
.press { text-align: center; }
.press__inner { max-width: 720px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); border: 1px solid var(--hair-soft); border-radius: 18px; background: radial-gradient(120% 140% at 50% 0%, rgba(172,130,77,.06), transparent 60%); }
.press__eyebrow { color: var(--gold-200); }
.press__title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--cream); margin: .8rem 0 1rem; }
.press__note { color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.2rem; }
.press__link { margin-top: 1.6rem; }

/* ----------------------------- Footer ----------------------------- */
.footer { background: var(--espresso-900); border-top: 1px solid var(--hair); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 3rem; display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem; }
.footer__mark { width: 60px; margin-bottom: 1rem; }
.footer__name { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); }
.footer__tag { color: var(--muted); font-size: .92rem; margin: .2rem 0 1rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-200); margin-bottom: 1rem; }
.footer__col p, .footer__link { color: var(--ink-soft); font-size: .94rem; }
.footer__link { display: block; margin-top: .5rem; transition: color .3s var(--ease); }
.footer__link:hover { color: var(--gold-100); }
.footer__hours { display: flex; flex-direction: column; gap: .4rem; }
.footer__hours li { color: var(--ink-soft); font-size: .88rem; display: flex; flex-direction: column; }
.footer__hours .d { color: var(--muted); font-size: .76rem; letter-spacing: .06em; }
.footer__bar { max-width: var(--maxw); margin: 0 auto; padding: 1.6rem var(--gutter); border-top: 1px solid var(--hair-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }

/* ----------------------------- To top ----------------------------- */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hair);
  background: rgba(20,15,12,.8); backdrop-filter: blur(8px); color: var(--gold-100); font-size: 1.1rem;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { border-color: var(--gold); background: rgba(172,130,77,.16); }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__status { display: none !important; }
  .nav__burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__copy { margin: 0 auto; }
  .hero__copy .chips, .hero__cta { justify-content: center; }
  .hero__plate { order: -1; }
  .hero__plate img, .hero__plate-ring { width: min(70vw, 360px); }
  .dish--feature { grid-column: auto; grid-template-columns: 1fr; }
  .dish--feature .dish__media { max-width: 240px; margin: 0 auto; }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .menu__toolbar { justify-content: center; }
  .hero { padding-top: 6rem; }
  .btn { padding: .9rem 1.5rem; }
  .nav__mark { width: 44px; }
  .nav.is-scrolled .nav__mark { width: 38px; }
  .nav__name { font-size: 1.32rem; }
  .nav__kicker { display: none; }
}
