/* ==========================================================================
   CURB SIDE BISTRO II
   Design direction: "Mural Wall" — flat painted colour panels butted
   edge to edge, hand-lettered labels, painted wood-type headlines.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  /* Palette — five colours, mural logic. No gradients between them. */
  --masonry:      #1B1210;   /* warm painted brick — the dark panels        */
  --masonry-lift: #251A16;   /* one step up, for cards on masonry           */
  --masonry-edge: #3A2A23;   /* hairlines on dark                           */
  --stucco:       #F3E3CA;   /* sun-bleached wall — the light panels        */
  --stucco-lift:  #FBF2E2;
  --stucco-edge:  #DCC7A6;
  /* Red and teal are a touch deeper than they look like they need to be.
     At the original values, cream text on a button hit 4.37:1 and captions
     on teal 3.63:1 — both under the 4.5:1 floor for body-size text. These
     are a few percent darker, which reads as the same colour and clears it. */
  --chile:        #CE332A;   /* painted chile red — primary action          */
  --chile-deep:   #9E211A;
  --marigold:     #F2A413;   /* cempasúchil — the "open", the highlights    */
  --agua:         #17756E;   /* Talavera tile teal                          */

  --ink:          #1B1210;
  --ink-soft:     rgba(27, 18, 16, .68);
  --paper:        #F3E3CA;
  --paper-soft:   rgba(243, 227, 202, .70);

  /* Type */
  --sign:  "Alfa Slab One", "Rockwell", Georgia, serif;
  --hand:  "Grand Hotel", "Brush Script MT", cursive;
  --text:  "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Scale */
  --step--1: clamp(.78rem, .76rem + .1vw, .84rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.12rem + .38vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.33rem + .82vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 1.9vw, 3.4rem);
  --step-4:  clamp(2.7rem, 1.85rem + 4.1vw, 6rem);

  --wrap: 1180px;
  --gut: clamp(1.25rem, 5vw, 4rem);
  --band-y: clamp(4rem, 9vw, 8rem);

  --shadow-card: 0 1px 0 rgba(0,0,0,.06), 0 18px 40px -24px rgba(27,18,16,.55);
}

/* --- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--text);
  font-size: var(--step-0);
  font-weight: 420;
  line-height: 1.6;
  background: var(--masonry);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; top: -100px; left: 1rem; z-index: 200;
  background: var(--marigold); color: var(--ink);
  padding: .75rem 1.25rem; font-weight: 700; text-decoration: none;
}
.skip:focus { top: 1rem; }

/* --- 3. Panels ("bands") ------------------------------------------------
   The page is a stack of painted wall panels. One dominant colour each.
   ------------------------------------------------------------------------ */
.band {
  position: relative;
  padding-block: var(--band-y);
  padding-inline: var(--gut);
}
.band > .wrap { max-width: var(--wrap); margin-inline: auto; }

.band--masonry { background: var(--masonry); color: var(--paper); }
.band--stucco  { background: var(--stucco);  color: var(--ink); }
.band--chile   { background: var(--chile);   color: #FFF4E6; }
.band--agua    { background: var(--agua);    color: #F1FBF9; }

/* the seam: a painted stripe where two panels meet */
.band--seam::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 6px;
  background: var(--marigold);
}
.band--seam-chile::before { background: var(--chile); }

/* masonry panels get a faint plaster grain */
.band--masonry::after,
.band--chile::after,
.band--agua::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .30; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.band > * { position: relative; z-index: 1; }

/* --- 4. Type ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--hand);
  font-size: clamp(1.3rem, 1.1rem + .9vw, 1.9rem);
  line-height: 1;
  color: var(--marigold);
  margin-bottom: .5rem;
}
.band--stucco .eyebrow { color: var(--chile); }
.band--chile .eyebrow,
.band--agua  .eyebrow { color: #FFE9B8; }

.display {
  font-family: var(--sign);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.display--xl { font-size: var(--step-4); }
.display--lg { font-size: var(--step-3); }
.display--md { font-size: var(--step-2); }

.script {
  font-family: var(--hand);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--marigold);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 46ch;
  color: var(--paper-soft);
}
.band--stucco .lede { color: var(--ink-soft); }
.band--chile .lede, .band--agua .lede { color: rgba(255,255,255,.93); }

.label {
  font-family: var(--text);
  font-size: var(--step--1);
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.band__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* --- 5. Buttons --------------------------------------------------------- */
.btn {
  --btn-bg: var(--chile);
  --btn-fg: #FFF4E6;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  font-weight: 700; font-stretch: 108%;
  letter-spacing: .04em; text-transform: uppercase;
  font-size: var(--step--1);
  text-decoration: none; cursor: pointer;
  transition: transform .16s cubic-bezier(.2,.7,.3,1), box-shadow .16s, background .16s, color .16s;
  box-shadow: 4px 4px 0 var(--chile-deep);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--chile-deep); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--chile-deep); }

.btn--gold { --btn-bg: var(--marigold); --btn-fg: var(--ink); box-shadow: 4px 4px 0 #B87905; }
.btn--gold:hover { box-shadow: 6px 6px 0 #B87905; }
.btn--gold:active { box-shadow: 1px 1px 0 #B87905; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: currentColor;
  border-color: currentColor; box-shadow: none;
}
.btn--ghost:hover { background: currentColor; box-shadow: none; }
.btn--ghost:hover span { color: var(--masonry); }
.band--stucco .btn--ghost:hover span { color: var(--stucco); }

.btn--sm { padding: .7rem 1.1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* --- 6. Announcement + nav ---------------------------------------------- */
.announce {
  background: var(--chile);
  color: #FFF4E6;
  text-align: center;
  padding: .7rem var(--gut);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .02em;
  border-bottom: 3px solid var(--chile-deep);
}
.announce a { font-weight: 800; }

/* No backdrop-filter here: it would create a containing block and the
   fixed mobile menu panel would position against the header, not the page. */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--masonry);
  border-bottom: 1px solid var(--masonry-edge);
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: .85rem var(--gut);
  display: flex; align-items: center; gap: 1.5rem;
}
.wordmark {
  font-family: var(--sign);
  font-size: clamp(1.05rem, .9rem + .55vw, 1.4rem);
  line-height: 1; letter-spacing: -.01em;
  text-decoration: none; color: var(--paper);
  display: flex; flex-direction: column;
}
.wordmark em {
  font-family: var(--hand); font-style: normal;
  font-size: .72em; color: var(--marigold); line-height: 1;
}
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-size: var(--step--1); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper-soft); padding-block: .4rem;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.nav__links a:hover { color: var(--paper); border-bottom-color: var(--marigold); }
.nav__cta { margin-left: auto; }
.nav__links + .nav__cta { margin-left: 0; }

.nav__toggle {
  display: none; margin-left: auto;
  background: none; border: 2px solid var(--masonry-edge);
  padding: .55rem .8rem; cursor: pointer;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  font-size: var(--step--1);
}

/* live open/closed pill */
.status {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .8rem;
  border: 2px solid currentColor;
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}
.status__dot {
  width: .55rem; height: .55rem; border-radius: 50%;
  background: currentColor; flex: none;
}
.status[data-open="true"]  { color: var(--marigold); }
.status[data-open="true"] .status__dot { animation: pulse 2.4s ease-in-out infinite; }
.status[data-open="false"] { color: rgba(243,227,202,.5); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,164,19,.55); }
  60%      { box-shadow: 0 0 0 .55rem rgba(242,164,19,0); }
}
@media (prefers-reduced-motion: reduce) {
  .status__dot { animation: none; }
}

/* --- 7. Hero ------------------------------------------------------------ */
.hero {
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .85fr); gap: clamp(3rem, 5vw, 5rem); }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .script {
  display: block; font-size: 1.05em; margin-top: -.06em;
  transform: rotate(-2.2deg); transform-origin: left center;
}
.hero .lede { margin-bottom: 2rem; }
.hero .btn-row { margin-bottom: 2.5rem; }

.creds {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--masonry-edge);
  font-size: var(--step--1);
  color: var(--paper-soft);
}
.creds strong { color: var(--paper); font-weight: 700; }
.creds a { text-decoration: none; }
.creds a:hover { text-decoration: underline; }

/* Hairline dividers rather than slashes — quieter on one line. */
.creds__i { display: inline-flex; align-items: center; gap: .4rem; }
.creds__i + .creds__i::before {
  content: ""; width: 1px; height: 1.1em;
  background: currentColor; opacity: .28;
  margin: 0 1.1rem;
}

/* Narrow screens wrap every item onto its own line, which leaves the
   dividers dangling at the start of each. Stack them instead. */
@media (max-width: 560px) {
  .creds { display: grid; gap: .4rem; justify-items: start; }
  .creds__i + .creds__i::before { display: none; }
}

.stars { color: var(--marigold); letter-spacing: .05em; }

/* --- 8. SIGNATURE: the TODAY board -------------------------------------- */
.today {
  background: var(--masonry-lift);
  border: 3px solid var(--marigold);
  outline: 1px solid var(--masonry);
  outline-offset: 5px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
}
.today__top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-bottom: .9rem; margin-bottom: 1.1rem;
  border-bottom: 2px dashed var(--masonry-edge);
}
.today__title {
  font-family: var(--hand);
  font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem);
  line-height: 1; color: var(--marigold);
}
.today__date {
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper-soft);
}
.today__state {
  font-family: var(--sign);
  font-size: clamp(1.9rem, 1.5rem + 1.9vw, 2.9rem);
  line-height: 1; margin-bottom: .35rem;
}
.today__state[data-open="true"]  { color: var(--marigold); }
.today__state[data-open="false"] { color: #E8D6BC; }
.today__detail { color: var(--paper-soft); font-size: var(--step-0); }

.today__row {
  display: flex; gap: .9rem; align-items: flex-start;
  padding-top: 1.1rem; margin-top: 1.1rem;
  border-top: 1px solid var(--masonry-edge);
}
.today__tag {
  flex: none; align-self: center;
  background: var(--chile); color: #FFF4E6;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .6rem;
}
.today__tag--gold { background: var(--marigold); color: var(--ink); }
.today__rowbody strong { display: block; font-weight: 700; font-stretch: 108%; }
.today__rowbody span { color: var(--paper-soft); font-size: var(--step--1); }

.today__count {
  font-variant-numeric: tabular-nums;
  font-weight: 800; color: var(--marigold);
}

/* --- 9. Signature dishes ------------------------------------------------ */
.sigs { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px)  { .sigs { grid-template-columns: repeat(3, 1fr); } }

.sig {
  display: flex; flex-direction: column;
  background: var(--stucco-lift);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s;
}
.sig:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }

/* the plate: a painted colour field standing in for (or framing) a photo */
.sig__plate {
  position: relative; aspect-ratio: 5 / 4; overflow: hidden;
  border-bottom: 2px solid var(--ink);
  display: grid; place-items: center;
  background: var(--plate, var(--chile));
}
.sig--chile    { --plate: var(--chile); }
.sig--marigold { --plate: var(--marigold); }
.sig--agua     { --plate: var(--agua); }

.sig__plate::before {   /* halftone dots, like a screen-printed poster */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.22) 1.1px, transparent 1.2px);
  background-size: 7px 7px;
}
.sig__initial {
  position: relative;
  font-family: var(--sign);
  font-size: clamp(6rem, 16vw, 9rem);
  line-height: 1;
  color: rgba(255,255,255,.24);
  user-select: none;
}
.sig__plate img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.sig__kicker {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: var(--ink); color: var(--stucco);
  font-size: .68rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem .7rem;
}
.sig__body { padding: 1.35rem 1.35rem 1.5rem; }
.sig__body h3 { font-family: var(--sign); font-size: var(--step-1); line-height: 1.1; margin-bottom: .5rem; }
.sig__body p { color: var(--ink-soft); font-size: .95rem; }

/* --- 10. Menu ----------------------------------------------------------- */
.menu__filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.chip {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink); cursor: pointer;
  padding: .55rem 1rem;
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .15s, color .15s;
}
.chip:hover { background: var(--stucco-edge); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--stucco); }

/* Sections have very different lengths, so a two-track grid leaves dead
   space under the short ones. Columns let them flow like a printed menu. */
.menu__sections { display: grid; gap: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 900px) {
  .menu__sections {
    display: block;
    column-count: 2;
    column-gap: clamp(2.5rem, 4vw, 4rem);
  }
  .msec { break-inside: avoid; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
}

.msec__head { margin-bottom: 1.25rem; }
.msec__head h3 {
  font-family: var(--sign); font-size: var(--step-2);
  line-height: 1; margin-bottom: .35rem;
}
.msec__note { font-size: .9rem; color: var(--ink-soft); max-width: 48ch; }

.mitem { padding-block: .85rem; border-bottom: 1px solid var(--stucco-edge); }
.mitem__line { display: flex; align-items: baseline; gap: .5rem; }
.mitem__name { font-weight: 700; font-stretch: 106%; }
.mitem__leader {
  flex: 1 1 auto; min-width: 1.5rem;
  border-bottom: 1.5px dotted var(--stucco-edge);
  transform: translateY(-.2em);
}
.mitem__price { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mitem__price::before { content: "$"; opacity: .5; font-size: .85em; margin-right: .05em; }
.mitem__desc { font-size: .92rem; color: var(--ink-soft); margin-top: .2rem; max-width: 52ch; }

.tag {
  display: inline-block; vertical-align: .1em;
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .18rem .42rem; margin-left: .45rem;
  background: var(--chile); color: #FFF4E6;
}
.tag--gold { background: var(--marigold); color: var(--ink); }
.tag--teal { background: var(--agua); color: #fff; }
.tag--out  { background: transparent; color: var(--ink-soft); border: 1px solid var(--stucco-edge); }

/* Ran out today. Still readable — people want to know it exists. */
.mitem--out .mitem__name { text-decoration: line-through; text-decoration-thickness: 1px; }
.mitem--out { opacity: .55; }

.menu__foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem; border-top: 3px solid var(--ink);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
}
.menu__foot p { font-size: .9rem; color: var(--ink-soft); max-width: 44ch; }

/* --- 10b. The room -----------------------------------------------------
   A mosaic that reads as the mural wall whether or not there are photos
   in it yet. Tiles are flat colour with a hand-lettered caption; drop a
   photograph in and the caption moves to a bar underneath it.
   ------------------------------------------------------------------------ */
/* Fixed row heights rather than square tiles: three rows of paint, not a
   thousand pixels of it. */
.gallery {
  display: grid; gap: 6px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(115px, 14vw, 190px);
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery > :first-child { grid-column: span 2; grid-row: span 2; }
}

.gtile {
  position: relative; overflow: hidden;
  background: var(--tile, var(--chile));
  display: grid; align-content: end;
}
/* Three paint colours, all clearly not the wall behind them. */
.gtile--a { --tile: var(--chile); }
.gtile--b { --tile: var(--agua); }
.gtile--c { --tile: var(--marigold); }
.gtile--c .gtile__cap { color: var(--ink); }
.gtile--c.gtile--photo .gtile__cap { color: #FFF4E6; }

.gtile::before {                    /* the same halftone as the dish cards */
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.20) 1.1px, transparent 1.2px);
  background-size: 7px 7px;
}
.gtile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.gtile__cap {
  position: relative; z-index: 2;
  font-family: var(--hand);
  font-size: clamp(1.05rem, .9rem + .7vw, 1.5rem);
  line-height: 1.1; padding: .9rem 1rem;
  color: #FFF4E6;
}
.gtile--photo .gtile__cap { background: var(--masonry); }

/* Follow row under the photographs. */
.follow {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--masonry-edge);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem clamp(1.5rem, 4vw, 3rem);
}
.follow__text { font-family: var(--hand); font-size: clamp(1.2rem, 1rem + .8vw, 1.7rem); color: var(--marigold); line-height: 1.1; }
.follow .btn-row { margin-left: auto; }
.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

/* --- 10c. Social ---------------------------------------------------------
   Big enough to hit with a thumb. A restaurant's Facebook page is where the
   daily specials actually get posted, so this is a real destination, not a
   row of decorative icons.
   ------------------------------------------------------------------------ */
.social { display: flex; flex-wrap: wrap; gap: .7rem; }
.social a {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1.1rem;
  border: 2px solid var(--masonry-edge);
  color: var(--paper-soft); text-decoration: none;
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .15s, border-color .15s, transform .15s;
}
.social a:hover {
  color: var(--marigold); border-color: var(--marigold);
  transform: translateY(-2px);
}
.social svg { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
.social__handle { text-transform: none; letter-spacing: .02em; opacity: .75; font-weight: 500; }

.social--wide { margin-top: 1.5rem; justify-content: center; }
.social--wide a { padding: .85rem 1.5rem; }

@media (prefers-reduced-motion: reduce) { .social a:hover { transform: none; } }

/* --- 11. Bar ------------------------------------------------------------ */
.bar__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 880px) { .bar__grid { grid-template-columns: 1.1fr 1fr; align-items: center; } }

.bar__list { display: grid; gap: 1px; background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.25); }
.bar__item { background: var(--agua); padding: 1.25rem 1.4rem; }
.bar__item h3 { font-family: var(--sign); font-size: var(--step-1); line-height: 1.1; margin-bottom: .25rem; }
.bar__item p { color: rgba(255,255,255,.92); font-size: .93rem; }

.hh {
  border: 3px solid #FFE9B8; padding: 1.35rem 1.5rem; margin-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; align-items: baseline;
}
.hh__title { font-family: var(--sign); font-size: var(--step-1); line-height: 1; }
.hh__when { font-weight: 700; letter-spacing: .06em; }
.hh__live { font-size: var(--step--1); color: #FFE9B8; width: 100%; }

/* --- 12. Story ---------------------------------------------------------- */
.story__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 880px) { .story__grid { grid-template-columns: 1.15fr .85fr; } }
.story__body p + p { margin-top: 1.1rem; }
.story__body p { color: var(--ink-soft); max-width: 60ch; }

.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink); border: 2px solid var(--ink); align-self: start; }
.fact { background: var(--stucco); padding: 1.25rem; }
.fact dt { font-size: var(--step--1); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .25rem; }
.fact dd { font-family: var(--sign); font-size: var(--step-2); line-height: 1; }

/* --- 13. Reviews -------------------------------------------------------- */
.rev__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .rev__grid { grid-template-columns: minmax(240px, 320px) 1fr; } }

.score__big { font-family: var(--sign); font-size: clamp(3.5rem, 8vw, 5rem); line-height: .9; color: var(--marigold); }
.score__meta { color: var(--paper-soft); font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; margin-top: .5rem; }

.bars { margin-top: 1.5rem; display: grid; gap: .45rem; }
.bars__row { display: grid; grid-template-columns: 2.5rem 1fr 2.6rem; gap: .6rem; align-items: center; font-size: var(--step--1); }
.bars__track { height: .55rem; background: var(--masonry-edge); }
.bars__fill { height: 100%; background: var(--marigold); }

.subscores { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--masonry-edge); }
.subscore dt { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--paper-soft); }
.subscore dd { font-family: var(--sign); font-size: var(--step-1); line-height: 1.1; }

.quotes { display: grid; gap: 1.25rem; align-content: start; }
/* Flat bordered block, same language as the hours rules and amenity chips.
   The colour in this section comes from the score and stars, which are
   content — the quote itself does not need decorating. */
.quote {
  background: var(--masonry-lift);
  border: 2px solid var(--masonry-edge);
  padding: 1.35rem 1.5rem;
}
.quote p { font-size: var(--step-1); line-height: 1.45; margin-bottom: .9rem; text-wrap: pretty; }
.quote footer { font-size: var(--step--1); color: var(--paper-soft); letter-spacing: .06em; text-transform: uppercase; }

/* --- 14. Forms ---------------------------------------------------------- */
.lead__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .lead__grid { grid-template-columns: .9fr 1.1fr; } }

.ticks { display: grid; gap: .6rem; margin-top: 1.5rem; list-style: none; padding: 0; }
.ticks li { display: flex; gap: .7rem; align-items: baseline; }
.ticks li::before { content: "✦"; color: #FFE9B8; flex: none; }

.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: .35rem; }
.field label { font-size: var(--step--1); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  background: rgba(255,255,255,.10);
  border: 2px solid rgba(255,255,255,.45);
  padding: .8rem .9rem; width: 100%;
  color: inherit; font-size: var(--step-0);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.5); }
.field input:focus, .field textarea:focus, .field select:focus { background: rgba(255,255,255,.18); }
.field select option { color: #111; }
.form__note { font-size: var(--step--1); color: rgba(255,255,255,.93); }

/* --- 15. Visit ---------------------------------------------------------- */
.visit__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .visit__grid { grid-template-columns: 1fr 1.1fr; } }

.hours { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours th { text-align: left; font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--paper-soft); font-weight: 700; padding-bottom: .6rem; }
.hours td { padding: .6rem 0; border-top: 1px solid var(--masonry-edge); font-variant-numeric: tabular-nums; }
.hours td:last-child { text-align: right; }
.hours tr[data-today="true"] td { color: var(--marigold); font-weight: 700; }
.hours tr[data-today="true"] td:first-child::after { content: " · today"; font-weight: 400; font-size: .8em; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

/* Holiday hours and one-off closures, so nobody drives over for nothing. */
.closures { border: 2px solid var(--marigold); padding: 1rem 1.15rem; margin-top: 1.5rem; }
.closures h3 { font-size: var(--step--1); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--marigold); margin-bottom: .6rem; }
.closures ul { list-style: none; padding: 0; display: grid; gap: .35rem; }
.closures li { font-size: .95rem; font-variant-numeric: tabular-nums; }
.closures strong { display: inline-block; min-width: 8.5rem; }
.closure__note { color: var(--paper-soft); }

.amenities { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.amenity { border: 1px solid var(--masonry-edge); padding: .35rem .7rem; font-size: var(--step--1); color: var(--paper-soft); }

.map { border: 3px solid var(--masonry-edge); background: var(--masonry-lift); min-height: 340px; display: grid; }
.map iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.35) contrast(1.05); }

.mapcard {
  display: grid; place-content: center; justify-items: center;
  gap: .9rem; padding: 2rem 1.5rem; text-align: center;
}
.mapcard__pin { width: 2.1rem; height: auto; fill: var(--marigold); }
.mapcard__pinhole { fill: var(--masonry-lift); }
.mapcard__addr { font-family: var(--sign); font-size: var(--step-1); line-height: 1.2; max-width: 18ch; }
.mapcard__note { font-size: var(--step--1); color: var(--paper-soft); max-width: 30ch; }

/* --- 16. FAQ ------------------------------------------------------------ */
.faq { display: grid; gap: 0; max-width: 46rem; border-top: 2px solid var(--stucco-edge); }
.faq details { border-bottom: 2px solid var(--stucco-edge); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0;
  font-weight: 700; font-stretch: 106%; font-size: var(--step-1);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sign); color: var(--chile); flex: none; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding-bottom: 1.2rem; color: var(--ink-soft); max-width: 62ch; }

/* --- 17. Footer + mobile action bar ------------------------------------- */
.foot { background: var(--masonry); border-top: 6px solid var(--chile); padding: clamp(3rem, 6vw, 4.5rem) var(--gut) calc(2.5rem + var(--bar-h, 0px)); }
.foot__inner { max-width: var(--wrap); margin-inline: auto; display: grid; gap: 2rem; }
@media (min-width: 800px) { .foot__inner { grid-template-columns: 1.2fr 1fr 1fr; } }
.foot h4 { font-size: var(--step--1); letter-spacing: .14em; text-transform: uppercase; color: var(--marigold); margin-bottom: .8rem; }
.foot a { color: var(--paper-soft); text-decoration: none; }
.foot a:hover { color: var(--paper); text-decoration: underline; }
.foot ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.foot__social { display: inline-flex; align-items: center; gap: .5rem; }
.foot__social svg { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }
.foot__legal { max-width: var(--wrap); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--masonry-edge); font-size: var(--step--1); color: rgba(243,227,202,.62); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* Build credit. Small and quiet, but still legible — a byline nobody can
   read is worse than no byline. */
.credit {
  max-width: var(--wrap); margin: 1.25rem auto 0;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(243,227,202,.62); text-align: center;
}
.credit a { text-decoration: none; }
.credit a:hover { color: var(--marigold); text-decoration: underline; }

.actionbar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: var(--masonry); border-top: 3px solid var(--chile);
}
.actionbar a {
  padding: .9rem .5rem; text-align: center; text-decoration: none;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper); border-right: 1px solid var(--masonry-edge);
}
.actionbar a:last-child { border-right: 0; }
.actionbar a:nth-child(2) { background: var(--chile); }

/* --- 18. Motion ---------------------------------------------------------
   One idea, used everywhere motion appears: a sign painter working across
   the wall, left to right. Headlines and seams are brushed on; everything
   else simply settles. Nothing loops, nothing bounces, nothing moves that
   the reader did not scroll to.
   ------------------------------------------------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(18px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1); }

/* The brush stroke. Vertical insets stay negative so descenders and the
   script's overhang are never clipped part-way through the stroke.

   The clipped element is never the one being observed. A clip-path that hides
   an element also collapses its intersection ratio, so an observer watching it
   would never fire and it could never un-hide itself. The headline paints when
   its unclipped parent comes into view instead. */
@keyframes csb-paint {
  from { clip-path: inset(-16% 100% -16% -3%); }
  to   { clip-path: inset(-16% -6% -16% -3%); }
}
[data-reveal] h2.display,
[data-paint] { clip-path: inset(-16% 100% -16% -3%); }

[data-reveal].is-in h2.display,
[data-paint].is-in { animation: csb-paint .85s cubic-bezier(.22,.68,.28,1) var(--d, 0ms) both; }

[data-reveal] h2.display { --d: 180ms; }

/* Hero load: eyebrow, headline, board, then the supporting lines. */
@keyframes csb-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
[data-load] { animation: csb-rise .65s cubic-bezier(.2,.7,.3,1) var(--d, 0ms) both; }

/* Seams paint across as their panel arrives. */
.band--seam::before, .band--seam-chile::before {
  transform: scaleX(0); transform-origin: left center;
  transition: transform .9s cubic-bezier(.22,.68,.28,1);
}
.band.is-seam::before { transform: scaleX(1); }

/* Tiles land one after another, like photographs going up on the wall. */
.gtile { transition-delay: calc(var(--i, 0) * 70ms); }

/* Filtering the menu crossfades rather than snapping. */
.menu__sections { transition: opacity .16s ease; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; transition: none; }
  [data-paint], [data-paint].is-in,
  [data-reveal] h2.display, [data-reveal].is-in h2.display { clip-path: none; animation: none; }
  [data-load] { animation: none; }
  .band--seam::before, .band--seam-chile::before { transform: none; transition: none; }
  .gtile { transition-delay: 0ms !important; }
  .menu__sections { transition: none; }
  .btn:hover, .sig:hover { transform: none; }
}

/* --- 18b. On paper ------------------------------------------------------
   "Print this menu" gives the kitchen a clean printed menu off the same
   data as the website, so the two can never say different things. Only the
   menu prints: no navigation, no photographs, no dark backgrounds.
   ------------------------------------------------------------------------ */
.printhead { display: none; }

@media print {
  .announce, .nav, .actionbar, .foot,
  .hero, #eats, #photos, #bar, #story, #reviews, #catering, #visit, #faq,
  .menu__filters, .menu__foot, .skip { display: none !important; }

  html, body { background: #fff !important; color: #000 !important; font-size: 10.5pt; }

  .printhead {
    display: block;
    padding-bottom: .5rem; margin-bottom: 1rem;
    border-bottom: 2px solid #000;
  }
  .printhead__name { font-family: var(--sign); font-size: 22pt; line-height: 1; margin-bottom: .35rem; }
  .printhead p { font-size: 9.5pt; line-height: 1.45; }

  .band, #menu { padding: 0 !important; background: #fff !important; color: #000 !important; }
  .band::after { display: none !important; }
  .band__head { margin-bottom: 1rem; }
  #menu .eyebrow, #menu .lede { display: none; }
  #menu h2 { font-size: 15pt; margin-bottom: .25rem; }

  .menu__sections { column-count: 2; column-gap: 1.5rem; display: block; }
  .msec { break-inside: avoid; margin-bottom: 1rem; }
  .msec__head h3 { font-size: 12.5pt; }
  .msec__note { font-size: 8.5pt; color: #333; }

  .mitem { padding-block: .3rem; border-bottom: 1px solid #ccc; }
  .mitem__desc { font-size: 8.5pt; color: #333; }
  .mitem__leader { border-bottom-color: #bbb; }
  .tag { border: 1px solid #000; background: none !important; color: #000 !important; padding: .05rem .25rem; }

  /* Sold-out is a today thing; a printed menu outlives the day. */
  .mitem--out { opacity: 1; }
  .mitem--out .mitem__name { text-decoration: none; }
  .tag--out { display: none; }

  [data-reveal] { opacity: 1 !important; transform: none !important; }
  a[href]::after { content: none !important; }
}

/* --- 19. Small screens -------------------------------------------------- */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0; z-index: 110;
    background: var(--masonry);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 1.5rem; margin: 0;
    transform: translateY(-100%); transition: transform .3s cubic-bezier(.2,.7,.3,1);
  }
  .nav__links[data-open="true"] { transform: none; }
  .nav__links a { font-size: var(--step-2); font-family: var(--sign); letter-spacing: 0; text-transform: none; }
  .nav__toggle { display: block; order: 3; position: relative; z-index: 120; }
  .nav__cta { display: none; }
  /* "Are they open right now" is the first thing a phone visitor wants.
     Keep the live badge, just make it fit. */
  .nav__inner .status { margin-left: auto; padding: .35rem .6rem; letter-spacing: .06em; }
  .nav__inner .status span:last-child { max-width: 9ch; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 380px) {
  .wordmark em { display: none; }
}

@media (max-width: 720px) {
  .actionbar { display: grid; }
  body { --bar-h: 3.2rem; }
  .facts { grid-template-columns: 1fr 1fr; }
}
