@charset "utf-8";
/* =============================================================================
   Southern Charm Espresso & Catering — style.css
   -----------------------------------------------------------------------------
   VISUAL IDENTITY
   The stand itself is the brand: a barn-red drive-thru with a hand-lettered
   marquee reader board on whiskey barrels, a neon OPEN sign, stars on the
   shutters and a horseshoe on the logo. This stylesheet borrows all of it —
   roadside Americana done with craft, not costume.

   PALETTE (6 named values)
     Barn Red        #9E2420   the stand's paint — primary action
     Marquee Cream   #F6EEDB   the reader board — page ground in light mode
     Cedar           #7A4A21   fence boards, barrel staves — rules and labels
     Night Navy      #10162A   the lot after close — page ground in dark mode
     Neon Glow       #57E0A5   the OPEN sign — dark-mode accent, tuned to
                               clear 4.5:1 on navy (light mode uses a deep
                               teal #0E7D55 where the same voice is needed)
     Letter Ink      #26190E   the black letter tiles — body text

   TYPE
     Display  Rockwell / 'Rockwell Nova' / 'Roboto Slab' — slab serif, web-safe
     Marquee  Haettenschweiler / Impact / 'Arial Narrow' — condensed poster
              caps for the reader board, buttons and small labels
     Text     system-ui stack — fast, native, no external font request
     Meta     ui-monospace stack — prices, hours, tabular figures

   No webfont is linked. No external asset of any kind is requested.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* Brand constants — identical in both themes */
  --brand-red:    #9E2420;
  --brand-cream:  #F6EEDB;
  --brand-cedar:  #7A4A21;
  --brand-navy:   #10162A;
  --brand-ink:    #26190E;

  /* Themed surface + text tokens (LIGHT — "the stand by day") */
  --bg:            #F6EEDB;
  --bg-deep:       #EFE3C8;
  --surface:       #FFFCF2;
  --surface-2:     #F1E7CE;
  --surface-sunk:  #EFE3C8;
  --text:          #26190E;
  --text-soft:     #5C4632;
  --text-faint:    #63492F;
  --border:        #DECFAD;
  --border-strong: #A08350;

  --accent:        #9E2420;   /* barn red — primary action */
  --accent-hover:  #7C1B18;
  --accent-ink:    #FFF6E7;   /* text on barn red */
  --accent-wash:   #F4DECE;
  --link:          #9C2418;

  --brand:         #22304F;   /* denim / night navy — secondary */
  --brand-on:      #F2EDDF;   /* text on navy */
  --brand-wash:    #E2E5EC;

  --cedar:         #7A4A21;   /* wood-brown labels, holds 4.5:1 on cream */
  --cedar-bright:  #D9A05B;   /* cedar for use on navy + red grounds */
  --neon:          #0E7D55;   /* daytime stand-in for the neon voice */
  --focus:         #22304F;

  --header-bg:     #9E2420;   /* the stand's siding */
  --header-ink:    #FFF6E7;
  --header-soft:   #F3CDB6;   /* quieter text on the red siding */
  --header-line:   #6E1714;

  --catering-bg:   #22304F;   /* denim panel behind the booking form */
  --catering-ink:  #F2EDDF;

  /* The reader board is a lit physical sign: same cream in both themes */
  --board-bg:      #F7F0DC;
  --board-ridge:   #E4D7B4;
  --board-ink:     #26190E;
  --board-soft:    #5C4632;
  --board-red:     #9E2420;
  --board-frame:   #6B4423;

  --phone-ink:     var(--header-ink);      /* call chip text */
  --phone-edge:    #C96A55;                /* call chip border on red */
  --phone-glow:    none;                   /* neon halo — dark mode only */
  --flicker:       none;                   /* neon flicker — dark mode only */

  --ok:            #1F5B3F;
  --ok-wash:       #E0EDE2;
  --warn:          #8A4A06;
  --warn-wash:     #F8E8CE;
  --danger:        #A3271C;
  --danger-wash:   #F8E0D8;

  --shadow-sm: 0 1px 2px rgba(58, 32, 16, .08), 0 2px 6px rgba(58, 32, 16, .06);
  --shadow-md: 0 2px 4px rgba(58, 32, 16, .08), 0 10px 26px rgba(58, 32, 16, .10);
  --shadow-lg: 0 4px 8px rgba(58, 32, 16, .09), 0 22px 50px rgba(58, 32, 16, .14);
  --shadow-flat: 3px 3px 0 rgba(38, 25, 14, .22);   /* hand-cut sign shadow */

  /* Type */
  --font-display: Rockwell, 'Rockwell Nova', 'Roboto Slab', 'Bookman Old Style',
                  'Clarendon', 'Courier Bold', serif;
  --font-marquee: Haettenschweiler, Impact, 'Franklin Gothic Medium',
                  'Arial Narrow', 'Helvetica Neue Condensed', sans-serif;
  --font-text: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue',
               Arial, 'Noto Sans', sans-serif;
  --font-meta: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas,
               'Liberation Mono', monospace;

  --t-xs:   0.766rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-md:   clamp(1.06rem, 1.01rem + 0.22vw, 1.2rem);
  --t-lg:   clamp(1.27rem, 1.16rem + 0.48vw, 1.6rem);
  --t-xl:   clamp(1.52rem, 1.31rem + 0.9vw, 2.13rem);
  --t-2xl:  clamp(1.82rem, 1.43rem + 1.7vw, 2.84rem);
  --t-3xl:  clamp(2.19rem, 1.5rem + 2.9vw, 3.78rem);

  /* Space + shape — signage is square-cornered, so radii stay small */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4.5rem;
  --r-sm: 4px; --r-md: 8px; --r-lg: 10px; --r-pill: 6px;
  --wrap: 68rem;
  --wrap-narrow: 44rem;
}

/* DARK — "the stand at night": navy lot, lit reader board, neon OPEN glow */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:            #10162A;
    --bg-deep:       #0B101F;
    --surface:       #182036;
    --surface-2:     #1E2840;
    --surface-sunk:  #131A2C;
    --text:          #EFE7D3;
    --text-soft:     #C2B79D;
    --text-faint:    #A2977E;
    --border:        #2C3752;
    --border-strong: #5E6C90;

    --accent:        #C93A2C;
    --accent-hover:  #E0533F;
    --accent-ink:    #FFF3E4;
    --accent-wash:   #37201F;
    --link:          #F4A38B;

    --brand:         #2A3A63;
    --brand-on:      #EFE7D3;
    --brand-wash:    #1B2440;

    --cedar:         #D9A05B;
    --cedar-bright:  #D9A05B;
    --neon:          #57E0A5;
    --focus:         #57E0A5;

    --header-bg:     #0C1122;
    --header-ink:    #EFE7D3;
    --header-soft:   #B7AB8F;
    --header-line:   #C93A2C;

    --catering-bg:   #1E2840;
    --catering-ink:  #EFE7D3;

    --board-bg:      #F3EAD2;
    --board-ridge:   #E0D2AC;
    --board-ink:     #26190E;
    --board-soft:    #5C4632;
    --board-red:     #9E2420;
    --board-frame:   #513418;

    --phone-ink:     #57E0A5;
    --phone-edge:    #2E7A5C;
    --phone-glow:    0 0 10px rgba(87, 224, 165, .40),
                     0 0 22px rgba(87, 224, 165, .18);
    --flicker:       neon-flicker 9s linear infinite;

    --ok:            #7FC894;
    --ok-wash:       #1A2E22;
    --warn:          #E9B168;
    --warn-wash:     #33261A;
    --danger:        #F0857A;
    --danger-wash:   #35201E;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, .45), 0 10px 26px rgba(0, 0, 0, .45);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, .45), 0 22px 50px rgba(0, 0, 0, .55);
    --shadow-flat: 3px 3px 0 rgba(0, 0, 0, .5);
  }
}

/* ------------------------------------------------------------------ base -- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor targets land below the sticky header, not underneath it. */
  scroll-padding-top: 5.25rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: var(--t-base);
  line-height: 1.6;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .005em;
  margin: 0 0 var(--sp-3);
  text-wrap: balance;
}
h1 { font-size: var(--t-3xl); }
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-lg); }
h4 { font-size: var(--t-md); }
p  { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--link); text-underline-offset: 3px; text-decoration-thickness: 1px;
  transition: color .15s ease, text-decoration-thickness .15s ease;
}
a:hover { color: var(--accent-hover); text-decoration-thickness: 2px; }

img, svg { max-width: 100%; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--sp-6) 0; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
:where(.btn, .chip, .tab, .call-chip):focus-visible { border-radius: var(--r-pill); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-4); }
@media (min-width: 40em) { .wrap { padding-inline: var(--sp-5); } }
.wrap--narrow { max-width: var(--wrap-narrow); }

/* Fixed, not absolute: a keyboard user who focuses this after scrolling still
   sees it, instead of it sitting off-screen at the top of the document. */
.skip {
  position: fixed; left: var(--sp-3); top: -4rem; z-index: 100;
  background: var(--brand); color: var(--brand-on);
  padding: var(--sp-3) var(--sp-4); border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700; text-decoration: none; transition: top .15s ease;
}
.skip:focus { top: 0; color: var(--brand-on); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* Hand-set label: condensed caps, wide tracking, cedar-branded */
.eyebrow {
  font-family: var(--font-marquee);
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cedar);
  margin: 0 0 var(--sp-2);
  display: flex; align-items: center; gap: var(--sp-3);
}
.eyebrow::after {
  content: ''; flex: 1 1 auto; height: 2px;
  background: linear-gradient(to right, var(--border-strong), transparent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after, .eyebrow--center::before {
  content: ''; flex: 0 1 3rem; height: 2px; background: var(--border-strong);
}

.lede { font-size: var(--t-md); color: var(--text-soft); max-width: 56ch; }

/* Star-and-horseshoe ornament between big moments */
.divider {
  display: flex; justify-content: center; align-items: center;
  color: var(--cedar); padding-block: var(--sp-2);
}
.divider svg { width: min(190px, 60vw); height: auto; display: block; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-marquee); font-size: var(--t-md); font-weight: 400;
  letter-spacing: .09em; text-transform: uppercase;
  line-height: 1.15; padding: .7rem 1.3rem .78rem; min-height: 46px;
  border-radius: var(--r-pill); border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease,
              transform .16s ease, box-shadow .16s ease;
}
.btn:active { transform: translate(1px, 1px); box-shadow: none; }
.btn--primary {
  background: var(--accent); color: var(--accent-ink);
  border-color: var(--accent); box-shadow: var(--shadow-flat);
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--accent-ink); }
.btn--brand {
  background: var(--brand); color: var(--brand-on);
  border-color: var(--brand); box-shadow: var(--shadow-flat);
}
.btn--brand:hover { background: var(--brand); color: var(--brand-on); filter: brightness(1.15); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface-2); color: var(--text); border-color: var(--cedar); }
.btn--ghost:active { background: var(--surface-sunk); }
.btn--sm { font-size: var(--t-base); padding: .45rem .85rem .5rem; min-height: 38px; letter-spacing: .07em; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

/* ---------------------------------------------------------------- banner -- */
.banner {
  background: var(--brand); color: var(--brand-on);
  font-size: var(--t-sm); text-align: center;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 3px solid var(--cedar-bright);
}
.banner[hidden] { display: none; }
.banner--alert { background: var(--danger); color: #FFF6E7; border-bottom-color: #FFF6E7; }
@media (prefers-color-scheme: dark) {
  .banner--alert { color: #1C0E0C; border-bottom-color: #1C0E0C; }
}
.banner p { margin: 0; }
.banner b { font-family: var(--font-marquee); font-weight: 400; font-size: var(--t-sm);
  letter-spacing: .16em; text-transform: uppercase; margin-right: var(--sp-2); }

/* ---------------------------------------------------------------- header -- */
/* Painted like the stand itself: barn-red siding by day, night-navy after
   close, with the logo badge hanging off the bar. */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  color: var(--header-ink);
  border-bottom: 3px solid var(--header-line);
}
.header-bar {
  display: flex; align-items: center; gap: var(--sp-4);
  min-height: 64px; padding-block: var(--sp-2);
}
.brand { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; color: var(--header-ink); margin-right: auto; }
.brand:hover { color: var(--header-ink); }
.brand:focus-visible { outline-color: var(--header-ink); }
.brand__mark {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: #FFFDF6;               /* the logo's own white disc */
  box-shadow: 0 0 0 2px var(--cedar-bright), var(--shadow-sm);
}
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  line-height: 1.05; letter-spacing: .01em;
}
.brand__tag {
  display: block; font-family: var(--font-marquee); font-weight: 400;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--header-soft); margin-top: 2px;
}

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
.nav a {
  color: var(--header-ink); text-decoration: none; font-size: var(--t-base);
  font-family: var(--font-marquee); letter-spacing: .12em; text-transform: uppercase;
  padding: var(--sp-2) 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--header-ink); border-bottom-color: var(--cedar-bright); }
.nav a:focus-visible { outline-color: var(--header-ink); }
.header-cta { display: none; }
.header-cta.btn--primary {
  background: var(--header-ink); color: var(--header-bg);
  border-color: var(--header-ink); box-shadow: none;
}
.header-cta.btn--primary:hover { background: #fff; border-color: #fff; color: var(--header-bg); }
.header-cta:focus-visible, .site-header .btn:focus-visible { outline-color: var(--header-ink); }
.site-header .btn--ghost { color: var(--header-ink); border-color: var(--phone-edge); }
.site-header .btn--ghost:hover {
  background: rgba(255, 246, 231, .12);
  color: var(--header-ink); border-color: var(--header-ink);
}
@media (min-width: 56em) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
}

/* Phone chip: a little neon sign. Steady by day, glowing after dark. */
.call-chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-meta); font-size: var(--t-sm); font-weight: 600;
  color: var(--phone-ink); text-decoration: none;
  border: 1px solid var(--phone-edge); border-radius: var(--r-pill);
  padding: .4rem .8rem; white-space: nowrap;
  box-shadow: var(--phone-glow);
  animation: var(--flicker);
}
.call-chip:hover { color: var(--phone-ink); border-color: var(--phone-ink); }
.call-chip:focus-visible { outline-color: var(--header-ink); }
@media (min-width: 56em) { .call-chip { display: none; } }
/* Narrowest phones: tighten the header so brand + phone chip share the bar */
@media (max-width: 22.49em) {
  .header-bar { gap: var(--sp-2); }
  .brand { gap: var(--sp-2); }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: .92rem; }
  .brand__tag { font-size: .62rem; letter-spacing: .18em; }
  .call-chip { font-size: var(--t-xs); padding: .3rem .45rem; gap: var(--sp-1); }
}

@keyframes neon-flicker {
  0%, 41%, 44.5%, 46%, 100% { opacity: 1; }
  42%, 45% { opacity: .55; }
  43% { opacity: .8; }
}

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--surface-2) 0%, transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding-top: 18px;
}
/* Scalloped awning edge under the header — the window canopy on the stand */
.hero::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 18px;
  background:
    radial-gradient(circle at 50% 0, var(--accent) 0 13px, transparent 14px)
    top center / 28px 18px repeat-x;
}

/* The sign out front: logo big and first, like pulling into the lot */
.hero__sign {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: var(--sp-6);
}
.hero__logo {
  width: min(240px, 58vw); height: auto; aspect-ratio: 1;
  border-radius: 50%;
  background: #FFFDF6;
  border: 4px solid var(--cedar-bright);
  box-shadow: 0 0 0 3px var(--accent), var(--shadow-lg);
}
.hero__sign .eyebrow { margin-top: var(--sp-4); }
@media (min-width: 40em) { .hero__sign .eyebrow { white-space: nowrap; } }

/* The denim-dusk band: the stand's photo runs full-bleed under a navy
   wash — no frame, no caption block, just a tiny corner credit. Phones:
   the pitch leads on the denim ground and the photo is an edge-to-edge
   band at the foot, blended in. From 54em up the photo fills the whole
   band; the wash is near-solid over the copy and opens right onto the
   stand and its reader board. */
.hero__band {
  position: relative;
  margin-top: var(--sp-6);
  background: linear-gradient(165deg, var(--brand) 0%, var(--brand-navy) 100%);
  color: var(--brand-on);
  overflow: hidden;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: var(--sp-6);
  padding-block: var(--sp-6) var(--sp-6);
}
.hero .hero__band h1 { color: var(--brand-on); }
.hero .hero__band h1 em { color: var(--cedar-bright); }
.hero__band .lede { color: var(--brand-on); }
.hero__band .btn--ghost {
  color: var(--brand-on);
  border-color: color-mix(in srgb, var(--brand-on) 55%, transparent);
}
.hero__band .btn--ghost:hover {
  background: color-mix(in srgb, var(--brand-on) 14%, transparent);
  color: var(--brand-on);
  border-color: var(--brand-on);
}
.hero__band .hero__facts,
.hero__band .hero__facts a { color: var(--cedar-bright); }
.hero__band .hero__facts { border-top-color: color-mix(in srgb, var(--brand-on) 30%, transparent); }

.hero__media {
  position: relative;
  height: clamp(14rem, 72vw, 24rem);
  overflow: hidden;
}
.hero__media.is-missing { display: none; }
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* keep the marquee sign and the window in the crop */
  object-position: 50% 38%;
}
/* the dusk wash over the photo — blends up into the copy above it
   (no seam), pools at the foot for the credit */
.hero__media::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom,
      var(--brand),
      color-mix(in srgb, var(--brand) 55%, transparent) 18%,
      transparent 46%),
    linear-gradient(to top,
      color-mix(in srgb, var(--brand-navy) 88%, transparent),
      transparent 34%),
    color-mix(in srgb, var(--brand-navy) 26%, transparent);
}
/* tiny credit in the corner — never a caption block */
.hero__credit {
  position: absolute; z-index: 2;
  right: var(--sp-5); bottom: var(--sp-2);
  margin: 0;
  max-width: 30ch;
  text-align: right;
  font-size: var(--t-sm);
  font-style: italic;
  color: var(--brand-on);
  text-shadow: 0 1px 3px rgba(6, 9, 20, .9);
}
@media (min-width: 54em) {
  .hero__inner {
    align-items: center; align-content: center;
    min-height: min(62vh, 30rem);
    padding-block: var(--sp-7) var(--sp-8);
  }
  .hero__copy { max-width: 36rem; }
  .hero__media { position: absolute; inset: 0; height: auto; }
  .hero__media img { object-position: 70% 38%; }
  /* near-solid over the copy, opening right onto the stand, gathering
     again at the far edge, the top and the foot — no empty corners */
  .hero__media::after {
    background:
      linear-gradient(97deg,
        color-mix(in srgb, var(--brand-navy) 96%, transparent) 0%,
        color-mix(in srgb, var(--brand) 93%, transparent) 46%,
        color-mix(in srgb, var(--brand) 58%, transparent) 66%,
        color-mix(in srgb, var(--brand) 24%, transparent) 86%,
        color-mix(in srgb, var(--brand-navy) 48%, transparent) 100%),
      linear-gradient(to top,
        color-mix(in srgb, var(--brand-navy) 80%, transparent),
        transparent 26%),
      linear-gradient(to bottom,
        color-mix(in srgb, var(--brand) 55%, transparent),
        transparent 20%);
  }
  .hero__credit { right: var(--sp-6); bottom: var(--sp-3); }
}
.hero h1 { margin-bottom: var(--sp-4); }
.hero h1 em {
  font-style: normal; display: block; color: var(--accent);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5);
}
.hero__actions .btn { flex: 1 1 15rem; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5);
  margin-top: var(--sp-5); padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  font-family: var(--font-marquee); font-size: var(--t-sm);
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint);
}
.hero__facts a { color: inherit; }

/* ------------------------------------------------------- photo framework -- */
/* Every photo slot keeps its box whether or not the file exists yet. The
   frame is a cedar-fenced board with a star watermark while it waits. */
.shot { margin: 0; }
.frame {
  position: relative; display: block; width: 100%;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--r-md);
  border: 3px solid var(--board-frame);
  background:
    repeating-linear-gradient(90deg,
      transparent 0 26px,
      color-mix(in srgb, var(--cedar) 14%, transparent) 26px 28px),
    linear-gradient(150deg, var(--surface-2), var(--surface-sunk));
  box-shadow: var(--shadow-flat);
}
.frame::before {
  content: ''; position: absolute; inset: 10px; z-index: 0;
  border: 1px dashed var(--border-strong); border-radius: 2px;
}
.frame::after {
  content: var(--ph-label, "");
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: var(--sp-5);
  font-family: var(--font-marquee); font-size: var(--t-sm);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cedar);
}
.frame img {
  display: block; position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.frame.is-missing img { opacity: 0; pointer-events: none; }
.frame--hero { aspect-ratio: 5 / 4; }
.frame--wide { aspect-ratio: 16 / 10; }
.shot figcaption {
  margin-top: var(--sp-3); font-size: var(--t-sm); color: var(--text-faint);
  font-style: italic;
}

/* --------------------------------------------------------------- section -- */
.section { padding-block: var(--sp-7); }
@media (min-width: 54em) { .section { padding-block: var(--sp-8); } }
.section--sunk { background: var(--surface-sunk); border-block: 1px solid var(--border); }
.section__head { max-width: 60ch; margin-bottom: var(--sp-6); }
.section__head--center { margin-inline: auto; text-align: center; }

/* ------------------------------------------------------------- two lanes -- */
.lanes { display: grid; gap: var(--sp-5); }
@media (min-width: 48em) { .lanes { grid-template-columns: 1fr 1fr; } }
.lane {
  background: var(--surface); border: 2px solid var(--border-strong);
  border-radius: var(--r-md); padding: var(--sp-5);
  box-shadow: var(--shadow-flat);
  display: flex; flex-direction: column; gap: var(--sp-3);
  border-top: 6px solid var(--brand);
  transition: transform .18s ease;
}
@media (hover: hover) {
  .lane:hover { transform: translateY(-2px); }
}
.lane--catering { border-top-color: var(--accent); }
.lane h3 { margin-bottom: 0; }
.lane ul { margin: 0; padding-left: 1.1rem; color: var(--text-soft); font-size: var(--t-sm); }
.lane ul li { margin-bottom: var(--sp-2); }
.lane .btn { margin-top: auto; align-self: flex-start; }

/* ------------------------------------------------------------------ menu -- */
/* THE READER BOARD. The menu section is styled after the stand's own
   hand-lettered marquee: cream ridged board in a cedar frame, black letter
   tiles, red rule lines. It stays lit (cream) in dark mode, like the real
   sign at night. */
.section--board {
  background:
    repeating-linear-gradient(180deg,
      transparent 0 15px, color-mix(in srgb, var(--board-ridge) 85%, transparent) 15px 17px),
    var(--board-bg);
  border-block: 12px solid var(--board-frame);
  box-shadow: inset 0 2px 14px rgba(38, 25, 14, .14);
  color: var(--board-ink);
}
.section--board .section__head { max-width: none; text-align: center; }
.section--board .eyebrow { color: var(--board-red); justify-content: center; }
.section--board .eyebrow::after,
.section--board .eyebrow::before {
  content: ''; flex: 0 1 3rem; height: 2px; background: var(--board-red); opacity: .55;
}
.section--board h2 {
  font-family: var(--font-marquee); font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--board-ink);
  border-block: 3px double var(--board-red);
  display: inline-block; padding: .2em .6em .25em; margin-inline: auto;
}
.section--board .lede { color: var(--board-soft); margin-inline: auto; }

.menu-filter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-2); margin-bottom: var(--sp-5);
}
.chip {
  font-family: var(--font-marquee); font-size: var(--t-base); font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .45rem .9rem .5rem; min-height: 38px;
  display: inline-flex; align-items: center;
  border-radius: var(--r-pill); border: 2px solid var(--board-ink);
  background: transparent; color: var(--board-ink); cursor: pointer;
}
.chip:hover { background: color-mix(in srgb, var(--board-ink) 10%, transparent); color: var(--board-ink); }
.chip[aria-pressed="true"] { background: var(--board-ink); border-color: var(--board-ink); color: var(--board-bg); }
.section--board .chip:focus-visible { outline-color: var(--board-red); }

.menu-grid {
  display: grid; gap: 0 var(--sp-6); list-style: none; margin: 0 auto; padding: 0;
  max-width: 60rem;
}
@media (min-width: 40em) { .menu-grid { grid-template-columns: 1fr 1fr; } }

/* Letter-tile rows, straight off the board */
.menu-item {
  background: transparent; border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--board-ink) 22%, transparent);
  border-radius: 0; padding: var(--sp-3) var(--sp-1);
  display: grid; grid-template-columns: 1fr auto; gap: var(--sp-1) var(--sp-4);
  align-items: baseline;
}
.menu-item__name {
  font-family: var(--font-marquee); font-weight: 400;
  font-size: var(--t-lg); letter-spacing: .06em; text-transform: uppercase;
  color: var(--board-ink);
}
.menu-item__price {
  font-family: var(--font-meta); font-weight: 700; color: var(--board-red);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.menu-item__desc { grid-column: 1 / -1; margin: 0; font-size: var(--t-sm); color: var(--board-soft); }
.menu-item__flag {
  grid-column: 1 / -1; justify-self: start;
  font-family: var(--font-marquee); font-weight: 400; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--board-red); background: transparent;
  border: 1px solid var(--board-red); border-radius: 2px;
  padding: 1px 7px 2px; margin-top: var(--sp-1);
}
.menu-item__thumb { grid-column: 1 / -1; border-radius: var(--r-sm); margin-top: var(--sp-2); }
.menu-note {
  margin-top: var(--sp-5); font-size: var(--t-sm); color: var(--board-soft);
  border-left: 3px solid var(--board-red); padding-left: var(--sp-4);
  max-width: 60rem; margin-inline: auto;
}
.section--board .empty {
  color: var(--board-soft);
  border-color: color-mix(in srgb, var(--board-ink) 35%, transparent);
}

/* -------------------------------------------------------------- catering -- */
.catering { background: var(--catering-bg); color: var(--catering-ink); }
.catering .eyebrow { color: var(--cedar-bright); }
.catering .eyebrow::after { background: linear-gradient(to right, var(--cedar-bright), transparent); opacity: .6; }
/* Focusables on the denim panel ring in cream — navy-on-navy would vanish. */
.catering__pitch a:focus-visible { outline-color: var(--catering-ink); }
.catering h2 { color: inherit; }
.catering__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 56em) { .catering__grid { grid-template-columns: 1fr 1.25fr; gap: var(--sp-7); align-items: start; } }
.catering__pitch p { color: inherit; opacity: .93; }
.catering__steps { list-style: none; margin: var(--sp-5) 0 0; padding: 0; counter-reset: step; }
.catering__steps li {
  counter-increment: step; position: relative;
  padding-left: 2.6rem; margin-bottom: var(--sp-4); font-size: var(--t-sm); opacity: .93;
}
.catering__steps li::before {
  content: counter(step); position: absolute; left: 0; top: -1px;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cedar-bright); color: #241505;
  font-family: var(--font-marquee); font-size: var(--t-base); font-weight: 400;
}

/* ------------------------------------------------------------------ form -- */
.card-form {
  background: var(--surface); color: var(--text);
  border: 2px solid var(--board-frame); border-radius: var(--r-md);
  padding: var(--sp-5); box-shadow: var(--shadow-lg);
}
@media (min-width: 40em) { .card-form { padding: var(--sp-6); } }

.field { margin-bottom: var(--sp-4); }
.field > label, .fieldset > legend {
  display: block; font-size: var(--t-sm); font-weight: 650;
  margin-bottom: var(--sp-2); color: var(--text);
}
.req { color: var(--accent); font-weight: 700; }
.hint { display: block; font-size: var(--t-xs); color: var(--text-faint); margin-top: var(--sp-1); }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="number"], input[type="url"], select, textarea {
  width: 100%; font: inherit; font-size: max(16px, var(--t-base));
  color: var(--text); background: var(--surface-2);
  border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  padding: .7rem .8rem; min-height: 46px;
  transition: border-color .15s ease, background-color .15s ease;
}
textarea { min-height: 7.5rem; resize: vertical; line-height: 1.55; }
select { appearance: none; padding-right: 2.2rem;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 1.05rem center, right .75rem center;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
input:hover, select:hover, textarea:hover { border-color: var(--cedar); }
input:focus, select:focus, textarea:focus { background: var(--surface); border-color: var(--focus); }
::placeholder { color: var(--text-faint); opacity: 1; }

.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  border-color: var(--danger); background: var(--danger-wash);
}
.err {
  display: none; font-size: var(--t-xs); font-weight: 650;
  color: var(--danger); margin-top: var(--sp-1);
}
.field.is-invalid .err { display: block; }

.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 34em) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-status { margin-top: var(--sp-4); }
.notice {
  border-radius: var(--r-md); padding: var(--sp-4);
  font-size: var(--t-sm); border: 1px solid transparent;
}
.notice h3 { font-size: var(--t-md); margin-bottom: var(--sp-2); }
.notice p:last-child { margin-bottom: 0; }
.notice--ok     { background: var(--ok-wash);     border-color: var(--ok);     color: var(--text); }
.notice--warn   { background: var(--warn-wash);   border-color: var(--warn);   color: var(--text); }
.notice--danger { background: var(--danger-wash); border-color: var(--danger); color: var(--text); }
.notice--quiet  { background: var(--surface-2);   border-color: var(--border); color: var(--text-soft); }

/* ----------------------------------------------------------------- visit -- */
.visit-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 54em) { .visit-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-7); } }

.deflist { margin: 0; }
.deflist dt {
  font-family: var(--font-marquee); font-size: var(--t-sm); letter-spacing: .2em;
  text-transform: uppercase; color: var(--cedar);
  margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--border);
}
.deflist dt:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.deflist dd { margin: var(--sp-2) 0 0; }

.unconfirmed {
  display: inline-block; font-family: var(--font-marquee); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--warn); background: var(--warn-wash);
  border: 1px solid var(--warn); border-radius: 2px;
  padding: 1px 6px; margin-left: var(--sp-2); vertical-align: 2px;
}

.hours-table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.hours-table th, .hours-table td { text-align: left; padding: .45rem 0; border-bottom: 1px solid var(--border); }
.hours-table th { font-weight: 600; color: var(--text-soft); }
.hours-table td { font-family: var(--font-meta); text-align: right; font-variant-numeric: tabular-nums; }

.link-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }

/* --------------------------------------------------------------- gallery -- */
.gallery { display: grid; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
@media (min-width: 40em) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64em) { .gallery { grid-template-columns: repeat(3, 1fr); } }
/* Snapshots pinned a hair off-square, like photos on the stand's corkboard.
   Static transforms — nothing moves, reduced-motion unaffected. */
@media (min-width: 40em) {
  .gallery li:nth-child(odd) .shot { transform: rotate(-.6deg); }
  .gallery li:nth-child(even) .shot { transform: rotate(.5deg); }
}

/* ---------------------------------------------------------------- footer -- */
/* The lot at night: navy ground, cedar rail, the logo hung like the sign. */
.site-footer {
  background: var(--brand-navy); color: #DED4BC;
  padding-block: var(--sp-7) var(--sp-6); margin-top: var(--sp-7);
  border-top: 6px solid var(--board-frame);
}
.site-footer a { color: #F4B9A4; }
.site-footer a:hover { color: #fff; }
.site-footer :focus-visible, .admin-header :focus-visible { outline-color: #F1D6A0; }
.footer-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 48em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-6); } }
.footer-mark {
  width: 84px; height: 84px; border-radius: 50%;
  background: #FFFDF6;
  border: 3px solid var(--cedar-bright);
  display: block; margin-bottom: var(--sp-3);
}
.site-footer h3 {
  font-family: var(--font-marquee); font-weight: 400; font-size: var(--t-sm);
  letter-spacing: .22em; text-transform: uppercase; color: #D9A05B;
  margin-bottom: var(--sp-3);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; font-size: var(--t-sm); }
.site-footer li { margin-bottom: var(--sp-2); }
.footer-note {
  margin-top: var(--sp-6); padding-top: var(--sp-4);
  border-top: 1px solid rgba(222, 212, 188, .22);
  font-size: var(--t-xs); color: #B6AC94; line-height: 1.65;
  max-width: 72ch;
}

/* Honeypot: parked off-canvas, out of the tab order and the accessibility
   tree. A human never sees or reaches it; a form-filling bot will. */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* ----------------------------------------------------------- doc / legal -- */
.doc { padding-block: var(--sp-7); }
.doc h2 { font-size: var(--t-xl); margin-top: var(--sp-6); }
.doc h2:first-of-type { margin-top: var(--sp-5); }
.doc ul { padding-left: 1.2rem; color: var(--text-soft); }
.doc li { margin-bottom: var(--sp-2); }
.doc__meta { font-family: var(--font-meta); font-size: var(--t-xs); color: var(--text-faint); }

/* =========================================================== admin only == */
.admin-body { background: var(--surface-sunk); }
.admin-header {
  background: var(--header-bg); color: var(--header-ink);
  padding-block: var(--sp-4); border-bottom: 4px solid var(--header-line);
  position: sticky; top: 0; z-index: 40;
}
.admin-header a { color: var(--header-ink); }
.admin-header__bar { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.admin-header__title {
  font-family: var(--font-display); font-size: var(--t-md); font-weight: 700;
  margin: 0 auto 0 0; letter-spacing: .01em;
}
.admin-who { font-family: var(--font-meta); font-size: var(--t-xs); color: var(--header-soft); }
.admin-header .btn--ghost {
  color: var(--header-ink); border-color: var(--phone-edge); background: transparent;
}
.admin-header .btn--ghost:hover { background: rgba(255, 246, 231, .12); color: var(--header-ink); border-color: var(--header-ink); }

.tabs {
  display: flex; gap: var(--sp-2); overflow-x: auto; padding: var(--sp-3) 0;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.tab {
  flex: none; font-family: var(--font-marquee); font-size: var(--t-base); font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1rem .55rem; min-height: 42px; display: inline-flex; align-items: center;
  border-radius: var(--r-pill); border: 2px solid var(--border-strong);
  background: var(--surface); color: var(--text-soft); cursor: pointer; white-space: nowrap;
}
.tab[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.panel { padding-block: var(--sp-5) var(--sp-8); }
.panel[hidden] { display: none; }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-4); margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-sm);
}
.card__head { display: flex; align-items: baseline; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-3); }
.card__head h3 { margin: 0; margin-right: auto; }

.tag {
  font-family: var(--font-marquee); font-weight: 400; font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase; padding: 2px 7px 3px; border-radius: 2px;
  background: var(--surface-2); color: var(--text-soft); border: 1px solid var(--border);
}
.tag--new  { background: var(--accent-wash); color: var(--accent); border-color: var(--accent); }
.tag--done { background: var(--ok-wash); color: var(--ok); border-color: var(--ok); }
@media (prefers-color-scheme: dark) {
  .tag--new { color: var(--link); }
}

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.kv { font-size: var(--t-sm); margin: 0; }
.kv div { display: flex; gap: var(--sp-3); padding: .3rem 0; border-bottom: 1px solid var(--border); }
.kv div:last-child { border-bottom: 0; }
.kv dt { flex: 0 0 8rem; color: var(--text-faint); font-family: var(--font-meta); font-size: var(--t-xs);
  text-transform: uppercase; letter-spacing: .08em; padding-top: 2px; }
.kv dd { margin: 0; flex: 1; }

.empty {
  text-align: center; padding: var(--sp-7) var(--sp-4);
  color: var(--text-faint); font-size: var(--t-sm);
  border: 1px dashed var(--border-strong); border-radius: var(--r-md);
}

.toast {
  position: fixed; left: 50%; bottom: var(--sp-5); transform: translateX(-50%);
  background: var(--brand-navy); color: #F1E8D4;
  border: 1px solid var(--cedar-bright);
  padding: var(--sp-3) var(--sp-5); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); font-size: var(--t-sm); font-weight: 600;
  z-index: 90; max-width: calc(100vw - 2rem);
}
.toast[hidden] { display: none; }

@media print {
  .site-header, .banner, .hero__actions, .site-footer, .tabs { display: none !important; }
  body { background: #fff; color: #000; }
}
