@charset "UTF-8";
/* Pizzeria San Antonio
 *
 * One stylesheet, no framework, no web fonts, no image requests.
 *
 * LOGICAL PROPERTIES ONLY. padding-inline-start, not padding-left.
 * text-align: end, not right. The site is LTR today; the habit costs nothing
 * and means a right-to-left language later is content work, not a rewrite.
 * docs/05-conventions.md carries the grep that enforces it -- it must print [].
 *
 * The look: warm paper, a heavy serif, ink-dark bands for the grill sections,
 * and hand-drawn line art. Deliberately not the dark-hero-with-stock-pizza
 * that every competitor in the postcode is using.
 */

/* ---------------------------------------------------------------- tokens */

:root {
  --paper:      #FAF5EC;
  --paper-2:    #F2E9DA;
  --ink:        #1C1714;
  --ink-2:      #4A3F36;
  --ink-soft:   #6B5D50;

  --tomato:     #C43D2E;
  --tomato-dk:  #A22E22;
  --basil:      #43663E;
  --ochre:      #D4933A;
  --ember:      #E2622F;
  /* Ember is fine as a decorative stroke and as a focus ring, but as TEXT on
     paper it measures 3.21:1 -- below AA. This darker cast is 5.08:1. */
  --ember-ink:  #B4451A;

  --line:       #DCCFBB;
  --line-soft:  #EAE0D0;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --wrap: 74rem;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 3px;

  --shadow: 0 1px 0 var(--line), 0 8px 28px rgb(28 23 20 / 6%);
}

/* ------------------------------------------------------------------ base */

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-block-start: calc(var(--head-h, 4rem) + var(--tools-h, 3.5rem) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  /* A very quiet paper grain, drawn rather than downloaded. */
  background-image:
    radial-gradient(circle at 15% 12%, rgb(212 147 58 / 5%) 0, transparent 42%),
    radial-gradient(circle at 85% 78%, rgb(196 61 46 / 4%) 0, transparent 45%);
  background-attachment: fixed;
}

h1, h2, h3, .bignum {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.012em;
  margin-block: 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.4rem + 3.6vw, 4.1rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem); }

p { margin-block: 0 1em; text-wrap: pretty; }
p:last-child { margin-block-end: 0; }

a { color: var(--tomato-dk); text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--tomato); }

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

img, svg { max-inline-size: 100%; }
address { font-style: normal; }

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

.vh {
  position: absolute; inline-size: 1px; block-size: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; inset-block-start: -100%; inset-inline-start: 1rem;
  z-index: 100; background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; border-radius: var(--radius);
}
.skip:focus { inset-block-start: 1rem; color: var(--paper); }

.muted { color: var(--ink-soft); }
.note  { font-size: .875rem; color: var(--ink-soft); line-height: 1.55; }
.lede  { font-size: clamp(1.08rem, 1rem + .5vw, 1.32rem); color: var(--ink-2); line-height: 1.52; }
.big   { font-size: 1.5rem; font-family: var(--serif); }

.h-sec {
  margin-block-start: 0;
  padding-block-end: .5rem;
  border-block-end: 2px solid var(--ink);
  display: inline-block;
}
.h-min {
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
  margin-block: 1.5rem .5rem;
}
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--tomato);
  margin-block-end: 1rem;
}
.sec-lede { max-inline-size: 46rem; color: var(--ink-2); margin-block-end: 2rem; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  font: inherit; font-weight: 600;
  border: 2px solid transparent; border-radius: 100px;
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--tomato); color: var(--paper); border-color: var(--tomato); }
.btn--primary:hover { background: var(--tomato-dk); border-color: var(--tomato-dk); color: var(--paper); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: transparent; color: var(--paper); border-color: var(--paper); }

.ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-block: 2rem 0; }

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

.site-head {
  background: var(--paper);
  border-block-end: 1px solid var(--line);
  position: sticky; inset-block-start: 0; z-index: 40;
}
.site-head__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .85rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__mark { inline-size: 2.4rem; block-size: 2.4rem; color: var(--tomato); flex: none; }
.brand__mark svg { display: block; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__txt b { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; }
.brand__txt i { font-style: normal; font-size: .72rem; color: var(--ink-soft); letter-spacing: .02em; }

.head-actions { display: flex; align-items: center; gap: .75rem; flex: none; }
.btn--sm { padding: .5rem 1.05rem; font-size: .88rem; border-width: 1.5px; }
.head-cta {
  flex: none; padding: .62rem 1.4rem; font-size: .95rem;
  box-shadow: 0 2px 10px rgb(196 61 46 / 28%);
}
.head-cta:hover { box-shadow: 0 3px 14px rgb(196 61 46 / 38%); }

/* Two letters, not "Nederlands". It sits beside the order button and must not
   compete with it; the full language name is in the accessible name. */
.langswitch {
  font-size: .78rem; font-weight: 700; letter-spacing: .09em;
  color: var(--ink-soft); text-decoration: none;
  padding: .3rem .5rem; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.langswitch:hover { color: var(--ink); border-color: var(--ink-soft); }
.btn--quiet { border-color: transparent; color: var(--ink-2); text-decoration: underline; }
.btn--quiet:hover { color: var(--tomato-dk); }

.navtoggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  inline-size: 2.9rem; block-size: 2.6rem;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer; padding-inline: .65rem;
}
.navtoggle span { display: block; block-size: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav { display: flex; align-items: center; justify-content: flex-end; flex: 1 1 auto; }
.nav ul { display: flex; gap: .95rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  color: var(--ink-2); text-decoration: none; font-size: .9rem; font-weight: 500;
  padding-block: .3rem; border-block-end: 2px solid transparent; white-space: nowrap;
}
.nav a:hover { color: var(--tomato); border-block-end-color: var(--tomato); }
.nav a[aria-current="page"] { color: var(--ink); border-block-end-color: var(--ink); }


/* -------------------------------------------------------------- statusbar */
/* Computed live from data.py HOURS -- decision D7. No banner to go stale. */

.statusbar { background: var(--ink); color: var(--paper); font-size: .875rem; }
.statusbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .55rem; flex-wrap: wrap;
}
.statuspill { display: inline-flex; align-items: center; gap: .55rem; font-weight: 500; }
.statuspill .dot {
  inline-size: .55rem; block-size: .55rem; border-radius: 50%;
  background: var(--ink-soft); flex: none;
}
.statusbar[data-open="1"] .dot { background: #56C271; box-shadow: 0 0 0 3px rgb(86 194 113 / 22%); }
.statusbar[data-open="0"] .dot { background: var(--ember); }
.statusbar__links { display: inline-flex; align-items: center; gap: .9rem; }
.statusbar__link { color: #D9CDBC; font-weight: 600; text-underline-offset: .2em; }
.statusbar__link:hover { color: var(--ochre); }
.statusbar__link--strong {
  color: var(--ink); background: var(--ochre);
  padding: .2rem .8rem; border-radius: 100px; text-decoration: none;
}
.statusbar__link--strong:hover { background: var(--paper); color: var(--ink); }

/* ------------------------------------------------------------------ bands */

.band { padding-block: clamp(3rem, 7vw, 5.5rem); }
.band--alt { background: var(--paper-2); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--ink h2 { color: var(--paper); }
.band--ink .lede { color: #D9CDBC; }
.band--ways { border-block-start: 1px solid var(--line-soft); }
.band--sig { background: var(--paper-2); }

.page { padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem); }
.page-head { max-inline-size: 52rem; margin-block-end: clamp(2rem, 5vw, 3rem); }

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

.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
  border-block-end: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero__in {
  display: grid; gap: var(--gap); align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}
.hero h1 { max-inline-size: 15ch; margin-block-end: 1rem; }
.hero .lede { max-inline-size: 46ch; }
.hero__art { color: var(--tomato); display: grid; place-items: center; }
.hero__art .art { inline-size: min(100%, 26rem); block-size: auto; }
.hero__proof {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-block-start: 1.75rem; padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--line);
  font-size: .95rem; color: var(--ink-2);
}
.hero__proof b { font-family: var(--serif); font-size: 1.25rem; }

.stars { display: inline-flex; gap: .1rem; color: var(--ochre); }
.stars .star { inline-size: 1.05rem; block-size: 1.05rem; }
.rating-line { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .875rem; }

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

.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--gap); }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr)); }
.cards--sig { grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex; flex-direction: column; align-items: flex-start;
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin-block-end: .4rem; }
.card p { color: var(--ink-2); }
.card__art { color: var(--tomato); inline-size: 3.4rem; margin-block-end: .9rem; display: block; }
.card__art .art { inline-size: 100%; block-size: auto; display: block; }
.card__link {
  margin-block-start: auto; padding-block-start: 1rem;
  font-weight: 600; font-size: .93rem; text-decoration: none;
  border-block-end: 2px solid currentColor;
}
.card .btn { margin-block-start: auto; }
.card--wide .btn, .card--wide .ctas { inline-size: 100%; }
.card--rating { align-items: center; text-align: center; }
.bignum { font-size: clamp(3rem, 8vw, 4.5rem); margin-block-end: .25rem; color: var(--tomato); }
.bignum span { font-size: .35em; color: var(--ink-soft); }

/* On a phone eight stacked cards filled the screen before anyone reached the
   menu link. Horizontally scrolling keeps the section as a PREVIEW. */
.sigstrip { margin-inline: 0; }
.swipe-hint { display: none; margin-block-start: .75rem; }

.sigcard {
  background: var(--paper);
  border-block-start: 3px solid var(--tomato);
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex; flex-direction: column;
}
.sigcard h3 { font-size: 1.1rem; margin-block-end: .35rem; }
.sigcard p { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
.sigcard__price {
  margin-block-start: auto; padding-block-start: .85rem;
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
}

/* ------------------------------------------------------------------ split */

.split { display: grid; gap: var(--gap); align-items: center;
         grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.split--flip .split__art { order: 2; }
.split--tight { grid-template-columns: minmax(0, .5fr) minmax(0, 1.5fr); }
.split--wide { grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); align-items: start; }
/* Tomato by default; the ink and diet bands override it below. Inheriting
   plain body ink made the story illustrations read as clip-art. */
.split__art { color: var(--tomato); display: grid; place-items: center; }
.split__art .art { inline-size: min(100%, 16rem); block-size: auto; }
.band--grill .split__art { color: var(--ember); }
.band--diet .split__art { color: var(--basil); }
.split__txt > :last-child { margin-block-end: 0; }

.addr { font-size: 1.05rem; line-height: 1.7; margin-block-end: 1.25rem; }

/* ------------------------------------------------------------------ hours */

.hours { border-collapse: collapse; inline-size: 100%; max-inline-size: 24rem; font-size: .95rem; }
.hours th, .hours td { padding-block: .42rem; border-block-end: 1px solid var(--line-soft); }
.hours th { text-align: start; font-weight: 500; color: var(--ink-2); }
.hours td { text-align: end; font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-block-end: 0; }
.hours .is-closed th, .hours .is-closed td { color: var(--ink-soft); }
.hours tr[data-today] th, .hours tr[data-today] td { font-weight: 700; color: var(--tomato-dk); }

.terms { border-collapse: collapse; inline-size: 100%; margin-block-end: 1.25rem; font-size: .95rem; }
.terms th, .terms td { padding-block: .5rem; border-block-end: 1px solid var(--line-soft); vertical-align: baseline; }
.terms th { text-align: start; font-weight: 500; color: var(--ink-soft); }
.terms td { text-align: end; font-weight: 600; }

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

.menutools {
  position: sticky; inset-block-start: var(--head-h, 3.9rem); z-index: 30;
  background: var(--paper); border-block: 1px solid var(--line);
  margin-block-end: 2.5rem;
}
.menutools__in { padding-block: .9rem; }
.jump { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .85rem; margin-block-end: .8rem; }
.jump span { color: var(--ink-soft); }
.jump a { color: var(--ink-2); text-decoration: none; border-block-end: 1px solid var(--line); }
.jump a:hover { color: var(--tomato); border-block-end-color: var(--tomato); }

.controls { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.search { flex: 1 1 15rem; }
.search input {
  inline-size: 100%; padding: .65rem 1rem; font: inherit; font-size: .95rem;
  background: var(--paper-2); color: var(--ink);
  border: 1px solid var(--line); border-radius: 100px;
}
.search input::placeholder { color: var(--ink-soft); }

.filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter {
  font: inherit; font-size: .84rem; font-weight: 500;
  padding: .42rem .9rem; cursor: pointer;
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 100px;
  transition: background-color .15s, color .15s, border-color .15s;
}
.filter:hover { border-color: var(--ink-soft); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter--clear { color: var(--tomato-dk); border-style: dashed; }

.count { font-size: .85rem; color: var(--ink-soft); margin-block: .7rem 0; }
.empty { padding-block: 3rem; text-align: center; font-size: 1.1rem; color: var(--ink-soft); }

.cat {
  margin-block-end: clamp(2.5rem, 5vw, 4rem);
  scroll-margin-block-start: calc(var(--head-h, 4rem) + var(--tools-h, 3.5rem) + 1rem);
}
.cat__head { margin-block-end: 1.25rem; padding-block-end: .75rem; border-block-end: 2px solid var(--ink); }
.cat__head h2 { margin-block-end: .15rem; }
.cat__head p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

.dishes { list-style: none; margin: 0; padding: 0;
          display: grid; gap: 0 var(--gap); grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr)); }
.dish {
  display: flex; gap: 1rem; align-items: baseline; justify-content: space-between;
  padding-block: .95rem; border-block-end: 1px dotted var(--line);
}
.dish__main { min-inline-size: 0; }
.dish__name { font-size: 1.06rem; margin-block-end: .15rem; display: flex; flex-wrap: wrap; gap: .45rem; align-items: baseline; }
.dish__desc { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; margin-block-end: .2rem; }
/* No opacity: .85 dropped this to 4.19:1, below AA -- and of everything on the
   page, the allergen line is the last text that may be hard to read. */
.dish__alg { font-size: .78rem; color: var(--ink-soft); margin: 0; }
.dish__alg b { font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .92em; }
.dish__price {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  white-space: nowrap; margin: 0; font-variant-numeric: tabular-nums;
}
.dish__price .cur { color: var(--ink-soft); font-size: .82em; margin-inline-end: .12em; }

.chip {
  font-family: var(--sans); font-size: .64rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .16rem .5rem; border-radius: 100px; white-space: nowrap;
  border: 1px solid currentColor;
}
.chip--vegan     { color: var(--basil); }
/* No opacity here: .8 over paper drops basil to 3.86:1. The label already
   says which is which, so the colour does not need to carry the difference. */
.chip--veg       { color: var(--basil); }
.chip--spicy     { color: var(--ember-ink); }
.chip--signature { color: var(--paper); background: var(--tomato); border-color: var(--tomato); }
.chip--alcohol   { color: var(--ink-soft); }

.notice {
  background: var(--paper-2); border-inline-start: 4px solid var(--ochre);
  padding: clamp(1.25rem, 3vw, 1.85rem); border-radius: var(--radius);
  margin-block: 2.5rem;
}
.notice h2 { font-size: 1.2rem; }
.notice p { color: var(--ink-2); }

/* ------------------------------------------------------------ closing CTA */
/* Every page ends here. The site should never dead-end on a paragraph. */

.band--cta {
  background: var(--ink); color: var(--paper);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) clamp(2.5rem, 5vw, 3.5rem);
}
.band--cta h2 { color: var(--paper); }
.band--cta .lede { color: #D9CDBC; }
.endcta { text-align: center; max-inline-size: 44rem; margin-inline: auto; }
.endcta .ctas { justify-content: center; }
.band--cta .btn--quiet { color: #D9CDBC; }
.band--cta .btn--quiet:hover { color: var(--ochre); }
/* An inline link inheriting --tomato-dk on ink measures 2.50:1. Any link on a
   dark band takes the ochre instead, which is 7.4:1 there. */
.band--ink a:not(.btn), .band--cta a:not(.btn) { color: var(--ochre); }
.band--ink a:not(.btn):hover, .band--cta a:not(.btn):hover { color: var(--paper); }

/* ------------------------------------------------------ mobile action bar */
/* Phones only. Two thumbs-reach actions that never scroll away. */

.actionbar { display: none; }

/* ----------------------------------------------------------------- steps */

.steps { margin-block: 3rem; }
.steps__list { counter-reset: s; list-style: none; margin: 1.5rem 0; padding: 0;
               display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.steps__list li {
  counter-increment: s; position: relative;
  padding-inline-start: 3rem; padding-block: .5rem;
  color: var(--ink-2);
}
.steps__list li::before {
  content: counter(s);
  position: absolute; inset-inline-start: 0; inset-block-start: .35rem;
  inline-size: 2.1rem; block-size: 2.1rem;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--paper); background: var(--tomato); border-radius: 50%;
}

/* --------------------------------------------------------- reserve builder */

.builder {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem);
  margin-block: 3rem;
}
.builder__grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); margin-block: 1.5rem; }
.builder__grid p { margin: 0; }
.builder label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft);
                 letter-spacing: .04em; text-transform: uppercase; margin-block-end: .35rem; }
.builder input {
  inline-size: 100%; padding: .6rem .8rem; font: inherit; font-size: .95rem;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.builder__label { font-size: .8rem; font-weight: 600; color: var(--ink-soft);
                  letter-spacing: .04em; text-transform: uppercase; margin-block-end: .4rem; }
.builder__preview {
  font-family: var(--serif); font-size: 1.05rem; line-height: 1.5;
  background: var(--paper); border-inline-start: 3px solid var(--tomato);
  padding: 1rem 1.1rem; border-radius: var(--radius); margin-block-end: 1rem;
}

/* -------------------------------------------------------------------- FAQ */

.qas { max-inline-size: 52rem; }
.qas__tools { display: flex; justify-content: flex-end; margin-block-end: .5rem; }

/* <details> is native: it works with JavaScript off, it is keyboard-operable
   for free, and the answer stays in the DOM so FAQPage schema and crawlers
   still see it. Only CSS hides it. */
.qa { border-block-end: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: flex-start; gap: 1rem; justify-content: space-between;
  padding-block: 1.15rem; cursor: pointer; list-style: none;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.08rem, 1rem + .45vw, 1.35rem); line-height: 1.25;
  color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--tomato-dk); }
.qa summary::after {
  content: ""; flex: none; inline-size: 1.5rem; block-size: 1.5rem;
  margin-block-start: .1rem; border: 1.5px solid var(--line); border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / .65rem 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px .65rem no-repeat;
  transition: transform .18s ease, border-color .18s ease;
}
.qa[open] summary::after { transform: rotate(135deg); border-color: var(--tomato); }
.qa__a { padding-block-end: 1.25rem; padding-inline-end: 2.5rem; }
.qa__a p { color: var(--ink-2); margin: 0; }

.plain { list-style: none; margin: 0; padding: 0; }
.plain li { padding-block: .3rem; }
.plain a { color: var(--ink-2); text-decoration: none; }
.plain a:hover { color: var(--tomato); text-decoration: underline; }
.plain--big { margin-block-start: 1.5rem; font-family: var(--serif); font-size: 1.3rem; }
.plain--big li { padding-block: .4rem; }

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

.site-foot {
  background: var(--ink); color: #C9BCAC;
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  /* No top margin. Every page ends on .band--cta, which is the same ink, so a
     margin here showed a stripe of paper between two dark regions. They now sit
     flush and are divided by a hairline, which reads as deliberate. */
  border-block-start: 1px solid #33291F;
}
.site-foot__grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.site-foot h2 {
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ochre);
  margin-block-end: .9rem;
}
.site-foot a { color: var(--paper); }
.site-foot a:hover { color: var(--ochre); }
.site-foot strong { color: var(--paper); font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.site-foot .muted { color: #8E8074; }
.site-foot .hours th { color: #B5A797; }
.site-foot .hours td { color: var(--paper); }
.site-foot .hours th, .site-foot .hours td { border-block-end-color: #33291F; }
/* #7A6C60 measured 3.5:1 on the ink background -- below AA. #948578 is
   4.98:1 and still reads as de-emphasised. Caught by the contrast audit,
   not by looking at it. */
.site-foot .hours .is-closed th, .site-foot .hours .is-closed td { color: #948578; }
.site-foot .hours tr[data-today] th, .site-foot .hours tr[data-today] td { color: var(--ochre); }
.site-foot__end {
  margin-block-start: 2.5rem; padding-block-start: 1.25rem;
  border-block-start: 1px solid #33291F;
  font-size: .8rem; color: #8E8074;
}
.site-foot .rating-line { margin-block-start: 1rem; color: #B5A797; }

/* ------------------------------------------------------------ narrow view */

@media (max-width: 62rem) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__art .art { inline-size: min(62%, 15rem); }
  .split, .split--tight { grid-template-columns: 1fr; }
  .split--flip .split__art { order: 0; }
  .split__art .art { inline-size: min(50%, 11rem); }
}

@media (max-width: 64rem) {
  .navtoggle { display: flex; }
  .nav {
    display: none; position: absolute; inset-block-start: 100%;
    inset-inline: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-block-end: 1px solid var(--line);
    padding: .75rem 1.25rem 1.25rem; box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; inline-size: 100%; }
  .nav li { border-block-end: 1px solid var(--line-soft); }
  .nav a { display: block; padding-block: .8rem; font-size: 1.05rem; border-block-end: 0; }

  /* The two actions, always within thumb reach, never scrolling away.
     Body gets bottom padding so the bar cannot cover the last line of a page. */
  .actionbar {
    display: flex; gap: .6rem;
    position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 45;
    padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom, 0px));
    /* Opaque on purpose. A translucent bar puts the label over whatever
       happens to scroll beneath it, so its contrast is not knowable in
       advance -- and this bar carries the two actions the whole site exists
       for. It also drops a color-mix() dependency for one visual flourish. */
    background: var(--paper);
    border-block-start: 1px solid var(--line);
    box-shadow: 0 -6px 18px rgb(28 23 20 / 8%);
  }
  .actionbar .btn { flex: 1 1 0; padding-block: .7rem; }
  body { padding-block-end: 4.5rem; }

  /* Eight stacked cards filled the screen before the menu link. A scrolling
     strip keeps this a preview of what is orderable, not the whole page. */
  .sigstrip {
    overflow-x: auto; overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory; scrollbar-width: none;
    margin-inline: -1.25rem; padding-inline: 1.25rem; padding-block-end: .5rem;
    -webkit-overflow-scrolling: touch;
  }
  .sigstrip::-webkit-scrollbar { display: none; }
  .cards--sig {
    grid-auto-flow: column; grid-auto-columns: 15rem;
    grid-template-columns: none; gap: .75rem;
  }
  .cards--sig .sigcard { scroll-snap-align: start; }
  /* Clamp the description so cards in the strip stay a uniform, compact
     height. The full text is one tap away on the menu page. */
  .cards--sig .sigcard p {
    display: -webkit-box; -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; line-clamp: 3; overflow: hidden;
  }
  .swipe-hint { display: block; }
  .menutools { inset-block-start: var(--head-h, 3.7rem); }
  /* The action bar below carries both actions at this width. Without this the
     screen shows three "Bestellen" buttons at once. */
  .statusbar__links { display: none; }
  .statusbar__in { justify-content: center; }
  /* On a phone the ten category links wrapped to four lines and pushed the
     menu itself below the fold. A single scrolling strip is the standard
     pattern and costs ~150px of vertical space. The STRIP scrolls sideways;
     the page still must not. */
  .jump {
    flex-wrap: nowrap; overflow-x: auto; overscroll-behavior-inline: contain;
    scrollbar-width: none; padding-block-end: .35rem;
    -webkit-overflow-scrolling: touch;
  }
  .jump::-webkit-scrollbar { display: none; }
  .jump a, .jump span { white-space: nowrap; flex: none; }
  .dishes { grid-template-columns: 1fr; }
  .ctas .btn { flex: 1 1 100%; }
}

@media (max-width: 30rem) {
  .brand__txt i { display: none; }
  .statusbar__in { gap: .75rem; }
  .head-cta { padding: .45rem .85rem; font-size: .82rem; }
}

/* ---------------------------------------------------------------- printing */

@media print {
  .site-head, .statusbar, .menutools, .ctas, .skip, .card__link,
  .actionbar, .band--cta, .qas__tools { display: none; }
  /* An accordion on paper must be open, or the answers vanish. */
  .qa__a { display: block !important; }
  .qa summary::after { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .band, .page { padding-block: .5rem; }
  .dishes { grid-template-columns: 1fr 1fr; }
  .site-foot { background: none; color: #000; border-block-start: 1px solid #000; }
  .site-foot a, .site-foot strong, .site-foot .hours td { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
