/* Self-hosted fonts (house rule: no runtime Google Fonts). Latin subset,
   font-display: swap. Archivo is kept as the Google-served variable font
   (weight + width axes) since the type scale below relies on font-stretch
   percentages; Public Sans and IBM Plex Mono are static per-weight files
   matching exactly the weights this stylesheet uses. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('/fonts/archivo-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/public-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/public-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/public-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/public-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-600.woff2') format('woff2');
}

/* =====================================================================
   The Foodtruck List (thegoodeatsguide.com)
   Comp B "Order Up": corporate and office lead.
   Idea: every request is a clean kitchen ticket, every price sits on a
   ruled ledger, every step is numbered. Navy ink and a grill-orange call
   to action make it read like a vendor finance already approved.
   All design lives in this file; markup is production markup.
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* color */
  --navy: #0D1B2A;          /* ink, header rule, quote ticket, footer */
  --navy-2: #1B2C40;        /* raised navy surfaces */
  --ink-2: #2B3645;         /* secondary text */
  --muted: #4B5667;         /* captions, notes (7.4:1 on white) */
  --line: #D5DBE1;          /* hairline rules (decorative) */
  --control: #6A7585;       /* input borders (4.7:1 on white) */
  --stone: #EEF1F3;         /* cool office-paper panels */
  --stone-2: #E3E8EC;       /* grid lines, zebra */
  --paper: #FFFFFF;
  --orange: #F76707;        /* grill orange: CTA fill, used with navy text (5.8:1) */
  --orange-hover: #E0590B;  /* hover fill, navy text 4.6:1 */
  --orange-ink: #B8430A;    /* orange as text on white (5.5:1) */
  --orange-tint: #FFF1E6;   /* price highlight wash */
  --orange-soft: #FFB37A;   /* focus ring on navy, illustration fill */
  --basil: #237A36;         /* verified / included checks (5.3:1) */
  --focus: #1D5FD1;         /* focus ring on light surfaces */
  --on-navy: #FFFFFF;
  --on-navy-2: #C9D3DE;     /* labels on navy (10.6:1) */

  /* type */
  --display: 'Archivo', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Public Sans', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  --stretch: 108%;
  --fs-h1: clamp(1.9rem, 1.1rem + 3.1vw, 3.35rem);
  --fs-h2: clamp(1.45rem, 1.1rem + 1.2vw, 2rem);
  --fs-h3: 1.2rem;
  --fs-lead: clamp(1.06rem, 1rem + 0.35vw, 1.22rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-label: 0.78rem;

  /* space and shape */
  --gutter: 16px;
  --wrap: 1160px;
  --rail: 0px;
  --measure: 44rem;
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;
  --control-h: 54px;
  --shadow-card: 0 1px 2px rgba(13, 27, 42, 0.06), 0 18px 40px -22px rgba(13, 27, 42, 0.45);
  --shadow-bar: 0 -6px 24px rgba(13, 27, 42, 0.12);
  --mobile-cta-h: 72px;

  /* patterns */
  --grid-lines:
    linear-gradient(var(--stone-2) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, var(--stone-2) 1px, transparent 1px) 0 0 / 24px 24px;
  --icon-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 34'%3E%3Crect width='34' height='34' rx='8' fill='%230D1B2A'/%3E%3Crect x='7' y='15' width='20' height='11' rx='1.5' fill='%23fff'/%3E%3Cpath d='M6 8h22v5q-2.75 3-5.5 0q-2.75 3-5.5 0q-2.75 3-5.5 0q-2.75 3-5.5 0z' fill='%23F76707'/%3E%3C/svg%3E");
  --icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23237A36'/%3E%3Cpath d='M4.6 8.2l2.2 2.2 4.6-4.8' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%230D1B2A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --art-truck: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 220' fill='none' stroke-linejoin='round' stroke-linecap='round'%3E%3Cdefs%3E%3Cpattern id='w' width='14' height='16' patternUnits='userSpaceOnUse'%3E%3Crect x='4' y='5' width='6' height='7' fill='%23C6D0DA'/%3E%3C/pattern%3E%3C/defs%3E%3Cg stroke='%239AA8B7' stroke-width='2' fill='url(%23w)'%3E%3Crect x='22' y='46' width='64' height='146'/%3E%3Crect x='94' y='86' width='46' height='106'/%3E%3Crect x='418' y='58' width='50' height='134'/%3E%3C/g%3E%3Cpath d='M8 192h464' stroke='%230D1B2A' stroke-width='3'/%3E%3Crect x='112' y='146' width='20' height='46' rx='10' fill='%23237A36'/%3E%3Ccircle cx='122' cy='134' r='8' fill='%230D1B2A'/%3E%3Crect x='140' y='150' width='20' height='42' rx='10' fill='%23FFB37A'/%3E%3Ccircle cx='150' cy='139' r='7.5' fill='%230D1B2A'/%3E%3Crect x='176' y='78' width='184' height='98' rx='10' fill='%23fff' stroke='%230D1B2A' stroke-width='3'/%3E%3Cpath d='M360 104h30l22 30v42h-52z' fill='%23fff' stroke='%230D1B2A' stroke-width='3'/%3E%3Cpath d='M366 110h22l16 22h-38z' fill='%23DCE6EF' stroke='%230D1B2A' stroke-width='2.5'/%3E%3Crect x='198' y='104' width='120' height='42' rx='3' fill='%23FFE8D6' stroke='%230D1B2A' stroke-width='2.5'/%3E%3Cpath d='M190 90h136v12H190z' fill='%23F76707' stroke='%230D1B2A' stroke-width='2.5'/%3E%3Cpath d='M190 102q8.5 10 17 0q8.5 10 17 0q8.5 10 17 0q8.5 10 17 0q8.5 10 17 0q8.5 10 17 0q8.5 10 17 0q8.5 10 17 0' fill='%23F76707' stroke='%230D1B2A' stroke-width='2.5'/%3E%3Cpath d='M192 150h132' stroke='%230D1B2A' stroke-width='3'/%3E%3Ccircle cx='218' cy='178' r='15' fill='%230D1B2A'/%3E%3Ccircle cx='218' cy='178' r='5' fill='%23fff'/%3E%3Ccircle cx='380' cy='178' r='15' fill='%230D1B2A'/%3E%3Ccircle cx='380' cy='178' r='5' fill='%23fff'/%3E%3C/svg%3E");
  --art-truck-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 130' fill='none' stroke='%23ffffff' stroke-opacity='.22' stroke-width='2.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M4 118h252'/%3E%3Crect x='20' y='26' width='170' height='80' rx='9'/%3E%3Cpath d='M190 50h28l20 26v30h-48z'/%3E%3Crect x='40' y='46' width='108' height='34' rx='3'/%3E%3Cpath d='M34 36h124v10H34z' fill='%23F76707' fill-opacity='.55' stroke='none'/%3E%3Ccircle cx='60' cy='108' r='12'/%3E%3Ccircle cx='212' cy='108' r='12'/%3E%3C/svg%3E");

  color-scheme: light;
}

@media (min-width: 780px) {
  :root { --gutter: 32px; --fs-body: 1.09375rem; }
}
@media (min-width: 1024px) {
  :root { --rail: 184px; }
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-feature-settings: 'kern' 1;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 779px) {
  body.has-mobile-cta { padding-bottom: var(--mobile-cta-h); }
}
::selection { background: var(--orange-soft); color: var(--navy); }

h1, h2, h3, legend {
  font-family: var(--display);
  font-stretch: var(--stretch);
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.04; letter-spacing: -0.022em; margin: 0 0 0.45em; }
h2 { font-size: var(--fs-h2); font-weight: 800; line-height: 1.12; letter-spacing: -0.015em; margin: 1.6em 0 0.5em; }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.25; letter-spacing: -0.005em; margin: 1.6em 0 0.35em; }
p { margin: 0 0 1em; }
p, li { text-wrap: pretty; }
strong { font-weight: 700; color: var(--navy); }
img { max-width: 100%; height: auto; }
table { max-width: 100%; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}
a:hover { color: var(--orange-ink); text-decoration-color: currentColor; }

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

.wrap { max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- 3. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-top: 4px solid var(--navy);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.4) blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  min-height: 60px;
}
.wordmark {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  text-decoration: none;
  line-height: 1.05;
  color: var(--navy);
}
.wordmark .brand-mark {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.wordmark .brand {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.wordmark .domain {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-top: 3px;
}
.wordmark:hover .brand { color: var(--navy); }

.site-nav { display: none; }
a.header-cta { display: none; }

/* mobile disclosure menu */
.mobile-nav-details { position: static; }
.mobile-nav-details summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--navy);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
}
.mobile-nav-details summary::-webkit-details-marker { display: none; }
.mobile-nav-details summary::before {
  content: "";
  width: 16px;
  height: 12px;
  background:
    linear-gradient(var(--navy) 0 0) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--navy) 0 0) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--navy) 0 0) 0 100% / 100% 2px no-repeat;
}
.mobile-nav-details[open] summary { background: var(--navy); color: var(--on-navy); }
.mobile-nav-details[open] summary::before {
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), #fff calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), #fff calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px));
  width: 14px;
  height: 14px;
}
.mobile-nav-details nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 30px -18px rgba(13, 27, 42, 0.4);
  padding: 4px var(--gutter) 16px;
}
.mobile-nav-details nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-stretch: var(--stretch);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--navy);
}
.mobile-nav-details nav a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
}

@media (min-width: 780px) {
  .header-inner { min-height: 72px; gap: 28px; }
  .wordmark { column-gap: 12px; }
  .wordmark .brand-mark { width: 40px; height: 40px; }
  .wordmark .brand { font-size: 1.24rem; }
  .site-nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .site-nav a {
    position: relative;
    padding: 10px 10px;
    color: var(--ink-2);
    text-decoration: none;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 4px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
  }
  .site-nav a:hover { color: var(--navy); }
  .site-nav a:hover::after { transform: scaleX(1); }
  a.header-cta { display: inline-flex; min-height: 46px; padding-inline: 20px; font-size: 0.98rem; }
  .mobile-nav-details { display: none; }
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: inset 0 -3px 0 rgba(13, 27, 42, 0.22);
}
.btn-primary::after {
  content: "";
  flex: none;
  width: 16px;
  height: 12px;
  clip-path: polygon(0 42%, 62% 42%, 62% 0, 100% 50%, 62% 100%, 62% 58%, 0 58%);
  background: var(--navy);
  transition: transform 0.15s ease;
}
.btn-primary:hover { background: var(--orange-hover); color: var(--navy); }
.btn-primary:hover::after { transform: translateX(3px); }
.btn-primary:active { transform: translateY(1px); box-shadow: inset 0 -1px 0 rgba(13, 27, 42, 0.22); }
.btn-ghost { background: var(--paper); border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--stone); color: var(--navy); }

/* ---------- 5. Mobile sticky CTA ---------- */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-bar);
}
.mobile-cta-bar .btn { width: 100%; min-height: 52px; font-size: 1.08rem; }
@media (min-width: 780px) { .mobile-cta-bar { display: none; } }

/* ---------- 6. Page frame ---------- */
.page-main { padding-top: 28px; counter-reset: sec; }
@media (min-width: 780px) { .page-main { padding-top: 48px; } }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 40rem;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  margin: 0 0 24px;
}

/* ---------- 7. Quote ticket (compact quote card) ----------
   A navy kitchen ticket: side notches and a dashed tear line separate
   the details from the loud "Get free quotes" stub. */
.quote-card {
  --notch-y: calc(100% - 98px);
  position: relative;
  margin: 8px 0 24px;
  padding: 20px 18px 22px;
  color: var(--on-navy);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 0 var(--notch-y), transparent 11px, var(--navy) 11.5px) left / 50.5% 100% no-repeat,
    radial-gradient(circle at 100% var(--notch-y), transparent 11px, var(--navy) 11.5px) right / 50.5% 100% no-repeat;
  filter: drop-shadow(0 16px 22px rgba(13, 27, 42, 0.22));
}
.quote-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 98px;
  border-top: 2px dashed rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.quote-card-title {
  grid-column: 1 / -1;
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-navy-2);
}
.quote-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}
.quote-card label { margin: 0; gap: 6px; }
.quote-card label > span { color: var(--on-navy-2); }
.quote-card :is(input, select) {
  border-color: transparent;
  background-color: var(--paper);
}
.quote-card :is(input, select):focus-visible { outline-color: var(--orange-soft); }
.quote-card .btn:focus-visible { outline-color: var(--orange-soft); }
.quote-card-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 40px;
  font-size: 1.1rem;
}

/* ---------- 8. Forms ---------- */
form { margin: 0; }
form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
form label > span,
.cuisine-group legend {
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
form :is(input[type="text"], input[type="date"], input[type="email"], input[type="tel"],
input[type="number"], input[type="url"], select, textarea) {
  width: 100%;
  min-width: 0;
  min-height: var(--control-h);
  padding: 0 14px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--navy);
  background-color: var(--paper);
  border: 1.5px solid var(--control);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
form input::placeholder, form textarea::placeholder { color: var(--control); opacity: 1; }
form input[type="date"] { padding-right: 8px; }
form input[type="date"]::-webkit-date-and-time-value { text-align: left; }
form select {
  padding-right: 40px;
  background-image: var(--icon-chevron);
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
form select:invalid, form select:has(option[value=""]:checked) { color: var(--muted); }
form textarea { min-height: 120px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
form :is(input, select, textarea):hover { border-color: var(--navy); }
form :is(input, select, textarea):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--navy);
}

form label.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  line-height: 1.45;
}
form label.checkbox > span { font-family: var(--body); font-size: 1rem; letter-spacing: 0; text-transform: none; color: var(--navy); font-weight: 500; }
form label.checkbox input {
  flex: none;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend {
  padding: 0;
  margin-bottom: 18px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

/* cuisine chips */
.cuisine-group { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 20px; }
.cuisine-group legend { margin-bottom: 10px; float: left; width: 100%; }
.cuisine-group label.checkbox {
  margin: 0;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border: 1.5px solid var(--control);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
}
.cuisine-group label.checkbox input { width: 18px; height: 18px; margin: 0; }
.cuisine-group label.checkbox > span { font-size: 0.95rem; font-weight: 600; }
.cuisine-group label.checkbox:has(input:checked) { border-color: var(--navy); background: var(--orange-tint); box-shadow: inset 0 0 0 1px var(--navy); }
.cuisine-group label.checkbox:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.price-hint {
  display: flex;
  gap: 10px;
  align-items: baseline;
  background: var(--orange-tint);
  border: 1px solid #F6CFAF;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--navy);
}
.price-hint::before {
  content: "$" / "";
  flex: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.8rem;
  transform: translateY(4px);
}

/* stepped request form */
.progress-bar, .step-indicator { display: none; }
form.js-stepped .progress-bar {
  display: block;
  position: relative;
  height: 6px;
  margin-bottom: 10px;
  background: var(--stone-2);
  border-radius: 3px;
  overflow: hidden;
}
form.js-stepped .progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--paper) 0 0) 25% 0 / 6px 100% no-repeat,
    linear-gradient(var(--paper) 0 0) 50% 0 / 6px 100% no-repeat,
    linear-gradient(var(--paper) 0 0) 75% 0 / 6px 100% no-repeat;
}
form.js-stepped .progress-bar-fill {
  height: 100%;
  width: 25%;
  background: var(--orange);
  transition: width 0.25s ease;
}
form.js-stepped .progress-bar-fill[data-step="1"] { width: 25%; }
form.js-stepped .progress-bar-fill[data-step="2"] { width: 50%; }
form.js-stepped .progress-bar-fill[data-step="3"] { width: 75%; }
form.js-stepped .progress-bar-fill[data-step="4"] { width: 100%; }
form.js-stepped .step-indicator {
  display: block;
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
form.js-stepped fieldset[data-step] { display: none; }
form.js-stepped fieldset[data-step].active { display: grid; }

.quote-form, .truck-form {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 24px 18px 22px;
  margin-bottom: 24px;
}
.quote-form::before, .truck-form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 6px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--navy);
}
.quote-form fieldset[data-step] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  align-items: start;
}
.quote-form fieldset[data-step] > :is(label, .price-hint, .cuisine-group, script) { grid-column: 1 / -1; }
.quote-form fieldset[data-step] > .btn { margin-top: 8px; }
.quote-form fieldset[data-step] > .btn-ghost { grid-column: 1; }
.quote-form fieldset[data-step] > .btn-primary { grid-column: 2; }
.quote-form fieldset[data-step] > .btn:only-of-type { grid-column: 1 / -1; }
.quote-form fieldset:not([data-step]) { display: flex; }
@media (min-width: 560px) {
  .quote-form { padding: 32px 32px 28px; }
  .quote-form fieldset[data-step] { column-gap: 16px; }
  .quote-form fieldset[data-step] > label:not(.checkbox) { grid-column: auto; }
  .quote-form fieldset[data-step] > label:has(textarea) { grid-column: 1 / -1; }
  .quote-form fieldset[data-step] > .btn-ghost { justify-self: start; min-width: 140px; }
}
.truck-form { display: grid; gap: 0 16px; }
@media (min-width: 640px) {
  .truck-form { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 32px; }
  .truck-form > :is(.checkbox, button, .btn, label:has(textarea)) { grid-column: 1 / -1; }
}

/* ---------- 9. Home hero ---------- */
.page-main:has(> .home-hero) { padding-top: 0; }
.home-hero {
  position: relative;
  padding-block: 24px 28px;
  background: var(--stone);
  box-shadow: 0 0 0 100vmax var(--stone);
  clip-path: inset(0 -100vmax);
}
.home-hero > h1 { margin-top: 0; }
.home-hero > .lead { margin-bottom: 20px; }
.home-hero > .quote-card { margin-bottom: 8px; }

/* trust strip: included-facts line + numbered process */
.trust-strip { margin: 20px 0 0; }
.trust-strip .wrap { max-width: none; padding: 0; margin: 0; }
.trust-strip .trust-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.trust-strip .trust-facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.trust-strip .trust-facts li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  background: var(--icon-check) center / contain no-repeat;
}
.how-it-works-mini {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 0;
}
.how-it-works-mini li {
  counter-increment: step;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
}
.how-it-works-mini li::before {
  content: counter(step, decimal-leading-zero) / "";
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.how-it-works-mini li:last-child::before { background: var(--orange); }
.how-it-works-mini li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15.5px;
  top: 34px;
  height: 20px;
  border-left: 1.5px dashed var(--control);
}

@media (min-width: 640px) {
  .how-it-works-mini { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .how-it-works-mini li { flex-direction: column; align-items: flex-start; gap: 10px; line-height: 1.35; }
  .how-it-works-mini li:not(:last-child)::after {
    left: 40px;
    right: -8px;
    top: 16px;
    height: 0;
    border-left: 0;
    border-top: 1.5px dashed var(--control);
  }
}

@media (min-width: 960px) {
  .home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 432px);
    column-gap: 64px;
    align-items: start;
    grid-template-areas:
      "h1 card"
      "lead card"
      "trust card";
    grid-template-rows: auto auto 1fr;
    padding-block: 56px 60px;
  }
  .home-hero > h1 { grid-area: h1; font-size: clamp(2.6rem, 1rem + 3vw, 3.4rem); }
  .home-hero > .lead { grid-area: lead; }
  .home-hero > .quote-card { grid-area: card; margin: 0; }
  .home-hero > .trust-strip { grid-area: trust; margin-top: 8px; align-self: end; }
  .home-hero > .quote-card {
    padding: 26px 26px 26px;
    --notch-y: calc(100% - 104px);
  }
  .home-hero > .quote-card::after { bottom: 104px; left: 26px; right: 26px; }
  .home-hero > .quote-card .quote-card-grid { gap: 18px 14px; }
}

/* ---------- 10. Hero illustration slot ----------
   Placeholder previews the illustration system: navy line drawing,
   flat grill-orange and basil fills, office-plaza context, set on
   graph-paper stone inside a ruled frame with crop marks. */
.hero-slot {
  position: relative;
  height: 180px;
  margin: 8px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background:
    var(--art-truck) right 6% bottom 14px / auto 82% no-repeat,
    linear-gradient(180deg, transparent 0 60%, rgba(255, 255, 255, 0.55) 60%) 0 0 / 100% 100% no-repeat,
    var(--grid-lines),
    var(--stone);
  overflow: hidden;
}
.hero-slot::before,
.hero-slot::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 0 solid var(--navy);
}
.hero-slot::before { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; }
.hero-slot::after { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; }
@media (min-width: 780px) {
  .hero-slot { height: 260px; margin: 40px 0 8px; }
  .hero-slot { background:
    var(--art-truck) right 7% bottom 18px / auto 84% no-repeat,
    var(--grid-lines),
    var(--stone); }
}

/* ---------- 11. Inner pages: title, illustration, booking bar ---------- */
@media (min-width: 960px) {
  .page-main:has(> .quote-card) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
    column-gap: 56px;
    align-items: start;
  }
  .page-main:has(> .quote-card) > * { grid-column: 1 / -1; }
  .page-main:has(> .quote-card) > h1 { grid-column: 1; grid-row: 1; }
  .page-main:has(> .quote-card) > .lead { grid-column: 1; grid-row: 2; margin-bottom: 32px; }
  .page-main:has(> .quote-card) > .hero-slot {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    height: auto;
    min-height: 240px;
    margin: 0 0 32px;
    background:
      var(--art-truck) center bottom 16px / 92% auto no-repeat,
      var(--grid-lines),
      var(--stone);
  }
}
@media (min-width: 1024px) {
  /* booking bar: four fields and the stub in one row */
  .page-main > .quote-card {
    --notch-x: calc(100% - 270px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 224px;
    column-gap: 46px;
    align-items: end;
    padding: 22px 22px 24px 26px;
    margin: 0 0 16px;
    background:
      radial-gradient(circle at var(--notch-x) 0, transparent 11px, var(--navy) 11.5px) top / 100% 50.5% no-repeat,
      radial-gradient(circle at var(--notch-x) 100%, transparent 11px, var(--navy) 11.5px) bottom / 100% 50.5% no-repeat;
  }
  .page-main > .quote-card::after {
    left: auto;
    right: 269px;
    top: 18px;
    bottom: 18px;
    border-top: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.28);
  }
  .page-main > .quote-card .quote-card-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 0.7fr); gap: 14px; }
  .page-main > .quote-card .quote-card-submit { margin: 0; min-height: var(--control-h); }
}

/* request page: title left, ticket form right */
.page-main:has(> .quote-form) > h1 { max-width: 16ch; }
@media (min-width: 960px) {
  body:has(.page-main > .quote-form) { background: var(--stone); }
  body:has(.page-main > .quote-form) .site-footer { margin-top: 0; }
  .page-main:has(> .quote-form) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 600px);
    grid-template-rows: auto auto 1fr;
    column-gap: 64px;
    padding-bottom: 72px;
  }
  .page-main:has(> .quote-form) > h1 { grid-column: 1; grid-row: 1; margin-top: 12px; }
  .page-main:has(> .quote-form) > .lead { grid-column: 1; grid-row: 2; }
  .page-main:has(> .quote-form)::after {
    content: "";
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    height: 170px;
    margin-top: 24px;
    border-top: 1px solid var(--line);
    background: var(--art-truck) left bottom / contain no-repeat;
  }
  .page-main:has(> .quote-form) > .quote-form { grid-column: 2; grid-row: 1 / span 3; align-self: start; margin: 0; }
}

/* ---------- 12. Long-form body: spec-sheet rail ---------- */
.page-body { margin-top: 8px; }
.page-body > * { max-width: var(--measure); }
.page-body > h2 {
  counter-increment: sec;
  position: relative;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.page-body > h2::before,
.faqs > h2::before {
  content: counter(sec, decimal-leading-zero) / "";
  display: block;
  width: max-content;
  margin-bottom: 10px;
  padding-top: 6px;
  border-top: 3px solid var(--orange);
  font-family: var(--mono);
  font-stretch: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.page-body > h2:first-child { margin-top: 40px; }
.page-body > h3 + p { margin-top: 0; }
.page-body p, .page-body li { color: var(--ink-2); }
.page-body :is(ul, ol) { padding-left: 0; margin: 0 0 1.2em; list-style: none; }
.page-body li { position: relative; padding-left: 28px; margin-bottom: 0.5em; }
.page-body ul > li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.38em;
  width: 16px;
  height: 16px;
  background: var(--icon-check) center / contain no-repeat;
}
.page-body ol { counter-reset: li; }
.page-body ol > li { counter-increment: li; padding-left: 36px; }
.page-body ol > li::before {
  content: counter(li) / "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--navy);
  color: var(--on-navy);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .page-body, .faqs { padding-left: var(--rail); }
  .page-body > h2::before,
  .faqs > h2::before {
    position: absolute;
    left: calc(-1 * var(--rail));
    top: 26px;
    width: calc(var(--rail) - 40px);
    margin: 0;
  }
  .page-body > h2 { overflow: visible; }
  .page-body > h2::after {
    content: "";
    position: absolute;
    left: calc(-1 * var(--rail));
    width: var(--rail);
    top: -1px;
    border-top: 1px solid var(--line);
  }
  .page-body > h3 { font-size: 1.28rem; }
  .page-body p, .page-body li { font-size: 1.09rem; }
}

/* generic tables: ledger */
.page-body table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0 1.8em;
  font-size: 0.97rem;
  font-variant-numeric: tabular-nums;
}
.page-body thead th {
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: left;
  padding: 10px 14px;
  background: var(--stone);
  border-bottom: 2px solid var(--navy);
  white-space: nowrap;
}
.page-body td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--navy);
}
.page-body tbody tr:hover td { background: #F7F9FA; }
.page-body td:first-child { font-weight: 600; }
@media (max-width: 779px) {
  .page-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background:
      linear-gradient(90deg, var(--paper) 30%, rgba(255, 255, 255, 0)) left / 24px 100% no-repeat local,
      linear-gradient(-90deg, var(--paper) 30%, rgba(255, 255, 255, 0)) right / 24px 100% no-repeat local,
      radial-gradient(farthest-side at 0 50%, rgba(13, 27, 42, 0.18), transparent) left / 10px 100% no-repeat scroll,
      radial-gradient(farthest-side at 100% 50%, rgba(13, 27, 42, 0.18), transparent) right / 10px 100% no-repeat scroll;
  }
  .page-body table :is(td, th) { min-width: 8.5rem; }
  .page-body table td:first-child { min-width: 11rem; }
}

/* ---------- 13. Price board: rate card ---------- */
.price-board {
  margin: 8px 0 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.price-board-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 18px 18px 16px;
  background: var(--navy);
  color: var(--on-navy);
}
.price-board h2 { margin: 0; color: var(--on-navy); font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem); }
.price-board-updated {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--on-navy-2);
}
.price-board-updated::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CC06A;
  box-shadow: 0 0 0 3px rgba(76, 192, 106, 0.25);
}
.price-table-scroll { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: 0.98rem;
}
.price-table th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--stone);
  border-bottom: 2px solid var(--navy);
  white-space: nowrap;
}
.price-table td {
  padding: 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td:nth-child(1) {
  font-family: var(--display);
  font-stretch: var(--stretch);
  font-weight: 700;
  font-size: 1.06rem;
  white-space: nowrap;
}
.price-table td:nth-child(2),
.price-table th:nth-child(2) { background: var(--orange-tint); }
.price-table th:nth-child(2) { background: #FBE3D0; }
.price-table td:nth-child(2) { font-weight: 800; font-size: 1.08rem; }
.price-table td:nth-child(2) { min-width: 12rem; }
.price-table td:nth-child(3),
.price-table td:nth-child(4) { font-weight: 600; white-space: nowrap; }
.price-table td:nth-child(5) { font-size: 0.9rem; line-height: 1.5; color: var(--muted); min-width: 18rem; }
.price-board-travel,
.price-board-sources {
  margin: 0;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.price-board-travel { display: flex; gap: 10px; align-items: baseline; color: var(--navy); font-weight: 600; background: var(--stone); }
.price-board-sources { font-size: 0.82rem; line-height: 1.55; }
.price-board-sources a { color: var(--ink-2); }
@media (min-width: 780px) {
  .price-board-head { padding: 22px 24px 20px; }
  .price-table th { padding-inline: 20px; }
  .price-table td { padding: 18px 20px; }
  .price-board-travel, .price-board-sources { padding-inline: 24px; }
}

/* phone: each event type becomes its own ruled rate row, labels from data-label */
@media (max-width: 779px) {
  .price-table-scroll { overflow: visible; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .price-table tr { padding: 16px 16px 12px; border-bottom: 1px solid var(--line); }
  .price-table tbody tr:last-child { border-bottom: 0; }
  .price-table td {
    display: grid;
    grid-template-columns: 8.2rem minmax(0, 1fr);
    gap: 12px;
    padding: 6px 0;
    border: 0;
    background: none;
  }
  .price-table td::before {
    content: attr(data-label);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 0.3em;
  }
  .price-table td:nth-child(1) { display: block; font-size: 1.2rem; padding: 0 0 6px; white-space: normal; }
  .price-table td:nth-child(1)::before { content: none; }
  .price-table td:nth-child(2) { background: var(--orange-tint); margin-inline: -8px; padding: 8px; border-radius: 6px; }
  .price-table td:nth-child(5) { display: block; min-width: 0; padding-top: 10px; }
  .price-table td:nth-child(5)::before { display: block; margin-bottom: 4px; }
}

/* ---------- 14. Closing call to action ---------- */
.cta-line {
  position: relative;
  margin: 64px 0 8px;
  padding: 28px 20px;
  border-radius: var(--r-lg);
  background:
    var(--art-truck-light) right -30px bottom -10px / 260px auto no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--navy);
}
.cta-line .btn {
  width: 100%;
  min-height: 60px;
  padding: 14px 20px;
  font-size: 1.1rem;
  white-space: normal;
}
.cta-line .btn:focus-visible { outline-color: var(--orange-soft); }
@media (min-width: 780px) {
  .cta-line { padding: 40px 40px; }
  .cta-line .btn { width: auto; max-width: 100%; font-size: 1.15rem; padding-inline: 28px; }
}
@media (min-width: 1024px) {
  .cta-line { padding: 48px 40px 48px var(--rail); }
}

/* ---------- 15. FAQs ---------- */
.faqs { margin: 56px 0 0; }
.faqs > h2 {
  counter-increment: sec;
  position: relative;
  margin: 0 0 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: var(--measure);
}
.faq-item {
  max-width: var(--measure);
  padding: 20px 0 6px;
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 {
  display: flex;
  gap: 12px;
  margin: 0 0 8px;
  font-size: 1.14rem;
}
.faq-item h3::before {
  content: "Q" / "";
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: -1px;
  border-radius: 5px;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--mono);
  font-stretch: 100%;
  font-size: 0.8rem;
  font-weight: 600;
}
.faq-item p { margin-left: 38px; color: var(--ink-2); }
@media (min-width: 1024px) {
  .faqs > h2::after {
    content: "";
    position: absolute;
    left: calc(-1 * var(--rail));
    width: var(--rail);
    top: -1px;
    border-top: 1px solid var(--line);
  }
}

/* ---------- 16. Thanks ---------- */
.thanks-grade { background: var(--stone); border-radius: var(--r); border-left: 4px solid var(--basil); padding: 18px 20px; margin: 16px 0; max-width: var(--measure); }
.thanks-grade-c { border-left-color: var(--orange); background: var(--orange-tint); }

/* ---------- 17. Footer ---------- */
.site-footer {
  margin-top: 88px;
  padding: 48px 0 40px;
  background: var(--navy);
  color: var(--on-navy-2);
  font-size: 0.95rem;
}
.footer-inner { display: grid; gap: 20px; }
.footer-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--on-navy);
}
.footer-lockup::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  background: var(--icon-mark) center / contain no-repeat;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.footer-nav a {
  color: var(--on-navy);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
}
.footer-nav a:hover { color: var(--orange-soft); text-decoration: underline; text-decoration-color: var(--orange); }
.footer-nav a:focus-visible, .site-footer a:focus-visible { outline-color: var(--orange-soft); }
.footer-trust {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 780px) {
  .footer-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 48px;
  }
  .footer-nav { justify-content: flex-end; }
  .footer-trust { grid-column: 1 / -1; }
}

/* ---------- 18. Admin ---------- */
body.admin { padding: 2rem 16px; }
body.admin table { border-collapse: collapse; width: 100%; }
body.admin td, body.admin th { border: 1px solid var(--line); padding: 6px 10px; font-size: 14px; text-align: left; }

/* ---------- 19. Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
