/* =========================================================================
   Culture Brew Mug — styles
   Palette matches the real brand: mint + forest green, black, warm cream.
   All colours live in :root so they're easy to retune.
   ========================================================================= */

:root {
  /* Brand palette */
  --ink-deep:  #15201a;   /* near-black green — dark sections (footer, top bar) */
  --ink:       #22302a;   /* body text + headings */
  --ink-soft:  #5f7068;   /* muted text */
  --green:     #3c8f67;   /* primary green — buttons & accents */
  --green-dk:  #2a6b4c;   /* hover / eyebrows / prices */
  --mint:      #a7dcc4;   /* brand mint — accents on dark backgrounds */
  --mint-soft: #e9f4ee;   /* very light mint — section background */
  --cream:     #f7f3ec;   /* page background */
  --cream-2:   #fffdf9;   /* lighter card background */
  --line:      #e4ddd0;   /* hairlines / borders */

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -22px rgba(21, 32, 26, 0.5);
  --shadow-sm: 0 8px 24px -14px rgba(21, 32, 26, 0.45);

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
}

img, iframe { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 0.4em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; scroll-margin-top: 90px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dk);
  margin: 0 0 0.9rem;
}

.section-head { max-width: 660px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.section-head__lede { color: var(--ink-soft); font-size: 1.05rem; }

/* Accessibility helpers */
.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;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--ink-deep); color: var(--cream); padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius); transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

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

/* ----------------------------- Buttons ----------------------------- */
.btn {
  --pad-y: 0.9rem; --pad-x: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px -12px rgba(60, 143, 103, 0.85); }
.btn--primary:hover { background: var(--green-dk); transform: translateY(-3px); box-shadow: 0 18px 32px -12px rgba(42, 107, 76, 0.9); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(247, 243, 236, 0.55); }
.btn--ghost:hover { background: rgba(247, 243, 236, 0.12); transform: translateY(-3px); }
.btn--small { --pad-y: 0.6rem; --pad-x: 1.1rem; font-size: 0.85rem; background: var(--green); color: #fff; }
.btn--small:hover { background: var(--green-dk); transform: translateY(-2px); }

/* On light sections, ghost buttons need dark text */
.visit__cta .btn--ghost { color: var(--ink); border-color: var(--green-dk); }
.visit__cta .btn--ghost:hover { background: rgba(42, 107, 76, 0.08); }

/* ----------------------------- Top bar ----------------------------- */
.topbar {
  background: var(--ink-deep); color: var(--cream);
  text-align: center; font-size: 0.85rem; padding: 0.55rem 1rem;
}
.topbar a { color: var(--mint); font-weight: 600; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ----------------------------- Header / nav ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  background: transparent;
}
.site-header.is-stuck {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--cream); font-weight: 600; }
.site-header.is-stuck .brand { color: var(--ink); }
.brand-logo { width: 44px; height: 44px; display: block; flex: none; }
.brand-text { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -0.01em; }
.brand--light { color: var(--cream); }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--cream); position: relative; }
.site-header.is-stuck .nav-menu a:not(.btn) { color: var(--ink); }
.nav-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--green); transition: width 0.3s var(--ease);
}
.nav-menu a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; z-index: 110;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.site-header.is-stuck .nav-toggle span { background: var(--ink); }

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden; isolation: isolate;
  margin-top: -84px; padding-top: 84px; /* pull under the transparent header */
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--ink-deep) url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.08); will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,22,17,0.86) 0%, rgba(15,22,17,0.5) 45%, rgba(15,22,17,0.12) 100%),
    linear-gradient(180deg, rgba(15,22,17,0.2) 0%, transparent 30%, rgba(15,22,17,0.55) 100%);
}
.hero__inner { max-width: 760px; padding-block: 4rem; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.8rem; font-weight: 600;
  color: var(--cream); opacity: 0.92; margin: 0 0 1.2rem;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 6.2rem); font-weight: 500; margin: 0 0 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__title em { color: var(--mint); font-style: italic; }
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.35rem); max-width: 34ch; opacity: 0.95; margin: 0 0 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* steam animation */
.steam { position: absolute; bottom: 18%; right: 12%; width: 60px; height: 120px; z-index: -1; opacity: 0.5; }
.steam span {
  position: absolute; bottom: 0; width: 10px; height: 90px; border-radius: 50%;
  background: linear-gradient(transparent, rgba(247,243,236,0.55));
  filter: blur(7px); animation: rise 4s ease-in infinite;
}
.steam span:nth-child(1) { left: 6px; animation-delay: 0s; }
.steam span:nth-child(2) { left: 26px; animation-delay: 1.3s; height: 110px; }
.steam span:nth-child(3) { left: 44px; animation-delay: 0.7s; }
@keyframes rise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(-90px) scaleX(2.2); opacity: 0; }
}

/* scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0; z-index: 1;
  width: 26px; height: 42px; border: 2px solid rgba(247,243,236,0.6); border-radius: 14px;
}
.scroll-cue span {
  position: absolute; left: 50%; top: 8px; translate: -50% 0;
  width: 4px; height: 8px; background: var(--cream); border-radius: 2px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ----------------------------- Marquee ----------------------------- */
.marquee {
  background: var(--ink-deep); color: var(--cream); overflow: hidden;
  padding: 1.1rem 0; border-block: 1px solid rgba(247,243,236,0.08);
}
.marquee__track { display: inline-flex; gap: 2.5rem; white-space: nowrap; animation: scroll-x 22s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; opacity: 0.92; }
.marquee__track span:nth-child(even) { color: var(--mint); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ----------------------------- Story ----------------------------- */
.story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story__media { position: relative; }
.story__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 9/11; object-fit: cover; object-position: center 35%; background: var(--line); }
.story__badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--cream-2);
  border-radius: var(--radius); padding: 0.9rem 1.3rem; box-shadow: var(--shadow-sm);
  text-align: center; border: 1px solid var(--line);
}
.story__badge-mark { display: block; font-size: 1.7rem; line-height: 1; margin-bottom: 0.15rem; }
.story__badge-label { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--green-dk); }
.story__body h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.story__body p:not(.eyebrow) { color: var(--ink-soft); }

.stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2.2rem; }
.stat { display: block; }
.stat__num, .stat__plus { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); line-height: 1; }
.stat__num--text { font-size: 1.9rem; }
.stat__plus { display: inline; color: var(--green); }
.stat__label { display: block; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ----------------------------- Menu ----------------------------- */
.menu { background: var(--mint-soft); }
.menu__tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3rem; }
.menu__tab {
  font-family: var(--font-body); font-weight: 500; font-size: 0.92rem;
  padding: 0.6rem 1.25rem; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--cream-2); color: var(--ink-soft); cursor: pointer;
  transition: all 0.25s var(--ease);
}
.menu__tab:hover { border-color: var(--green); color: var(--ink); }
.menu__tab.is-active { background: var(--green); color: #fff; border-color: var(--green); }

.menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 3rem; }
.menu-item {
  padding: 1.3rem 0; border-bottom: 1px dashed var(--line);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.menu-item.is-hidden { display: none; }
.menu-item__row { display: flex; align-items: baseline; gap: 0.5rem; }
.menu-item h3 { font-size: 1.25rem; margin: 0; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.menu-item .price { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-dk); white-space: nowrap; }
.menu-item p { margin: 0.45rem 0 0; color: var(--ink-soft); font-size: 0.92rem; }
.tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
  background: rgba(60, 143, 103, 0.16); color: var(--green-dk);
  padding: 0.1rem 0.45rem; border-radius: 6px; vertical-align: middle;
}
.menu__legend { text-align: center; margin-top: 2.5rem; color: var(--ink-soft); font-size: 0.9rem; }

/* ----------------------------- Quote band ----------------------------- */
.quote-band { position: relative; padding: clamp(5rem, 11vw, 9rem) 0; color: var(--cream); text-align: center; overflow: hidden; isolation: isolate; }
.quote-band__bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--ink-deep) url("assets/quote.jpg") center / cover fixed no-repeat;
}
.quote-band__overlay { position: absolute; inset: 0; z-index: -1; background: rgba(15,22,17,0.72); }
.quote-band blockquote { margin: 0; }
.quote-band p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 4vw, 2.8rem); max-width: 20ch; margin: 0 auto 1rem; }
.quote-band cite { font-style: normal; opacity: 0.8; letter-spacing: 0.05em; }

/* ----------------------------- Gallery ----------------------------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item {
  padding: 0; border: 0; cursor: pointer; overflow: hidden; border-radius: var(--radius);
  background: var(--line); aspect-ratio: 1; position: relative;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item::after {
  content: "View"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(15,22,17,0.45); color: var(--cream); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 0.8rem; opacity: 0; transition: opacity 0.3s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }

/* ----------------------------- Visit ----------------------------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.visit__info h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.visit__list { list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: grid; gap: 1.4rem; }
.visit__list li { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.visit__label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; color: var(--green-dk); padding-top: 0.15rem; }
.visit__list a { color: var(--green-dk); text-decoration: none; }
.visit__list a:hover { text-decoration: underline; }
.visit__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.visit__map iframe { width: 100%; height: 440px; border: 0; }

/* ----------------------------- Footer ----------------------------- */
.footer { background: var(--ink-deep); color: var(--cream); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer__brand p { color: rgba(247,243,236,0.7); max-width: 40ch; }
.footer__social { display: flex; gap: 1.5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.footer__social a { color: var(--cream); text-decoration: none; font-weight: 500; opacity: 0.85; }
.footer__social a:hover { color: var(--mint); opacity: 1; }
.footer__newsletter h3 { font-size: 1.5rem; }
.footer__newsletter p { color: rgba(247,243,236,0.7); }
.newsletter { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 200px; padding: 0.85rem 1.1rem; border-radius: 100px;
  border: 1.5px solid rgba(247,243,236,0.25); background: rgba(247,243,236,0.06);
  color: var(--cream); font-family: var(--font-body); font-size: 0.95rem;
}
.newsletter input::placeholder { color: rgba(247,243,236,0.5); }
.newsletter input:focus { outline: none; border-color: var(--mint); }
.newsletter__msg { color: var(--mint); font-size: 0.88rem; min-height: 1.2em; margin-top: 0.6rem; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding: 1.6rem 0; border-top: 1px solid rgba(247,243,236,0.12);
  font-size: 0.82rem; color: rgba(247,243,236,0.6);
}
.footer__bottom p { margin: 0; }

/* ----------------------------- Lightbox ----------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none; place-items: center;
  background: rgba(10, 14, 11, 0.92); padding: 5vw;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { display: grid; opacity: 1; }
.lightbox__img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox__close {
  position: absolute; top: 1.4rem; right: 1.8rem; background: none; border: 0;
  color: var(--cream); font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: 0.85;
}
.lightbox__close:hover { opacity: 1; }

/* ----------------------------- Scroll reveal ----------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===========================================================================
   Responsive
   =========================================================================== */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 30%; flex-direction: column; justify-content: center;
    gap: 2rem; background: var(--cream); padding: 2rem;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.4);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a:not(.btn) { color: var(--ink); font-size: 1.15rem; }
  body.nav-open { overflow: hidden; }

  /* hamburger -> X */
  .nav-toggle.is-open span { background: var(--ink); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .story__grid, .visit__grid, .footer__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 460px; margin-inline: auto; }
  .quote-band__bg { background-attachment: scroll; }
}

@media (max-width: 620px) {
  .menu__grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { gap: 1.5rem; }
  .stat__num, .stat__plus { font-size: 2rem; }
  .stat__num--text { font-size: 1.7rem; }
  .footer__bottom { flex-direction: column; }
  .visit__list li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ===========================================================================
   Sub-pages (menu.html / order.html)
   =========================================================================== */

/* ----------------------------- Page hero (short banner) ----------------------------- */
.page-hero {
  position: relative; display: flex; align-items: center;
  min-height: clamp(420px, 56vh, 560px);
  color: var(--cream); overflow: hidden; isolation: isolate;
  margin-top: -84px; padding-top: 84px; /* pull under the transparent header */
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-color: var(--ink-deep); background-size: cover; background-position: center; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,22,17,0.88) 0%, rgba(15,22,17,0.55) 50%, rgba(15,22,17,0.25) 100%),
    linear-gradient(180deg, rgba(15,22,17,0.25) 0%, transparent 35%, rgba(15,22,17,0.5) 100%);
}
.page-hero__inner { max-width: 720px; padding-block: 3.5rem; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); margin: 0 0 1rem; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.page-hero h1 em { color: var(--mint); font-style: italic; }
.page-hero__lede { font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 42ch; opacity: 0.95; margin: 0 0 2rem; }

/* ----------------------------- Sticky category pills (menu page) ----------------------------- */
.menu-pills {
  position: sticky; top: 75px; z-index: 90; /* header is 76px tall — sit just under it */
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.menu-pills__track {
  display: flex; gap: 0.5rem; overflow-x: auto; padding-block: 0.7rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.menu-pills__track::-webkit-scrollbar { display: none; }
/* Edge fades + chevron: signal that the pill bar scrolls sideways (8 of 11
   categories are off-screen on phones — without this the bar looks finished). */
.menu-pills::before,
.menu-pills::after {
  content: ""; position: absolute; top: 0; bottom: 1px; width: 3.4rem;
  pointer-events: none; opacity: 0; transition: opacity 0.25s var(--ease); z-index: 1;
}
.menu-pills::before {
  left: 0;
  background: linear-gradient(to right, #f7f3ec 20%, rgba(247, 243, 236, 0));
}
.menu-pills::after {
  right: 0;
  background: linear-gradient(to left, #f7f3ec 20%, rgba(247, 243, 236, 0));
  content: "\203A"; /* › */
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 0.55rem; color: var(--green); font-size: 1.25rem; font-weight: 600;
}
.menu-pills.has-left::before { opacity: 1; }
.menu-pills.has-right::after { opacity: 1; }
.menu-pill {
  flex: none; font-weight: 500; font-size: 0.88rem; text-decoration: none;
  padding: 0.5rem 1.1rem; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--cream-2); color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.menu-pill:hover { border-color: var(--green); color: var(--ink); }
.menu-pill.is-active { background: var(--green); color: #fff; border-color: var(--green); }

/* ----------------------------- Full menu page ----------------------------- */
.menu--page { padding-top: clamp(3rem, 6vw, 5rem); }
.menu-group__title {
  font-size: clamp(2rem, 4.5vw, 3rem); text-align: center;
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0.5rem;
}
.menu-group__title:first-child { margin-top: 0; }
.menu-section { padding-top: clamp(1.8rem, 4vw, 3rem); scroll-margin-top: 130px; }
.menu-section__head {
  display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap;
  border-bottom: 2px solid var(--green); padding-bottom: 0.6rem; margin-bottom: 0.8rem;
}
.menu-section__head h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0; color: var(--green-dk); }
.menu-section__sub { font-style: italic; font-family: var(--font-display); color: var(--ink-soft); }
.menu-item h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin: 0; line-height: 1.15; }
.menu-section__note {
  margin: 1.4rem 0 0; font-size: 0.88rem; color: var(--ink-soft);
  background: var(--cream-2); border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 0.7rem 1.1rem; display: inline-block;
}

/* ----------------------------- CTA band ----------------------------- */
.cta-band { background: var(--ink-deep); color: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 0.4rem; }
.cta-band p { margin: 0; color: rgba(247,243,236,0.75); max-width: 52ch; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band .btn--ghost { color: var(--cream); border-color: rgba(247,243,236,0.55); }
.cta-band .btn--ghost:hover { background: rgba(247,243,236,0.12); }

/* ----------------------------- Order page ----------------------------- */
.order { background: var(--mint-soft); }
.order__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start;
}
.qr-card {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center;
  position: sticky; top: 100px;
}
.qr-card__eyebrow {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 600;
  color: var(--green-dk); margin: 0 0 0.4rem;
}
.qr-card__title { font-size: clamp(1.7rem, 3.5vw, 2.2rem); margin: 0 0 1.4rem; }
.qr-card__code {
  width: min(260px, 70%); height: auto; margin: 0 auto;
  border: 3px solid var(--ink-deep); border-radius: var(--radius); padding: 0.9rem; background: #fff;
}
.qr-card__hint { color: var(--ink-soft); font-size: 0.92rem; margin: 1.3rem 0 0.8rem; }
.qr-card__url {
  display: inline-block; font-weight: 600; font-size: 0.9rem; color: var(--green-dk);
  background: rgba(60,143,103,0.12); padding: 0.35rem 0.9rem; border-radius: 100px;
}
.order__steps h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.steps { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.8rem; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 1.2rem; align-items: start; }
.step__num {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #fff; font-family: var(--font-display);
  font-size: 1.5rem; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.3rem; margin: 0.3rem 0 0.3rem; }
.step p { margin: 0; color: var(--ink-soft); }
.step a { color: var(--green-dk); font-weight: 600; }
.order__alt {
  margin-top: 2.2rem; background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.4rem;
}
.order__alt p { margin: 0; }
.order__alt a { color: var(--green-dk); font-weight: 600; }

/* ----------------------------- Home: signature dishes teaser ----------------------------- */
.faves__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 3rem; }
.menu__cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.6rem; }
.menu__cta .btn--ghost { color: var(--ink); border-color: var(--green-dk); }
.menu__cta .btn--ghost:hover { background: rgba(42, 107, 76, 0.08); }

@media (max-width: 880px) {
  .order__grid { grid-template-columns: 1fr; }
  .qr-card { position: static; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 620px) {
  .faves__grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .step { grid-template-columns: 42px 1fr; gap: 0.9rem; }
  .step__num { width: 42px; height: 42px; font-size: 1.2rem; }
}

/* ----------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__bg { transform: none; }
}
