/* ==========================================================================
   Lancers Diner — site styles
   Palette sampled from the diner's own logo: red #ae0e00, brass #c2b47d.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  color-scheme: light;

  --paper:      #fbf7f0;
  --paper-2:    #f4ecdd;
  --paper-3:    #ece0cb;
  --card:       #ffffff;

  --ink:        #201c18;
  --ink-2:      #574d42;
  --ink-3:      #857a6c;

  --red:        #ae0e00;
  --red-dark:   #880b00;
  --red-tint:   #fbeceb;

  --brass:      #c2a86b;
  --brass-dk:   #97803f;
  --brass-tint: #f6efdd;

  --green:      #2e6b4c;
  --green-tint: #e8f2ec;

  --rule:       rgba(32, 28, 24, 0.13);
  --rule-soft:  rgba(32, 28, 24, 0.07);

  --shadow-sm:  0 1px 2px rgba(32,28,24,.06), 0 2px 6px rgba(32,28,24,.05);
  --shadow-md:  0 2px 4px rgba(32,28,24,.06), 0 8px 24px rgba(32,28,24,.09);
  --shadow-lg:  0 4px 8px rgba(32,28,24,.07), 0 18px 46px rgba(32,28,24,.14);

  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-body:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap:   1180px;
  --wrap-n: 940px;
  --gutter: 20px;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --header-h: 68px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@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(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5.2vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--brass-dk);
  outline-offset: 2px;
  border-radius: 3px;
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* --- Layout helpers ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-n); }

.section { padding-block: clamp(48px, 7vw, 86px); }
.section--tight { padding-block: clamp(34px, 5vw, 56px); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  font-size: .775rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brass-dk);
  margin: 0 0 .6rem;
}

.lede { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; }

.section-head { margin-bottom: clamp(26px, 3.5vw, 42px); }
.section-head p { color: var(--ink-2); max-width: 60ch; margin-bottom: 0; }

/* Hand-drawn style rule under headings */
.rule-brass {
  width: 58px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red) 0 60%, var(--brass) 60% 100%);
  margin: 0 0 1.1rem;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700; line-height: 1;
  padding: .85em 1.35em;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #3a332c; color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(32,28,24,.28); }
.btn--ghost:hover { background: rgba(32,28,24,.05); color: var(--ink); border-color: rgba(32,28,24,.45); }

.btn--onphoto { background: rgba(255,255,255,.95); color: var(--ink); }
.btn--onphoto:hover { background: #fff; color: var(--ink); }

.btn--wide { width: 100%; }
.btn--sm { font-size: .9rem; padding: .65em 1em; }

/* --- Top utility bar ------------------------------------------------------ */
.utility {
  background: var(--red);
  color: #fff;
  font-size: .875rem;
}
.utility a { color: #fff; text-decoration: none; }
.utility a:hover { color: #fff; text-decoration: underline; }
.utility__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px; padding-block: 6px;
}
.utility__left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.utility__item { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; white-space: nowrap; }
.utility__item svg { width: 15px; height: 15px; opacity: .9; flex: none; }
.utility__order {
  display: inline-flex; align-items: center; gap: .45em;
  background: #fff; color: var(--red) !important;
  font-weight: 800; font-size: .82rem; letter-spacing: .03em; text-transform: uppercase;
  padding: .45em .9em; border-radius: 100px; white-space: nowrap;
}
.utility__order:hover { background: var(--brass-tint); text-decoration: none !important; }
@media (max-width: 720px) {
  .utility__inner { justify-content: center; }
  .utility__hide-sm { display: none; }
}

/* --- Open / closed status pill ------------------------------------------- */
.status {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; white-space: nowrap;
}
.status__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: currentColor; flex: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.28);
}
.status.is-open    { color: #b7f2d0; }
.status.is-closed  { color: #ffd9d5; }

/* Standalone (on paper) variant */
.status-card {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .42em .85em; border-radius: 100px;
  font-size: .9rem; font-weight: 700;
  background: var(--paper-3); color: var(--ink-2);
}
.status-card .status__dot { box-shadow: 0 0 0 3px rgba(255,255,255,.7); }
.status-card.is-open   { background: var(--green-tint); color: var(--green); }
.status-card.is-closed { background: var(--red-tint);  color: var(--red); }

/* --- Header --------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,240,.97);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(8px);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 132px; height: auto; }
.brand__tag {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  color: var(--ink-3); letter-spacing: .02em; line-height: 1.2;
  padding-left: 12px; border-left: 1px solid var(--rule);
}
@media (max-width: 900px) { .brand__tag { display: none; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-block; padding: 9px 12px; border-radius: var(--r-sm);
  color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: .97rem;
}
.nav a:hover { background: var(--paper-3); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -2px 0 var(--red); border-radius: 0; }
.nav > .btn { display: none; }        /* shown only in the mobile drawer */

.header__cta { display: inline-flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; align-items: center; gap: .5em;
  background: transparent; border: 1.5px solid rgba(32,28,24,.25);
  border-radius: var(--r-sm); padding: .55em .8em;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem; color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .header__cta .btn { display: none; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    padding: 8px var(--gutter) 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 4px; border-bottom: 1px solid var(--rule-soft); border-radius: 0; font-size: 1.05rem; }
  .nav a[aria-current="page"] { box-shadow: none; }
  .nav > .btn { display: inline-flex; margin-top: 12px; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; background: #14110e; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,12,9,.72) 0%, rgba(16,12,9,.34) 40%, rgba(16,12,9,.76) 100%),
    linear-gradient(90deg, rgba(16,12,9,.6) 0%, rgba(16,12,9,0) 62%);
}
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 56px); align-items: end;
  padding-block: clamp(56px, 9vw, 116px);
}
.hero__copy { color: #fff; max-width: 34rem; }
.hero__copy h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); text-wrap: balance; text-shadow: 0 2px 18px rgba(0,0,0,.4); margin-bottom: .35em; }
.hero__copy .eyebrow { color: var(--brass); }
.hero__sub {
  max-width: 30rem;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: rgba(255,255,255,.9); text-shadow: 0 1px 10px rgba(0,0,0,.45);
  margin-bottom: 1.6em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; align-items: start; }
  .hero__copy { max-width: none; }
}

/* Facts card sitting in the hero */
.facts {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border-top: 4px solid var(--red);
}
.facts__row:first-of-type { padding-top: 18px; }
.facts__row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule-soft);
}
.facts__row:last-child { border-bottom: 0; }
.facts__icon {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--brass-tint); color: var(--brass-dk);
}
.facts__icon svg { width: 17px; height: 17px; }
.facts__label {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 2px;
}
.facts__value { font-weight: 600; color: var(--ink); line-height: 1.4; }
.facts__value a { text-decoration: none; }
.facts__value a:hover { text-decoration: underline; }
.facts__note { font-size: .88rem; color: var(--ink-3); margin-top: 2px; }
.facts__foot { padding: 14px 20px 18px; background: var(--paper-2); }

/* --- "Three doors" quick actions ----------------------------------------- */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .doors { grid-template-columns: 1fr; } }

.door {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: 26px 24px 24px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.door:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(174,14,0,.3);
  color: var(--ink);
}
.door__icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 6px;
  display: grid; place-items: center;
  background: var(--red-tint); color: var(--red);
}
.door__icon svg { width: 23px; height: 23px; }
.door h3 { margin: 0; font-size: 1.28rem; }
.door p { color: var(--ink-2); font-size: .98rem; margin: 0; }
.door__more {
  margin-top: auto; padding-top: 12px;
  font-weight: 700; font-size: .93rem; color: var(--red);
  display: inline-flex; align-items: center; gap: .4em;
}
.door:hover .door__more svg { transform: translateX(3px); }
.door__more svg { width: 15px; height: 15px; transition: transform .15s ease; }

/* --- Split feature -------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.split--rev .split__media { order: 2; }
.split--top { align-items: start; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
}
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }

/* Photo frame with a thin brass inner line — reads handmade, not templated */
.framed { position: relative; }
.framed::after {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 9px; pointer-events: none;
}

/* --- Bakery list ---------------------------------------------------------- */
.baked-list {
  columns: 3; column-gap: 34px;
  list-style: none; margin: 0; padding: 0;
  font-size: 1rem;
}
@media (max-width: 860px) { .baked-list { columns: 2; column-gap: 24px; } }
@media (max-width: 460px) { .baked-list { columns: 1; } }
.baked-list li {
  break-inside: avoid;
  padding: 7px 0 7px 22px;
  border-bottom: 1px dotted var(--rule);
  position: relative;
  color: var(--ink-2);
}
.baked-list li::before {
  content: ""; position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.baked-list li.is-seasonal::before { background: var(--red); }

/* --- Menu page ------------------------------------------------------------ */
.menu-toolbar {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(251,247,240,.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
  padding-block: 12px;
}
.menu-toolbar__inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.search {
  position: relative; flex: 1 1 260px; min-width: 0;
}
.search input[type="text"] {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: .7em 2.4em .7em 2.5em;
  border: 1.5px solid var(--rule); border-radius: 100px;
  background: var(--card); color: var(--ink);
}
.search input[type="text"]::placeholder { color: var(--ink-3); }
.search input[type="text"]:focus { border-color: var(--brass-dk); }
.search__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--ink-3); pointer-events: none;
}
.search__clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  border: 0; background: var(--paper-3); color: var(--ink-2);
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
  display: none; place-items: center; font-size: 15px; line-height: 1; padding: 0;
}
.search__clear.is-visible { display: grid; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-body); font-size: .92rem; font-weight: 700;
  padding: .55em 1em; border-radius: 100px; cursor: pointer;
  background: var(--card); color: var(--ink-2);
  border: 1.5px solid var(--rule);
  transition: background-color .13s ease, color .13s ease, border-color .13s ease;
}
.chip:hover { border-color: rgba(32,28,24,.32); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.menu-count { font-size: .9rem; color: var(--ink-3); font-weight: 600; margin-left: auto; white-space: nowrap; }
@media (max-width: 620px) { .menu-count { margin-left: 0; } }

/* Section jump links */
.jumpbar {
  display: flex; gap: 6px; overflow-x: auto; padding: 10px 0 12px;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%);
}
.jumpbar a {
  white-space: nowrap; font-size: .88rem; font-weight: 600;
  padding: .4em .8em; border-radius: 100px;
  background: var(--paper-3); color: var(--ink-2); text-decoration: none;
}
.jumpbar a:hover { background: var(--brass-tint); color: var(--brass-dk); }

/* Menu sections + items */
.menu-section { padding-top: 14px; margin-bottom: clamp(30px, 4vw, 48px); scroll-margin-top: calc(var(--header-h) + 74px); }
.menu-section__head {
  display: flex; align-items: baseline; gap: 14px;
  border-bottom: 2px solid var(--ink); padding-bottom: 8px; margin-bottom: 4px;
}
.menu-section__head h2 { margin: 0; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.menu-section__count { font-size: .85rem; color: var(--ink-3); font-weight: 600; margin-left: auto; white-space: nowrap; }

.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 44px; }
@media (max-width: 800px) { .menu-grid { grid-template-columns: 1fr; } }

.dish { padding: 15px 0; border-bottom: 1px solid var(--rule-soft); }
.dish__top { display: flex; align-items: baseline; gap: 6px; }
.dish__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.dish__dots {
  flex: 1 1 auto; min-width: 16px; height: 1em; align-self: flex-end;
  background-image: radial-gradient(circle, rgba(32,28,24,.38) 1.15px, transparent 1.25px);
  background-size: 6px 6px;
  background-position: left bottom 4px;
  background-repeat: repeat-x;
}
.dish__price { font-weight: 700; color: var(--red); white-space: nowrap; font-variant-numeric: tabular-nums; }
.dish__price--multi { font-size: .92rem; font-weight: 600; }
.dish__price--ask { color: var(--ink-3); font-weight: 600; font-size: .9rem; font-style: italic; }
.dish__desc { font-size: .95rem; color: var(--ink-2); margin: 4px 0 0; max-width: 56ch; }

mark { background: #fbe9a7; color: inherit; padding: 0 1px; border-radius: 2px; }

.no-results {
  text-align: center; padding: 56px 20px; color: var(--ink-2);
  background: var(--paper-2); border-radius: var(--r-lg);
}
.no-results h3 { margin-bottom: .3em; }

/* Menu intro strip */
.menu-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--brass-tint); border: 1px solid rgba(151,128,63,.24);
  border-radius: var(--r-md); padding: 14px 18px;
  font-size: .95rem; color: var(--ink-2);
}
.menu-note svg { width: 19px; height: 19px; color: var(--brass-dk); flex: none; margin-top: 2px; }

/* --- Page header (interior pages) ---------------------------------------- */
.page-head {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(30px, 5vw, 56px);
}
.page-head h1 { margin-bottom: .25em; }
.page-head p { color: var(--ink-2); max-width: 60ch; margin: 0; font-size: 1.1rem; }

.crumbs { font-size: .88rem; color: var(--ink-3); margin-bottom: .9rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--red); text-decoration: underline; }

/* --- Hours table ---------------------------------------------------------- */
.hours { width: 100%; border-collapse: collapse; font-size: 1rem; }
.hours th, .hours td { padding: 11px 4px; border-bottom: 1px solid var(--rule-soft); text-align: left; }
.hours th { font-weight: 600; color: var(--ink-2); }
.hours td { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--red); }
.hours tr.is-today th::after {
  content: "Today"; margin-left: .7em; font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--red); color: #fff; padding: .2em .5em; border-radius: 3px;
  vertical-align: middle;
}

/* --- Cards / panels ------------------------------------------------------- */
.panel {
  background: var(--card); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}
/* Flat 4px bar clipped by the radius, rather than a thick border that
   smears into the rounded corners. */
.panel--accent {
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: top left;
  padding-top: calc(clamp(22px, 3vw, 32px) + 4px);
}

.stack > * + * { margin-top: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(20px, 3vw, 34px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(18px, 2.5vw, 28px); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* --- Timeline (About) ----------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(180deg, var(--brass), var(--rule));
}
.timeline li { position: relative; padding: 0 0 30px 38px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--red);
}
.timeline__year {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--red); display: block; margin-bottom: 2px;
}
.timeline__body { color: var(--ink-2); }

/* Acrostic */
.acrostic { list-style: none; margin: 0; padding: 0; }
.acrostic li {
  display: flex; align-items: baseline; gap: .6em;
  padding: 5px 0; color: var(--ink-2); font-size: 1.02rem;
}
.acrostic b {
  font-family: var(--font-display); font-size: 1.28rem; color: var(--red);
  width: 1.1em; flex: none; text-align: center;
}

/* --- Forms ---------------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field > label,
.fieldset__legend {
  display: block; font-weight: 700; font-size: .95rem; color: var(--ink);
  margin-bottom: 6px;
}
.field .hint { font-size: .87rem; color: var(--ink-3); font-weight: 400; margin-top: 4px; }
.req { color: var(--red); }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  color: var(--ink); background: var(--card);
  padding: .7em .85em;
  border: 1.5px solid var(--rule); border-radius: var(--r-sm);
}
input:focus, select:focus, textarea:focus { border-color: var(--brass-dk); }
textarea { min-height: 150px; resize: vertical; }

fieldset { border: 0; margin: 0 0 26px; padding: 0; }
.fieldset__legend {
  font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--rule); width: 100%;
}

.choices { display: flex; gap: 10px; flex-wrap: wrap; }
.choice {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .55em .95em; border: 1.5px solid var(--rule); border-radius: 100px;
  background: var(--card); cursor: pointer; font-weight: 600; font-size: .95rem;
}
.choice:hover { border-color: rgba(32,28,24,.34); }
.choice input { accent-color: var(--red); margin: 0; }
.choice:has(input:checked) { border-color: var(--red); background: var(--red-tint); color: var(--red); }

.form-foot { border-top: 1px solid var(--rule); padding-top: 20px; margin-top: 6px; }

/* --- Map ------------------------------------------------------------------ */
.map-embed {
  border: 0; width: 100%; aspect-ratio: 16 / 10; min-height: 320px;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block;
  background: var(--paper-3);
}

.route { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.route li {
  counter-increment: step; position: relative;
  padding: 0 0 18px 44px; color: var(--ink-2);
}
.route li::before {
  content: counter(step); position: absolute; left: 0; top: -1px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: .86rem; font-weight: 800; font-family: var(--font-body);
}
.route strong { color: var(--ink); }

/* --- Footer --------------------------------------------------------------- */
.footer {
  background: #191512; color: rgba(255,255,255,.72);
  padding-block: clamp(40px, 5vw, 60px) 0;
  font-size: .96rem;
}
.footer h2 {
  font-family: var(--font-display); color: #fff; font-size: 1rem;
  letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px;
  font-weight: 700;
}
.footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { width: 150px; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 4px 0; }
.footer address { font-style: normal; line-height: 1.7; }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff;
}
.socials a:hover { background: var(--red); }
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  margin-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid rgba(255,255,255,.13);
  padding-block: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .87rem; color: rgba(255,255,255,.5);
}

/* --- Mobile sticky action bar -------------------------------------------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: rgba(25,21,18,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
}
.actionbar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 4px; border-radius: var(--r-sm);
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
}
.actionbar a:hover, .actionbar a:active { background: rgba(255,255,255,.1); color: #fff; }
.actionbar a.is-accent { color: #ffb3ac; }
.actionbar svg { width: 20px; height: 20px; }

@media (max-width: 760px) {
  .actionbar { display: flex; }
  body { padding-bottom: 68px; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .utility, .header, .actionbar, .menu-toolbar, .jumpbar, .footer, .hero__actions { display: none !important; }
  body { background: #fff; font-size: 11pt; padding: 0; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
  .dish { padding: 7px 0; break-inside: avoid; }
  .menu-section { break-inside: auto; margin-bottom: 18px; }
  .menu-section__head { break-after: avoid; }
  a { color: #000; text-decoration: none; }
}

/* ==========================================================================
   Printed-menu borrowings
   The July 2026 menu is checkerboard trim, double rules under block headings,
   a brush script for the asides, boxed house favourites and pen-and-ink food
   drawings. Same vocabulary, adapted to the screen.
   ========================================================================== */

/* --- Checkerboard trim ---------------------------------------------------- */
.checkers {
  height: 20px;                                  /* two rows of squares, as printed */
  background:
    repeating-conic-gradient(var(--red) 0% 25%, var(--paper) 0% 50%) 0 0 / 20px 20px;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
@media (max-width: 560px) { .checkers { height: 14px; background-size: 14px 14px; } }
.header .checkers { border-top: 0; }
.footer .checkers {                            /* flush to the top of the dark panel */
  border-bottom: 0;
  margin: clamp(-60px, -5vw, -40px) 0 clamp(30px, 4vw, 44px);
}

/* --- Brush script --------------------------------------------------------- */
.script {
  font-family: "Yellowtail", "Brush Script MT", cursive;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--red);
}
.script--tagline {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.1;
  margin: -.2em 0 .55em;
  color: var(--red);
}
.hero .script--tagline { color: #ffd9a8; text-shadow: 0 1px 10px rgba(0,0,0,.45); }

.footer__pleasure {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  text-align: center;
  color: var(--brass);
  margin: 6px 0 18px;
}

/* --- Pen-and-ink drawings ------------------------------------------------- */
.sketch { height: auto; max-width: 100%; }

.menu-section__head .sketch--section {
  width: auto;
  height: clamp(58px, 8vw, 80px);
  max-width: 34%;
  object-fit: contain;
  object-position: right center;
  flex: 0 0 auto;
  order: 3;
  align-self: center;        /* the head aligns on the baseline; the art opts out */
  margin: -18px 0 -2px;
}
.sketch--nudge { width: auto; height: clamp(52px, 9vw, 74px); flex: 0 0 auto; }

.sketch-figure .sketch {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 10px 12px;
}

/* --- Section heads: double rule, the way the menu sets its sections -------- */
.menu-section__head { gap: 12px; flex-wrap: nowrap; }
.menu-section__head h2 { flex: 0 0 auto; }
.menu-section__head::after {
  content: "";
  order: 2;
  flex: 1 1 auto;
  min-width: 24px;
  align-self: center;
  height: 7px;
  background:
    linear-gradient(var(--red), var(--red)) top    left / 100% 2px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom left / 100% 2px no-repeat;
  opacity: .8;
}
.menu-section__count { order: 4; margin-left: 0; align-self: center; }

.menu-section__note {
  margin: 10px 0 0;
  padding: 9px 14px;
  background: var(--brass-tint);
  border: 1px dashed rgba(174, 14, 0, .42);
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--ink-2);
}

/* --- House favourites, boxed like they are in print ----------------------- */
.dish--feature {
  background: var(--brass-tint);
  border: 2px dotted var(--red);
  border-bottom: 2px dotted var(--red);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin: 4px 0;
}
.dish--feature .dish__dots { opacity: .45; }

.dish__badge {                                 /* the printed menu's script "New" */
  font-size: 1.3rem;
  line-height: 1;
  flex: 0 0 auto;
  margin-right: -2px;
}

/* --- Bakery nudge, straight off the back page ----------------------------- */
.bakery-nudge,
.bakery-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  margin: clamp(30px, 5vw, 46px) 0 0;
  padding: 18px 20px;
  border-top: 2px dotted rgba(174, 14, 0, .5);
  border-bottom: 2px dotted rgba(174, 14, 0, .5);
  text-align: center;
  text-decoration: none;
}
.bakery-nudge .script,
.bakery-line .script {
  font-size: clamp(1.25rem, 3.4vw, 1.95rem);
  line-height: 1.25;
}
.bakery-nudge:hover .script { color: var(--red-dark); }

/* --- The small print that runs along the foot of every printed page -------- */
.menu-legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: var(--ink-3);
  font-size: .86rem;
  font-style: italic;
}
.menu-legal p { margin: 0 0 .35em; }

@media (max-width: 560px) {
  /* No room for the ornament: keep the heading and the count, drop the rest. */
  .menu-section__head .sketch--section { display: none; }
  .menu-section__head::after { display: none; }
  .menu-section__head h2 { flex: 1 1 auto; min-width: 0; }
  .menu-section__count { margin-left: auto; }
  .bakery-nudge, .bakery-line { flex-wrap: wrap; }
  .bakery-nudge .sketch--nudge, .bakery-line .sketch--nudge { height: 46px; }
}

@media print {
  .checkers, .sketch, .bakery-nudge, .bakery-line { display: none !important; }
  .dish--feature { background: none; border: 1px solid #999; }
  .menu-section__head::after { display: none; }
}
