/* =====================================================================
   Don Lupe Mexican Restaurant — DESIGN SYSTEM: "Molcajete"
   A masa-coloured page carved into by black basalt: the nav, the section
   bands and the menu headers are the stone; the food photography and one
   clay-red ask (Order Online) are the colour. Nopal green is the second
   voice (vegetarian, links); marigold is a hairline of decoration, never
   a field. See docs/design-system.md for the token contract, the WCAG
   table and the de-twinning audit against the three neighbouring sites.

   Shape signature: 6px corners, 1px rules, NO shadows, dotted leaders on
   the menu (the one classic device the subject earns), basalt bands with
   masa type. Display: Bevan (a heavy slab, set small and tight). Text:
   Figtree.
   ===================================================================== */

:root {
  /* palette */
  --masa:          #F7F0E2;  /* page field — nixtamal, not cream-white */
  --masa-2:        #EDE3CD;  /* panels, alternating bands */
  --paper:         #FFFCF5;  /* cards */
  --line:          #D6C9B0;  /* 1px rules */
  --basalt:        #1F1D1B;  /* the stone: nav, bands, menu headers */
  --basalt-2:      #2B2825;  /* footer, secondary dark surfaces */
  --on-basalt:     #F2E9D8;  /* masa-toned type on the stone (13.6:1) */
  --on-basalt-soft:#BDB2A0;  /* muted type on the stone (7.4:1) */
  --ink:           #221F1C;  /* body text on masa (14.5:1) */
  --muted:         #66594D;  /* captions on masa (6.2:1) */
  --clay:          #B23A2A;  /* THE ask: Order Online, primary buttons
                                (on masa 5.4:1; on-basalt type on it 5.6:1) */
  --clay-deep:     #8E2D20;  /* hover */
  --nopal:         #3E6B3A;  /* second voice: links, vegetarian marks (5.6:1) */
  --nopal-deep:    #2E5230;
  --marigold:      #E0A21C;  /* decorative hairlines + review stars only */
  --marigold-tint: #F6E5B8;
  --focus:         #8E2D20;
  --focus-dark:    #F7F0E2;

  /* aliases for the carried skeleton modules (events / shop / age gate) */
  --cream: var(--masa); --ink-soft: var(--muted);
  --lavender: var(--nopal); --lavender-deep: var(--nopal-deep);
  --lavender-bright: var(--nopal); --lavender-tint: var(--line); --lavender-wash: var(--masa-2);
  --shutter: var(--clay); --shutter-deep: var(--clay-deep);
  --shutter-tint: var(--line); --shutter-wash: var(--masa-2);
  --sun: var(--marigold); --sun-tint: var(--marigold-tint); --door-red: var(--clay);
  --footer-ink: var(--basalt-2); --footer-soft: var(--on-basalt-soft); --hairline: var(--line);

  /* type */
  --display: "Bevan", "Rockwell", "Roboto Slab", Georgia, serif;
  --body: "Figtree", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --step--2: clamp(.9rem, .88rem + .1vw, .95rem);
  --step--1: clamp(.98rem, .95rem + .2vw, 1.05rem);
  --step-0:  clamp(1.06rem, 1.02rem + .25vw, 1.15rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.45rem);
  --step-2:  clamp(1.4rem, 1.25rem + .8vw, 1.85rem);
  --step-4:  clamp(1.9rem, 1.55rem + 1.7vw, 2.7rem);
  --step-6:  clamp(2.4rem, 1.8rem + 3vw, 3.9rem);

  --maxw: 72rem;
  --radius: 6px;
  --border: 1px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--masa); color: var(--ink);
  font-family: var(--body); font-size: var(--step-0); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--nopal); text-underline-offset: .15em; }
a:hover { color: var(--nopal-deep); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.site-header :focus-visible, .site-footer :focus-visible, .band--dark :focus-visible { outline-color: var(--focus-dark); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.1; letter-spacing: -.005em; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1em; max-width: 68ch; }
.lede { font-size: var(--step-1); max-width: 58ch; }
.muted { color: var(--muted); }
.eyebrow {
  font-family: var(--body); font-weight: 700; font-size: var(--step--2);
  letter-spacing: .12em; text-transform: uppercase; color: var(--clay); margin: 0 0 .6em;
}
.eyebrow::after { content: ""; display: block; width: 3rem; height: 3px; background: var(--marigold); margin-top: .5rem; }
.eyebrow a { color: inherit; text-decoration: none; }
.band--dark .eyebrow { color: var(--on-basalt-soft); }
main { display: block; }
main > section { max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.25rem; }
main > section.band { max-width: none; padding: 0; }
.band-inner { max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.25rem; }
.band--dark { background: var(--basalt); color: var(--on-basalt); }
.band--dark h2, .band--dark h3 { color: var(--on-basalt); }
.band--dark a { color: var(--on-basalt); }
.band--dark .muted { color: var(--on-basalt-soft); }
.band--masa2 { background: var(--masa-2); }
.skip { position: absolute; left: -999px; top: 0; background: var(--clay); color: var(--on-basalt); padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: .5rem; top: .5rem; }
.two-col { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 52rem) { .two-col { grid-template-columns: 1fr 1fr; } }
figure { margin: 0; }
figcaption { font-size: var(--step--2); color: var(--muted); margin-top: .4rem; }
.band--dark figcaption { color: var(--on-basalt-soft); }
blockquote { margin: 0; }

/* ---------- demo ribbon / announcement bar ---------- */
.demo-ribbon {
  background: repeating-linear-gradient(135deg, var(--marigold) 0 12px, #C98E14 12px 24px);
  color: var(--basalt); font-weight: 700; font-size: var(--step--2); letter-spacing: .08em;
  text-transform: uppercase; text-align: center; padding: .4rem 1rem;
}
.navbar {
  display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap;
  background: var(--masa-2); color: var(--ink); border-bottom: var(--border) solid var(--line);
  padding: .5rem 1rem; font-size: var(--step--1);
}
.navbar-tag { font-weight: 700; color: var(--clay); text-transform: uppercase; letter-spacing: .08em; font-size: var(--step--2); }
.navbar a { color: var(--ink); }
.navbar-close { background: none; border: 0; font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--muted); padding: 0 .3rem; }

/* ---------- header / nav — the stone ---------- */
.site-header {
  background: var(--basalt); color: var(--on-basalt);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: .7rem 1.25rem; position: relative;
}
.brand { color: inherit; text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-lockup { font-family: var(--display); font-size: 1.55rem; letter-spacing: .01em; }
.brand-sub { display: block; font-family: var(--body); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-basalt-soft); margin-top: .25rem; }
.nav { display: flex; align-items: center; gap: .2rem 1.1rem; flex-wrap: wrap; }
.nav a { color: var(--on-basalt); text-decoration: none; font-weight: 600; font-size: var(--step--1); padding: .35rem 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--marigold); color: var(--on-basalt); }
.nav .nav-cta { background: var(--clay); color: var(--on-basalt); padding: .55rem 1rem; border-radius: var(--radius); border-bottom: 0; }
.nav .nav-cta:hover { background: var(--clay-deep); }
.nav .nav-phone { color: var(--on-basalt-soft); font-weight: 600; }
.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nav-burger { display: none; width: 2.4rem; height: 2rem; flex-direction: column; justify-content: space-between; padding: .3rem .2rem; cursor: pointer; }
.nav-burger span { display: block; height: 3px; background: var(--on-basalt); border-radius: 2px; }
@media (max-width: 52rem) {
  .nav-burger { display: flex; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: .2rem; padding-top: .5rem; border-top: 1px solid var(--basalt-2); }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav .nav-cta { margin-top: .4rem; }
}

/* ---------- hero: split — the plate on the right ---------- */
.hero { padding-top: 3rem; padding-bottom: 2rem; }
.hero-split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 52rem) { .hero-split { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }
.hero-split img { border-radius: var(--radius); border: var(--border) solid var(--line); }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; margin: 1.25rem 0 0; }
.hero-facts { display: flex; gap: .4rem 1.5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 1.25rem 0 0; font-size: var(--step--1); color: var(--muted); }
.hero-facts li strong { color: var(--ink); }
.hero-es { font-family: var(--display); color: var(--nopal); font-size: var(--step-1); margin: 0 0 .4rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; background: var(--clay); color: var(--on-basalt); text-decoration: none;
  font-weight: 700; font-family: var(--body); font-size: var(--step--1); letter-spacing: .02em;
  padding: .8rem 1.35rem; border-radius: var(--radius); border: var(--border) solid var(--clay); cursor: pointer; line-height: 1.2;
}
.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); color: var(--on-basalt); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--basalt); }
.btn--ghost:hover { background: var(--basalt); color: var(--on-basalt); border-color: var(--basalt); }
.band--dark .btn--ghost { color: var(--on-basalt); border-color: var(--on-basalt); }
.band--dark .btn--ghost:hover { background: var(--on-basalt); color: var(--basalt); }
.btn--sm { padding: .5rem .9rem; font-size: var(--step--2); }

/* ---------- cards / grids ---------- */
.card { background: var(--paper); border: var(--border) solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.card-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.card-link { color: inherit; text-decoration: none; display: block; }
.card-link:hover { border-color: var(--basalt); }
.card-link h2, .card-link h3 { font-size: var(--step-2); margin-bottom: .35rem; }
.dish-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.dish { background: var(--paper); border: var(--border) solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.dish img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.dish-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.dish-head { display: flex; justify-content: space-between; gap: .75rem; align-items: baseline; }
.dish-head h3 { font-size: var(--step-1); margin: 0; }
.dish-price { font-weight: 700; white-space: nowrap; }
.dish-body p { font-size: var(--step--1); color: var(--muted); margin: 0; }
.dish-body a { margin-top: auto; font-size: var(--step--2); font-weight: 700; }
.facts-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.fact { border-top: 3px solid var(--marigold); padding-top: .8rem; }
.fact h3 { font-size: var(--step-1); margin-bottom: .3rem; }
.fact p { margin: 0; font-size: var(--step--1); color: var(--muted); }
.band--dark .fact p { color: var(--on-basalt-soft); }
.hours-table { border-collapse: collapse; width: 100%; max-width: 30rem; font-size: var(--step--1); }
.hours-table th, .hours-table td { text-align: left; padding: .45rem 0; border-bottom: var(--border) solid var(--line); vertical-align: top; }
.hours-table th { font-weight: 600; padding-right: 1rem; }
.band--dark .hours-table th, .band--dark .hours-table td { border-bottom-color: var(--basalt-2); }
.tag { display: inline-block; font-size: var(--step--2); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--nopal); border: var(--border) solid var(--nopal); border-radius: var(--radius); padding: .1rem .45rem; }

/* ---------- menu pages ---------- */
.menu-jump { display: flex; gap: .5rem .9rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0 0 1.5rem; font-size: var(--step--1); }
.menu-jump a { font-weight: 600; }
.menu-section { margin: 0 0 2.5rem; }
.menu-section h2 { background: var(--basalt); color: var(--on-basalt); font-size: var(--step-2); padding: .55rem .9rem; border-radius: var(--radius); margin: 0 0 1rem; }
.menu-items { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 52rem) { .menu-items { grid-template-columns: 1fr 1fr; } }
.menu-item { display: flex; flex-direction: column; gap: .15rem; padding-bottom: .5rem; }
.menu-item-head { display: flex; align-items: baseline; gap: .5rem; }
.menu-item-name { font-weight: 700; }
.menu-item-head::after { content: ""; flex: 1; border-bottom: 2px dotted var(--line); order: 2; min-width: 1.5rem; transform: translateY(-.3em); }
.menu-item-price { order: 3; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item-desc { font-size: var(--step--1); color: var(--muted); }
.menu-notes { font-size: var(--step--1); color: var(--muted); }
.menu-updated { font-size: var(--step--2); color: var(--muted); margin: .5rem 0 0; }

/* ---------- forms ---------- */
.booking-form p { max-width: none; margin: 0 0 1rem; }
.booking-form label { display: block; font-weight: 600; margin-bottom: .3rem; }
.booking-form input:not([type=checkbox]):not([type=radio]), .booking-form select, .booking-form textarea,
.newsletter-form input {
  width: 100%; font: inherit; padding: .7rem .8rem; border: var(--border) solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink);
}
.booking-form textarea { resize: vertical; }
.booking-form .helptext { display: block; font-size: var(--step--2); color: var(--muted); margin-top: .3rem; }
.booking-form ul.errorlist { margin: .2rem 0 .4rem; padding-left: 1rem; color: var(--clay); font-size: var(--step--2); }
.booking-fineprint { font-size: var(--step--2); color: var(--muted); margin-top: 1rem; }
.trap-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ---------- messages ---------- */
.messages { list-style: none; margin: 0 auto; padding: 1rem 1.25rem 0; max-width: var(--maxw); }
.msg { padding: .7rem 1rem; border-radius: var(--radius); border: var(--border) solid var(--line); background: var(--paper); }
.msg--success { border-color: var(--nopal); }
.msg--error { border-color: var(--clay); }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.review { background: var(--paper); border: var(--border) solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .6rem; }
.review-stars { color: var(--marigold); letter-spacing: .1em; margin: 0; font-size: var(--step-1); }
.review blockquote { font-size: var(--step--1); }
.review blockquote::before { content: "\201C"; font-family: var(--display); color: var(--clay); font-size: 2rem; line-height: 0; vertical-align: -.5em; margin-right: .1em; }
.review figcaption { margin-top: auto; }
.band--dark .review { background: var(--basalt-2); border-color: var(--basalt-2); color: var(--on-basalt); }
.band--dark .review figcaption { color: var(--on-basalt-soft); }
.rating-line { display: flex; gap: .6rem; align-items: baseline; flex-wrap: wrap; margin: 0 0 1rem; }
.rating-line .review-stars { font-size: var(--step-2); }
.rating-line strong { font-family: var(--display); font-size: var(--step-2); }

/* ---------- events: what's on ---------- */
.event-card {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(1rem, 3vw, 2rem);
  align-items: start; background: var(--paper);
  border: var(--border) solid var(--shutter-tint); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}
.event-card + .event-card { margin-top: 1.5rem; }
.event-card:not(:has(.event-photo)) { grid-template-columns: 1fr; }
.event-photo { width: 220px; height: 220px; object-fit: cover; border-radius: var(--radius); border: var(--border) solid var(--lavender-tint); }
.event-when {
  font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em;
  color: var(--lavender-deep); font-weight: 700; margin: 0 0 .3rem;
}
.event-where { color: var(--ink-soft); font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: .5rem; }
.event-body h2 { margin: 0 0 .4rem; }
.event-title-link { color: inherit; text-decoration: none; }
.event-title-link:hover { color: var(--lavender-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.event-performer { font-family: var(--display); font-weight: 400; font-size: 1.05rem; margin: 0 0 .4rem; }
.event-performer .muted { font-family: var(--body); font-size: var(--step--1); }
.event-bio { color: var(--ink-soft); margin: 0 0 .9rem; }
.event-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-top: 1rem; }
.event-actions .remind { display: flex; gap: .4rem; }
.event-actions .remind input { padding: .4rem .6rem; }

.chip-ticketed {
  display: inline-block; background: var(--sun); color: var(--ink);
  border-radius: var(--radius); padding: .12rem .6rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap; vertical-align: middle;
}
.event-when .chip-ticketed { margin-left: .5rem; }
.cal-tile-cap .chip-ticketed { align-self: flex-start; margin-top: .3rem; }

/* seat-limited registrations — mechanics untouched, L&S skin */
.register {
  flex-basis: 100%; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  background: var(--shutter-wash); border: var(--border) solid var(--shutter-tint);
  border-radius: var(--radius); padding: .9rem 1rem;
}
.register .seats-left { flex-basis: 100%; margin: 0; font-weight: 700; font-size: var(--step--1); }
.register input { padding: .45rem .6rem; }
.register input[type="number"] { width: 4.5rem; }
.register .party-label { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--step--1); color: var(--ink-soft); }
.register .reserve-note { flex-basis: 100%; margin: 0; font-size: var(--step--1); }
.event-full { flex-basis: 100%; margin: 0; font-weight: 700; }

.socials { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1rem; padding: 0; }
.social-pill {
  display: inline-block; font-size: var(--step--1); font-weight: 700; text-decoration: none;
  color: var(--ink); background: var(--paper); border: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); padding: .3rem .8rem;
}
.social-pill:hover { border-color: var(--shutter); color: var(--shutter-deep); }

.player { border-top: 3px double var(--lavender-tint); padding-top: .9rem; }
.player-label { font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin: 0 0 .6rem; }
.track { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .6rem; }
.track-title { font-family: var(--display); font-weight: 400; font-size: .98rem; min-width: 9rem; }
.track audio { height: 38px; flex: 1; min-width: 220px; }
.spotify-embed { margin-top: .85rem; max-width: 540px; }
.spotify-embed iframe { display: block; width: 100%; border: 0; }
.video-embed {
  position: relative; aspect-ratio: 16 / 9; max-width: 720px;
  border-radius: var(--radius); overflow: hidden;
  border: var(--border) solid var(--shutter-tint); background: var(--paper);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 640px) {
  .event-card { grid-template-columns: 1fr; }
  .event-photo { width: 100%; height: 220px; }
}

/* month calendar */
.calendar h2 { margin-top: 0; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .6rem; }
.cal-nav .cal-title { margin: 0; flex: 1; text-align: center; }
.cal-nav-btn {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 2.5rem; height: 2.5rem; border: var(--border) solid var(--shutter-tint);
  border-radius: var(--radius); background: var(--paper); color: var(--shutter-deep);
  font-size: 1.5rem; line-height: 1; text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.cal-nav-btn:hover { background: var(--shutter-deep); color: var(--paper); border-color: var(--shutter-deep); }
.cal-today { margin: -.2rem 0 .7rem; text-align: center; font-size: var(--step--1); }
.cal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: clamp(.8rem, 2vw, 1.3rem); }
.cal-tile {
  display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: inherit;
  background: var(--paper); border: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); transition: transform .12s ease, border-color .12s ease;
}
.cal-tile:hover { transform: translateY(-3px); border-color: var(--shutter); }
.cal-tile-media { position: relative; aspect-ratio: 1 / 1; background: var(--lavender-wash); }
.cal-tile-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cal-tile-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1rem; background: var(--shutter-wash);
}
.cal-tile-fallback span { font-family: var(--display); font-weight: 400; font-size: 1.15rem; line-height: 1.2; color: var(--shutter-deep); }
.cal-tile-date {
  position: absolute; top: .6rem; left: .6rem; background: var(--paper);
  color: var(--lavender-deep); font-weight: 700; font-size: .78rem; letter-spacing: .05em;
  padding: .25rem .65rem; border: 1px solid var(--lavender-tint); border-radius: var(--radius);
}
.cal-tile-cap { padding: .7rem .8rem .85rem; display: flex; flex-direction: column; gap: .12rem; }
.cal-tile-time { font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--shutter-deep); }
.cal-tile-title { font-family: var(--display); font-weight: 400; font-size: 1rem; line-height: 1.2; }
.cal-empty-note { grid-column: 1 / -1; text-align: center; padding: 1.5rem 0; }
@media (max-width: 640px) {
  .cal-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .cal-nav-btn { width: 2.2rem; height: 2.2rem; font-size: 1.3rem; }
}

/* home events strip */
.events-strip { display: grid; gap: .8rem; margin: 1rem 0; }
.events-strip .event-card {
  display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; align-items: baseline;
  text-decoration: none; padding: .9rem 1.2rem;
}
.events-strip .event-date { color: var(--shutter-deep); font-weight: 700; font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em; flex: 0 0 7.5rem; }
.events-strip .event-title { font-family: var(--display); font-weight: 400; font-size: 1.12rem; }
.events-strip .event-loc { color: var(--ink-soft); font-size: var(--step--1); flex-basis: 100%; margin-left: 8.6rem; }
@media (max-width: 640px) { .events-strip .event-loc { margin-left: 0; } }
.events-strip .event-card:hover .event-title { color: var(--lavender-deep); }

/* performer detail */
.performer-head { display: grid; grid-template-columns: 240px 1fr; gap: clamp(1rem, 3vw, 2rem); align-items: start; }
.performer-photo { width: 240px; height: 240px; object-fit: cover; border-radius: var(--radius); border: var(--border) solid var(--lavender-tint); }
.performer-head:not(:has(.performer-photo)) { grid-template-columns: 1fr; }
.show-row { margin: .3rem 0; }
@media (max-width: 640px) { .performer-head { grid-template-columns: 1fr; } .performer-photo { width: 100%; height: 260px; } }

/* quiet keyline nudge */
.popup-nudge, .giftcard-nudge {
  color: var(--ink-soft); font-size: .95rem;
  border-left: 3px solid var(--shutter); padding-left: .8rem; max-width: 46rem;
}

/* ---------- shop ---------- */
.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: 1.2rem; }
.products li, .product-card {
  background: var(--paper); border: var(--border) solid var(--lavender-tint);
  border-radius: var(--radius); padding: 1.1rem;
}
.products > li:nth-child(3n+2) { border-color: var(--shutter-tint); }
.products > li:nth-child(3n) { border-color: var(--sun-tint); }
.product-card { text-align: center; padding: 0; overflow: hidden; }
.product-card > a { display: block; text-decoration: none; color: var(--ink); }
.product-thumb {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  background: var(--lavender-wash); border-bottom: 1px solid var(--hairline);
}
.product-thumb--empty {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--lavender-tint); font-family: var(--display);
}
.product-name { display: block; font-family: var(--display); font-weight: 400; font-size: 1.05rem; padding: .9rem 1rem .2rem; }
.product-price { display: block; padding: 0 1rem 1rem; color: var(--shutter-deep); font-weight: 700; }
.product-hero {
  width: 100%; max-width: 420px; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius); border: var(--border) solid var(--shutter-tint); margin-bottom: 1.2rem;
}
.product .price { font-family: var(--display); font-weight: 400; font-size: 1.4rem; color: var(--shutter-deep); }
.add-to-cart { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.add-to-cart input { width: 5rem; }

.cart-rows { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.cart-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: .9rem 0; border-bottom: 1px solid var(--hairline); }
.cart-name { font-family: var(--display); font-weight: 400; font-size: 1.05rem; flex: 1 1 12rem; }
.cart-qty { display: flex; align-items: center; gap: .6rem; margin: 0; flex-direction: row; }
.cart-qty input { width: 4.5rem; }
.cart-qty .link, .cart-qty button[value="remove"] {
  background: none; border-color: transparent; color: var(--lavender);
  padding: .4rem; text-decoration: underline; min-height: 0;
}
.cart-total { font-size: 1.3rem; font-family: var(--display); font-weight: 400; }

/* gift cards */
.giftcards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.giftcard { text-align: center; }
.giftcard-face {
  aspect-ratio: 16/10; border-radius: var(--radius);
  border: var(--border) solid var(--shutter-tint);
  background: var(--footer-ink); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .25rem; margin-bottom: .8rem;
}
.giftcard-face .brand-lockup, .giftcard-lockup { color: var(--cream); font-size: 1.3rem; }
.giftcard-amount { font-family: var(--display); font-weight: 400; font-size: 2.2rem; line-height: 1; color: var(--sun); }
.giftcard-brand { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.giftcards-soon { display: grid; gap: clamp(1.2rem, 3vw, 2rem); grid-template-columns: minmax(13rem, 19rem) 1fr; align-items: center; }
.giftcards-soon .giftcard-face--preview { aspect-ratio: 16/10; margin-bottom: 0; }
.giftcards-soon-body h2 { margin-top: 0; }
.giftcards-subscribe { margin: 1rem 0 0; max-width: 30rem; }
.giftcards-subscribe .subscribe-row { justify-content: flex-start; }
/* on-paper variant of the footer subscribe input (polarity fix: this one
   sits on light paper, not the deep footer ink) */
.giftcards-subscribe .subscribe-row input { border-color: var(--shutter-tint); }
.giftcards-subscribe .subscribe-row input:focus { border-color: var(--shutter-deep); }
.giftcards-subscribe label { color: var(--ink); }
.giftcards-subscribed { font-weight: 700; }
@media (max-width: 640px) { .giftcards-soon { grid-template-columns: 1fr; } }

/* checkout (gated off without Square creds — machinery skin only) */
.checkout { max-width: 980px; margin: 0 auto; padding: clamp(1.4rem, 4vw, 2.6rem) 1.2rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: start; }
@media (min-width: 760px) { .checkout-grid { grid-template-columns: 1fr 1.1fr; } }
.checkout .card { padding: clamp(1.1rem, 3vw, 1.6rem); }
.checkout-summary h2, .checkout-pay h2 { font-size: 1.15rem; margin: 0 0 .9rem; }
.checkout-rows { list-style: none; margin: 0 0 .6rem; padding: 0; }
.checkout-rows li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--hairline); }
.checkout-rows .ck-line { color: var(--ink-soft); white-space: nowrap; }
.checkout-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: .8rem; }
.checkout-total strong { font-family: var(--display); font-weight: 400; font-size: 1.35rem; }
.checkout-note { font-size: var(--step--1); color: var(--ink-soft); margin-top: 1rem; }
.checkout-pay .field { display: block; font-size: var(--step--1); color: var(--ink); margin-bottom: 1rem; }
.checkout-pay .field input { display: block; width: 100%; margin-top: .35rem; }
.card-field { margin: .4rem 0 1.1rem; min-height: 52px; }
.ship-choice, .ship-fields { border: var(--border) solid var(--shutter-tint); border-radius: var(--radius); padding: .9rem 1rem .4rem; margin-bottom: 1rem; }
.ship-choice legend, .ship-fields legend { padding: 0 .4rem; font-weight: 700; color: var(--ink-soft); }
.ship-choice .radio { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .6rem; font-size: var(--step--1); }
.ship-choice .radio input { accent-color: var(--shutter-deep); }
.ship-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: .7rem; }
.checkout-ship-line { display: flex; justify-content: space-between; font-size: var(--step--1); color: var(--ink-soft); margin: .3rem 0 0; }
.wallets { margin-bottom: .4rem; }
.wallet-btn { margin-bottom: .6rem; min-height: 44px; }
#apple-pay-button { -apple-pay-button-style: black; -webkit-appearance: -apple-pay-button; appearance: -apple-pay-button; height: 48px; border-radius: var(--radius); cursor: pointer; }
.wallets-or { position: relative; text-align: center; color: var(--ink-soft); font-size: var(--step--1); margin: 1rem 0; }
.wallets-or::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--hairline); }
.wallets-or span { position: relative; background: var(--paper); padding: 0 .7rem; }
.btn--pay { width: 100%; margin-top: .2rem; font-size: 1.05rem; padding: .85rem 1rem; }
.btn--pay:disabled { opacity: .6; cursor: progress; }
.ck-status { min-height: 1.2em; margin: .7rem 0 0; font-size: var(--step--1); }
.ck-status--error { color: var(--door-red); }
.ck-status--ok { color: var(--shutter-deep); }
.ck-secure { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.checkout-confirm .confirm-num { color: var(--ink-soft); }
.cart-link { font-weight: 700 !important; }

/* ---------- age gate (config-gated, OFF by default) ---------- */
.age-gate {
  min-height: 78vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 1.2rem;
}
.age-gate h1 { font-size: var(--step-6); }
.age-gate form, .age-overlay-card form { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; flex-direction: row; }
.age-gate button[value="no"], .age-overlay-card button[value="no"] {
  background: transparent; color: var(--ink-soft); border-color: transparent; text-decoration: underline;
}
.age-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: color-mix(in srgb, var(--cream) 97%, var(--ink));
}
.age-overlay-card { text-align: center; max-width: 36rem; }
.age-overlay-card h2 { font-size: var(--step-4); }
body.age-locked { overflow: hidden; }


/* ---------- footer ---------- */
.site-footer { background: var(--basalt-2); color: var(--on-basalt); margin-top: 3rem; padding: 3rem 1.25rem 2rem; }
.site-footer a { color: var(--on-basalt); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.footer-mast { font-family: var(--display); font-size: var(--step-2); margin: 0 0 .5rem; }
.footer-grid h3 { font-family: var(--body); font-size: var(--step--2); letter-spacing: .12em; text-transform: uppercase; color: var(--on-basalt-soft); margin-bottom: .6rem; }
.footer-grid p, .footer-grid li { font-size: var(--step--1); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 0 0 .35rem; }
.footer-hours th, .footer-hours td { border-bottom-color: #3A3632; }
.newsletter-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.newsletter-form input { flex: 1 1 12rem; border-color: #3A3632; background: var(--basalt); color: var(--on-basalt); }
.newsletter-form input::placeholder { color: var(--on-basalt-soft); }
.newsletter-note { font-size: var(--step--2); color: var(--on-basalt-soft); margin-top: .5rem; }
.footer-legal { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.25rem; border-top: 1px solid #3A3632; font-size: var(--step--2); color: var(--on-basalt-soft); display: flex; gap: .5rem 1.5rem; flex-wrap: wrap; justify-content: space-between; }
.footer-legal p { margin: 0; }
.footer-es { font-family: var(--display); color: var(--marigold); font-size: var(--step-0); margin: 0 0 .3rem; }

/* ---------- motion: gentle page-load rise ---------- */
@media (prefers-reduced-motion: no-preference) {
  main > section:first-child { animation: rise .5s ease-out both; }
  @keyframes rise { from { opacity: .001; transform: translateY(6px); } to { opacity: 1; transform: none; } }
}

/* ---------- /pitch/ — ranked improvements, before/after, stats ---------- */
.pitch-lede { font-size: var(--step-1); max-width: 62ch; }
.stats-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); margin: 1.5rem 0; }
.stat { background: var(--paper); border: var(--border) solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; border-top: 4px solid var(--clay); }
.stat-value { font-family: var(--display); font-size: var(--step-4); line-height: 1; margin: 0 0 .3rem; }
.stat-label { font-size: var(--step--2); color: var(--muted); margin: 0; }
.pitch-list { list-style: none; padding: 0; margin: 0; counter-reset: pitch; display: grid; gap: 1rem; }
.pitch-item { background: var(--paper); border: var(--border) solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.35rem 1.25rem 4rem; position: relative; }
.pitch-item::before { counter-increment: pitch; content: counter(pitch); position: absolute; left: 1.1rem; top: 1.1rem; font-family: var(--display); font-size: var(--step-2); color: var(--clay); line-height: 1; }
.pitch-item h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.pitch-item p { margin: 0 0 .5rem; font-size: var(--step--1); }
.pitch-fix { border-left: 3px solid var(--nopal); padding-left: .8rem; color: var(--ink); }
.pitch-fix strong { color: var(--nopal); }
.before-after { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 52rem) { .before-after { grid-template-columns: 1fr 1fr; } }
.before-after figure { background: var(--paper); border: var(--border) solid var(--line); border-radius: var(--radius); padding: 1rem; }
.before-after img { border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.before-after .ba-label { font-weight: 700; font-size: var(--step--2); letter-spacing: .12em; text-transform: uppercase; margin: 0 0 .6rem; }
.before-after .ba-label--before { color: var(--clay); }
.before-after .ba-label--after { color: var(--nopal); }
.pitch-table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.pitch-table th, .pitch-table td { text-align: left; padding: .5rem .6rem; border-bottom: var(--border) solid var(--line); vertical-align: top; }
.pitch-table th { font-weight: 700; }
.table-scroll { overflow-x: auto; }

/* ---------- print — /pitch/ (and any page) on clean white ---------- */
@media print {
  :root {
    --cream: #fff; --paper: #fff;
    --ink: #211D19; --ink-soft: #4A443B;
    --lavender: #453E63; --lavender-deep: #383357;
    --shutter: #6E6558; --shutter-deep: #1C4A45;
    --sun: #55503F; --door-red: #7E2F29;
    --footer-ink: #fff; --footer-soft: #4A443B;
    --lavender-tint: #C9C1B2; --shutter-tint: #C9C1B2; --sun-tint: #C9C1B2;
    --lavender-wash: #fff; --shutter-wash: #fff;
    --hairline: #C9C1B2;
  }
  body { background: #fff; color: var(--ink); }
  .demo-ribbon, .site-top, .site-footer, .age-overlay, .skip, .navbar { display: none !important; }
  main { padding-top: 0; }
  main > section { animation: none !important; }
  .btn, button[type="submit"] {
    background: none !important; color: var(--ink) !important;
    border: 2px solid var(--ink); box-shadow: none;
  }
  .pitch-item { break-inside: avoid; }
  .pitch-cta { border: 1px solid var(--hairline); color: var(--ink); }
  .pitch-cta h2, .pitch-cta p, .pitch-cta a { color: var(--ink); }
  .pitch-cta .hero-actions { display: none; }
  .pitch-ask strong, .stat strong { color: var(--ink); }
  a { text-decoration: none; color: inherit; }
}

/* ── cart chip + pickup checkout (demo e-commerce) ─────────────────────── */
.nav-cart { color: var(--shutter-deep); font-weight: 700; }
.btn--small { padding: .35rem .8rem; font-size: .85rem; }
.product-card .add-to-cart { margin-top: .5rem; }
.field-error { display: block; color: var(--door-red); font-size: .85rem; margin-top: .25rem; }

/* ── full-bleed background hero (mirrors the original site's treatment; ──
   stand-in facade image until drone/pro footage) */
.hero-bleed {
  position: relative; padding: 0;
  margin: calc(-1 * clamp(2rem, 5vw, 4rem)) calc(50% - 50vw) 0;
  background-size: cover; background-position: center 32%;
  min-height: clamp(26rem, 62vh, 38rem); display: flex; align-items: flex-end;
}
body { overflow-x: hidden; }
.hero-bleed::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38, 34, 28, 0.25) 0%,
    rgba(38, 34, 28, 0.38) 55%, rgba(38, 34, 28, 0.72) 100%);
}
.hero-bleed-inner {
  position: relative;
  width: min(calc(var(--maxw) - 2 * clamp(1.1rem, 4vw, 2rem)), calc(100% - 2 * clamp(1.1rem, 4vw, 2rem)));
  margin: 0 auto; padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.2rem);
}
.hero-bleed .eyebrow { color: #E8DDF2; }
.hero-bleed h1 { color: var(--paper); font-size: var(--step-6); max-width: 18ch;
  text-wrap: balance; }
.hero-bleed .lede { color: #F3EDE0; font-family: var(--display);
  font-weight: 400; font-size: var(--step-2); max-width: 34ch; }
.btn--on-dark { border-color: var(--paper); color: var(--paper); }
.btn--on-dark:hover { background: var(--paper); color: var(--shutter-deep); }
@media (max-width: 640px) {
  .hero-bleed { background-position: center 25%; min-height: 30rem; }
}

/* ── the landing-page mirror ──────────────────────────────────────────── */

/* transparent header floated over the hero, white wordmark + nav — their
   treatment. Applied via body.home-mirror (the home template). */
@media (min-width: 641px) {
  /* The floated transparent header only works when the announcement bar
     is a thin single line — on mobile the bar wraps tall and would bury
     the hero title, so small screens keep the normal in-flow header. */
  body.home-mirror .site-top { position: absolute; inset: 0 0 auto 0; z-index: 5; }
  body.home-mirror .site-header { background: transparent; border-bottom: 0; }
  body.home-mirror .site-header .brand-lockup,
  body.home-mirror .site-header .brand-sub,
  body.home-mirror .nav a { color: #FFFFFF; }
  body.home-mirror .nav a.nav-cta { background: rgba(255, 255, 255, 0.16); border: 1px solid #fff; color: #fff; }
  body.home-mirror .nav a.nav-cta:hover { background: #fff; color: var(--ink); }
  body.home-mirror .demo-ribbon { position: relative; z-index: 6; }
  /* The ribbon is in normal flow above the absolutely-floated header;
     without this the header pins to y=0 and the ribbon overlaps the
     banner/nav. With the ribbon present, start the floated stack just
     below it — ribbon, announcement bar, nav stack cleanly. At the
     client-domain cutover the ribbon disappears and so does the offset. */
  body.home-mirror .demo-ribbon + .site-top { top: 1.7rem; }
}

/* their hero: centered white Didone title over the dusk photo */
.hero-mirror {
  position: relative; margin: 0 calc(50% - 50vw);
  margin-top: calc(-1 * clamp(2rem, 5vw, 4rem));
  /* mobile override below (in-flow header, no negative pull) */
  /* THEIR banner geometry, MEASURED on the live site (2026-08-06): the
     hero is their pro-shoot frame 1V9B3877 rendered 1440×495 (34.4vw)
     with the visible band centered at ~46% of the image. */
  background-size: cover; background-position: center 46%;
  min-height: clamp(17rem, 34.4vw, 31rem);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .9rem;
}
.hero-mirror::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(40, 38, 30, 0.30); /* their soft darkening wash */
}
.hero-mirror-title {
  position: relative; color: #fff; text-align: center;
  font-family: var(--display); font-weight: 450;
  font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.25;
  max-width: 24ch; padding: 0 1rem;
  text-shadow: 0 1px 22px rgba(20, 18, 14, 0.55);
}

/* their two-column sage band: sidebar + philosophy prose */
.mirror-band {
  margin: 0 calc(50% - 50vw); padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: var(--mirror-band, var(--lavender-wash));
}
.mirror-band-inner {
  width: min(calc(var(--maxw) - 2 * clamp(1.1rem, 4vw, 2rem)), calc(100% - 2 * clamp(1.1rem, 4vw, 2rem)));
  margin: 0 auto; display: grid; gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(14rem, 1fr) 2.2fr;
}
@media (max-width: 760px) { .mirror-band-inner { grid-template-columns: 1fr; } }
.mirror-aside p { margin: 0 0 1rem; }
.mirror-aside .mirror-phone { font-weight: 600; }
.mirror-newsletter-btn {
  display: inline-block; border: 1px solid var(--ink); padding: .8rem 1.4rem;
  font-family: var(--body); font-size: .8rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
}
.mirror-newsletter-btn:hover { background: var(--ink); color: #fff; }
.mirror-whatsnew { list-style: none; margin: .6rem 0 0; padding: 0; }
.mirror-whatsnew li { margin: 0 0 .45rem; font-size: .95rem; }
.mirror-whatsnew .d { color: var(--ink-soft); margin-right: .4rem; }
.mirror-prose p { margin: 0 0 1.15rem; line-height: 1.75; }
.mirror-prose a { color: var(--lavender); }


/* ── look toggle pill (mug = classic mirror, wine glass = bolder) ─────── */
.look-pill {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--hairline); border-radius: 999px; padding: 2px;
  background: var(--paper);
}
.look-pill a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px;
  color: var(--ink-soft); text-decoration: none;
}
.look-pill a:hover { color: var(--ink); }
.look-pill a.active { background: var(--shutter-deep); color: var(--paper); }
body.home-mirror .look-pill { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.5); }
body.home-mirror .look-pill a { color: rgba(255, 255, 255, 0.75); }
body.home-mirror .look-pill a:hover { color: #fff; }
body.home-mirror .look-pill a.active { background: rgba(255, 255, 255, 0.92); color: var(--ink); }

/* ── hero live-music badge (brewing-tree pattern, venue-adapted) ──────── */
.hero-np {
  position: absolute; right: clamp(1rem, 4vw, 2.5rem); bottom: clamp(1rem, 3.5vw, 2rem);
  display: flex; flex-direction: column; gap: .15rem;
  background: rgba(24, 22, 18, 0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35); border-radius: var(--radius);
  padding: .7rem 1rem; max-width: 19rem; text-decoration: none;
}
.hero-np:hover { background: rgba(24, 22, 18, 0.72); }
.hero-np-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #EBD9A2;
}
.hero-np-dot {
  width: .5rem; height: .5rem; border-radius: 50%; background: #E9B84C;
  animation: np-pulse 2.2s ease-in-out infinite;
}
@keyframes np-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .hero-np-dot { animation: none; } }
.hero-np-name { font-family: var(--display); font-size: 1.15rem; color: #fff; line-height: 1.25; }
.hero-np-sub { font-family: var(--body); font-size: .82rem; color: rgba(255, 255, 255, 0.85); }
@media (max-width: 640px) {
  .hero-np { position: static; margin: .4rem auto 0; max-width: none; align-self: stretch; }
  .hero-mirror {
    /* pull over main's top padding only (header is in flow here) */
    margin-top: -2rem; min-height: 24rem; padding: 1.2rem 1rem 1.4rem;
    flex-direction: column; align-items: stretch; justify-content: center;
  }
  .hero-mirror-title { margin: 0 auto; }
  .hero-special { margin: 0 auto; }
}

/* ── limited-event hero kicker (window-driven; e.g. Honey Daze) ────────── */
.hero-special {
  position: relative; display: inline-flex; flex-direction: column;
  align-items: center; gap: .2rem; text-align: center;
  color: #fff; text-decoration: none; font-family: var(--body);
  font-size: clamp(.8rem, 1.4vw, .95rem); letter-spacing: .12em;
  text-transform: uppercase; padding: .45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 999px;
  background: rgba(24, 22, 18, 0.35); backdrop-filter: blur(4px);
  text-shadow: 0 1px 12px rgba(20, 18, 14, 0.5);
}
.hero-special:hover { background: rgba(24, 22, 18, 0.55); }
.hero-special-star { color: #E9B84C; letter-spacing: 0; }
.hero-special-kicker {
  display: inline-flex; align-items: baseline; gap: .45rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; color: #EBD9A2;
}
.hero-special-main { font-family: var(--display); text-transform: none;
  letter-spacing: .02em; font-size: clamp(1rem, 1.9vw, 1.3rem); line-height: 1.3; }
.hero-special-dates { color: #EBD9A2; letter-spacing: .06em; margin-left: .5rem; }
@media (max-width: 640px) { .hero-special { margin: 0 auto; } }

/* ---------- 2026-09-16 additions after the Figma concept (docs/figma-mockup-review.md) ---------- */
/* hero collage: the plate, then two owner photos stacked */
.hero-collage { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr 1fr; gap: .75rem; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); border: var(--border) solid var(--line); }
.hero-collage .collage-main { grid-row: 1 / 3; aspect-ratio: 4 / 5; }
/* marquee band: the one place marigold carries type (display size, ink on it 8.6:1); static, no motion */
.marquee { background: var(--marigold); color: var(--basalt); border-top: 3px solid var(--basalt); border-bottom: 3px solid var(--basalt); }
.marquee ul { list-style: none; margin: 0 auto; padding: .65rem 1.25rem; max-width: var(--maxw); display: flex; flex-wrap: wrap; gap: .25rem 1.4rem; justify-content: center; font-family: var(--display); font-size: var(--step-1); text-transform: uppercase; letter-spacing: .02em; }
.marquee li::before { content: "\2022"; margin-right: .55rem; color: var(--clay); }
/* dish cards: a review fragment and two links */
.dish-body .dish-review { color: var(--nopal); border-left: 3px solid var(--nopal); padding-left: .6rem; margin-top: .3rem; }
.dish-links { display: flex; justify-content: space-between; gap: .75rem; margin-top: auto; padding-top: .5rem; font-size: var(--step--2); font-weight: 700; }
.dish-links .dish-order { color: var(--clay); }
/* story stat tiles */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr)); gap: 1rem; margin: 1.25rem 0 1rem; }
.stat-tile { border-top: 3px solid var(--marigold); padding-top: .6rem; }
.stat-tile .num { font-family: var(--display); font-size: var(--step-4); line-height: 1; color: var(--clay); margin: 0 0 .25rem; }
.stat-tile .num--nopal { color: var(--nopal); }
.stat-tile .num--ink { color: var(--ink); }
.stat-tile p { margin: 0; font-size: var(--step--1); color: var(--muted); }
/* coloured bands: nopal (vegetarian & vegan) and clay (groups) */
.band--nopal { background: var(--nopal-deep); color: var(--on-basalt); }
.band--clay { background: var(--clay-deep); color: var(--on-basalt); }
.band--nopal h2, .band--clay h2 { color: var(--on-basalt); }
.band--nopal .eyebrow, .band--clay .eyebrow { color: var(--marigold-tint); }
.band--nopal a, .band--clay a { color: var(--on-basalt); }
.band--nopal .muted, .band--clay .muted { color: var(--on-basalt-soft); }
.band--nopal .btn--ghost, .band--clay .btn--ghost { color: var(--on-basalt); border-color: var(--on-basalt); }
.band--nopal .btn--ghost:hover, .band--clay .btn--ghost:hover { background: var(--on-basalt); color: var(--basalt); }
.btn--light, .band--nopal .btn--light, .band--clay .btn--light { background: var(--masa); color: var(--basalt); border-color: var(--masa); }
.btn--light:hover, .band--nopal .btn--light:hover, .band--clay .btn--light:hover { background: var(--paper); color: var(--basalt); border-color: var(--paper); }
.band-quote { font-size: var(--step-1); max-width: 40ch; margin: 0 0 1.25rem; }
.band-quote footer { font-size: var(--step--1); color: var(--on-basalt-soft); margin-top: .5rem; }
.menu-items--band { grid-template-columns: 1fr; gap: .45rem; }
.menu-items--band .menu-item-head::after { border-bottom-color: rgba(242, 233, 216, .35); }
.band-actions { display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; justify-content: center; }
/* gallery */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 0; }
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 40rem) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-radius: var(--radius); border: var(--border) solid var(--line); }
.gallery-note { margin-top: .9rem; font-size: var(--step--2); }
/* reviews: who said it, and when */
.review-who { display: flex; gap: .6rem; align-items: center; margin-top: auto; }
.review-who strong { display: block; font-size: var(--step--1); }
.review-who .muted { font-size: var(--step--2); }
.avatar { width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--marigold); color: var(--basalt); font-family: var(--display); font-size: var(--step-0); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
/* visit callout */
.callout { display: inline-block; background: var(--marigold-tint); border-left: 4px solid var(--marigold); padding: .45rem .8rem; border-radius: var(--radius); font-size: var(--step--1); color: var(--ink); margin: 0 0 1rem; }
