/* ============================================================
   PROFESSOR BRAWN CAFÉ — design system
   Warm collegiate café: parchment ground, plum ink, berry CTAs,
   banner-gold trim. Food first, purpose throughout.
   ============================================================ */

:root {
  --parchment: #faf4e6;
  --parchment-deep: #f1e5cb;
  --card: #fffaf0;
  --ink: #33234b;
  --ink-soft: #5c4a72;
  --plum: #5b2d86;
  --plum-deep: #241536;
  --plum-deeper: #1a0e28;
  --berry: #a81c64;
  --berry-deep: #8c1553;
  --brass: #745607;
  --gold: #c9a227;
  --gold-pale: #e7cf8c;
  --leaf: #266a44;
  --navy: #27418f;
  --line: #decdaa;
  --line-soft: #eadfc4;
  --white: #fffdf8;

  --serif: "Besley", "Georgia", serif;
  --sans: "Public Sans", "Segoe UI", system-ui, sans-serif;

  --wrap: 1140px;
  --rad: 14px;
  --rad-lg: 22px;
  --shadow: 0 10px 30px rgba(51, 35, 75, 0.10);
  --shadow-lift: 0 16px 44px rgba(51, 35, 75, 0.16);
}

/* ---------- reset ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.14;
  color: var(--plum-deep);
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.2rem, 5.6vw, 3.9rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1em; }

a { color: var(--berry); text-underline-offset: 3px; }
a:hover { color: var(--berry-deep); }

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

::selection { background: var(--gold-pale); color: var(--plum-deep); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--plum-deep);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 10px 0;
  text-decoration: none;
}
.skip-link:focus-visible { left: 0; color: var(--white); }

.wrap {
  width: min(var(--wrap), 100% - 2.4rem);
  margin-inline: auto;
}

/* ---------- reveals (gated on .js-anim) ---------- */

.js-anim .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-anim .reveal.is-in { opacity: 1; transform: none; }
.js-anim .reveal.d1 { transition-delay: 0.08s; }
.js-anim .reveal.d2 { transition-delay: 0.16s; }
.js-anim .reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- header ---------- */

.top-note {
  background: var(--plum-deep);
  color: #efe6d2;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.45rem 1rem;
}
.top-note strong { color: var(--gold-pale); font-weight: 600; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 244, 230, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-head .bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--plum-deep);
  margin-right: auto;
  flex-shrink: 1;
  min-width: 0;
}
.brand img { width: auto; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand b {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}
.site-nav a:hover { background: var(--parchment-deep); color: var(--plum-deep); }
.site-nav a[aria-current="page"] {
  background: var(--plum-deep);
  color: var(--white);
}

.head-cta { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: var(--plum-deep);
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1.2rem 1rem;
    gap: 0.2rem;
    box-shadow: var(--shadow);
  }
  .site-nav a { padding: 0.75rem 0.9rem; border-radius: 10px; }
  .nav-open .site-nav { display: flex; }
  .head-cta .head-menu { display: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.5rem;
  font: 600 1rem var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-berry { background: var(--berry); color: var(--white); box-shadow: 0 6px 18px rgba(168, 28, 100, 0.28); }
.btn-berry:hover { background: var(--berry-deep); color: var(--white); }

.btn-plum { background: var(--plum-deep); color: var(--white); }
.btn-plum:hover { background: var(--plum); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--plum-deep);
  border: 1.5px solid var(--plum-deep);
}
.btn-ghost:hover { background: var(--plum-deep); color: var(--white); }

.btn-wa { background: #1d7a4f; color: var(--white); }
.btn-wa:hover { background: #15613d; color: var(--white); }

.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.9rem; }

/* ---------- pennant section tags ---------- */

.pennant {
  display: inline-block;
  background: var(--plum);
  color: var(--white);
  font: 600 0.74rem var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.42rem 1.5rem 0.42rem 0.9rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  margin-bottom: 1rem;
}
.pennant.gold { background: var(--brass); }
.pennant.berry { background: var(--berry); }

/* ---------- hero ---------- */

.hero { padding: clamp(2.4rem, 6vw, 4.6rem) 0 0; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: center;
  padding-bottom: clamp(2rem, 5vw, 3.4rem);
}

.hero .lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.hero-card {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 5px solid var(--white);
  outline: 1px solid var(--line);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 6; }
.hero-card figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(26, 14, 40, 0.82);
  color: #f3ead8;
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card img { aspect-ratio: 16 / 10; }
}

/* open-now pill */
.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}
.open-pill i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #98a0ae;
}
.open-pill.is-open i { background: #1d9a5c; }
.open-pill.is-shut i { background: #c03a2b; }

/* full-bleed photo band */
.band {
  position: relative;
  margin-top: clamp(1rem, 3vw, 2rem);
}
.band img {
  width: 100%;
  height: clamp(260px, 44vw, 520px);
  object-fit: cover;
}
.band::before, .band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background:
    linear-gradient(90deg, var(--gold) 0 30%, var(--plum) 30% 100%);
}
.band::before { top: 0; }
.band::after { bottom: 0; }

/* ---------- sections ---------- */

.section { padding: clamp(2.8rem, 7vw, 5.2rem) 0; }
.section.tight-top { padding-top: 1.8rem; }
.section.tint { background: var(--parchment-deep); }
.section.dark {
  background: var(--plum-deep);
  color: #efe6d2;
}
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark a { color: var(--gold-pale); }

.section-head {
  max-width: 44em;
  margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem);
}
.section-head p:not(.pennant) { color: var(--ink-soft); }
.section.dark .section-head p:not(.pennant) { color: #cfc2a8; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .pennant { margin-inline: auto; }

/* ---------- dish cards ---------- */

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}

.dish-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.dish-card .ph { position: relative; }
.dish-card .ph img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

.price-chip {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  background: var(--plum-deep);
  color: var(--gold-pale);
  font: 700 1rem var(--serif);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(26, 14, 40, 0.35);
}

.dish-card .body { padding: 1.15rem 1.3rem 1.35rem; }
.dish-card h3 { margin-bottom: 0.3rem; }
.dish-card .body p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.chef-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brass);
  font: 600 0.74rem var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

/* ---------- promo posters ---------- */

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.poster {
  border-radius: var(--rad);
  overflow: hidden;
  border: 5px solid var(--white);
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.poster:hover { transform: translateY(-5px) rotate(-0.4deg); box-shadow: var(--shadow-lift); }
.poster img { aspect-ratio: 842 / 1191; object-fit: cover; width: 100%; }
.poster figcaption {
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum-deep);
}
.poster figcaption span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.83rem; }

/* ---------- story teaser / seal ---------- */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; } }

.story-grid .art {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.seal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--gold);
  color: var(--brass);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font: 600 0.78rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201, 162, 39, 0.08);
}

.quote-rule {
  border: 0;
  height: 3px;
  width: 72px;
  margin: 1.4rem 0;
  background: linear-gradient(90deg, var(--gold), var(--berry));
}

/* ---------- outlets ---------- */

.outlet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.outlet-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.outlet-card .ph img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

.outlet-card .crest-cover {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 140% at 20% 0%, rgba(201, 162, 39, 0.25), transparent 55%),
    linear-gradient(150deg, var(--plum) 0%, var(--plum-deep) 70%);
  position: relative;
  overflow: hidden;
}
.outlet-card .crest-cover .crest-mark {
  width: clamp(84px, 30%, 120px);
  height: clamp(84px, 30%, 120px);
  background: var(--gold-pale);
  -webkit-mask: url("../img/crest-mono.svg") center / contain no-repeat;
  mask: url("../img/crest-mono.svg") center / contain no-repeat;
}
.outlet-card .crest-cover p {
  position: absolute;
  bottom: 0.8rem;
  margin: 0;
  color: #cfc2a8;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outlet-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.outlet-card h3 { margin: 0; }
.outlet-card h3 small {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.fact-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink);
}
.fact-row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.2rem; color: var(--berry); }
.fact-row p { margin: 0; }
.fact-row .muted { color: var(--ink-soft); font-size: 0.88rem; }

.outlet-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

/* ---------- order strip ---------- */

.order-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
}
.order-strip p { margin: 0; }
.order-strip .logos { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-left: auto; }
.order-strip .logos a {
  display: inline-flex;
  border: 1.5px solid var(--plum-deep);
  border-radius: 12px;
  padding: 0.5rem 0.9rem;
  background: var(--plum-deep);
  transition: transform 0.16s ease, background 0.16s ease;
}
.order-strip .logos a:hover { transform: translateY(-2px); background: var(--plum); border-color: var(--plum); }
.order-strip .logos img { height: 30px; width: auto; }

@media (max-width: 700px) { .order-strip .logos { margin-left: 0; } }

/* ---------- mission ribbon ---------- */

.mission-ribbon .inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}
.mission-ribbon img { width: clamp(84px, 10vw, 120px); height: auto; }
.mission-ribbon .lead { font-size: clamp(1.05rem, 1.9vw, 1.3rem); margin: 0; color: #efe6d2; }
@media (max-width: 760px) {
  .mission-ribbon .inner { grid-template-columns: 1fr; text-align: left; }
}

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

.menu-hero { padding: clamp(2.2rem, 5vw, 3.6rem) 0 1.4rem; }
.menu-hero .lead { color: var(--ink-soft); max-width: 40em; }

.menu-controls {
  position: sticky;
  top: 71px;
  z-index: 60;
  background: rgba(250, 244, 230, 0.95);
  backdrop-filter: blur(8px);
  border-block: 1px solid var(--line);
  padding: 0.7rem 0;
}
.menu-controls .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
}

.seg {
  display: inline-flex;
  background: var(--parchment-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.seg button {
  border: 0;
  background: transparent;
  font: 600 0.88rem var(--sans);
  color: var(--ink-soft);
  padding: 0.42rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}
.seg button[aria-pressed="true"] {
  background: var(--plum-deep);
  color: var(--white);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font: 600 0.85rem var(--sans);
  cursor: pointer;
}
.chip[aria-pressed="true"] {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--white);
}
.chip.berry[aria-pressed="true"] { background: var(--berry); border-color: var(--berry); }

.dept-nav {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.15rem 0.15rem 0.4rem;
  scrollbar-width: thin;
}
.dept-nav a {
  flex-shrink: 0;
  text-decoration: none;
  font: 600 0.83rem var(--sans);
  color: var(--plum-deep);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0.4rem 1.2rem 0.4rem 0.85rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 50%, 100% 100%, 0 100%);
}
.dept-nav a:hover { background: var(--gold-pale); }

.menu-section { padding: clamp(1.8rem, 4vw, 2.8rem) 0 0.6rem; scroll-margin-top: 170px; }

.menu-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  position: relative;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--rad-lg) - 8px);
  pointer-events: none;
}

.dept-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
  margin-bottom: 0.4rem;
}
.dept-head h2 { margin: 0; font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.dept-head .dept-tag {
  font: 600 0.72rem var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.dept-note { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.1rem; }

.mi-list { list-style: none; margin: 0; padding: 0; }
.mi {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem 1rem;
  padding: 0.72rem 0.25rem;
  border-bottom: 1px dashed var(--line);
}
.mi:last-child { border-bottom: 0; }
.mi .nm {
  font-weight: 600;
  color: var(--plum-deep);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.mi .ds { grid-column: 1; color: var(--ink-soft); font-size: 0.9rem; }
.mi .pr {
  grid-column: 2;
  grid-row: 1;
  font: 700 1.02rem var(--serif);
  color: var(--ink);
  white-space: nowrap;
}
.mi .pr small { font-weight: 400; color: var(--ink-soft); font-family: var(--sans); font-size: 0.78rem; }

.tag {
  display: inline-block;
  font: 700 0.62rem var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0.14rem 0.42rem;
}
.tag.veg { background: rgba(38, 106, 68, 0.12); color: var(--leaf); }
.tag.new { background: rgba(168, 28, 100, 0.13); color: var(--berry); }
.tag.chef { background: rgba(201, 162, 39, 0.16); color: var(--brass); }
.tag.spicy { background: rgba(192, 58, 43, 0.14); color: #a2331f; }
.tag.only {
  background: var(--parchment-deep);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.nutri {
  display: inline-flex;
  align-items: center;
  font: 700 0.66rem var(--sans);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(51, 35, 75, 0.18);
}
.nutri b { padding: 0.1rem 0.4rem; }
.nutri span { padding: 0.1rem 0.4rem; background: var(--white); color: var(--ink-soft); font-weight: 600; }
.nutri.nA b { background: #0d5c30; color: #fff; }
.nutri.nB b { background: #86a819; color: #241536; }
.nutri.nC b { background: #e8a33d; color: #241536; }
.nutri.nD b { background: #b03225; color: #fff; }

.variant-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px 74px;
  gap: 0.4rem;
  font: 600 0.72rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 0.5rem 0.25rem 0.2rem;
  border-bottom: 2px solid var(--line);
}
.mi.variant {
  grid-template-columns: minmax(0, 1fr) 74px 74px;
}
.mi.variant .pr { text-align: right; }
.mi.variant .pr.p1 { grid-column: 2; grid-row: 1; }
.mi.variant .pr.p2 { grid-column: 3; grid-row: 1; }
@media (max-width: 480px) {
  .variant-head { grid-template-columns: minmax(0, 1fr) 58px 58px; }
  .mi.variant { grid-template-columns: minmax(0, 1fr) 58px 58px; }
}

.set-panel {
  margin-top: 1.2rem;
  background: linear-gradient(150deg, rgba(201, 162, 39, 0.13), rgba(91, 45, 134, 0.07));
  border: 1.5px solid var(--gold);
  border-radius: var(--rad);
  padding: 1.1rem 1.3rem;
}
.set-panel h3 { margin-bottom: 0.35rem; font-size: 1.08rem; }
.set-panel p { margin: 0; font-size: 0.93rem; color: var(--ink-soft); }
.set-panel b { color: var(--plum-deep); }

.menu-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
}

.pdf-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.empty-note {
  background: var(--parchment-deep);
  border: 1px dashed var(--line);
  border-radius: var(--rad);
  padding: 0.9rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* ---------- story page ---------- */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(var(--gold), var(--plum));
}
.timeline li {
  position: relative;
  padding: 0 0 2rem 3rem;
}
.timeline li:last-child { padding-bottom: 0.4rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--parchment);
  border: 4px solid var(--berry);
}
.timeline .yr {
  font: 700 0.85rem var(--sans);
  letter-spacing: 0.14em;
  color: var(--berry);
  text-transform: uppercase;
}
.timeline h3 { margin: 0.15rem 0 0.35rem; }
.timeline p { color: var(--ink-soft); margin: 0; max-width: 52em; }
.timeline figure { margin: 0.9rem 0 0; }
.timeline figure img {
  border-radius: var(--rad);
  border: 4px solid var(--white);
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.timeline figcaption { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.45rem; }

.press-list { list-style: none; margin: 0; padding: 0; }
.press-list li {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.3rem 1.2rem;
  padding: 0.85rem 0.2rem;
  border-bottom: 1px dashed var(--line);
}
.press-list .dt { font: 600 0.82rem var(--sans); color: var(--brass); padding-top: 0.15rem; }
.press-list .src { font-weight: 600; color: var(--plum-deep); }
.press-list p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 560px) { .press-list li { grid-template-columns: 1fr; } }

.gallery-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.2rem;
}
.gallery-duo figure {
  margin: 0;
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.gallery-duo img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.gallery-duo figcaption { padding: 0.7rem 0.9rem; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- venue page ---------- */

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 1.8rem);
  align-items: start;
}

.pkg-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.3rem;
  min-width: 0;
}
.pkg-card header { border-bottom: 2px solid var(--line); padding-bottom: 0.8rem; margin-bottom: 0.9rem; }
.pkg-card h3 { margin: 0.2rem 0 0.25rem; }
.pkg-card header p:not(.pennant) { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

.pkg-card ul { list-style: none; margin: 0; padding: 0; }
.pkg-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 0.97rem;
}
.pkg-card ul li:last-child { border-bottom: 0; }
.pkg-card .pp { font: 700 1.05rem var(--serif); color: var(--plum-deep); white-space: nowrap; }
.pkg-card .pp small { font: 400 0.75rem var(--sans); color: var(--ink-soft); }

details.sample {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  background: var(--parchment);
}
details.sample summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.7rem 1rem;
  color: var(--plum-deep);
}
details.sample summary:hover { color: var(--berry); }
details.sample .inner { padding: 0 1rem 1rem; font-size: 0.93rem; }
details.sample .inner h4 {
  font: 600 0.75rem var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0.9rem 0 0.25rem;
}
details.sample .inner p { margin: 0; color: var(--ink-soft); }

/* ---------- contact / visit extras ---------- */

.contact-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.2rem;
}
.contact-tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}
.contact-tile h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.contact-tile p { margin: 0 0 0.3rem; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- footer ---------- */

.site-foot {
  background: var(--plum-deeper);
  color: #cfc2a8;
  padding: clamp(2.6rem, 6vw, 4rem) 0 1.6rem;
  font-size: 0.93rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3.5vw, 2.6rem);
  padding-bottom: 2rem;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

.site-foot .fbrand img { width: 170px; height: auto; margin-bottom: 0.9rem; }
.site-foot h4 {
  color: var(--gold-pale);
  font: 600 0.8rem var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 0.45rem; }
.site-foot a { color: #e5d9c0; text-decoration-color: rgba(229, 217, 192, 0.4); }
.site-foot a:hover { color: var(--white); }
.site-foot address { font-style: normal; }

.foot-note {
  border-top: 1px solid rgba(229, 217, 192, 0.18);
  padding-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  align-items: center;
  justify-content: space-between;
}
.foot-note p { margin: 0; font-size: 0.85rem; }
.foot-note .em img { height: 64px; width: auto; }

/* ---------- mobile action bar ---------- */

.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;
  background: rgba(26, 14, 40, 0.97);
  padding: 0.55rem max(0.9rem, env(safe-area-inset-left)) max(0.55rem, env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.action-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font: 600 0.88rem var(--sans);
  color: var(--white);
  background: rgba(255, 253, 248, 0.1);
  border-radius: 10px;
  padding: 0.65rem 0.4rem;
}
.action-bar a.wa { background: #1d7a4f; }
.action-bar a.hot { background: var(--berry); }
.action-bar svg { width: 17px; height: 17px; }

@media (max-width: 700px) {
  .action-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  transform: translate(-50%, 20px);
  background: var(--plum-deep);
  color: var(--white);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font: 600 0.9rem var(--sans);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 120;
  box-shadow: var(--shadow-lift);
}
.toast.is-up { opacity: 1; transform: translate(-50%, 0); }

/* ---------- watermark crest ---------- */

.crest-water {
  position: relative;
  overflow: hidden;
}
.crest-water::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 300px;
  height: 300px;
  background: currentColor;
  opacity: 0.05;
  -webkit-mask: url("../img/crest-mono.svg") center / contain no-repeat;
  mask: url("../img/crest-mono.svg") center / contain no-repeat;
  pointer-events: none;
}

/* ---------- utility ---------- */

.muted { color: var(--ink-soft); }
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.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;
}

/* ===================================================== touch targets ====
   Thumb, not cursor. Filter chips were 124x31 and the footer links 67x17 —
   the footer column in particular was a stack of near-unhittable targets.
   :hover does not exist on touch, so presses carry the feedback instead. */
@media (pointer: coarse) {
  .chip { min-height: 44px; display: inline-flex; align-items: center; }
  .btn { min-height: 44px; }
  .site-nav a, .site-foot a { min-height: 44px; display: inline-flex; align-items: center; }
  .nav-toggle { width: 46px; height: 46px; }

  /* outlet toggle and the department jump-nav are the two controls a diner
     actually drives this page with; both sat around 30px tall. */
  .seg button { min-height: 44px; padding-inline: 14px; }
  .hot, .wa { min-height: 44px; display: inline-flex; align-items: center; }
  .dept-nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .dept-nav { gap: .5rem; }

  .chip:active, .btn:active, .seg button:active { transform: scale(.96); }
}

/* Dateline replaces a figcaption whose photograph was removed — the fact
   survives, the empty frame does not. */
.dateline {
  font: 600 0.85rem var(--sans);
  color: var(--brass);
  letter-spacing: 0.04em;
  margin: 0.6rem 0 0;
}
/* Delivery partners are named in text; their button artwork is their
   trademark and is not reproduced here. */
.order-name { font-weight: 700; }
