/* The Oak & Bean — elegant cafe styling
   Palette: deep forest green · cream · warm gold accent */

:root {
  --green-900: #14251d;
  --green-800: #1c3327;
  --green-700: #244433;
  --green-600: #2f5741;
  --green-500: #3c6b52;
  --cream:     #f6f1e7;
  --cream-2:   #efe7d7;
  --paper:     #fbf8f2;
  --gold:      #c9a24b;
  --gold-soft: #d9bd7c;
  --ink:       #22201b;
  --muted:     #6b6a61;
  --line:      rgba(255, 255, 255, 0.14);

  --serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --sans:  ui-sans-serif, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(20, 37, 29, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* `clip` rather than `hidden`: hidden turns body into a scroll container, which
   silently breaks `position: sticky` on the header and the menu jump-nav. */
html, body { overflow-x: clip; }

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
  margin: 0 0 0.5em;
}

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--gold); }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}

/* ---------- Buttons ----------
   Deliberately quiet: one solid colour, no gradient and no highlight sweep.
   Every state keeps a flat background behind the label, so contrast never
   drops and the text stays readable throughout the hover. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  line-height: 1.2;
  padding: 15px 32px;
  border-radius: 2px;
  border: 1px solid var(--green-800);
  background: var(--green-800);
  color: var(--cream);
  cursor: pointer;
  box-shadow: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}
.btn:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  box-shadow: 0 6px 18px rgba(20, 37, 29, 0.18);
}
.btn:active { background: var(--green-900); border-color: var(--green-900); box-shadow: none; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* On the dark green hours band the solid green would vanish, so invert it. */
.band .btn {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green-900);
}
.band .btn:hover { background: #fff; border-color: #fff; color: var(--green-900); }
.band .btn:active { background: var(--cream-2); border-color: var(--cream-2); }

/* Secondary, on the hero photo: outline that fills solid on hover rather than
   turning pale-on-pale. */
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 231, 0.55);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green-900);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.btn-ghost:active { background: var(--cream-2); border-color: var(--cream-2); color: var(--green-900); }
.btn-ghost:focus-visible { outline-color: var(--cream); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 37, 29, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px;
}
.brand .mark {
  color: var(--gold);
  font-size: 1.2rem;
}
.brand:hover { color: var(--cream); }
.brand-logo { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(246, 241, 231, 0.24);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 162, 75, 0.1); }
.nav-toggle:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201, 162, 75, 0.16), transparent 60%),
    linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--cream);
  padding: 120px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; max-width: 760px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--cream);
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(246, 241, 231, 0.86);
  max-width: 560px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Centered hero variant (home page, with logo) */
.hero-center { text-align: center; padding: 104px 0 112px; }
.hero-center .wrap { margin: 0 auto; }
.hero-center .eyebrow { margin-bottom: 20px; }
/* `p.lead` above is more specific than a bare `.lead`, so this has to match it
   to win — otherwise the 560px block keeps margin:0 and sits left of centre. */
.hero-center p.lead { margin: 6px auto 34px; }
.hero-center .hero-actions { justify-content: center; }
.hero-logo {
  width: auto;
  height: clamp(120px, 15vw, 168px);
  margin: 0 auto 22px;
  display: block;
}

/* Footer logo */
.footer-logo { height: 64px; width: auto; display: block; }

/* thin gold divider */
.rule {
  width: 64px; height: 2px; background: var(--gold);
  border: 0; margin: 0 0 26px;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Sections ---------- */

section { padding: 80px 0; }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); color: var(--green-800); margin: 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.intro { background: var(--cream); border-bottom: 1px solid var(--cream-2); }
.intro .wrap { max-width: 760px; text-align: center; }
.intro h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); color: var(--green-800); margin: 4px 0 18px; }
.intro p { font-size: 1.12rem; color: #4a4a42; margin: 0; }

/* Highlights */
.highlights { background: var(--paper); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 42px 30px 38px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card .icon {
  width: 60px; height: 60px; margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-soft);
  color: var(--green-600);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { color: var(--green-800); font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* Hours band */
.band {
  background: linear-gradient(160deg, var(--green-800), var(--green-600));
  color: var(--cream);
  text-align: center;
}
.band h2 { color: var(--cream); margin: 4px 0 0; }
.band-cta { margin-top: 34px; }
.hours-list { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; margin-top: 28px; }
.hours-list div { font-size: 1.05rem; color: rgba(246,241,231,0.9); }
.hours-list strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 1.15rem; margin-bottom: 4px; font-weight: 600; }

/* ---------- Menu page ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--cream);
  text-align: center;
  padding: 92px 0 78px;
}
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: rgba(246,241,231,0.85); max-width: 560px; margin: 0 auto; }

/* ---------- Contact ---------- */
.contact-section { padding-top: 72px; }
.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border: 1px solid var(--cream-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 37, 29, 0.16);
}

/* Left aside — dark, premium */
.contact-aside {
  background:
    radial-gradient(600px 300px at 120% -10%, rgba(201,162,75,0.18), transparent 60%),
    linear-gradient(165deg, var(--green-900), var(--green-700));
  color: var(--cream);
  padding: 52px 46px;
  position: relative;
}
.contact-aside .eyebrow { color: var(--gold-soft); }
.contact-aside h2 {
  color: var(--cream);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  margin: 0 0 22px;
}
.aside-rule { display: block; width: 54px; height: 2px; background: var(--gold); margin-bottom: 34px; }
.aside-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.aside-row:last-child { margin-bottom: 0; }
.aside-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 189, 124, 0.4);
  color: var(--gold);
}
.aside-icon svg { width: 19px; height: 19px; }
.aside-label {
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.68rem;
  color: var(--gold-soft); font-weight: 700; margin-bottom: 6px;
}
.aside-value { font-size: 1.04rem; color: rgba(246,241,231,0.92); font-family: var(--serif); line-height: 1.5; font-style: normal; }
.aside-value a { color: rgba(246,241,231,0.92); border-bottom: 1px solid rgba(217,189,124,0.4); }
.aside-value a:hover { color: var(--gold); }
.aside-value.hours { display: flex; flex-direction: column; gap: 3px; font-size: 0.98rem; }

/* Right — form */
.contact-form { padding: 52px 48px; background: var(--paper); }
.contact-form h2 { color: var(--green-800); font-size: clamp(1.6rem, 2.4vw, 2rem); margin: 4px 0 10px; }
.form-lead { color: var(--muted); margin: 0 0 26px; font-size: 1rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; color: var(--green-700); margin-bottom: 8px; text-transform: uppercase; }
.field label .opt { color: var(--muted); text-transform: none; font-weight: 400; letter-spacing: 0; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid #d8d2c4; border-radius: 6px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(60, 107, 82, 0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.btn-block { width: 100%; padding: 17px 28px; }

.notice { padding: 14px 18px; border-radius: 6px; margin-bottom: 22px; font-size: 0.95rem; }
.notice.success { background: #e7f2ea; color: #235c3b; border: 1px solid #b9dcc4; }
.notice.error { background: #fbeaea; color: #8a2b2b; border: 1px solid #e6c1c1; }

/* Full-width map band with floating directions card */
.map-band {
  position: relative;
  padding: 0;
  margin-top: 76px;
  height: 460px;
  overflow: hidden;
  border-top: 1px solid var(--cream-2);
}
.map-band-frame {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(1) contrast(0.92) brightness(1.04);
  transition: filter 0.5s ease;
}
.map-band:hover .map-band-frame { filter: grayscale(0) contrast(1) brightness(1); }
.map-card {
  position: absolute;
  top: 50%;
  left: max(24px, calc(50% - 560px + 24px));
  transform: translateY(-50%);
  width: 320px; max-width: calc(100% - 48px);
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 30px 30px 32px;
  box-shadow: 0 24px 60px rgba(20, 37, 29, 0.28);
}
.map-card .eyebrow { margin-bottom: 12px; }
.map-addr {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green-800);
  line-height: 1.5;
  margin: 0 0 22px;
}
.map-btn { display: inline-flex; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(246,241,231,0.8);
  padding: 56px 0 30px;
}
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-bottom: 8px; }
.footer-brand .mark { color: var(--gold); }
.site-footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.site-footer h4 { color: var(--gold-soft); font-family: var(--sans); text-transform: uppercase; letter-spacing: 2px; font-size: 0.74rem; margin-bottom: 12px; }
.site-footer a { color: rgba(246,241,231,0.8); }
.site-footer a:hover { color: var(--gold); }
.site-footer p { margin: 4px 0; font-size: 0.95rem; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.85rem; color: rgba(246,241,231,0.55);
}
.footer-bottom a { color: rgba(246,241,231,0.55); }

/* ---------- Hero with photo (home) ---------- */
.hero-photo {
  background:
    linear-gradient(180deg, rgba(20,37,29,0.62) 0%, rgba(20,37,29,0.52) 45%, rgba(20,37,29,0.82) 100%),
    var(--hero-img, none);
  background-size: cover;
  background-position: center 60%;
}
.hero-photo::after { opacity: 0.18; }
.hero-photo .hero-logo {
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}
.hero-photo .lead { color: rgba(246,241,231,0.94); text-shadow: 0 2px 14px rgba(0,0,0,0.4); }

/* ---------- Story split (home) ---------- */
.story { background: var(--cream); border-bottom: 1px solid var(--cream-2); }
.story .wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--wrap);
}
.story-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-media::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,162,75,0.35);
  border-radius: 8px;
  pointer-events: none;
}
.story-copy h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); color: var(--green-800); margin: 4px 0 18px; }
.story-copy p { font-size: 1.1rem; color: #4a4a42; margin: 0 0 18px; }

/* ---------- Feature image cards (home) ---------- */
.feature { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 14px 40px rgba(20,37,29,0.14);
  display: block;
}
.feature-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover img { transform: scale(1.06); }
.feature-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(20,37,29,0.86));
  color: var(--cream);
}
.feature-card figcaption .k {
  display: block;
  text-transform: uppercase; letter-spacing: 2.5px;
  font-size: 0.66rem; font-weight: 700; color: var(--gold-soft); margin-bottom: 6px;
}
.feature-card figcaption .t { font-family: var(--serif); font-size: 1.25rem; }

/* ---------- Band with photo ---------- */
.band-photo {
  position: relative;
  background:
    linear-gradient(160deg, rgba(28,51,39,0.92), rgba(36,68,51,0.86)),
    var(--band-img, none);
  background-size: cover;
  background-position: center;
}

/* ---------- Gallery page ---------- */
.gallery-section { background: var(--paper); }
.masonry {
  columns: 3;
  column-gap: 18px;
}
.masonry .shot {
  break-inside: avoid;
  margin: 0 0 18px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(20,37,29,0.12);
  background: var(--cream-2);
}
.masonry .shot img {
  width: 100%; height: auto; display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.masonry .shot:hover img { transform: scale(1.05); filter: brightness(0.92); }
.masonry .shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(20,37,29,0.85));
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.98rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.masonry .shot:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 26, 20, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  width: auto; height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-cap {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: var(--cream);
  font-family: var(--serif); font-size: 1.1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(217,189,124,0.5);
  color: var(--cream);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.5rem; cursor: pointer; line-height: 1;
  display: grid; place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.lb-btn:hover { background: rgba(201,162,75,0.25); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.lb-btn:focus-visible, .lb-close:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: 0; color: var(--cream);
  font-size: 2.2rem; cursor: pointer; line-height: 1;
  opacity: 0.8;
}
.lb-close:hover { opacity: 1; color: var(--gold); }

/* ---------- On-page menu ---------- */

.menu-hero { padding-top: 72px; }

/* Coffee cup with rising steam — the page's signature motion. */
.steam-cup {
  position: relative;
  display: block;
  width: 64px;
  margin: 0 auto 26px;
  color: var(--gold-soft);
}
.steam-cup .cup { width: 64px; height: 44px; display: block; }
.steam {
  position: absolute;
  left: 0; right: 14px; bottom: 46px;
  height: 34px;
  display: flex; justify-content: center; gap: 9px;
}
.steam i {
  display: block;
  width: 3px; height: 26px;
  border-radius: 3px;
  background: linear-gradient(to top, rgba(217, 189, 124, 0.55), rgba(217, 189, 124, 0));
  opacity: 0;
  transform-origin: bottom center;
  animation: steam-rise 3.6s ease-in-out infinite;
}
.steam i:nth-child(2) { animation-delay: 1.2s; height: 32px; }
.steam i:nth-child(3) { animation-delay: 2.4s; }

@keyframes steam-rise {
  0%   { opacity: 0; transform: translateY(6px) scaleY(0.6) translateX(0); }
  25%  { opacity: 0.9; }
  60%  { opacity: 0.55; transform: translateY(-14px) scaleY(1) translateX(-3px); }
  100% { opacity: 0; transform: translateY(-30px) scaleY(1.15) translateX(3px); }
}

/* Menu key */
.legend {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 0.86rem;
  color: rgba(246, 241, 231, 0.82);
}
.legend li { display: flex; align-items: center; gap: 8px; }
.legend-halal {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--gold-soft); font-weight: 600;
}

.tag {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 20px; padding: 0 6px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.8px;
  vertical-align: 2px;
}
.tag-special { border-color: rgba(60, 107, 82, 0.42); color: var(--green-500); padding: 0 4px; }
.tag-special svg { width: 13px; height: 13px; }
.menu-card .tag-v, .menu-card .tag-vg { border-color: rgba(60, 107, 82, 0.38); color: var(--green-600); }

/* Sticky section jump-nav, sits directly under the site header */
.menu-nav {
  position: sticky; top: 74px; z-index: 40;
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-2);
}
.menu-nav-scroll {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}
.menu-nav-scroll::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: 0 0 auto;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--cream-2);
  color: var(--muted);
  font-size: 0.8rem; letter-spacing: 0.4px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.menu-nav a:hover { color: var(--green-700); border-color: var(--gold-soft); }
.menu-nav a.active {
  background: var(--green-800); border-color: var(--green-800); color: var(--cream);
}

.menu-page { background: var(--paper); padding-top: 64px; }

.menu-group-head { text-align: center; margin: 20px 0 40px; }
.menu-group-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--green-800);
  margin: 0;
}
.bean-divider {
  display: block; width: 30px; height: 30px;
  margin: 0 auto 10px;
  color: var(--gold);
  animation: bean-tilt 7s ease-in-out infinite;
}
.bean-divider svg { width: 100%; height: 100%; }
@keyframes bean-tilt {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

/* Cards flow into balanced columns so short and long sections pack neatly. */
.menu-sections { columns: 2; column-gap: 30px; margin-bottom: 58px; }

.menu-card {
  break-inside: avoid;
  /* Clear the sticky header + jump-nav when linked to directly. */
  scroll-margin-top: 140px;
  margin: 0 0 30px;
  background: #fff;
  border: 1px solid var(--cream-2);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 34px 34px 30px;
  box-shadow: 0 10px 34px rgba(20, 37, 29, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.menu-card:hover { box-shadow: 0 20px 52px rgba(20, 37, 29, 0.12); transform: translateY(-3px); }

/* Little Oaks and Alternative Milks read as inset panels, like the printed menu */
.menu-card.is-feature {
  background: linear-gradient(165deg, var(--green-800), var(--green-700));
  border-color: var(--green-800);
  color: var(--cream);
}
.menu-card.is-feature h3 { color: var(--cream); }
.menu-card.is-feature .menu-card-note { color: rgba(246, 241, 231, 0.72); }
.menu-card.is-feature .menu-item-name { color: var(--cream); }
.menu-card.is-feature .menu-item-price { color: var(--gold-soft); }
.menu-card.is-feature .menu-item-desc { color: rgba(246, 241, 231, 0.76); }
.menu-card.is-feature .menu-dots { border-bottom-color: rgba(246, 241, 231, 0.28); }
.menu-card.is-feature .tag { border-color: rgba(217, 189, 124, 0.5); color: var(--gold-soft); }

.menu-card-head { text-align: center; margin-bottom: 26px; }
.menu-card-head h3 {
  font-size: 1.4rem;
  color: var(--green-800);
  margin: 0 0 6px;
  letter-spacing: 0.4px;
}
.menu-card-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-item { margin-bottom: 20px; }
.menu-item:last-child { margin-bottom: 0; }
.menu-item.is-compact { margin-bottom: 9px; }

/* Classic dot-leader row: name … price */
.menu-item-row { display: flex; align-items: baseline; gap: 8px; }
.menu-item-name {
  font-family: var(--serif);
  font-size: 1.06rem;
  color: var(--green-800);
  line-height: 1.35;
}
.menu-dots {
  flex: 1 1 auto;
  min-width: 14px;
  border-bottom: 1px dotted rgba(107, 106, 97, 0.4);
  transform: translateY(-4px);
}
.menu-item-price {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-item-desc {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
}
.menu-item-add {
  margin: 5px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
}

.menu-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 34px 30px 40px;
  border-top: 1px solid var(--cream-2);
}
.menu-note p { color: var(--muted); font-size: 0.92rem; margin: 0 0 22px; }

/* Smaller inline cup, used on light backgrounds (home story block) */
.steam-cup-sm {
  width: 46px;
  margin: 0 0 12px;
  color: var(--gold);
}
.steam-cup-sm .cup { width: 46px; height: 32px; }
.steam-cup-sm .steam { bottom: 34px; right: 10px; height: 24px; gap: 7px; }
.steam-cup-sm .steam i { height: 19px; }

/* ---------- Scroll reveal ----------
   Scoped to .js (set by an inline script in the head) so that if JavaScript is
   blocked or fails to load, the menu is plain visible text rather than a page
   of invisible opacity:0 content. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

/* Cascade siblings so grids arrive in sequence rather than all at once */
.js .feature-grid .reveal:nth-child(2), .js .cards .reveal:nth-child(2) { transition-delay: 0.1s; }
.js .feature-grid .reveal:nth-child(3), .js .cards .reveal:nth-child(3) { transition-delay: 0.2s; }

/* Menu cards are both revealed and hover-lifted, so they need one transition
   covering all three properties — otherwise .reveal's shorthand wins and the
   hover shadow snaps instead of easing. */
.js .menu-card.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease;
}

/* Respect users who ask for less motion: no steam, no drift, no reveal. */
@media (prefers-reduced-motion: reduce) {
  .steam i, .bean-divider { animation: none; }
  .steam { display: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .lb-btn:hover { transform: translateY(-50%); }
}

@media (max-width: 900px) {
  .menu-sections { columns: 1; }
  .menu-card { padding: 28px 24px 26px; }
  .menu-nav { top: 74px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .masonry { columns: 2; }
}
@media (max-width: 860px) {
  .story .wrap { grid-template-columns: 1fr; gap: 32px; }
  .story-media { aspect-ratio: 3 / 2; max-height: 420px; }
  .feature-grid { grid-template-columns: 1fr; gap: 18px; }
  .feature-card { aspect-ratio: 16 / 10; }
  .lb-btn { width: 44px; height: 44px; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
}

/* ---------- Original responsive ---------- */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-aside { padding: 40px 30px; }
  .contact-form { padding: 40px 30px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .nav-links {
    display: none;
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--green-900); border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 0; }
  .nav-toggle { display: grid; }
  section { padding: 60px 0; }
  .hero { padding: 90px 0 96px; }
}
