/* ============================================================================
   Orange County Limousine — main.css
   Shared styles: design tokens + every component used on more than 2 pages.
   Ported from design-reference/index.html per 03_DESIGN_SYSTEM.md.
   Page-specific styles live in assets/css/pages/{page}.css (see 11_ACTIVE_RULES).
   ========================================================================= */

/* ── 0. Fonts (self-hosted) ──────────────────────────────────────────────────
   Served from /assets/fonts instead of Google Fonts, so the site has no
   external runtime dependency: nothing to be slow, blocked, or to log a
   visitor's IP address on a third-party server.

   Latin subset only, woff2 only. No unicode-range is declared on purpose —
   with a single subset it buys nothing, and declaring the standard latin range
   would push glyphs we actually use (→ ★ ✓) out of the font entirely.
   `font-display: swap` keeps text visible during load (03_DESIGN_SYSTEM.md).
   ========================================================================= */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/fraunces-v38-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-v38-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-v38-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fraunces-v38-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-v38-latin-600italic.woff2") format("woff2");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/hanken-grotesk-v12-latin-700.woff2") format("woff2");
}

/* ── 1. Tokens ───────────────────────────────────────────────────────────── */
:root {
  --ink: #17120D;
  --ink-2: #211A12;
  --ink-3: #2C2318;
  --paper: #F7F1E6;
  --paper-2: #EFE5D3;
  --paper-3: #E6D9C0;
  --brass: #BC8A46;
  --brass-2: #D8AC61;
  --brass-deep: #9A6F33;   /* decorative brass: gradients, large display text */
  /* Text-safe brass. --brass-deep is only 3.98:1 on paper, which fails WCAG AA
     for the small uppercase eyebrows and 13px links it was being used for.
     This darker step keeps the palette and clears AA (5.56:1 on paper,
     5.01:1 on paper-2). 03_DESIGN_SYSTEM.md requires AA contrast. */
  --brass-text: #7D5A22;
  --sage: #6E7459;
  --txt: #2A2118;
  --txt-soft: #5C5040;
  --txt-inv: #F7F1E6;
  --txt-inv-soft: #C9BCA4;
  --line: rgba(42, 33, 24, .14);
  --line-inv: rgba(247, 241, 230, .16);
  --alert: #D98A6A;        /* on dark surfaces (quote card): 6.90:1 */
  --alert-deep: #A84226;   /* on light surfaces (contact form): 4.84:1 */
  --maxw: 1180px;
  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 30px 60px -28px rgba(23, 18, 13, .45);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--txt);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Faint grain overlay — atmosphere without imagery. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── 3. Accessibility ────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--paper);
  border: 1px solid var(--brass);
  border-radius: 8px;
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--brass-text);
  outline-offset: 3px;
  border-radius: 4px;
}
.quote :focus-visible,
.strip :focus-visible,
.fleet :focus-visible,
.reviews :focus-visible,
.cta :focus-visible,
footer :focus-visible,
.callbar :focus-visible {
  outline-color: var(--brass-2);
}

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

/* ── 4. Layout scaffolding ───────────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}

section { padding: 78px 0; }

.sec-head { max-width: 620px; margin-bottom: 44px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 600; margin: 16px 0 14px; }
.sec-head p { color: var(--txt-soft); font-size: 18px; }

/* Two-column section headline (pricing, local) */
.sec-title { font-size: clamp(28px, 4vw, 42px); font-weight: 600; margin: 14px 0 16px; }
.sec-lead { color: var(--txt-soft); font-size: 18px; max-width: 44ch; }
.sec-cta { margin-top: 24px; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-text);
}
.eyebrow.inv { color: var(--brass-2); }
.eyebrow.block { display: inline-block; }

.note {
  font-size: 12.5px;
  color: var(--txt-inv-soft);
  text-align: center;
  margin-top: 22px;
  font-style: italic;
  opacity: .8;
}
.note.soft { opacity: .7; }
.note.on-paper { color: var(--txt-soft); }

/* ── 4b. Page head (every page except home) ──────────────────────────────── */
.page-head { padding: 54px 0 10px; }
.page-head h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 600; margin: 14px 0 18px; }
.page-head h1 em { font-style: italic; color: var(--brass-deep); }
.page-head .lead { font-size: 19px; color: var(--txt-soft); max-width: 58ch; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--txt-soft);
  margin-bottom: 14px;
}
.breadcrumbs a:hover { color: var(--brass-text); }
.breadcrumbs [aria-current] { color: var(--txt); font-weight: 600; }
.breadcrumbs .sep { opacity: .5; }

/* ── 4c. Prose, lists, splits ────────────────────────────────────────────── */
.prose { max-width: 68ch; display: grid; gap: 30px; }
.prose h2 { font-size: clamp(23px, 3vw, 31px); font-weight: 600; margin-bottom: 10px; }
.prose p { color: var(--txt-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.split-wide { grid-template-columns: 1.25fr .75fr; }

.checklist { display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--txt-soft); font-size: 16px; }
.checklist svg { color: var(--brass-text); flex: none; margin-top: 4px; }

.linkrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ── Quick answer box (13 §A1) ───────────────────────────────────────────── */
.answer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-top: 28px;
  max-width: 74ch;
}
.answer-band { padding: 42px 0 0; }
.answer-band .answer { margin-top: 0; }

.answer .label {
  flex: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-text);
  padding-top: 3px;
}
.answer p { font-size: 16.5px; line-height: 1.55; color: var(--txt); margin: 0; }

@media (max-width: 720px) {
  .answer { flex-direction: column; gap: 8px; }
}

/* ── Comparison tables (13 §A3) ──────────────────────────────────────────── */
.cmp-wrap { overflow-x: auto; margin-top: 8px; }
.cmp {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15.5px;
}
.cmp caption {
  text-align: left;
  font-size: 13px;
  color: var(--txt-soft);
  padding-bottom: 12px;
}
.cmp th, .cmp td {
  text-align: left;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cmp thead th {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-text);
  border-bottom-color: var(--line);
}
.cmp tbody th {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  padding-right: 24px;
}
.cmp td { color: var(--txt-soft); }
.cmp .closest {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1c1308;
  background: var(--brass-2);
  border-radius: 100px;
  padding: 3px 9px;
  margin-left: 8px;
  vertical-align: middle;
}
.cmp a:hover { color: var(--brass-text); }

/* ── Freshness stamp (13 §A7) ────────────────────────────────────────────── */
.updated {
  font-size: 13px;
  color: var(--txt-soft);
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* Bordered content box — service/airport/area pages */
.panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}
.panel h2, .panel h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.panel p { color: var(--txt-soft); font-size: 15.5px; }
.panel + .panel { margin-top: 18px; }
.panel-quiet { background: transparent; }

/* Compact linked list with a trailing note (airports, towns) */
.linklist { display: grid; gap: 2px; }
.linklist li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.linklist li:first-child { border-top: 1px solid var(--line); }
.linklist a { font-weight: 600; }
.linklist a:hover { color: var(--brass-text); }
.linklist .aside { color: var(--txt-soft); font-weight: 400; }
.section-alt { background: var(--paper-2); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 28px; }

@media (max-width: 1000px) {
  .split, .split-wide { grid-template-columns: 1fr; gap: 36px; }
}

/* ── 5. Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
}
.btn-primary {
  background: var(--brass);
  color: #1c1308;
  box-shadow: 0 12px 28px -12px rgba(188, 138, 70, .8);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--brass-2); }
.btn-ghost { border-color: var(--line); color: var(--txt); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-text); }
.btn-inv { border-color: var(--line-inv); color: var(--txt-inv); }
.btn-inv:hover { border-color: var(--brass-2); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* ── 6. Motion ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .9s var(--ease) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .05s; }
.d2 { animation-delay: .16s; }
.d3 { animation-delay: .27s; }
.d4 { animation-delay: .38s; }
.d5 { animation-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── 7. Announcement bar ─────────────────────────────────────────────────── */
.announce {
  background: var(--ink);
  color: var(--txt-inv-soft);
  font-size: 13px;
  letter-spacing: .02em;
}
.announce .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 18px;
}
.announce a { color: var(--txt-inv); font-weight: 600; }
.announce .pill { display: inline-flex; gap: .4em; align-items: center; }
.announce .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fbf7a;
  box-shadow: 0 0 0 3px rgba(95, 191, 122, .22);
}
.announce .hide-sm { display: inline-flex; }

/* ── 8. Header ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(247, 241, 230, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 11px 0;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: radial-gradient(120% 120% at 30% 20%, var(--brass-2), var(--brass-deep));
  display: grid;
  place-items: center;
  color: #1c1308;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 21px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4);
}
.brand b {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.01em;
}
.brand span span,
.brand .tagline {
  display: block;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--txt-soft);
  margin-top: 3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.menu a { position: relative; padding: 4px 0; color: var(--txt-soft); transition: color .2s; }
.menu a:hover { color: var(--txt); }
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width .25s var(--ease);
}
.menu a:hover::after,
.menu a[aria-current="page"]::after { width: 100%; }
.menu a[aria-current="page"] { color: var(--txt); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; font-size: 16px; white-space: nowrap; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s;
}

/* ── 9. Trust strip ──────────────────────────────────────────────────────── */
.strip { background: var(--ink-2); color: var(--txt-inv); }
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-block: 26px;
}
.strip .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--txt-inv-soft);
}
.strip .item svg { flex: none; color: var(--brass-2); }
.strip .item b { color: var(--txt-inv); font-weight: 600; }

/* ── 10. Service cards ───────────────────────────────────────────────────── */
.services { background: var(--paper); }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.svc {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  box-shadow: 0 22px 40px -26px rgba(23, 18, 13, .4);
}
.svc .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  color: var(--brass-text);
  margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.svc:hover .ic { background: var(--brass); color: #1c1308; }
.svc h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.svc p { font-size: 14.5px; color: var(--txt-soft); }
.svc .more {
  display: inline-flex;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brass-text);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: .3s;
}
.svc:hover .more, .svc:focus-visible .more { opacity: 1; transform: none; }

/* ── 11. Vehicle cards ───────────────────────────────────────────────────── */
.fleet { background: var(--ink); color: var(--txt-inv); }
.fleet .sec-head h2 { color: var(--txt-inv); }
.fleet .sec-head p { color: var(--txt-inv-soft); }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.veh {
  border: 1px solid var(--line-inv);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-2);
  transition: transform .3s var(--ease), border-color .3s;
}
.veh:hover { transform: translateY(-4px); border-color: var(--brass-2); }
.veh .ph {
  aspect-ratio: 4 / 3;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, var(--ink-3), var(--ink-2));
  color: var(--brass-2);
}
.veh .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 120%, rgba(216, 172, 97, .16), transparent 60%);
}
.veh .ph img { width: 100%; height: 100%; object-fit: cover; }
.veh .ph .glyph { font-family: "Fraunces", Georgia, serif; font-size: 46px; opacity: .5; }
.veh .ph .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt-inv-soft);
  border: 1px solid var(--line-inv);
  padding: 4px 9px;
  border-radius: 100px;
  background: rgba(23, 18, 13, .5);
}
.veh .body { padding: 18px 18px 20px; }
.veh h3 { font-size: 19px; font-weight: 600; margin-bottom: 3px; }
.veh .cap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--txt-inv-soft);
  margin-bottom: 14px;
}
.veh .cap span { display: inline-flex; gap: 5px; align-items: center; }
.veh-desc { font-size: 14px; color: var(--txt-inv-soft); margin-bottom: 16px; }
.veh .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-inv);
  padding-top: 13px;
}
.veh .from { font-size: 12px; color: var(--txt-inv-soft); }
.veh .from b {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  color: var(--txt-inv);
}
.veh .pick { font-size: 13px; font-weight: 600; color: var(--brass-2); }

/* ── 12. Pricing transparency band ───────────────────────────────────────── */
.pricing { background: var(--paper-2); }
.pricing .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.pricing-list { display: grid; gap: 18px; }
.pl {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
}
.pl .n {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--brass-2);
  display: grid;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}
.pl h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.pl p { font-size: 14.5px; color: var(--txt-soft); }

/* ── 13. Local section, chips & route map ────────────────────────────────── */
.local { background: var(--paper); }
.local .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 100px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: .25s;
}
.chip:hover { background: var(--brass); color: #1c1308; border-color: var(--brass); }

.map-card {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink), var(--ink-3));
}
.map-card .grid-bg {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(var(--line-inv) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-inv) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-card .route { position: absolute; inset: 0; }
.map-card .pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brass-2);
  box-shadow: 0 0 0 5px rgba(216, 172, 97, .2);
}
.map-card .pin-start { left: 54px; bottom: 62px; }
.map-card .pin-end { right: 44px; top: 50px; }
.map-card .label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: var(--txt-inv);
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
}
.map-card .label span {
  display: block;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 4px;
}

/* ── 14. Reviews ─────────────────────────────────────────────────────────── */
.reviews { background: var(--ink-2); color: var(--txt-inv); }
.reviews .sec-head h2 { color: var(--txt-inv); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev {
  border: 1px solid var(--line-inv);
  border-radius: var(--r);
  padding: 24px;
  background: var(--ink);
}
.rev .stars { color: var(--brass-2); letter-spacing: 2px; margin-bottom: 12px; }
.rev p {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--txt-inv);
  margin-bottom: 18px;
}
.rev .who { display: flex; align-items: center; gap: 11px; }
.rev .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brass-deep);
  color: #1c1308;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: "Fraunces", Georgia, serif;
}
.rev .who b { display: block; font-size: 14.5px; }
.rev .who .role { font-size: 12.5px; color: var(--txt-inv-soft); }
.rev blockquote { border: 0; }

/* ── 15. Quote widget ────────────────────────────────────────────────────── */
.quote {
  position: relative;
  background: var(--ink);
  color: var(--txt-inv);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(216, 172, 97, .7), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.quote h2, .quote h3 { font-size: 23px; font-weight: 600; margin-bottom: 4px; }
.quote .sub { font-size: 13.5px; color: var(--txt-inv-soft); margin-bottom: 20px; }
.quote .btn-primary { margin-top: 7px; }
.quote .micro {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--txt-inv-soft);
  text-align: center;
  margin-top: 12px;
}

.field { margin-bottom: 13px; }
.field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 6px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(247, 241, 230, .06);
  border: 1px solid var(--line-inv);
  color: var(--txt-inv);
  padding: 12px 13px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(201, 188, 164, .55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass-2);
  background: rgba(247, 241, 230, .1);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D8AC61' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
/* invalid state — set by the server on re-render, or by JS before submit */
.field .is-invalid { border-color: var(--alert); }
.field .error { display: block; font-size: 12px; color: var(--alert); margin-top: 5px; }

.form-error {
  font-size: 13.5px;
  color: var(--alert);
  background: rgba(217, 138, 106, .1);
  border: 1px solid rgba(217, 138, 106, .35);
  border-radius: 10px;
  padding: 10px 13px;
  margin-bottom: 16px;
}

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }

/* honeypot — must stay in the DOM but never visible or focusable */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-done { display: none; text-align: center; padding: 14px 6px; }
.quote-done.show { display: block; animation: rise .5s var(--ease); }
.quote.sent .quote-form { display: none; }
.quote-done .check {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 6px auto 16px;
  display: grid;
  place-items: center;
  background: rgba(216, 172, 97, .16);
  color: var(--brass-2);
  font-size: 26px;
}
.quote-done h3 { margin-bottom: 10px; }
.quote-done p { color: var(--txt-inv-soft); font-size: 14.5px; margin-bottom: 8px; }
.quote-done .recap {
  background: rgba(247, 241, 230, .05);
  border: 1px solid var(--line-inv);
  border-radius: 12px;
  padding: 13px 15px;
  text-align: left;
  font-size: 13.5px;
  color: var(--txt-inv-soft);
  margin: 14px 0 18px;
  line-height: 1.8;
}
.quote-done .recap b { color: var(--txt-inv); }

/* ── 15b. FAQ block ──────────────────────────────────────────────────────── */
.faq { background: var(--paper); }
.faq-head { font-size: clamp(28px, 4vw, 40px); font-weight: 600; margin-bottom: 34px; }
.faq-list { display: grid; gap: 0; max-width: 820px; }
.faq-item { padding: 22px 0; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item dt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
}
.faq-item dd { margin: 0; color: var(--txt-soft); font-size: 16px; max-width: 68ch; }

/* ── 16. Big CTA ─────────────────────────────────────────────────────────── */
.cta {
  background: radial-gradient(70% 130% at 80% 0%, rgba(188, 138, 70, .25), transparent 60%), var(--ink);
  color: var(--txt-inv);
  text-align: center;
}
.cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  max-width: 16ch;
  margin: 18px auto;
}
.cta h2 em { font-style: italic; color: var(--brass-2); }
.cta p { color: var(--txt-inv-soft); font-size: 18px; max-width: 46ch; margin: 0 auto 30px; }
.cta .acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 17. Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: #120E0A;
  color: var(--txt-inv-soft);
  padding: 64px 0 30px;
  font-size: 14.5px;
}
.f-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-inv);
}
.site-footer .brand b { color: var(--txt-inv); }
.site-footer .brand .tagline { color: var(--txt-inv-soft); }
.f-about { max-width: 34ch; margin-top: 18px; }
.f-col h2 {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 16px;
  font-weight: 600;
}
.f-col a { display: block; color: var(--txt-inv-soft); padding: 5px 0; transition: color .2s; }
.f-col a:hover { color: var(--txt-inv); }
.f-nap { margin-top: 18px; line-height: 1.9; font-style: normal; }
.f-nap b { color: var(--txt-inv); }
.f-legal { font-size: 13px; }
.f-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 13px;
}
.f-bot .pay { display: flex; gap: 8px; align-items: center; }
.f-bot .pay i {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  border: 1px solid var(--line-inv);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--txt-inv-soft);
}
.placeholder-flag { color: var(--brass-2); font-style: italic; }

/* ── 18. Sticky mobile call bar ──────────────────────────────────────────── */
.callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--ink);
  border-top: 1px solid var(--line-inv);
  padding: 10px 16px;
  gap: 10px;
}
.callbar .btn { flex: 1; justify-content: center; padding: 13px; }

/* ── 19. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .grid, .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .pricing .wrap, .local .wrap { grid-template-columns: 1fr; gap: 40px; }
  .f-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 66px; }
  .menu, .nav-phone, .announce .hide-sm { display: none; }
  .burger { display: flex; }
  .nav .wrap { position: relative; }
  .menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    padding: 20px 26px;
    gap: 14px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--line);
  }
  section { padding: 58px 0; }
  .grid, .fleet-grid { grid-template-columns: 1fr; }
  .strip .wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
  .f-top { grid-template-columns: 1fr; }
  .callbar { display: flex; }
}
