/* ============================================================
   exaWEB brand tokens — v1.1 per founder ruling 2026-06-11
   (canon: ~/exaforge_os/docs/WEB_SEO_BLUEPRINT_RECONCILED.md §1)
   Palette: Navy + White + Gold. WSJ-masthead Didot-class serif —
   ALL text incl. the phone number. TTC® logo prominent.
   System fonts only — zero downloads, perfect CWV.
   Gemini's literal #000080/#FFD700 refined within the ruling:
     navy deepened/desaturated for elegance,
     gold muted to "leather-bound book" warm metallic.
   ============================================================ */
@font-face {
  font-family: "Escrow";
  src: url("/fonts/escrow-bold-cond.woff2") format("woff2"),
       url("/fonts/escrow-bold-cond.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0e1d3a;          /* deep navy — primary type, logo, phone */
  --ink-soft: #5a6a82;     /* navy at lower contrast — softened for readability */
  --paper: #fbf8ef;        /* warm ivory — the two-tone paper (Paul 2026-07-16); cards stay white via --paper-raised */
  --paper-soft: #f5f5f7;   /* Apple-style light gray surface */
  --paper-raised: #ffffff;
  --gold: #b89656;         /* refined warm metallic gold */
  --gold-deep: #8e6f30;    /* hover/accent gold */
  --line: #e8e8ed;         /* Apple-style subtle separator */
  --focus: #b89656;        /* gold focus ring for navy/white field */
  --surface: rgba(0,0,0,0.02); /* subtle depth overlay */
  --display: "Escrow", "Didot", "Bodoni 72", "Bodoni MT", "Cambria", "Times New Roman", serif;
  --serif: var(--display);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Apple-style depth system */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  /* Modern border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  /* Smooth transitions */
  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: 0.15s var(--ease-out);
  --transition-normal: 0.25s var(--ease-out);
  --transition-slow: 0.4s var(--ease-out);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;  /* iOS: respect user zoom, no auto-inflation */
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Respect users who ask for less motion (vestibular / accessibility) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
a { color: var(--gold-deep); transition: color var(--transition-fast); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: .6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* V1 lander — editorial, navy/white/gold, Didot everywhere */
.lander {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem 2rem;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}
.lander-inner {
  max-width: 36rem;
  width: 100%;
  text-align: center;
}
.lander-hero {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: -.01em;
  margin: 0 0 1.2rem;
  color: var(--ink);
  line-height: 1.15;
}
.lander-tagline {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--ink-soft);
  margin: 0 0 2.4rem;
  
}
.lander-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2.4rem;
}
.lander-phone {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
  padding: .2rem .6rem;
  border-bottom: 2px solid var(--gold);
  transition: border-color .15s, color .15s;
}
.lander-phone:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.lander-chat-button {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .04em;
  padding: .85rem 1.8rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background .15s;
}
.lander-chat-button:hover { background: var(--gold-deep); }
.lander-positioning {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
.lander-credentials {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem .9rem;
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lander-credentials li { position: relative; }
.lander-credentials li::after {
  content: "·"; color: var(--gold); position: absolute; right: -.55rem;
}
.lander-credentials li:last-child::after { content: ""; }
.lander-failover {
  padding: 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: var(--paper-raised);
  margin: 1.6rem 0;
}
.lander-form-wrap {
  margin: 2rem 0 0;
  text-align: left;
}
.lander-form-wrap > summary {
  cursor: pointer;
  font-family: var(--serif);
  
  color: var(--ink-soft);
  text-align: center;
  list-style: none;
  padding: .5rem;
}
.lander-form-wrap > summary::-webkit-details-marker { display: none; }
.lander-form-wrap > summary::after { content: " →"; color: var(--gold); }
.lander-form-wrap[open] > summary::after { content: " ✕"; }
.lander-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: var(--paper-raised);
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-top: 1rem;
}
.lander-form label {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-family: var(--serif);
  font-size: .92rem;
  color: var(--ink-soft);
}
.lander-form input,
.lander-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: .65rem .8rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}
.lander-form input:focus,
.lander-form textarea:focus {
  outline: 2px solid var(--gold-deep);
  outline-offset: 1px;
  border-color: var(--gold);
}
.lander-form button {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .04em;
  padding: .8rem;
  border-radius: 2px;
  cursor: pointer;
  align-self: stretch;
}
.lander-form button:hover { background: var(--gold-deep); }
.lander-form-note {
  font-size: .85rem;
  color: var(--ink-soft);
  
  text-align: center;
  margin: .3rem 0 0;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; padding-top: 1.1rem; padding-bottom: 1.1rem; flex-wrap: wrap;
}
.wordmark {
  font-family: var(--serif); font-size: clamp(1rem, 4.4vw, 1.35rem); letter-spacing: .14em;
  color: var(--ink); text-decoration: none; font-weight: 600; white-space: nowrap;
}
.wordmark .reg { font-size: .6em; vertical-align: super; }
.header-line { font-size: .95rem; color: var(--ink-soft); }
.header-line a { font-weight: 600; white-space: nowrap; }

/* Hero */
.hero { padding: 4rem 0 2rem; text-align: center; }
.hero h1 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0 0 .8rem; letter-spacing: .01em; line-height: 1.15;
}
.hero p.lede {
  max-width: 48rem; margin: 0 auto; color: var(--ink-soft);
  font-size: clamp(1rem, 2.4vw, 1.2rem); line-height: 1.6;
}

/* Map */
.map-section { padding: 1.2rem 0 2rem; }
.usa-map { display: block; width: 100%; height: auto; }
.usa-map .state { fill: #f4efe0; stroke: #cfc6b6; stroke-width: .75; }
.usa-map .state--home { stroke: #1a5276; stroke-width: 2; }
.usa-map .area-code-fill { fill: #b8d4f0; fill-opacity: .55; stroke: none; pointer-events: none; }
.usa-map .coverage { fill: #b8d4f0; fill-opacity: .35; stroke: #6ba3d8; stroke-opacity: .5; stroke-width: 1; pointer-events: none; }
/* pins ~45% bigger per founder note 2026-06-12 (wider blanket impression) */
.usa-map .pin-dot { fill: var(--ink); stroke: var(--paper); stroke-width: 2; r: 8; }
.usa-map .pin { cursor: pointer; }
.usa-map .pin:hover .pin-dot, .usa-map .pin:focus .pin-dot { fill: var(--gold-deep); }
.usa-map .pin-target { fill: transparent; }
.usa-map .national-callout text { font-family: var(--sans); font-size: 11px; fill: var(--ink-soft); }
.usa-map .national-callout .num { font-weight: 700; fill: var(--ink); font-size: 12px; }

/* Pin popover */
.pin-popover {
  position: absolute; z-index: 30; background: var(--paper-raised);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.2rem 1.3rem; width: min(300px, calc(100vw - 2rem));
}
.pin-popover h3 { margin: 0 0 .15rem; font-family: var(--serif); font-size: 1.05rem; }
.pin-popover .where { color: var(--ink-soft); font-size: .9rem; margin: 0 0 .6rem; }
.pin-popover .tel {
  display: block; font-size: 1.25rem; font-weight: 700; color: var(--ink);
  text-decoration: none; margin-bottom: .45rem;
}
.pin-popover .desk-link { font-size: .92rem; }
.pin-popover .close {
  position: absolute; top: .4rem; right: .55rem; border: 0; background: none;
  font-size: 1.1rem; cursor: pointer; color: var(--ink-soft); padding: .25rem .4rem;
}
@media (max-width: 640px) {
  .pin-popover {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto !important;
    width: 100%; border-radius: 14px 14px 0 0; padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

/* Desk list (a11y / no-JS fallback) */
.desk-list-wrap { margin-top: 1rem; }
.desk-list-wrap summary { cursor: pointer; color: var(--ink-soft); font-size: .95rem; }
.desk-list { list-style: none; padding: 0; margin: .8rem 0 0; display: grid; gap: .35rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.desk-list li { font-size: .95rem; }

/* Prose sections */
.prose { max-width: 48rem; margin: 0 auto; padding: 2rem 0; }
.prose h2 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; margin: 2rem 0 .6rem; letter-spacing: .01em; }
.prose p { margin: .6rem 0 1.2rem; color: var(--ink-soft); }
.section-rule { border: 0; border-top: 1px solid var(--line); max-width: 8rem; margin: 2rem auto; }

/* Location page */
.desk-hero { padding: 3rem 0 1.5rem; }
.desk-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 4.5vw, 2.5rem); margin: 0 0 .5rem; line-height: 1.15; }
.desk-hero .desk-sub { color: var(--ink-soft); margin: 0 0 1.5rem; font-size: 1.05rem; }
.call-cta {
  display: inline-block; background: var(--ink); color: #fff; text-decoration: none;
  font-size: 1.1rem; font-weight: 600; padding: .9rem 1.8rem; border-radius: var(--radius-pill);
  transition: all var(--transition-fast); box-shadow: var(--shadow-sm);
}
.call-cta:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.mini-map { max-width: 420px; margin: 1.5rem 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq dt { font-weight: 600; margin-top: 1.2rem; }
.faq dd { margin: .3rem 0 0; color: var(--ink-soft); line-height: 1.6; }
.breadcrumbs { font-size: .85rem; color: var(--ink-soft); padding-top: 1.5rem; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-deep); }

/* /map — the site guide / directory */
.map-intro { font-size: 1.05rem; color: var(--ink-soft); margin: 0 0 1.5rem; }
.map-page h2 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; margin: 1.8rem 0 .5rem; color: var(--ink); }
.map-state { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin: 1.3rem 0 .35rem; }
.map-list { list-style: none; margin: 0 0 .4rem; padding: 0; }
.map-list li { padding: .3rem 0; line-height: 1.5; border-bottom: 1px solid var(--line); }
.map-list li:last-child { border-bottom: 0; }
.map-list a { color: var(--gold-deep); text-decoration: none; font-weight: 600; }
.map-list a:hover { color: var(--ink); text-decoration: underline; }

/* /area-codes index + /area-code/:code */
.ac-index { list-style: none; margin: 0; padding: 0; }
.ac-index li { padding: .45rem 0; line-height: 1.5; border-bottom: 1px solid var(--line); }
.ac-index li:last-child { border-bottom: 0; }
.ac-index a { color: var(--gold-deep); text-decoration: none; font-weight: 600; }
.ac-index a:hover { color: var(--ink); text-decoration: underline; }
.ac-counties { display: block; font-size: .85rem; color: var(--ink-soft); }
.ac-county { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin: 1.2rem 0 .2rem; }
.ac-munis { color: var(--ink-soft); margin: 0 0 .4rem; line-height: 1.6; }

/* /living-in-america — curated city roster */
.city-grid { list-style: none; margin: 1.4rem 0; padding: 0; }
.city-grid li { padding: .55rem 0; border-bottom: 1px solid var(--line); line-height: 1.5; }
.city-grid li:last-child { border-bottom: 0; }
.city-link { color: var(--gold-deep); text-decoration: none; font-weight: 600; font-size: 1.1rem; }
.city-link:hover { color: var(--ink); text-decoration: underline; }
.city-blurb { color: var(--ink-soft); font-size: .92rem; }
.city-coming { color: var(--ink-soft); font-style: italic; margin: 1.2rem 0 0; }

/* /ive-been-everywhere — town-by-town roster */
.ibe-state { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); margin: 1.5rem 0 .4rem; border-bottom: 1px solid var(--line); padding-bottom: .2rem; }
.ibe-row { margin: .5rem 0; line-height: 1.6; }
.ibe-row a { color: var(--gold-deep); text-decoration: none; font-weight: 600; }
.ibe-row a:hover { color: var(--ink); text-decoration: underline; }
.ibe-towns { color: var(--ink-soft); }

/* ===== Highway corridors + All Roads hub ===== */
.hw-shield { width: 84px; height: auto; flex: 0 0 auto; filter: drop-shadow(0 1px 2px rgba(0,0,0,.18)); }
.hw-hero { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.hw-hero h1 { margin: 0 0 .2rem; }
.hw-chain { line-height: 2.2; }
.hw-stop { display: inline-block; color: var(--gold-deep); text-decoration: none; font-weight: 600; }
.hw-stop:hover { color: var(--ink); text-decoration: underline; }
.hw-arrow { color: var(--gold); margin: 0 .5rem; }
/* spine map — clean, static, instantly legible */
.spine-map { width: 100%; height: auto; background: var(--paper); }
.spine-map .state { fill: #eef1f4; stroke: #fff; stroke-width: 1; }
.spine-line { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; opacity: .85; }
.spine-line.is-on { stroke: var(--ink); stroke-width: 5; opacity: 1; }
.spine-pin { fill: var(--ink); stroke: #fff; stroke-width: 1.5; }
/* "Pick Your Road" boxes */
.road-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.road-box {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
  padding: 1.5rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper);
  text-decoration: none; transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}
.road-box:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.road-box .hw-shield { width: 66px; }
.road-name { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--ink); line-height: 1.25; }
.road-route { font-size: .85rem; color: var(--ink-soft); letter-spacing: .02em; }

/* Second front door (/coverage): masthead → map → chat, no form */
.front-door-top { text-align: center; padding: 2rem 1.25rem .5rem; }
.front-door-top .v1-phone-box { margin-top: 1.2rem; }
.front-door .map-section { max-width: 920px; margin: 1.5rem auto; padding: 0 1rem; }
.front-door-chat { max-width: 40rem; margin: 0 auto; text-align: center; padding: .5rem 1.25rem 2.5rem; }

/* Hotline block (region pages + /hotline) + Canada list (/canada) */
.hotline-block {
  max-width: 44rem;
  margin: 1.5rem auto;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.hotline-block-h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 .7rem;
}
.hotline-list, .canada-desks { list-style: none; margin: 0; padding: 0; }
.hotline-list li, .canada-desks li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .4rem 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
}
.hotline-list li:last-child, .canada-desks li:last-child { border-bottom: 0; }
.hotline-name, .canada-desk-name { color: var(--ink); }
.hotline-num, .canada-num {
  color: var(--gold-deep);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.hotline-num:hover, .canada-num:hover { color: var(--ink); }
.canada-note p { color: var(--ink-soft); }
.canada-note a { color: var(--gold-deep); }
/* parked (not-yet-ported) lines — shown, never a dead tel: link */
.hotline-num.soon, .canada-num.soon { color: var(--ink-soft); cursor: default; min-height: 0; }
.soon-tag {
  display: inline-block;
  margin-left: .5rem;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .05rem .45rem;
  vertical-align: middle;
  white-space: nowrap;
}

/* Chat widget */
.chat-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40;
  background: var(--ink); color: #fff; border: 0; border-radius: var(--radius-pill);
  padding: .9rem 1.5rem; font-size: 1rem; font-weight: 600; cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
}
.chat-fab:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.chat-panel {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 50;
  width: min(400px, calc(100vw - 2rem)); height: min(560px, calc(100vh - 4rem));
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column; overflow: hidden;
}
@media (max-width: 640px) {
  .chat-panel { right: 0; bottom: 0; width: 100%; height: 85vh; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
}
.chat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1rem; border-bottom: 1px solid var(--line); background: var(--paper);
}
.chat-head h2 { font-family: var(--serif); font-size: 1rem; margin: 0; }
.chat-head .chat-close { border: 0; background: none; font-size: 1.2rem; cursor: pointer; color: var(--ink-soft); padding: .2rem .5rem; }
.chat-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; }
.chat-msg { max-width: 85%; padding: .6rem .9rem; border-radius: var(--radius-lg); font-size: .95rem; line-height: 1.5; }
.chat-msg.user { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: var(--radius-sm); }
.chat-msg.model { align-self: flex-start; background: var(--paper-soft); border: 1px solid var(--line); border-bottom-left-radius: var(--radius-sm); }

/* Typing cursor — blinking border-right on the last bubble while text streams in */
.chat-typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: var(--ink);
  vertical-align: text-bottom;
  animation: cursor-blink .6s steps(1) infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.chat-card {
  align-self: flex-start; background: var(--paper-raised); border: 1px solid var(--gold);
  border-radius: 12px; padding: .8rem 1rem; width: 90%;
}
.chat-card h3 { margin: 0 0 .1rem; font-family: var(--serif); font-size: 1rem; }
.chat-card .where { font-size: .85rem; color: var(--ink-soft); margin: 0 0 .5rem; }
.chat-card .tel { display: block; font-size: 1.2rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.chat-card .desk-link { font-size: .88rem; }
.chat-card-pivot { border-color: var(--gold); background: var(--paper-soft); }
.chat-card-pivot .card-email { display: block; font-size: .88rem; margin-top: .3rem; }
.chat-form { display: flex; gap: .5rem; padding: .8rem; border-top: 1px solid var(--line); }
.chat-form input {
  flex: 1; font-size: 16px; padding: .6rem .8rem; border: 1px solid var(--line);
  border-radius: 8px; background: var(--paper);
}
.chat-form .chat-sendbtn {
  border: 0; background: var(--gold-deep); color: #fff; border-radius: 8px;
  padding: 0 1rem; font-weight: 600; cursor: pointer;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line); margin-top: 3rem;
  padding: 2.5rem 0 3rem; text-align: center; color: var(--ink-soft); font-size: .9rem;
}
.site-footer .credo { font-family: var(--serif); letter-spacing: .03em; }
.site-footer .legal { margin-top: .7rem; font-size: .8rem; }
.site-footer .legal a { color: var(--ink-soft); text-decoration: underline; }

/* Genesis 1.0 — same navy, paper, gold, and serif system as the public site. */
.genesis-page { background: var(--paper); }
.genesis-shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.genesis-intro { position: sticky; top: 2rem; }
.genesis-intro h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: .92; font-weight: 400; margin: .4rem 0 1.2rem; }
.genesis-intro > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; }
.genesis-trust { border-top: 1px solid var(--line); padding-top: 1rem; font-size: .9rem !important; }
.genesis-promise { border-top: 1px solid var(--line); margin-top: 1.5rem; padding-top: .75rem; }
.genesis-promise p { margin: .75rem 0; }
.genesis-promise strong, .genesis-promise span { display: block; }
.genesis-promise strong { font-family: var(--serif); color: var(--ink); font-size: 1.08rem; font-weight: 600; }
.genesis-promise span { color: var(--ink-soft); font-size: .84rem; margin-top: .1rem; }
/* Genesis explainer. The hook sits ABOVE the player by doctrine
   (docs/VIDEO_PLACEMENT_AND_HOOKS.md) — a caption underneath never earned a
   play. The transcript stays in the DOM even when collapsed: answer engines
   quote text, not pixels, and we wrote the script so it is exact. */
.genesis-video { margin: 1.5rem 0 0; border-top: 1px solid var(--line); padding-top: 1rem; }
.genesis-video video { width: 100%; border-radius: 10px; background: #000; display: block; }
.genesis-video-hook { color: var(--ink); font-size: 1rem; margin: 0 0 .6rem; }
.genesis-transcript { margin-top: .6rem; font-size: .88rem; color: var(--ink-soft); }
.genesis-transcript summary { cursor: pointer; color: var(--gold-deep); font-size: .85rem; }
.genesis-transcript p { margin: .5rem 0; }
.genesis-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-deep);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: 0 22px 60px rgba(14,29,58,.08);
}
.genesis-progress { height: 4px; background: var(--paper); margin-bottom: 1rem; overflow: hidden; }
.genesis-progress span { display: block; height: 100%; width: 16.666%; background: var(--gold-deep); transition: width .25s ease; }
.genesis-status-line { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.genesis-save-state { color: var(--ink-soft); font-size: .78rem; margin: 0; }
.genesis-step, .eyebrow { color: var(--gold-deep); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; }
.genesis-card fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.genesis-card legend { font-family: var(--serif); color: var(--ink); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1.4rem; }
.genesis-question-help { color: var(--ink-soft); line-height: 1.55; margin: -1rem 0 1.5rem; }
.genesis-card label { display: block; color: var(--ink); font-size: .92rem; margin: 0 0 1rem; }
.genesis-card [hidden] { display: none !important; }
.genesis-card input:not([type="checkbox"]):not([type="radio"]),
.genesis-card select, .genesis-card textarea {
  display: block; width: 100%; margin-top: .4rem; border: 1px solid #b7b0a0;
  background: #fff; color: var(--ink); border-radius: 0; padding: .82rem .9rem;
  font: inherit;
}
.genesis-card input:focus, .genesis-card select:focus, .genesis-card textarea:focus {
  outline: 3px solid rgba(181,139,54,.24); outline-offset: 1px; border-color: var(--gold-deep);
}
.genesis-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 1rem; }
.genesis-grid-three { grid-template-columns: 1.3fr .7fr .7fr; }
.genesis-checks { background: var(--paper); padding: 1rem; margin: 1rem 0; }
.genesis-checks label { margin: .55rem 0; }
.genesis-group-label { font-family: var(--serif); color: var(--ink); font-size: 1.1rem; margin: 1.35rem 0 .65rem; }
.genesis-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .55rem; }
.genesis-card .genesis-choice {
  display: flex; align-items: flex-start; gap: .7rem; border: 1px solid var(--line);
  background: #fff; padding: .8rem; margin: 0; cursor: pointer; line-height: 1.35;
}
.genesis-choice:has(input:checked) { border-color: var(--gold-deep); background: #fbf7ed; }
.genesis-choice input { margin-top: .15rem; flex: 0 0 auto; }
.genesis-counts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 1rem; margin-top: 1rem; }
.genesis-radio-cards { display: grid; gap: .6rem; margin: 1rem 0 1.3rem; }
.genesis-card .genesis-radio-cards label {
  display: flex; align-items: center; gap: .8rem; margin: 0; padding: .85rem 1rem;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
}
.genesis-radio-cards label:has(input:checked) { border-color: var(--gold-deep); background: #fbf7ed; }
.genesis-radio-cards span, .genesis-radio-cards small { display: block; }
.genesis-radio-cards small { color: var(--ink-soft); margin-top: .1rem; }
.genesis-drop { border: 1px dashed var(--gold-deep); background: #fbf7ed; padding: 1rem; }
.genesis-drop span, .genesis-drop small { display: block; }
.genesis-drop span { font-weight: 700; }
.genesis-drop small { color: var(--ink-soft); margin-top: .15rem; }
.genesis-actions { display: flex; justify-content: flex-end; gap: .7rem; margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.genesis-actions button {
  appearance: none; border: 1px solid var(--ink); background: var(--ink); color: #fff;
  padding: .85rem 1.3rem; font: inherit; cursor: pointer;
}
.genesis-actions button.secondary { background: #fff; color: var(--ink); }
.genesis-actions button:disabled { opacity: .55; cursor: wait; }
.genesis-error { color: #9c261d; min-height: 1.4rem; margin-bottom: .5rem; }
.genesis-file-note { color: var(--ink-soft); font-size: .85rem; }
.genesis-confirm { display: flex !important; align-items: flex-start; gap: .75rem; padding: 1rem; background: var(--paper); }
.genesis-confirm input { margin-top: .2rem; }
#genesis-review dl { display: grid; grid-template-columns: 9rem 1fr; margin: 0 0 1.5rem; }
#genesis-review dt, #genesis-review dd { padding: .55rem 0; border-bottom: 1px solid var(--line); margin: 0; }
#genesis-review dt { color: var(--ink-soft); }
.genesis-done h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.08; }
.genesis-done > p { color: var(--ink-soft); line-height: 1.65; }
.genesis-receipt { display: grid; grid-template-columns: 1fr auto; border-top: 1px solid var(--line); margin-top: 1.5rem; }
.genesis-receipt span, .genesis-receipt strong { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.genesis-receipt span { color: var(--ink-soft); }
.genesis-receipt strong { text-align: right; text-transform: capitalize; }
.legal-page { padding: clamp(2rem, 6vw, 5rem) 0; max-width: 760px; }
.legal-page h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; }
.legal-page p { line-height: 1.7; }
@media (max-width: 760px) {
  .genesis-shell { grid-template-columns: 1fr; width: min(100% - 1rem, 680px); padding-top: 1.25rem; gap: 1.5rem; }
  .genesis-intro { position: static; }
  .genesis-intro h1 { font-size: 3rem; }
  .genesis-grid { grid-template-columns: 1fr; }
  .genesis-choice-grid, .genesis-counts { grid-template-columns: 1fr; }
  .genesis-card { padding: 1.2rem; }
  .genesis-actions button { flex: 1; }
  #genesis-review dl { grid-template-columns: 1fr; }
  #genesis-review dt { border-bottom: 0; padding-bottom: 0; }
}

/* Four-line brand footer (founder spec 2026-06-14) */
.site-footer .ftr-credo {
  font-family: var(--serif);
  letter-spacing: .03em;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.site-footer .ftr-brand { color: var(--gold-deep); }
.site-footer .ftr-credo sup { font-size: .6em; letter-spacing: 0; }
.site-footer .ftr-creds {
  margin: .5rem 0 0;
  font-family: var(--serif);
  font-size: .82rem;
  letter-spacing: .02em;
  line-height: 1.5;
  color: var(--ink-soft);
}
.site-footer .ftr-bar { color: var(--line); margin: 0 .45rem; }
.site-footer .ftr-tm {
  margin: .35rem 0 0;
  font-size: .72rem;
  letter-spacing: .02em;
  color: var(--ink-soft);
  opacity: .85;
}
/* footer glyphs — Florida state-green, heart Florida-orange */
.ftr-fl { height: 1.05em; width: auto; vertical-align: -.16em; color: #2f9e57; }
.ftr-heart { height: .95em; width: auto; vertical-align: -.12em; color: #ef7d22; margin: 0 .04em; }

/* /privacy policy page — editorial long-form, brand-faithful, comfortable read */
.policy {
  max-width: 48rem;
  padding: 2rem 0 3rem;
  line-height: 1.75;
  font-size: 1.05rem;
  color: var(--ink);
}
.policy > h1:first-child {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: .01em;
  margin: 1.5rem 0 .25rem;
  text-align: center;
  color: var(--ink);
}
.policy > h1:first-child + p,
.policy > h1:first-child + hr + p { text-align: center;  color: var(--ink-soft); margin-bottom: 2rem; }
.policy h1 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin: 2.4rem 0 .6rem; letter-spacing: .005em; }
.policy h2 { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; margin: 2rem 0 .5rem; letter-spacing: .005em; color: var(--ink); }
.policy h3 { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; margin: 1.5rem 0 .35rem; color: var(--ink); }
.policy p { margin: .6rem 0 .9rem; }
.policy strong { color: var(--ink); font-weight: 600; }
.policy ul { margin: .5rem 0 1.1rem; padding-left: 1.2rem; }
.policy ul li { margin: .25rem 0; }
.policy ul li::marker { color: var(--gold); }
.policy a { color: var(--gold-deep); text-underline-offset: 2px; }
.policy a:hover { color: var(--ink); }
.policy table {
  width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.8rem;
  font-size: .95rem; font-family: var(--sans);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.policy table th, .policy table td {
  padding: .7rem .85rem; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.policy table th { background: var(--paper-soft); font-weight: 600; color: var(--ink); letter-spacing: .02em; font-size: .85rem; text-transform: uppercase; }
.policy table tbody tr:last-child td { border-bottom: none; }
.policy hr { border: 0; height: 1px; background: var(--gold); opacity: .35; margin: 2.5rem auto; width: 6rem; }
.policy code { background: var(--paper-soft); padding: .05rem .35rem; border: 1px solid var(--line); border-radius: 3px; font-size: .88em; font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.policy em { color: var(--ink-soft);  }
.policy > p:last-of-type { color: var(--ink-soft);  font-size: .9rem; text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* ============================================================
   V1 MASTHEAD LANDER — body.v1
   The brand reads national before anything else.
   WSJ-masthead feel: wordmark dominant, serif everywhere,
   navy/white/gold — nothing decorative, nothing wasted.
   ============================================================ */

/* ============================================================
   V1 — body.v1  (final spec 2026-06-13)
   Logo · toll-free · chatbot · footer links only.
   Contact form anchored at bottom via #contact.
   ============================================================ */

body.v1 .site-masthead { display: none; }

.v1-page {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 10vw, 6rem) 1.5rem 3rem;
  text-align: center;
  background: var(--paper);
}

.v1-masthead { margin-bottom: 2.8rem; overflow: hidden; }
/* Descending size hierarchy (founder 2026-06-13):
   L1 wordmark > L2+L3 (equal) > L4 > phone — each one step down. */
.v1-wordmark {
  font-family: var(--display);
  font-weight: 700;
  /* THE LOGO: always ONE line with the ® — like Coca-Cola, never two lines,
     never truncated. The font shrinks with the viewport (low floor) and
     white-space:nowrap forbids any wrap. */
  white-space: nowrap;
  font-size: clamp(1.9rem, 10.5vw, 6.4rem);   /* L1 — biggest; floor low enough to fit ~320px */
  letter-spacing: .05em;
  color: var(--ink);
  margin: 0;
  line-height: 1.02;
  text-transform: uppercase;
}
.v1-reg {
  font-size: .32em;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--gold);
}
.v1-sub {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}
/* L2 + L3 — one step down, equal size */
.v1-sub-1,
.v1-sub-2 {
  letter-spacing: .06em;
  color: var(--ink);
}
.v1-sub-1 { font-size: clamp(1.7rem, 5.6vw, 3.3rem); margin-top: .55rem; } /* L2 — anchor (unchanged) */
.v1-sub-2 { font-size: clamp(1.55rem, 5.1vw, 3rem); margin-top: .15rem; }  /* L3 — one smaller than L2 */
/* L4 — one step down, pulled a space away from the two larger lines.
   Stays one line where it fits; when it must wrap, the break falls
   between the two phrases (Internal Revenue Service drops as its own line).
   Tight line-height so the two wrapped lines sit close together. */
.v1-sub-3 {
  font-size: clamp(1.35rem, 4.4vw, 2.6rem);   /* L4 — one smaller than L3 */
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  line-height: 1.08;
}
.v1-sub-3 .nb { white-space: nowrap; }

/* Phone — prominent CTA */
/* National toll-free — reverse plaque: navy box, gold letters */
.v1-phone-box {
  display: inline-block;
  text-align: center;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: .8rem 1.8rem .9rem;
  margin-top: 1.8rem;
  box-shadow: var(--shadow-md);
}
.v1-phone-label {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.4vw, 1.2rem);       /* matches the approved widget */
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .1rem;                            /* snug to the number */
}
.v1-phone {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 2.6rem);       /* matches the approved widget */
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  text-decoration: none;
  line-height: 1.15;
  display: inline-block;
  transition: color .15s;
}
.v1-phone:hover { color: #fff; }

/* Regional national-line boxes (West/East of the Rockies) — flanking the map */
.front-door-map-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.front-door-map-row .map-section { flex: 1 1 auto; min-width: 0; }
.v1-region-box {
  flex: 0 0 auto;
  text-align: center;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: .9rem 1.2rem;
  max-width: 180px;
}
.v1-region-label {
  font-family: var(--serif);
  font-size: clamp(.85rem, 1.8vw, 1rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .3rem;
}
.v1-region-phone {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  transition: color .15s;
}
.v1-region-phone:hover { color: #fff; }
.v1-florida-man-row {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: .6rem auto 0;
}
.v1-region-box--florida-man {
  flex: 0 0 auto;
  text-align: center;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: .9rem 1.2rem;
  max-width: 180px;
}
@media (max-width: 768px) {
  .front-door-map-row { flex-direction: column; gap: .6rem; }
  .v1-region-box { max-width: 100%; width: 100%; }
}

/* Divider bar above the chat window */
.v1-divider {
  width: 100%;
  max-width: 640px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  margin: 2.8rem auto 0;
}

/* Conversational-UI framing — trains the visitor to ask here, not click away */
.v1-chat-intro {
  max-width: 640px;
  margin: 1.8rem auto 1.1rem;
  text-align: center;
}
.v1-chat-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  letter-spacing: .04em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}
.v1-chat-heading .v1-chat-line {
  display: block;
}
.v1-chat-heading .v1-chat-line:nth-child(2) {
  font-size: .65em;
  color: var(--ink-soft);
  letter-spacing: .08em;
}

/* Embedded live chat window — iMessage-style two-sided conversation */
.v1-chat-window {
  width: 100%;
  max-width: 640px;
  margin: 1.8rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.v1-chat-window .chat-head {
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.v1-chat-window .chat-head h2 {
  font-family: var(--display); font-size: 1.05rem; margin: 0; color: var(--ink);
  letter-spacing: .03em;
}
.v1-chat-window .chat-head::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: #2e9e5b; flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(46, 158, 91, .18);
}
.v1-chat-window .chat-log {
  flex: 1; overflow-y: auto; padding: 1.2rem 1.1rem;
  display: flex; flex-direction: column; gap: .55rem;
  min-height: 200px; max-height: 360px;
  background: var(--paper);
}

/* iMessage bubbles — incoming (model) left grey, outgoing (user) right navy */
.v1-chat-window .chat-msg {
  position: relative;
  max-width: 76%;
  padding: .6rem 1rem;
  font-family: var(--serif);
  font-size: .98rem;
  line-height: 1.4;
  border-radius: var(--radius-xl);
  word-wrap: break-word;
}
.v1-chat-window .chat-msg.model {
  align-self: flex-start;
  background: #f0f0f2;
  color: #0e1d3a;
  border-bottom-left-radius: var(--radius-sm);
}
.v1-chat-window .chat-msg.user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: var(--radius-sm);
}
/* tails */
.v1-chat-window .chat-msg.model::before {
  content: ""; position: absolute; z-index: 0; bottom: 0; left: -7px;
  width: 18px; height: 18px; background: #e9e9eb;
  border-bottom-right-radius: 16px;
}
.v1-chat-window .chat-msg.model::after {
  content: ""; position: absolute; z-index: 1; bottom: 0; left: -11px;
  width: 11px; height: 18px; background: var(--paper);
  border-bottom-right-radius: 12px;
}

.v1-map-link {
  text-align: center;
  margin-top: .75rem;
  font-size: .9rem;
}

.v1-map-link a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 500;
}

.v1-map-link a:hover {
  text-decoration: underline;
}
.v1-chat-window .chat-msg.user::before {
  content: ""; position: absolute; z-index: 0; bottom: 0; right: -7px;
  width: 18px; height: 18px; background: var(--ink);
  border-bottom-left-radius: 16px;
}
.v1-chat-window .chat-msg.user::after {
  content: ""; position: absolute; z-index: 1; bottom: 0; right: -11px;
  width: 11px; height: 18px; background: var(--paper);
  border-bottom-left-radius: 12px;
}
.v1-chat-window .chat-form {
  display: flex; gap: .5rem; padding: .8rem .8rem .3rem; align-items: center;
  border-top: 1px solid var(--line); background: var(--paper);
}
.chat-controls-hint {
  margin: 0; padding: 0 .9rem .7rem; text-align: center;
  font-family: var(--serif); font-size: .8rem; color: var(--ink-soft);
  line-height: 1.4; background: var(--paper);
}
.v1-chat-window .chat-form input {
  flex: 1; min-width: 0; font-family: var(--serif); font-size: 16px;
  padding: .9rem 1.2rem; border: 1px solid #e3e3e6;
  border-radius: var(--radius-pill); background: #f5f5f7; color: var(--ink);
  transition: all var(--transition-fast);
}
.v1-chat-window .chat-form input:focus {
  outline: 2px solid var(--gold-deep); outline-offset: 1px;
  border-color: var(--gold); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(184, 150, 86, 0.1);
}
.v1-chat-window .chat-form .chat-sendbtn {
  border: 0; background: var(--ink); color: #fff; min-height: 44px;
  border-radius: var(--radius-pill); padding: 0 1.5rem; font-family: var(--display);
  font-weight: 700; font-size: 1rem; cursor: pointer; letter-spacing: .03em;
  transition: all var(--transition-fast);
}
.v1-chat-window .chat-form .chat-sendbtn:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* Mic button — "Rather speak than type?" */
.chat-mic, .chat-attach {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--paper);
  color: var(--gold-deep); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.chat-mic:hover, .chat-attach:hover { background: var(--paper-soft); border-color: var(--gold-deep); transform: scale(1.05); }
.chat-mic.listening {
  background: #c0392b; border-color: #c0392b; color: #fff;
  animation: micpulse 1.2s ease-in-out infinite;
}
@keyframes micpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, .45); }
  50% { box-shadow: 0 0 0 7px rgba(192, 57, 43, 0); }
}

/* Header controls — hands-free + speaker toggles */
.chat-head h2 { flex: 1; }
.chat-hf, .chat-speaker {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--ink-soft); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  transition: all var(--transition-fast);
}
.chat-hf:hover, .chat-speaker:hover { border-color: var(--gold); color: var(--gold-deep); }
.chat-hf.on, .chat-speaker.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chat-hf.on {
  background: #c0392b; border-color: #c0392b;
  animation: micpulse 1.4s ease-in-out infinite;
}
.v1-chat-window .chat-head .chat-close { margin-left: .3rem; }

.chat-upload-card {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-md);
}
.chat-upload-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .7rem;
}
.chat-upload-head h3 {
  flex: 1;
  margin: 0;
  font-family: var(--display);
  font-size: .92rem;
  letter-spacing: .03em;
  color: var(--ink);
  text-transform: uppercase;
}
.chat-upload-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
}
.chat-upload-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem .7rem;
}
.chat-upload-field {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-family: var(--serif);
  font-size: .84rem;
  color: var(--ink-soft);
}
.chat-upload-field:nth-of-type(4),
.chat-upload-field:nth-of-type(5),
.chat-upload-actions,
.chat-upload-status {
  grid-column: 1 / -1;
}
.chat-upload-field input,
.chat-upload-field textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  padding: .6rem .75rem;
  transition: all var(--transition-fast);
}
.chat-upload-field input[type="file"] {
  padding: .55rem;
}
.chat-upload-field textarea {
  resize: vertical;
  min-height: 64px;
}
.chat-upload-actions {
  display: flex;
  justify-content: flex-end;
}
.chat-upload-submit {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: 0 1.2rem;
  transition: all var(--transition-fast);
}
.chat-upload-submit:disabled {
  cursor: wait;
  opacity: .7;
}
.chat-upload-status {
  min-height: 1.2em;
  margin: 0;
  font-family: var(--serif);
  font-size: .84rem;
  color: var(--ink-soft);
}
.chat-upload-status.ok { color: #1f7a45; }
.chat-upload-status.error { color: #a32d2d; }
.chat-upload-status.working { color: var(--gold-deep); }

/* Contact section */
.v1-contact-section {
  border-top: 1px solid var(--line);
  padding: 3rem 1.5rem 4rem;
  background: var(--paper);
}
.v1-contact-inner {
  max-width: 34rem;
  margin: 0 auto;
}
.v1-contact-notice {
  text-align: center;
  margin-bottom: 2rem;
}
.v1-contact-primary {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 .8rem;
}
.v1-contact-chat-link {
  background: none;
  border: 0;
  font-family: var(--serif);
  font-size: inherit;
  color: var(--gold-deep);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.v1-contact-chat-link:hover { color: var(--ink); }
.v1-contact-disclaimer {
  font-family: var(--serif);
  font-size: .88rem;
  color: var(--ink-soft);
  
  margin: 0;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
}

/* Shared form styles (contact + chat failover) */
.v1-form {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  text-align: left;
}
.v1-form label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--ink-soft);
}
.v1-form-radio {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: .7rem .9rem;
  margin: 0;
}
.v1-form-radio legend {
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--ink);
  padding: 0 .4rem;
}
.v1-radio {
  flex-direction: row !important;
  align-items: center;
  display: inline-flex !important;
  gap: .5rem;
  margin-right: 1rem;
  min-height: 44px;          /* ≥44px tap target (WCAG 2.5.5 / Apple HIG) */
  padding: 0 .3rem;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
}
.v1-radio input {
  width: 22px; height: 22px; margin: 0;
  accent-color: var(--gold-deep);
}
.v1-form button[type="submit"] { min-height: 48px; }

/* SMS consent — checkbox + disclaimer */
.v1-consent {
  flex-direction: row !important;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
}
.v1-consent input { width: 22px; height: 22px; margin: 0; accent-color: var(--gold-deep); flex: 0 0 auto; }
.v1-consent-note {
  margin: -.4rem 0 .2rem;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.v1-consent-note a { color: var(--gold-deep); }

/* Inline form validation feedback */
.v1-field-error { color: #a32d2d; font-size: .85rem; margin: .3rem 0 0; }
.v1-form input[aria-invalid="true"], .v1-form textarea[aria-invalid="true"] {
  border-color: #a32d2d;
}
.v1-form-thanks {
  font-family: var(--serif); color: var(--ink); text-align: center;
  padding: 1.5rem; border: 1px solid var(--gold); border-radius: 2px;
  font-size: 1.05rem;
}
.v1-form input, .v1-form textarea {
  font-family: var(--serif);
  font-size: 16px;
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  transition: all var(--transition-fast);
}
.v1-form input:focus, .v1-form textarea:focus {
  outline: 2px solid var(--gold-deep);
  outline-offset: 1px;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 86, 0.1);
}
.v1-form button[type="submit"] {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .04em;
  padding: .9rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  margin-top: .5rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.v1-form button[type="submit"]:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============================================================
   /contact — standalone contact page (founder spec 2026-06-14)
   Reuses the lander's masthead + plaque + form; top-aligned,
   smaller hero so the form sits above the fold.
   ============================================================ */
.contact-page { justify-content: flex-start; }
.contact-masthead { margin-bottom: 1.4rem; }
.contact-wordmark-link { text-decoration: none; display: inline-block; }
.contact-wordmark { font-size: clamp(1.9rem, 7vw, 3.4rem); }   /* below the lander hero */
.contact-masthead .v1-sub-2 { font-size: clamp(1rem, 3.2vw, 1.4rem); margin-top: .3rem; }
.contact-intro { max-width: 34rem; margin: 1.6rem auto 1.4rem; }
.contact-h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--ink);
  margin: 0 0 .7rem;
}
.contact-lede {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.contact-lede a { color: var(--gold-deep); text-decoration: underline; }
.contact-page .v1-contact-inner {
  width: 100%;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}

/* ============================================================
   iPhone / mobile + accessibility pass
   ============================================================ */

/* Honor the notch & home indicator */
.v1-page { padding-left: max(1.25rem, env(safe-area-inset-left)); padding-right: max(1.25rem, env(safe-area-inset-right)); }
.v1-contact-section { padding-bottom: max(3rem, calc(2rem + env(safe-area-inset-bottom))); }
.site-footer { padding-bottom: max(2.2rem, calc(1.5rem + env(safe-area-inset-bottom))); }

/* Phone is a 44px+ tap target on touch screens */
.v1-phone { min-height: 44px; }

/* Floating chat (non-v1 pages) clears the home indicator */
.chat-fab { bottom: max(1.1rem, calc(.6rem + env(safe-area-inset-bottom))); }

@media (max-width: 600px) {
  .v1-page {
    min-height: auto;
    justify-content: flex-start;
    padding-top: max(2.2rem, calc(1.5rem + env(safe-area-inset-top)));
  }
  .v1-masthead { max-width: 100%; min-width: 0; }
  .v1-wordmark {
    font-size: clamp(1.52rem, 8.4vw, 2.35rem);
    letter-spacing: .025em;
    white-space: nowrap;
  }
  .v1-sub-1 {
    font-size: clamp(1.18rem, 4.9vw, 1.75rem);
    letter-spacing: .04em;
  }
  .v1-sub-2 {
    font-size: clamp(1.08rem, 4.5vw, 1.6rem);
    letter-spacing: .04em;
  }
  .v1-sub-3 {
    font-size: clamp(.78rem, 3.6vw, 1.25rem);
    letter-spacing: .05em;
  }
  .v1-chat-window { margin-top: 1.4rem; border-radius: 14px; }
  .v1-chat-window .chat-log { max-height: 58vh; min-height: 170px; }
  .v1-chat-window .chat-msg { max-width: 82%; }
  .v1-chat-window .chat-form { gap: .4rem; padding-left: .6rem; padding-right: .6rem; }
  .chat-mic, .chat-attach { width: 40px; height: 40px; }
  .v1-chat-window .chat-form .chat-sendbtn { min-height: 40px; padding: 0 .9rem; }
  .chat-upload-form { grid-template-columns: 1fr; }
  /* stack radios vertically so each is an easy, separated tap */
  .v1-radio { display: flex !important; margin-right: 0; }
}

/* Visible, high-contrast focus for keyboard & switch users everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Readable placeholder text (default browser placeholders fail AA contrast) */
input::placeholder, textarea::placeholder {
  color: var(--ink-soft);
  opacity: 1;
}

/* Chat failover block — no blind intake */
.chat-failover {
  align-self: stretch; background: var(--paper-soft); border: 1px solid var(--gold);
  border-radius: var(--radius-lg); padding: 1rem 1.1rem; font-size: .92rem;
  box-shadow: var(--shadow-sm);
}
.chat-failover p { margin: 0 0 .5rem; }
.chat-failover .tel { display: block; font-size: 1.15rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.chat-failover .card-email { display: block; font-size: .88rem; margin: .2rem 0 .6rem; }
.chat-failover-form { display: flex; flex-direction: column; gap: .45rem; }
.chat-failover-form input, .chat-failover-form textarea {
  font: inherit; font-size: .92rem; padding: .5rem .7rem;
  border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; color: var(--ink);
  transition: all var(--transition-fast);
}
.chat-failover-form button {
  font: inherit; font-size: .92rem; padding: .55rem .9rem; border: 0; border-radius: var(--radius-pill);
  background: var(--gold); color: var(--ink); cursor: pointer;
  transition: all var(--transition-fast);
}
.chat-failover-form button:hover { background: var(--gold-deep); transform: translateY(-1px); }
.chat-failover-thanks {  color: var(--ink-soft); }

/* ── Content Modules (Lego-land) ── */
.content-modules {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.cm-video,
.cm-podcast {
  margin-bottom: 2.5rem;
}

.cm-video video {
  max-height: 420px;
  background: #0f172a;
}

.cm-podcast .btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: white;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.cm-podcast .btn:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ── Content Module CTAs ── */
.cm-cta {
  margin-top: .75rem;
  font-size: .9rem;
}

.cm-cta a {
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 500;
}

.cm-cta a:hover {
  text-decoration: underline;
}

/* ── Theme Cross-Links ── */
.theme-crosslinks {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.theme-crosslinks-label {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: .25rem;
}

.theme-crosslinks-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}

.theme-crosslinks-list li {
  font-size: .9rem;
}

/* ── Related Desks ── */
.related-desks {
  margin-top: 1.5rem;
}

.related-desks h2 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.related-desks-list {
  list-style: none;
  padding: 0;
}

.related-desks-list li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}

.related-desk-num {
  color: var(--gold-deep);
  font-weight: 500;
  text-decoration: none;
}

.related-desk-num:hover {
  text-decoration: underline;
}

/* ── Map Pins (stationary) ── */
.pin { cursor: pointer; }

/* ── On This Page Jump Links ── */
.on-this-page {
  margin-bottom: 1.5rem;
  padding: .85rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: .9rem;
  box-shadow: var(--shadow-xs);
}

.on-this-page-label {
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--ink-soft);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.on-this-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
}

.on-this-page a {
  color: var(--gold-deep);
  text-decoration: none;
}

.on-this-page a:hover {
  text-decoration: underline;
}

/* ── FAQ Accordion ── */
.cm-faq {
  margin-bottom: 2rem;
}

.faq-accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  gap: .75rem;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--gold-deep);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  transition: transform .15s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform .15s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-panel {
  padding: 0 0 .85rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.faq-panel[hidden] {
  display: none;
}

/* ── Stat Banner ── */
.cm-stats {
  margin-bottom: 2rem;
}

.stat-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #0e1d3a 0%, #162d56 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  padding: .5rem;
}

.stat-value {
  display: block;
  font-family: 'Escrow Bold Condensed', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ============================================================
   Firm pages — /about, /about-the-founder, /how-we-operate,
   /why-virtual, /book. Same navy/white/gold brand as the rest
   of the site. Each prose section pairs the SEO text with a
   "play" video of Paul (placeholder-gated until recorded).
   ============================================================ */

/* ── Section video — pairs with the written paragraph ── */
.video-section {
  margin: 2rem 0 2.5rem;
  max-width: 720px;
}
.video-section .vs-player,
.video-section .vs-coming-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0e1d3a 0%, #162d56 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.vs-coming {
  position: relative;
}
.vs-coming .vs-coming-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .92;
}
.vs-play-icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: .85;
}
.vs-coming::after {
  content: "Coming soon";
  position: absolute;
  top: .75rem;
  right: .85rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(14, 29, 58, .7);
  padding: .25rem .55rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
}
.vs-caption {
  margin: .55rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25rem .75rem;
  font-size: .9rem;
}
.vs-title { font-weight: 600; color: var(--ink); }
.vs-duration { color: var(--ink-soft); font-size: .8rem; }
.vs-soon { color: var(--ink-soft); font-size: .85rem; font-style: italic; }

/* ── How-we-operate numbered steps ── */
.steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.6rem;
}
.steps-list li {
  position: relative;
  padding: .4rem 0 .4rem 2.6rem;
  margin: .4rem 0;
  border-bottom: 1px solid var(--line);
}
.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: .35rem;
  width: 1.9rem;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e1d3a 0%, #162d56 100%);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  border-radius: 50%;
  font-size: .9rem;
}

/* ── Book page ── */
.book-hero { padding-bottom: 1.4rem; }
.book-hero .book-eyebrow {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 .5rem;
}
.book-hero .book-tagline {
  font-family: var(--serif); font-weight: 600; font-size: 1.2rem;
  color: var(--ink); margin: .6rem 0 .3rem; letter-spacing: .02em;
}
.book-hero .book-format {
  color: var(--ink-soft); font-size: .92rem; margin: .3rem 0 0;
}
.chapter-part {
  font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
  color: var(--gold-deep); margin: 1.6rem 0 .5rem;
  border-bottom: 1px solid var(--line); padding-bottom: .25rem;
}
.chapter-list {
  list-style: none; padding: 0; margin: 0 0 1rem;
  columns: 2; column-gap: 2rem;
}
.chapter-list li {
  margin: .25rem 0; break-inside: avoid; line-height: 1.45;
}
.chapter-num { color: var(--gold-deep); font-weight: 600; margin-right: .35rem; }
@media (max-width: 640px) { .chapter-list { columns: 1; } }

/* ── Book pre-order buy block ── */
.buy-block {
  margin: 2rem 0;
  padding: 1.8rem;
  background: var(--paper-soft);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.buy-head h2 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin: 0 0 .3rem; }
.buy-price { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin: 0 0 .8rem; }
.buy-format { font-size: .85rem; font-weight: 400; color: var(--ink-soft); }
.buy-status { margin: .4rem 0 1.2rem; color: var(--ink); }
.buy-launch-note { font-size: .85rem; color: var(--ink-soft); margin: 1rem 0 0; }
.buy-reserve-form { max-width: 420px; }

.buy-rails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 0;
}
.buy-rail {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-raised);
  text-align: center;
}
.buy-rail-btc { border-color: #f7931a; }
.buy-rail-disabled { opacity: .65; }
.buy-rail-head { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin: .5rem 0 .3rem; }
.buy-rail-note { font-size: .82rem; color: var(--ink-soft); margin: 0 0 .6rem; line-height: 1.45; }
.buy-btc-logo { width: 40px; height: 40px; display: block; margin: 0 auto; }
.buy-qr { display: block; margin: .4rem auto; border: 1px solid var(--line); border-radius: 4px; }
.buy-wallet {
  display: block; font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .72rem; word-break: break-all; color: var(--ink-soft);
  background: var(--paper-soft); padding: .35rem .4rem; border-radius: 3px;
  margin-top: .4rem;
}
.buy-btn {
  display: inline-block; padding: .7rem 1.2rem; margin-top: .3rem;
  background: linear-gradient(135deg, #0e1d3a 0%, #162d56 100%);
  color: #fff; text-decoration: none; border-radius: var(--radius-pill);
  font-size: .9rem; border: 1px solid var(--gold);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.buy-btn:hover { background: #162d56; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.buy-btn-disabled { pointer-events: none; opacity: .55; background: var(--ink-soft); }
@media (max-width: 640px) { .buy-rails { grid-template-columns: 1fr; } }

/* ── Ramsey credential page ── */
.ramsey-area-grid {
  list-style: none; padding: 0; margin: 1rem 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .5rem 1.2rem;
}
.ramsey-area-grid li a {
  color: var(--gold-deep); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--line); padding: .3rem 0; display: block;
}
.ramsey-area-grid li a:hover { color: var(--ink); }
.ramsey-faq { border-top: 1px solid var(--line); margin: 1rem 0; }
.ramsey-faq dt { font-weight: 600; color: var(--ink); padding: .9rem 0 .25rem; }
.ramsey-faq dd { margin: 0 0 .6rem; color: var(--ink-soft); line-height: 1.6; }
.ramsey-disclaimer {
  font-size: .8rem; color: var(--ink-soft); margin-top: 2rem;
  padding-top: 1.2rem; border-top: 1px solid var(--line); line-height: 1.55;
}
.ramsey-disclaimer a { color: var(--gold-deep); }


/* ════════════════════════════════════════════════════════════════
   MOBILE / SMALL-SCREEN PASS (2026-06-26)
   Foundations already in place: box-sizing global, -webkit-text-size-
   adjust:100%, fluid clamp() headings, auto-fit grids, flex-wrap header,
   16px inputs (no iOS focus zoom), 640px breakpoints for chat/chapter/
   buy-rails, notch safe-area insets. This block closes the remaining
   gaps: image overflow, tap-target sizing, buy-block crowding, footer
   link breathing room. Additive only — no existing rules rewritten.
   ════════════════════════════════════════════════════════════════ */

/* Responsive media safety net — any image (e.g. the book pre-order QR)
   scales to its column, never overflows. Videos already use width:100%
   + aspect-ratio in .vs-player, so scoped to img to avoid fighting it. */
img { max-width: 100%; height: auto; }

/* Cap the pre-order QR so it renders as a scannable square, not a
   column-filling blob. */
.buy-qr { max-width: 190px; }

@media (max-width: 640px) {
  /* Larger, finger-friendly tap targets on dense link lists (footer
     legal chain, map directory, Ramsey area grid). ≥44px tall. */
  .site-footer .legal { line-height: 1.85; }
  .site-footer .legal a { padding: .15rem 0; display: inline-block; }
  .map-list a,
  .ramsey-area-grid li a { padding-block: .55rem; }

  /* Buy block: trim internal padding so the BTC rail (wallet + QR) and
     the CPACharge rail breathe inside a ~280px column. Buttons ≥48px. */
  .buy-block { padding: 1.15rem; }
  .buy-rail { padding: .95rem; }
  .buy-qr { max-width: 168px; }
  .buy-btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }

  /* Book chapter headings + part rules tighten on narrow screens. */
  .chapter-part { margin-top: 1.3rem; }

  /* Hero/statement headings keep their clamp() fluid scale; just ease
     top padding so content lands sooner on a phone. */
  .desk-hero { padding-top: 1.8rem; }

  /* Stat banner: 160px min reflows to 2-up on narrow screens;
     tighten the number so a 2x2 grid reads at a glance. */
  .stat-value { font-size: 1.3rem; }
}

/* ═══ IRS Notice Library ═══ */
.notice-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: var(--transition-normal); }
.notice-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.notice-card.level-critical { border-left: 4px solid #c0392b; }
.notice-card.level-medium { border-left: 4px solid #d4a017; }
.notice-card.level-info { border-left: 4px solid #2980b9; }
.notice-type { font-size: .85rem; color: var(--muted); margin: .3rem 0; }
.notice-level { font-size: .85rem; font-weight: 600; text-transform: uppercase; }
.level-critical { color: #c0392b; }
.level-medium { color: #d4a017; }
.level-info { color: #2980b9; }
.notice-deadline { font-size: .9rem; color: #c0392b; font-weight: 600; margin: .5rem 0; }
.notices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; margin: 2rem 0; }

.notice-detail h1 { font-size: 2rem; margin-bottom: .3rem; }
.notice-meta { font-size: .9rem; color: var(--muted); margin-bottom: .5rem; }
.notice-irc { font-size: .85rem; color: var(--muted); font-family: monospace; }
.notice-human {
  font-size: 1.2rem; font-weight: 500; color: var(--ink);
  background: #f8f9fb; padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg); border-left: 4px solid var(--navy);
  margin: 1.5rem 0; line-height: 1.6;
}
.notice-urgent {
  background: #fff3e0; border: 1px solid #e65100;
  border-radius: var(--radius-lg); padding: 1rem 1.3rem;
  margin: 1.2rem 0; font-size: .95rem; line-height: 1.5;
}
.notice-urgent strong { color: #c0392b; }
.notice-faq dt { font-weight: 600; color: var(--ink); margin-top: 1.2rem; }
.notice-faq dd { margin: .3rem 0 0; color: var(--body); }
.related-notices { display: flex; gap: .6rem; flex-wrap: wrap; list-style: none; padding: 0; margin: .8rem 0; }
.related-notices li a {
  display: inline-block; background: var(--navy); color: #fff;
  padding: .4rem .9rem; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 500; text-decoration: none;
  transition: var(--transition-fast);
}
.related-notices li a:hover { background: var(--gold); color: var(--ink); }

/* Federal issue pages — same editorial chassis as regions, with a denser
   written-process rhythm and no competing navigation chrome. */
.svc-hero { border-bottom: 1px solid rgba(14, 29, 58, .14); }
.svc-kicker {
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  margin: 0 0 .7rem;
  text-transform: uppercase;
}
.svc-prose > section { scroll-margin-top: 1rem; }
.svc-list { margin: .7rem 0 1.5rem; padding-left: 1.25rem; color: var(--ink-soft); }
.svc-list li { margin: .45rem 0; padding-left: .2rem; }
.svc-limitations {
  background: color-mix(in srgb, var(--gold) 13%, white);
  border-left: 4px solid var(--gold-deep);
  margin: 2rem 0;
  padding: .2rem 1.25rem 1rem;
}
.svc-limitations h2 { font-size: 1.25rem; margin-top: 1rem; }
.svc-limitations p { margin-bottom: 0; }
.svc-secure-note { border-top: 1px solid rgba(14, 29, 58, .12); font-size: .9rem; padding-top: .8rem; }
.svc-sources { border-top: 1px solid rgba(14, 29, 58, .12); margin-top: 2rem; }
.svc-sources ul { padding-left: 1.15rem; }
.svc-sources li { margin: .4rem 0; }
.svc-chat-starter { justify-content: flex-start; padding: 0 0 .8rem; }
.common-triggers { padding-left: 1.2rem; }
.resolution-steps { padding-left: 1.2rem; }
.resolution-steps li { margin-bottom: .7rem; line-height: 1.6; }
.related-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.related-links a { font-size: .85rem; color: var(--navy); }

/* ── Blog rail (/blog) ─────────────────────────────────────────────────── */
.blog-tags { font-size: .9rem; color: var(--body); margin-bottom: 1.6rem; }
.blog-tags a { color: var(--navy); text-decoration: none; }
.blog-tags a:hover { text-decoration: underline; }
.blog-card { margin-bottom: 2.2rem; }
.blog-card h2 { margin-bottom: .2rem; }
.blog-card h2 a { color: var(--ink); text-decoration: none; }
.blog-card h2 a:hover { color: var(--navy); text-decoration: underline; }
.blog-meta { font-size: .85rem; color: var(--body); margin: .2rem 0 .5rem; }
.blog-book-ref {
  background: #f6f4ee; border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg); padding: 1rem 1.3rem;
  margin: 2rem 0 1rem; font-size: .95rem; line-height: 1.55;
}

/* AEO "answer block" — the dek above the H1. Smaller than the title, sits
   first in the DOM so it's the first prose crawlers and AI answer engines
   read: the direct answer to the article's question, before the pretty title. */
.desk-hero .blog-answer {
  font-size: .95rem; line-height: 1.6; color: var(--ink-soft);
  margin: 0 0 .9rem; max-width: 46rem;
  padding-left: .9rem; border-left: 3px solid var(--gold);
}

/* Book pull-quote — the Guide quoted as a source inside an article. */
.blog-pullquote { margin: 2rem 0; padding: 0; }
.blog-pullquote blockquote {
  margin: 0; padding: .4rem 0 .4rem 1.3rem; border-left: 4px solid var(--ink);
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; color: var(--ink);
}
.blog-pullquote blockquote p { margin: 0; }
.blog-pullquote figcaption { margin: .6rem 0 0 1.3rem; font-size: .9rem; color: var(--ink-soft); }
.blog-pullquote figcaption cite { font-style: italic; }

/* ── A-la-carte menu (/menu) — pricing tables ─────────────────────────── */
.menu-table-scroll { overflow-x: auto; margin: 1rem 0 1.4rem; }
.menu-page table { width: 100%; border-collapse: collapse; font-size: .95rem; line-height: 1.5; }
.menu-page th, .menu-page td { text-align: left; padding: .6rem .8rem; border-bottom: 1px solid var(--line, #e4e0d6); vertical-align: top; }
.menu-page th { background: var(--paper-soft, #f6f4ee); font-weight: 600; color: var(--ink); letter-spacing: .02em; font-size: .85rem; text-transform: uppercase; }
.menu-page tbody tr:last-child td { border-bottom: none; }

/* Visually hidden, screen-reader available (chat reply announcer etc.) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.chat-failover-error:empty { display: none; }
.chat-failover-error { color: #b00020; }
.read-aloud { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: .8rem 1rem; margin-top: 1rem; }
.read-aloud audio { width: 100%; margin-top: .4rem; }
/* Paul's Avatar welcome block (V1 lander) */
.v1-avatar-welcome { max-width: 720px; margin: 1.5rem auto 0; }
.v1-avatar-video { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: #000; }
.v1-avatar-caption { text-align: center; font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }
.v1-contact-chat-only { text-align: center; padding: 2rem 1rem; }
.v1-contact-alt { font-size: .9rem; color: var(--ink-soft); }

/* ===== WPA poster maps (Florida pilot — Paul directive 2026-07-16) =====
   National-parks travel-poster aesthetic: cream paper, flat washes, navy
   strokes, serif display. Stamps are links; regions are native SVG links. */
.fl-poster {
  background: #f6efdc;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 1.5rem 1rem 2.5rem;
  margin: 1.5rem 0 2rem;
}
.fl-poster-head { text-align: center; max-width: 720px; margin: 0 auto .75rem; }
.fl-poster-kicker {
  font-family: var(--display); font-size: .95rem; letter-spacing: .22em;
  color: #8e6f30; margin: 0 0 .25rem;
}
.fl-poster-note { font-family: var(--sans); font-size: .95rem; color: var(--ink-soft); margin: 0; }
.fl-map { display: block; width: 100%; max-width: 860px; height: auto; margin: 0 auto; }
.fl-neighbor { fill: #ece4cd; stroke: #d8cdaf; stroke-width: 1.5; }
.fl-state { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linejoin: round; }
.fl-region {
  stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round;
  transition: fill .15s var(--ease-out);
  cursor: pointer;
}
.fl-region-code {
  font-family: var(--display); font-weight: 700; font-size: 26px;
  fill: var(--ink); pointer-events: none; paint-order: stroke;
  stroke: #f6efdc; stroke-width: 4px; stroke-linejoin: round;
}
.fl-map a:hover .fl-region, .fl-map a:focus .fl-region,
.fl-region.is-lit { fill: var(--gold); }
.fl-map a:focus { outline: none; }
.fl-map a:focus .fl-region { stroke: var(--gold-deep); stroke-width: 3; }

.fl-stamp-sheet {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem; max-width: 1080px; margin: 2rem auto 0;
}
.fl-stamp { margin: 0; text-align: center; }
.fl-stamp > a { display: block; text-decoration: none; }
.fl-stamp .wpa-stamp {
  width: 100%; max-width: 170px; height: auto;
  filter: drop-shadow(1.5px 2.5px 0 rgba(14, 29, 58, .18));
  transform: rotate(-.6deg);
  transition: transform .18s var(--ease-out), filter .18s var(--ease-out);
}
.fl-stamp:nth-child(2n) .wpa-stamp { transform: rotate(.8deg); }
.fl-stamp:nth-child(3n) .wpa-stamp { transform: rotate(-1.2deg); }
.fl-stamp > a:hover .wpa-stamp, .fl-stamp > a:focus .wpa-stamp {
  transform: rotate(0) translateY(-3px) scale(1.04);
  filter: drop-shadow(2.5px 5px 1px rgba(14, 29, 58, .28));
}
.fl-stamp figcaption {
  font-family: var(--sans); font-size: .78rem; line-height: 1.45;
  color: var(--ink-soft); margin-top: .5rem; text-align: left;
}
.fl-stamp figcaption a { color: #8e6f30; font-weight: 600; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) {
  .fl-stamp .wpa-stamp, .fl-region { transition: none; }
  .fl-stamp > a:hover .wpa-stamp { transform: rotate(0); }
}

/* ===== Art Bell national map treatment (Mission Control spec 2026-07-15) ===== */
.artbell { text-align: center; margin: 1.5rem 0 2rem; }
.artbell-star-label {
  font-family: var(--display); font-size: .9rem; letter-spacing: .25em;
  color: var(--gold-deep); margin: 0 0 .2rem;
}
.artbell-main {
  font-family: var(--display); font-size: 2rem; font-weight: 700;
  color: var(--ink); text-decoration: none; letter-spacing: .04em;
}
.artbell-main:hover { color: var(--gold-deep); }
.artbell-regions {
  display: flex; justify-content: space-between; gap: 1rem;
  max-width: 900px; margin: .5rem auto 0; flex-wrap: wrap;
}
.artbell-region {
  border: 2px solid var(--ink); border-radius: var(--radius-md);
  padding: .6rem 1.2rem; background: #f6efdc; text-align: center;
}
.artbell-region--west { margin-right: auto; }
.artbell-region--east { margin-left: auto; }
.artbell-region-label {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 .15rem;
}
.artbell-region-phone { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.artbell-region-phone:hover { color: var(--gold-deep); }
.artbell-story { font-family: var(--display); font-style: italic; color: var(--ink-soft); margin: .75rem 0 0; }
@media (max-width: 640px) {
  .artbell-regions { flex-direction: column; }
  .artbell-region--west, .artbell-region--east { margin: 0 auto; width: 100%; max-width: 320px; }
}

/* Rockies divider — the Art Bell split */
.rockies-line { fill: none; stroke: var(--gold-deep); stroke-width: 2; stroke-dasharray: 6 4; opacity: .8; }
.rockies-peak { fill: #b8a476; stroke: var(--ink); stroke-width: .8; }

/* Corridor story kickers + Home Base plaque */
.hw-story {
  font-family: var(--display); font-size: 1.15rem; font-style: italic;
  color: var(--gold-deep); border-left: 3px solid var(--gold);
  padding-left: 1rem; margin: 0 0 1rem;
}
.road-story { display: block; font-size: .8rem; font-style: italic; color: var(--ink-soft); margin-top: .3rem; }
.hw-homebase { max-width: 360px; margin: 1rem auto; }

/* West-of-the-Rockies regional map */
.west-map-section { max-width: 560px; margin: 1rem auto; }
.west-map { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fbf8ef; }
.west-map-dial { max-width: 320px; margin: .75rem auto; }
.west-map-desks { columns: 2; font-size: .9rem; }
@media (max-width: 560px) { .west-map-desks { columns: 1; } }

/* Per-desk map figure (image-SEO + accessibility metadata layer) */
.desk-map-figure { margin: 1.5rem 0; }
.desk-map-intro { font-family: var(--sans); color: var(--ink-soft); font-size: .95rem; }
.desk-map-figure figcaption { font-family: var(--sans); font-size: .82rem; color: var(--ink-soft); margin-top: .4rem; }

/* Area-code story intros (swarm handoff, Paul: story per location) */
.ac-story {
  font-family: var(--display); font-style: italic; color: var(--ink-soft);
  border-left: 3px solid var(--gold); padding-left: 1rem; margin: 1rem 0;
}

/* I-95 Home Base poster: seaboard + shield stamp + coastal stamp rail */
.i95-poster-body { max-width: 1080px; margin: 0 auto; }
.i95-shield-stamp {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem;
  align-items: start; margin-bottom: 1.5rem;
}
.i95-seaboard { background: #fbf8ef; border: 1px solid var(--line); border-radius: var(--radius-lg); max-height: 560px; }
.i95-road-casing { fill: none; stroke: #fff; stroke-width: 6; stroke-linejoin: round; stroke-linecap: round; }
.i95-road { fill: none; stroke: #bf2233; stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.i95-rail {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 700px) { .i95-shield-stamp { grid-template-columns: 1fr; } }

/* State posters (WY/UT/MT/ID whole-state + IA insets) */
.sp-body { display: grid; grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; gap: 1.25rem; }
.sp-body.has-stamp { grid-template-columns: 1fr 200px; align-items: center; }
.sp-map { width: 100%; height: auto; background: #fbf8ef; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.sp-neighbor { fill: #ece4cd; stroke: #d8cdaf; stroke-width: 1; }
.sp-state { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round; }
.sp-state.is-current { fill: #c9d9e8; stroke-width: 2.2; }
.sp-region { fill: #ece4cd; stroke: var(--ink); stroke-width: .9; cursor: pointer; transition: fill .15s var(--ease-out); }
.sp-region.is-current { fill: var(--gold); }
.sp-map a:hover .sp-region, .sp-map a:focus .sp-region { fill: #c9d9e8; }
.sp-map a:hover .sp-region.is-current, .sp-map a:focus .sp-region.is-current { fill: var(--gold-deep); }
.sp-region-code { font-size: 13px; stroke-width: 3px; }
.sp-stamp { max-width: 200px; }
@media (max-width: 640px) { .sp-body.has-stamp { grid-template-columns: 1fr; } .sp-stamp { margin: 0 auto; } }

/* Static map figure on FL area-code pages (exported map file) */
.ac-map-figure { max-width: 560px; margin: 1.5rem auto; }
.ac-map-figure img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }

/* ===== Lander two-tone proof (Paul directive 2026-07-16) =====
   Warm ivory paper + navy nameplate band + concierge hero card. Scoped to
   body.v1 (the lander) — interior pages unchanged until the direction is
   ratified. The enemy: cookie-cutter tax-shop white. */
body.v1 { background: #fbf8ef; }

/* Nameplate — full-bleed navy band, gold double rules, Escrow reversed */
.v1-nameplate {
  width: 100vw; margin-left: calc(50% - 50vw);
  background: var(--ink);
  border-top: 4px double var(--gold);
  border-bottom: 4px double var(--gold);
  padding: 2.2rem 1.25rem 1.4rem;
  text-align: center;
  margin-bottom: 2.4rem;
}
.v1-nameplate .v1-masthead { margin-bottom: 0; overflow: visible; }
.v1-nameplate .v1-wordmark { color: #fbf8ef; }
.v1-nameplate .v1-reg { color: var(--gold); }
.v1-nameplate .v1-sub { color: #cfd6e4; }
.v1-nameplate .v1-sub-3 { color: var(--gold); }
.v1-nameplate-phone {
  margin: 1rem 0 0; font-family: var(--sans); font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: #8fa0bd;
}
.v1-nameplate-phone a { color: #cfd6e4; text-decoration: none; font-weight: 600; }
.v1-nameplate-phone a:hover { color: var(--gold); }

/* Concierge — the hero card: ivory panel, navy header bar, gold accents */
.v1-concierge {
  max-width: 780px; margin: 0 auto 2.5rem;
  background: #fffdf7;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.v1-concierge-head {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: var(--ink); color: #fbf8ef;
  padding: .7rem 1.1rem;
}
.v1-concierge-title {
  font-family: var(--display); font-size: 1.02rem; letter-spacing: .06em;
}
.v1-concierge-status {
  margin-left: auto; font-family: var(--sans); font-size: .74rem;
  letter-spacing: .08em; text-transform: uppercase; color: #b9d4a9;
}
.v1-presence {
  width: 9px; height: 9px; border-radius: 50%;
  background: #7bd88a; box-shadow: 0 0 0 0 rgba(123, 216, 138, .6);
  animation: v1pulse 2.4s infinite;
}
@keyframes v1pulse {
  0% { box-shadow: 0 0 0 0 rgba(123, 216, 138, .55); }
  70% { box-shadow: 0 0 0 8px rgba(123, 216, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(123, 216, 138, 0); }
}
@media (prefers-reduced-motion: reduce) { .v1-presence { animation: none; } }

/* Paul's introduction inside the card */
.v1-meet { margin: 0; padding: 1.1rem 1.1rem 0; }
.v1-meet .v1-avatar-video { width: 100%; border-radius: var(--radius-md); display: block; }
.v1-meet figcaption {
  font-family: var(--sans); font-size: .8rem; color: var(--ink-soft);
  margin-top: .5rem; text-align: center;
}

.v1-concierge .v1-chat-intro { margin: 1.2rem 1.1rem .4rem; }
.v1-concierge .v1-chat-window { margin: 0 1.1rem 1.1rem; }

/* Conversation-starter chips */
.v1-chips {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  padding: .4rem 1.1rem .9rem;
}
.v1-chip {
  font-family: var(--sans); font-size: .84rem; font-weight: 600;
  color: var(--ink); background: #fbf8ef;
  border: 1.5px solid var(--ink); border-radius: var(--radius-pill);
  padding: .45rem .95rem; cursor: pointer;
  transition: all var(--transition-fast);
}
.v1-chip:hover, .v1-chip:focus-visible {
  background: var(--ink); color: #fbf8ef; border-color: var(--gold);
  transform: translateY(-1px);
}
@media (max-width: 560px) {
  .v1-concierge-status { display: none; }
  .v1-chips { padding-bottom: .7rem; }
}

/* Nameplate refinements (render-check 2026-07-16): sit flush at the page top,
   and size the credential line to the band — it was overflowing the viewport
   at desktop widths (sub-3's lander clamp was tuned for the old white layout). */
body.v1 .v1-page { padding-top: 0; }
.v1-nameplate { margin-top: 0; }
.v1-nameplate .v1-sub-3 {
  font-size: clamp(.95rem, 2.1vw, 1.45rem);
  letter-spacing: .16em;
  margin-top: 1.1rem;
}
.v1-nameplate .v1-sub-1, .v1-nameplate .v1-sub-2 {
  font-size: clamp(1.1rem, 2.9vw, 1.9rem);
}

/* Mobile pass (375px render-check): the 100vw band + nowrap credential line
   caused horizontal scroll. Band bleed keeps working; page never side-scrolls. */
body.v1 { overflow-x: hidden; }
@media (max-width: 700px) {
  .v1-nameplate .v1-sub-3 .nb { white-space: normal; }
  .v1-nameplate .v1-sub-3 { letter-spacing: .1em; line-height: 1.4; }
  .v1-concierge-title { font-size: .92rem; }
}

/* Mobile pass 2 (375px): .v1-page is a flex column, so the concierge card was
   sizing to its content's min width and overflowing. Pin the card to the
   container and let the video shrink. */
.v1-concierge { width: 100%; min-width: 0; }
.v1-concierge > * { min-width: 0; }
.v1-meet .v1-avatar-video { max-width: 100%; height: auto; }
.v1-concierge .v1-chat-window { max-width: none; }

/* Band bleed via transform (the margin-left:calc(50%-50vw) trick mis-centers
   inside the flex column — visible 10px sliver at 375px). */
.v1-nameplate {
  margin-left: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Final band rule: .v1-page's flex centering already centers the 100vw band
   (symmetric cross-axis overflow) — no offset tricks needed at all. */
.v1-nameplate { left: auto; transform: none; margin-left: 0; }

/* Full-screen fix (Paul, live report): inside the concierge card the chat
   window had width:100% PLUS 1.1rem side margins → overflowed the card and
   clipped Send at wide viewports. width:auto fills minus margins. */
.v1-concierge .v1-chat-window { width: auto; }

/* Center the intro block inside the concierge card (Paul, live report):
   the card-scoped margin override had dropped the auto centering, pinning
   the 640px intro block left inside the 780px card. */
.v1-concierge .v1-chat-intro { margin-left: auto; margin-right: auto; padding: 0 1.1rem; }

/* ===== Live-QA fixes (Paul 2026-07-16 round 2) ===== */
/* Art Bell plaques were clipping between ~815-1280px: the flex row exceeded
   the viewport. Stack to column much earlier — plaques above/below the map. */
@media (max-width: 1280px) {
  .front-door-map-row { flex-direction: column; gap: .6rem; }
  .front-door-map-row .v1-region-box { width: auto; max-width: 420px; }
}
/* Stat banner ("By the Numbers") could exceed its container: minmax(160px)
   refuses to shrink below 160 and the banner has its own padding. */
.stat-banner { grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); max-width: 100%; box-sizing: border-box; }
.cm-stats { max-width: 100%; overflow-x: clip; }

/* Chat links (model bubbles) — served as tappable gold links */
/* Concierge links are CLASSIC HYPERLINK BLUE (Paul 2026-07-19): guests must
   instantly recognize "that's a link I can tap" — gold read as decoration. */
.chat-msg.model a { color: #1558c9; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.chat-msg.model a:visited { color: #5a3fb5; }
.chat-msg.model a:hover { color: #0e3f96; }

/* ============================================================
   SITE MASTHEAD — the marquis brass plate as the universal
   template header (Paul overnight directive 2026-07-17): the
   v1 nameplate language at interior scale. Navy band, gold
   double rules, reversed ivory type, quiet phone. Non-sticky —
   it is a masthead, not a navbar; the chat fab is the nav.
   ============================================================ */
.site-masthead {
  background: var(--ink);
  border-top: 4px double var(--gold);
  border-bottom: 4px double var(--gold);
  padding: 1.5rem 1.25rem 1rem;
  text-align: center;
}
.sm-wordmark {
  font-family: var(--display);
  font-weight: 700;
  white-space: nowrap;              /* the logo is ONE line, always */
  font-size: clamp(1.5rem, 6.5vw, 2.9rem);
  letter-spacing: .05em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fbf8ef;
  text-decoration: none;
  display: inline-block;
}
.sm-wordmark:hover { color: #fff; }
.sm-reg { font-size: .32em; vertical-align: super; letter-spacing: 0; color: var(--gold); }
.sm-sub {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  margin: .35rem 0 0;
  line-height: 1.25;
  font-size: clamp(.82rem, 2.6vw, 1.05rem);
  letter-spacing: .08em;
  color: #cfd6e4;
}
.sm-dot { margin: 0 .45em; color: var(--gold); }
.sm-sub-ea { color: var(--gold); font-size: clamp(.72rem, 2.3vw, .92rem); letter-spacing: .1em; }
.sm-phone {
  margin: .7rem 0 0;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8fa0bd;
}
.sm-phone a { color: #cfd6e4; text-decoration: none; font-weight: 600; white-space: nowrap; }
.sm-phone a:hover { color: var(--gold); }
/* 2026-08-23 — Consultation | Click Here: the ONE green button (masthead,
   every static page). Green appears nowhere else in the scheme — navy/gold/
   paper only — so it is unmistakably THE action. */
.sm-consult-row { margin: 1rem 0 0; }
.sm-consult-row .consult-cta {
  display: inline-block; padding: .8rem 1.9rem;
  background: #1F8A4C; color: #fff; text-decoration: none;
  font-family: var(--serif); font-weight: 700; font-size: 1rem; letter-spacing: .03em;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(31,138,76,.35), inset 0 1px 0 rgba(255,255,255,.18);
  transition: background .15s ease, transform .12s ease;
}
.sm-consult-row .consult-cta:hover { background: #187043; transform: translateY(-1px); color: #fff; }
.sm-consult-row .consult-cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }


/* National stamp sheet (firm pages) — rides fl-stamp-sheet styling */
.national-stamp-sheet { margin: 3rem auto; text-align: center; }
.stamp-sheet-heading {
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: .08em; font-size: clamp(1.2rem, 3.4vw, 1.7rem);
  color: var(--ink); margin-bottom: 1.2rem;
}
.stamp-sheet-note { font-size: .9rem; color: var(--ink-soft); margin-top: 1rem; }

/* Footer service-regions line — the 13-region lattice on every page */
.ftr-regions { font-size: .82rem; color: var(--ink-soft); margin: .6rem 0; line-height: 1.9; }
.ftr-regions-label { font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .72rem; }
.ftr-regions a { color: var(--ink-soft); text-decoration: none; white-space: nowrap; }
.ftr-regions a:hover { color: var(--gold-deep); text-decoration: underline; }

/* /regions hub — card grid in the nameplate language */
.region-hub { margin: 1rem auto 2.5rem; }
.region-hub-h2 { font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: 1.15rem; margin: 2rem 0 1rem; color: var(--ink); }
.region-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.region-card {
  display: block; background: var(--paper-raised); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 1.1rem 1.2rem; text-decoration: none;
  box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.region-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.region-card-name { display: block; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.region-card-sub { display: block; font-size: .85rem; color: var(--ink-soft); margin-top: .3rem; line-height: 1.5; }

/* Florida Beaches hub — region · number · beach list rows */
.beach-grid { list-style: none; padding: 0; margin: 1.5rem 0; }
.beach-row { padding: .9rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: .2rem 1rem; align-items: baseline; }
.beach-region { font-family: var(--display); font-weight: 700; color: var(--ink); text-decoration: none; }
.beach-region:hover { color: var(--gold-deep); }
.beach-num { font-weight: 600; white-space: nowrap; }
.beach-num a { color: var(--ink); text-decoration: none; }
.beach-list { grid-column: 1 / -1; color: var(--ink-soft); font-size: .92rem; }

/* 2026-08-06 notice decoders */
.notice-decoder { border-left: 4px solid #8e6f30; background: #fdfaf2; padding: 1rem 1.25rem; margin: 1.25rem 0; border-radius: 4px; }
.notice-decoder .decoder-kicker { color: #8e6f30; font-weight: 700; font-size: .8rem; letter-spacing: .1em; margin-bottom: .4rem; }
.notice-decoder .decoder-book { font-size: .92rem; margin-top: .6rem; }

/* Uniform blue oval buttons system-wide (Paul 2026-08-16) — all oval CTAs one blue, one font */
.btn, button[type="submit"], button[type="button"], [role="button"],
.call-cta, .chat-fab, .lander-chat-button, .genesis-actions button,
.v1-form button[type="submit"], .chat-form .chat-sendbtn, .chat-upload-submit {
  background: #0e1d3a !important;
  color: #fff !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  border: 0 !important;
  letter-spacing: .02em !important;
}
.btn:hover, button[type="submit"]:hover, button[type="button"]:hover, [role="button"]:hover,
.call-cta:hover, .chat-fab:hover, .lander-chat-button:hover, .genesis-actions button:hover,
.v1-form button[type="submit"]:hover, .chat-form .chat-sendbtn:hover, .chat-upload-submit:hover {
  background: #162d56 !important;
  color: #fff !important;
  transform: translateY(-1px);
}
