/* fbo.com fidelity build — AUTHORITATIVE palette pulled straight from the Elementor
   Default Kit's system_colors in the 2026-07-17 ManageWP SQL backup (the real build
   Json did for the client, confirmed by matching widget IDs against the Jan 2026
   Wayback snapshot): Primary #203a4f (deep navy — supersedes the slate-gray guess
   from an earlier pass), Accent #C8A450 (gold), Text #252830. This is measured, not
   inferred — do not reintroduce off-kit values. */
:root {
  --ink: #252830;
  --ink-soft: #4a4d54;
  --paper: #ffffff;
  --paper-warm: #faf8f4;
  /* Ledger wash for section.alt (elevate 2026-09-02: flat --paper-warm fill
     failed "no dead-flat colour bands"). Two mid stops of the same warm hue
     as --paper-warm, never a flat fill. */
  --paper-warm-wash-a: #fbf9f5;
  --paper-warm-wash-b: #f5f0e6;
  --dark: #203a4f;
  --gold: #C8A450;
  --gold-light: #A28139;
  /* --gold at 2.4:1 on white fails WCAG AA for text (needs 4.5:1) — this is the
     darkened, text-safe variant for eyebrows/kickers/labels/links on light paper.
     ~5.0:1 on #ffffff. Keep --gold for backgrounds/borders/decorative icons. */
  --gold-text: #8C6A2E;
  /* --gold-ink (elevate 2026-09-02, approval sheet: 45 fails, all footer .label
     "Phone:"/"Email:"/"Business Address:" in --gold-light at 4.19-4.35:1 against
     the footer's dark gradient stops, needs 4.5). Ledger rule: gold is the seam,
     not the ink — any gold under 24px carrying text gets its own contrast-safe
     token instead of borrowing --gold-light (that value is darkened FOR PAPER,
     not lightened for a dark ground, so it under-shoots here). Reuses --gold
     itself: 6.7:1 against the footer's darkest stop (#1f2229), same hue, no new
     hex invented. */
  --gold-ink: var(--gold);
  --line: #e2e6ea;
  --paper-header-start: #fffdf8;
  --paper-header-end: #faf6ec;
  --dark-hover: #23262a;
  --footer-ink: #d9d3c6;
  --footer-ink-soft: #a49c88;
  --on-dark: #fff;
  --quote-hero-end: #f7f1e2;
  --dark-gradient-start: #24425a;
  --dark-gradient-end: #1a2f40;
  /* Fonts — mapped selector-by-selector from the live elementor-kit-5 (post-5.css:
     primary=Montserrat/600, secondary=Montserrat/400, text=Montserrat/400,
     accent=Poppins/500) plus page-level overrides in post-44.css (testimonial-name
     =Archivo/800, rounded to 700 — the house weight ceiling — low-impact single
     label) and the kit wrapper's own fallback (Nunito Sans/400, invisible in
     practice — every real widget is overridden to Montserrat/Poppins/Archivo). */
  --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-text: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-accent: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-name: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  /* Body is Montserrat on live (measured 18/27, 2026-09-10); Nunito Sans stays
     loaded for the few places live applies it. */
  --font-base: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  /* kept for any stray reference; both now resolve through the mapping above */
  --font-serif: var(--font-heading);
  --font-sans: var(--font-text);
  /* Containers measured off live fbo.com 2026-09-10: boxed 1260 with 10px
     gutters at 1280 (1180/50 read narrow beside it, Json: "wordpress is better"). */
  --max: 1260px;
  /* gold band — measured live 2026-08-21 from post-44.css's accordion-title
     gradient (linear-gradient(180deg,#C09B45F5 0%,#A28139EB 100%)) and its
     motion-layer highlight (#F6C65D40). --gold/--gold-light stay as-is (used
     everywhere for text/icons); --gold-deep + --gold-highlight are new, for
     the band and the accordion-title gradient only. */
  --gold-deep: #C09B45;
  --gold-highlight: #F6C65D;

  /* Elevation primitives (Chrome Kit v2, 2026-09-01): cast + ring replace a
     border for depth. ink-tinted, never black. */
  --cast-2: color-mix(in oklch, var(--ink) 2%, transparent);
  --cast-4: color-mix(in oklch, var(--ink) 4%, transparent);
  --cast-6: color-mix(in oklch, var(--ink) 6%, transparent);
  --ring: 0 0 0 0.75px var(--cast-4);
  --elevation-1: var(--ring), 0 0.5px 0.5px var(--cast-4), 0 1px 3px var(--cast-4);
  --elevation-2: var(--ring), 0 6px 16px var(--cast-6), 0 2px 6px var(--cast-4);
  --radius-card: 10px;
}

* { box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1200px) { .wrap { padding: 0 10px; } }

/* skip link */
.skip-link {
  /* off-canvas via clip, not left:-999px — keeps geometry inside the
     viewport so overflow/gutter tooling reads true (qa-shots false-FAIL fix) */
  position: absolute; left: 24px; top: 24px;
  clip-path: inset(50%); overflow: hidden; width: 1px; height: 1px;
  background: var(--gold); color: var(--on-dark); padding: 12px 20px; z-index: 200;
}
.skip-link:focus { clip-path: none; width: auto; height: auto; }

/* gold band — sits above the header in normal flow (site-header is sticky,
   not fixed, so no spacer/offset math needed: the band scrolls away with the
   rest of the page and the header lands flush at top:0, same as live's
   distinguished gold top edge). Horizontal gradient, lighter center — never
   a flat fill (house law). */
.gold-band {
  height: 8px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-highlight) 50%, var(--gold-light) 100%);
}
@media (max-width: 639px) { .gold-band { height: 5px; } }

/* header — matches the snapshot: gradient surface, wide horizontal logo lockup
   (the real header logo is a 2560x1254 image, not a small corner mark) */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, var(--paper-header-start) 0%, var(--paper-header-end) 100%);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: 96px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 64px; width: auto; }
@media (min-width: 640px) { .brand img { height: 78px; } }

.header-actions { display: flex; align-items: center; gap: .75rem; }
/* header phone (elevate 2026-09-02: "a way to act in the header" — tel:0
   cta:0). Icon-only 44px control at mobile widths, beside the menu button;
   gains the number in the desktop nav, gold-seam styling matching the
   existing nav-desktop underline treatment. */
.header-phone {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 4px;
  color: var(--gold-text); text-decoration: none; flex: none;
  transition: border-color .2s ease, color .2s ease;
}
.header-phone:hover, .header-phone:focus-visible { border-color: var(--gold); color: var(--gold-ink); }
.header-phone-num { display: none; }
.nav-desktop { display: none; }
/* Direct child only — a descendant `ul` would also match the mobile drawer's
   list if it were ever nested here, and lay it out as a wrapping row. */
/* MENUS.md law 1: labels never wrap — nowrap on links, baseline-aligned row;
   stepped gap compression at the tight 900-1040px band before drawer collapse. */
.nav-desktop > ul { list-style: none; display: flex; flex-wrap: nowrap; align-items: baseline; gap: 2.2rem; margin: 0; padding: 0; }
@media (min-width: 900px) and (max-width: 1040px) { .nav-desktop > ul { gap: 1.3rem; } }
.nav-desktop a {
  position: relative;
  white-space: nowrap;
  font-family: var(--font-accent);
  text-decoration: none; font-size: .85rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink); font-weight: 600;
  padding: 6px 0; border-bottom: 2px solid transparent;
  display: inline-flex; align-items: center; min-height: 44px; /* perception floor */
}
/* pop-kit floor: gold underline grows in from the left on hover/focus,
   transform-only (no lifts, no shadows) */
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.nav-desktop a:hover::after, .nav-desktop a:focus-visible::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .nav-desktop a::after { transition: none; }
}

/* mobile menu button — hamburger morphs to X off aria-expanded (the real
   open state; no body class to drift out of sync with) */
.menu-btn {
  display: flex; position: relative;
  width: 44px; height: 44px; border: 1px solid var(--line); background: none;
  border-radius: 4px; cursor: pointer; padding: 0;
}
.menu-btn-line {
  position: absolute; left: 11px; width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .35s ease, opacity .2s ease, top .35s ease;
}
.menu-btn-line:nth-child(1) { top: 15px; }
.menu-btn-line:nth-child(2) { top: 21px; }
.menu-btn-line:nth-child(3) { top: 27px; }
#nav-toggle[aria-expanded="true"] .menu-btn-line:nth-child(1) { top: 21px; transform: rotate(45deg); }
#nav-toggle[aria-expanded="true"] .menu-btn-line:nth-child(2) { opacity: 0; }
#nav-toggle[aria-expanded="true"] .menu-btn-line:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* — Chrome Kit v2 drawer (elevate 2026-09-02) —
   A native <dialog>, not a hand-rolled full-screen div: showModal() gives a
   focus trap, Escape-close and top-layer inert-behind for free, and sizing
   to 100dvh means it can never run longer or shorter than the viewport (the
   prior fault: a 3,070px black sheet with 1,500px of dead space at 390).
   Ledger register on the client's own kit: paper ground, one gold seam,
   sentence-case Montserrat, the current page marked by a hairline under it
   — never a recolored word. Contact zone sits directly under the list;
   nothing else is on this panel. */
.nav-mobile {
  position: fixed; inset: 0; margin: 0; padding: 0;
  width: 100vw; height: 100dvh; max-width: none; max-height: none;
  border: none; color: var(--ink);
  background: var(--paper);
  overflow-y: auto; overflow-x: hidden;
}
.nav-mobile::backdrop { background: color-mix(in oklch, var(--ink) 35%, transparent); }
@media (prefers-reduced-motion: no-preference) {
  .nav-mobile {
    opacity: 0;
    transition: opacity .3s ease, display .3s allow-discrete, overlay .3s allow-discrete;
  }
  .nav-mobile[open] { opacity: 1; }
  @starting-style { .nav-mobile[open] { opacity: 0; } }
  .nav-mobile::backdrop {
    opacity: 0;
    transition: opacity .3s ease, display .3s allow-discrete, overlay .3s allow-discrete;
  }
  .nav-mobile[open]::backdrop { opacity: 1; }
  @starting-style { .nav-mobile[open]::backdrop { opacity: 0; } }
}
.nav-mobile-seam {
  position: sticky; top: 0; z-index: 1; height: 6px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-highlight) 50%, var(--gold-light) 100%);
}
.nav-mobile-close {
  position: absolute; top: 18px; right: 18px; z-index: 5;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 50%; color: var(--ink-soft); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-mobile-close:hover, .nav-mobile-close:focus-visible {
  background: var(--dark); color: var(--on-dark); border-color: var(--dark);
}
.nav-mobile-brand {
  position: absolute; top: 22px; left: 24px; z-index: 5;
  display: block; line-height: 0;
}
.nav-mobile-brand img { width: 150px; height: auto; }
.nav-mobile-inner {
  min-height: calc(100dvh - 6px);
  max-width: 26rem; margin-inline: auto;
  padding: 7rem 24px 2.5rem; display: flex; flex-direction: column;
}
.nav-mobile nav ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile nav li:first-child a { border-top: 1px solid var(--line); }
/* One line, one meaning (DESIGN-RULES.md): the last item's own bottom rule
   and the contact zone's top rule would land back-to-back as a doubled
   hairline. The zone boundary wins; the last item skips its own. */
.nav-mobile nav li:last-child a { border-bottom: none; }
.nav-mobile nav a {
  display: flex; align-items: center; min-height: 56px;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 28px; letter-spacing: 0; text-transform: none;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
}
.nav-mobile nav a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--gold);
}
.nav-mobile nav a:hover, .nav-mobile nav a:focus-visible { color: var(--gold-text); }

.nav-mobile-foot {
  /* auto, not a fixed gap: the panel is exactly one viewport tall, so a fixed
     margin left a dead field under the contact zone on tall phones. */
  margin-top: auto; padding-top: 1.75rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .35rem;
  font-family: var(--font-text); font-size: 1rem;
}
.nav-mobile-foot a { color: var(--ink); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.nav-mobile-foot a:hover, .nav-mobile-foot a:focus-visible { color: var(--gold-text); }
.nav-mobile-address { margin: .35rem 0 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }

/* Tablet (the drawer runs to 899px): a 26rem column pinned top-and-bottom
   leaves a field of nothing through the middle on a 1024-tall iPad. Group the
   list and the contact zone in the optical centre instead. */
@media (min-width: 600px) {
  .nav-mobile-inner { justify-content: center; padding-block: 6rem 3rem; }
  .nav-mobile-foot { margin-top: 3rem; }
}


@media (prefers-reduced-motion: reduce) {
  .menu-btn-line, .nav-mobile nav a, .nav-mobile-close { transition: none; }
}

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .menu-btn { display: none; }
  .header-phone { width: auto; height: auto; min-height: 44px; padding: 6px 0; border: none; border-bottom: 2px solid transparent; border-radius: 0; }
  .header-phone:hover, .header-phone:focus-visible { border-bottom-color: var(--gold); }
  .header-phone-num {
    display: inline; font-family: var(--font-accent); font-size: .85rem;
    letter-spacing: .04em; font-weight: 600;
  }
}

/* quote hero — the snapshot's real homepage opener is a testimonial/pull-quote
   widget (decorative opening-quote glyph + big paragraph + Richard's round photo
   "aside", linking to Meet The Founder), not a full-bleed photo hero. That photo
   hero was my invention on the first pass; removed. */
/* Restored 2026-08-21: fidelity check against the live rebuild (post-44.css,
   .elementor-element-590a35aa/295f37ae/a48895f) showed the real opener IS a
   two-column row — dark navy-gradient band, text at 66%, a real office photo
   (FBO-20-2, Christopher Brown Photography) filling the remaining 33% panel —
   not the flat all-paper testimonial the note above settled for. Photo's
   back; the "not a full-bleed hero" call stays right, it's a side panel. */
.quote-hero { background: linear-gradient(160deg, var(--dark-gradient-start) 0%, var(--dark-gradient-end) 100%); padding: 0; }
.quote-hero-row { display: flex; flex-direction: column; padding: 0; max-width: none; }
.quote-hero-text { padding: 3.25rem 1.5rem 3.5rem; width: 100%; }
/* No forced landscape on a portrait: <picture> computes as a block in Safari,
   so aspect-ratio applied there and object-fit cropped Richard's head off on
   iPhone while Chromium (inline picture) looked fine (2026-09-15). The photo
   sets its own height on mobile; the focal point stays high as a safety net. */
.quote-hero-photo { display: block; width: 100%; margin: 0; order: -1; }
.quote-hero-photo img { width: 100%; height: auto; object-fit: cover; object-position: 50% 22%; display: block; }
@media (min-width: 900px) {
  .quote-hero-row { flex-direction: row-reverse; align-items: stretch; max-width: 1400px; margin: 0 auto; }
  .quote-hero-text { width: 66%; padding: 4.5rem 4rem 4.5rem 3rem; display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .quote-hero-text .testimonial { width: 100%; max-width: 688px; }
  .quote-hero-photo { width: 34%; aspect-ratio: auto; min-height: 560px; order: 0; }
  .testimonial blockquote { text-align: left; hyphens: manual; }
}
/* identity kicker + CTA — answers who-FBO-is + how-to-reach-them above the
   opening quote so the first screen isn't just a testimonial */
.hero-identity {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2.25rem; padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.hero-kicker {
  font-family: var(--font-text); font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--on-dark); margin: 0; max-width: 46ch;
}
.btn-hero { flex: none; }

.quote-hero .quote-mark {
  font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; color: var(--gold-highlight);
  margin: 0 0 .5rem;
}
.testimonial { display: flex; flex-direction: column; gap: 2rem; }
.testimonial blockquote {
  font-family: var(--font-text); font-weight: 400; font-style: normal;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.3rem); line-height: 1.7; color: var(--on-dark);
  /* 74ch ran ~95 characters a line against the photo edge; 62ch is a readable
     measure and leaves the panel some air (2026-09-15, Json: reads clunky,
     crowding the photo). */
  margin: 0; max-width: 62ch;
}
.testimonial blockquote p { margin: 0 0 1.15em; }
.testimonial blockquote p:last-child { margin-bottom: 0; }
.quote-more summary {
  font-family: var(--font-accent);
  cursor: pointer; list-style: none; color: var(--gold-text); font-weight: 700;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  margin-top: -.5rem; min-height: 44px; display: flex; align-items: center;
}
.quote-more summary::-webkit-details-marker { display: none; }
.quote-more summary:hover, .quote-more summary:focus-visible { color: var(--gold-ink); }
.quote-more[open] summary { margin-bottom: .5rem; }
.quote-more p {
  font-family: var(--font-text); font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.55; color: var(--ink-soft); max-width: 74ch; margin: 0;
}
.testimonial-meta { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.testimonial-meta img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
/* body-size token, not .85rem — sibling of the full-height qa-photo-band
   image section (elevate 2026-09-02: oversized media with small text). */
.testimonial-meta .name { font-family: var(--font-name); font-weight: 700; letter-spacing: .04em; font-size: 1rem; text-transform: uppercase; color: var(--on-dark); display: block; }
/* body-size token, not .78rem — same media-sibling fault as .testimonial-meta
   .name above. */
.testimonial-meta .role { font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-text); display: block; }

.page-hero {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0 2.5rem;
}
.page-hero h1 {
  font-family: var(--font-heading); font-weight: 600; margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
.page-hero .kicker {
  font-family: var(--font-accent);
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  color: var(--gold-text); font-weight: 600; margin: 0 0 .6rem;
}

/* sections */
section { padding: 4rem 0; }
section.alt { background: linear-gradient(135deg, var(--paper-warm-wash-a) 0%, var(--paper-warm-wash-b) 100%); }

/* ---------- ContinuityThread ----------
   Signature moment (fbo-site only): a hairline lineage line threading down
   the home page, aligned to the wrap's left edge, with a generation-marker
   tick at each section start. Pure CSS — border + offset markers, no JS.
   Structural navy (--dark) at low opacity; hidden under 768px where the
   single-column stack makes a side thread noise, not signal. */
.continuity-thread { position: relative; }
.continuity-thread::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc((100% - var(--max)) / 2 + 24px);
  width: 1px;
  background: var(--dark);
  opacity: .12;
  z-index: 0;
}
.continuity-thread > section { position: relative; z-index: 1; }
.continuity-thread > section::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100% - var(--max)) / 2 + 24px);
  transform: translate(-50%, -50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--dark);
  opacity: .4;
  z-index: 2;
}
.continuity-thread > section.alt::before { background: var(--paper-warm); }
@media (max-width: 768px) {
  .continuity-thread::after, .continuity-thread > section::before { display: none; }
}
/* ---------- DocketList ----------
   Hairline rows, no numerals — sitewide law (elevate 2026-09-02): "Numbered
   lists sitewide lose mono numerals; hairline rows instead." Was a
   mono-leading-zero boardroom docket; the numeral read as a spec-strip move
   on a page about trust, not the reverse — plain hairline rows in the body
   face carry it better. Used on Services (the only numbered list sitewide). */
.docket-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.docket-list li {
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}
/* Services spreads: the rows flow in two columns from 640px so a 14-row list
   sits seven deep, not fourteen (the tall lopsided columns were the fault). */
.docket-list--two { display: grid; column-gap: clamp(1.5rem, 3vw, 2.75rem); }
@media (min-width: 640px) { .docket-list--two { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.docket-item { color: var(--ink); font-size: 1rem; font-family: var(--font-text); }
h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 1.1rem;
}
h2 .kicker, .eyebrow, .page-hero .kicker {
  font-family: var(--font-accent);
  display: block; text-transform: uppercase; letter-spacing: .16em;
  font-size: .76rem; color: var(--gold-text); font-weight: 700; margin-bottom: .6rem;
}
/* Ledger-Line: section labels settle into place as they enter view — a
   credential/stat line being set, not marketing copy fading up. Scroll-driven
   CSS only (animation-timeline: view()); browsers without support (Safari/
   Firefox today) simply render the landed state — no JS, nothing gated,
   nothing broken. Scoped to eyebrows/kickers only, never a per-section
   fade-up (that's the banned AOS tell). */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    h2 .kicker, .eyebrow, .page-hero .kicker {
      animation: ledger-settle linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
    @keyframes ledger-settle {
      /* A12 containment: from-spacing capped at .24em so long labels
         ("Serving families for over 40 years") never overflow/rewrap the
         375px wrap mid-animation. */
      from { letter-spacing: .24em; } /* 2026-09-08: no opacity in scroll-driven reveals; a stuck timeline must never hide text */
      to { opacity: 1; letter-spacing: .16em; }
    }
  }
}
p { color: var(--ink-soft); max-width: 72ch; }
.prose p + p { margin-top: 1rem; }

.grid-2 { display: grid; gap: 2.5rem; }
@media (min-width: 860px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }
/* About split: the square photo is capped so the WATTS sign stays in frame and the prose sits beside it, not below a tower of house. */
.grid-2 > img { max-height: 520px; width: 100%; object-fit: cover; object-position: center 72%; }

.rule {
  border: none; border-top: 1px solid var(--line); margin: 0;
}

/* Q&A, measured off live fbo.com 2026-09-10 (Anne: keep the site the way it
   is). Stone band, no photo, no floating card. Bars 10px radius, 16px/40px
   inset, 15px apart, white uppercase Poppins 18/600 with 1px tracking on the
   gold gradient; the open body is a white panel, 18px/27px text on the same
   40px inset. Heading Montserrat 44/700 navy, centred. */
.qa-band { background: #edecea; padding: 3.75rem 0 4.5rem; }
.qa-heading { text-align: center; font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.75rem); color: var(--dark); margin: 0 0 2.25rem; }
.qa-item { margin-bottom: 15px; }
.qa-item:last-child { margin-bottom: 0; }
.qa-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 16px 16px 16px 40px; min-height: 61px; cursor: pointer; list-style: none;
  background: linear-gradient(180deg, var(--gold-deep) 0%, var(--gold-light) 100%);
  border-radius: 10px; color: var(--paper);
  font-family: var(--font-accent); font-size: 1.125rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  transition: filter .2s ease;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary .qa-title { color: var(--paper); }
.qa-item summary:hover, .qa-item summary:focus-visible { filter: brightness(1.06); }
.qa-item summary .icon { flex: none; width: 20px; height: 20px; color: var(--paper); position: relative; transition: transform .4s cubic-bezier(.34,1.4,.4,1); }
.qa-item summary .icon::before, .qa-item summary .icon::after { content: ""; position: absolute; background: currentColor; top: 50%; left: 50%; }
.qa-item summary .icon::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.qa-item summary .icon::after { width: 2px; height: 14px; transform: translate(-50%,-50%); transition: opacity .2s ease .1s; }
.qa-item[open] summary .icon { transform: rotate(225deg); }
.qa-item[open] summary .icon::after { opacity: 0; }
.qa-item .qa-body { background: var(--paper); border-radius: 0 0 10px 10px; }
@media (max-width: 640px) {
  .qa-item summary { padding: 14px 14px 14px 20px; font-size: 1rem; }
}

/* Vault-Hinge: the accordion opens/closes with engineered weight, not a soft
   app-style reveal — a brief overshoot-settle on the row, and the body's
   reveal is a real height transition (CSS grid-rows trick, zero JS: the
   `[open]` attribute toggle is a normal style recalculation the browser can
   transition on its own). No JS needed, so it works identically with
   scripts off; reduced-motion drops straight to the landed state. */
.qa-item .qa-body-wrap {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .45s cubic-bezier(.16,1,.3,1);
}
/* fr-track rounding can shave a px off the settled height and clip a
   descender on the last line — pad past it, not into it. */
.qa-item[open] .qa-body-wrap { grid-template-rows: 1fr; padding-bottom: 4px; }
.qa-item .qa-body { min-height: 0; }
.qa-item .qa-body p { padding: 1.4rem 40px 1.6rem; margin: 0; color: var(--ink-soft); font-size: 1.125rem; line-height: 1.5; max-width: none; }
.qa-item .qa-body p + p { padding-top: 0; }
@media (max-width: 640px) { .qa-item .qa-body p { padding: 1.2rem 20px 1.4rem; font-size: 1rem; } }
@media (prefers-reduced-motion: reduce) {
  .qa-item .qa-body-wrap, .qa-item summary .icon, .qa-item summary { transition: none; }
}

/* A row is a row or a card is a card — never a hairline that becomes a card
   only on hover (elevate 2026-09-02, fault 1). Quiet card at rest: ring, not
   a border; concentric radius (16px outer = 6px inner + the card's own 2rem
   inset, capped well under the 24px law ceiling); the gold photo ring is
   ALWAYS on, not a hover surprise. Hover goes one elevation level up with NO
   geometry change — no lift, no translate. */
.team-card {
  margin: 1.25rem 0; padding: 2rem; border-bottom: none;
  border-radius: var(--radius-card);
  box-shadow: var(--elevation-1);
  display: grid; gap: 1.5rem;
  transition: box-shadow .25s ease;
}
.team-card:first-child { margin-top: 0; }
.team-card:last-child { margin-bottom: 0; }
/* image track must clear the 12rem grid-floor (192px @16px root) — 140px
   collapsed under it (elevate 2026-09-02, fault: grid columns hold floor).
   Column widens to 200px; the 140px circle centers within it. */
@media (min-width: 700px) { .team-card { grid-template-columns: 200px 1fr; align-items: start; } }
.team-card img { justify-self: start; }
.team-card:hover, .team-card:focus-within {
  box-shadow: var(--elevation-2);
}
.team-card img {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--gold);
}
.team-card--noimg { grid-template-columns: 1fr; }
.team-card h2 { font-family: var(--font-heading); font-size: 1.3rem; margin: 0 0 .2rem; font-weight: 600; }
.team-card .role { font-family: var(--font-accent); color: var(--gold-text); text-transform: uppercase; font-size: .78rem; letter-spacing: .12em; font-weight: 700; margin-bottom: .8rem; }

/* closing band — matches the live site's two-column container: brand
   restatement + Contact CTA on one side, the photo carousel on the other */
.slider-band-copy { text-align: center; }
@media (min-width: 860px) { .slider-band-copy { text-align: left; } }

/* the client folder's "Footer Slider" — a fading autoplay image carousel that
   sits above the true <footer>, present on Home and Q&A only in the snapshot */
.footer-slider { position: relative; width: 100%; aspect-ratio: 4/3; max-width: 640px; margin: 0 auto; overflow: hidden; }
@media (min-width: 640px) { .footer-slider { aspect-ratio: 1/1; } }
.footer-slider .slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease;
}
.footer-slider .slide.is-active { opacity: 1; }
.footer-slider img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) {
  .footer-slider .slide { transition: none; }
}

.btn {
  display: inline-block; padding: 14px 28px; background: var(--dark);
  color: var(--on-dark); text-decoration: none; text-transform: uppercase;
  letter-spacing: .1em; font-size: .8rem; font-weight: 700; border-radius: 2px;
  min-height: 44px; border: none; font-family: var(--font-accent); cursor: pointer;
}
.btn:hover, .btn:focus-visible {
  background: var(--dark-hover);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.btn:active { background: var(--dark); }
/* body-size token — this CTA sits under the full-height qa-photo-band photo
   section on the home page (elevate 2026-09-02: oversized media with small
   text). Scoped to the slider band, not the .btn component sitewide. */
.slider-band-copy .btn { font-size: 1rem; }

/* footer — 3 columns exactly as captured: logo+copyright / phone+email / address.
   No nav-links column in the snapshot's footer; removed my invented one. */
footer.site-footer {
  background: linear-gradient(165deg, var(--dark-gradient-start) 0%, var(--dark) 55%, var(--dark-gradient-end) 100%);
  color: var(--footer-ink); padding: 3rem 0;
}
footer.site-footer .wrap { display: grid; gap: 2rem; }
@media (min-width: 780px) { footer.site-footer .wrap { grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 1fr) minmax(15rem, .9fr); gap: 2rem 3rem; align-items: start; } }
footer .label { white-space: nowrap; }
footer p { line-height: 1.7; }
footer .copyright { max-width: none; }
footer .brand-mark { margin-bottom: 1rem; }
footer .brand-mark img { height: 72px; width: auto; } /* width:auto beats the HTML width=600 attribute; without it the mark drew 600x44 and pushed the contact column off-canvas */
footer p { color: var(--footer-ink); margin: 0; }
footer .label { color: var(--gold-ink); font-weight: 700; }
footer a { color: var(--footer-ink); text-decoration: underline; }
footer a:hover { color: var(--gold-ink); }
footer .copyright { font-size: .82rem; color: var(--footer-ink-soft); }

/* body-size token, not 0.95rem — sibling of the full-height founder portrait
   (elevate 2026-09-02: oversized media with small text). */
.author-link { margin-top: 1.25rem; font-size: 1rem; color: var(--muted, inherit); }
.author-link a { color: var(--gold-text); font-weight: 700; }

/* ── Services page — Ledger rebuild (elevate 2026-09-02, fault 2) ──
   Live is one warm headline, three gold plates with the tree emblem, a
   parchment ground. The dev build had answered with a full navy hero, mono
   numerals and a black closer — three heavy dark bands on a page about
   trust. Paper ground, gold hairline as the only accent, a quiet watermark
   plate for the lede, two paper plates for the lists. */
.svc-hero {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.svc-eyebrow {
  font-family: var(--font-accent);
  color: var(--gold-text); letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.78rem; font-weight: 600; margin: 0 0 0.6rem;
}
.svc-hero h1 { color: var(--ink); margin: 0; font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.svc-rule { width: 4.5rem; height: 2px; margin: 1.4rem 0 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }

/* Plate — the shared Ledger surface: paper, an elevation-1 ring (never a
   border), gold seam on top only. The tree is a medallion, a real element at
   the head of each plate as live has it, never a watermark under empty room
   (2026-09-10, Json: "not good"; the ghost emblem in a blank heading column
   read as a rendering fault). */
.svc-plate {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-card);
  box-shadow: var(--elevation-1);
}
.svc-plate::before {
  content: ""; position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
}
.svc-medallion {
  display: grid; place-items: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--paper-warm);
  box-shadow: inset 0 0 0 1.5px var(--gold), 0 0 0 5px var(--paper), 0 0 0 6px color-mix(in oklch, var(--gold) 45%, transparent);
  margin: 0 0 1.25rem;
}
.svc-medallion img { width: 44px; height: 44px; display: block; }
.svc-ledger { padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(3rem, 7vw, 5rem); }
.svc-ledger > .wrap { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
/* Plate one: the claim beside its paragraph. */
.svc-spread {
  display: grid; gap: 1.25rem clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 3rem);
}
@media (min-width: 900px) {
  .svc-spread { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; }
}
.svc-spread-head, .svc-spread-body { min-width: 0; }
.svc-statement {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem); line-height: 1.3; letter-spacing: -0.01em;
  max-width: 22ch; margin: 0; color: var(--ink);
}
.svc-lede { max-width: 62ch; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; margin: 0; }
/* Plates two and three: side by side at 900px and up, each a medallion, its
   verbatim intro sentence, and the rows one deep. Stacked under 900px. */
.svc-pair { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); align-items: start; }
@media (min-width: 900px) { .svc-pair { grid-template-columns: 1fr 1fr; } }
.svc-list { padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.5rem); }
.svc-spread-title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.45;
  max-width: 34ch; margin: 0 0 1.25rem; color: var(--ink);
}
.svc-list .docket-list { margin: 0; }
.svc-closer {
  background: linear-gradient(165deg, var(--dark-gradient-start) 0%, var(--dark) 55%, var(--dark-gradient-end) 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--gold-deep), var(--gold-highlight), var(--gold-light)) 1;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.svc-closer-line { font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 2rem); color: #F7F3EA; margin: 0 0 1.6rem; }
.svc-closer-btn {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 0.85rem 2.2rem; text-decoration: none; font-weight: 700; letter-spacing: 0.04em;
  min-height: 44px; border-radius: 2px;
  transition: background 0.25s ease, transform .18s ease;
}
.svc-closer-btn:hover, .svc-closer-btn:focus-visible { background: var(--gold-highlight); }
.svc-closer-btn:active { transform: scale(0.96); }

/* ============================================================
   ELEVATION PASS 2026-08-25 (dev) — "similar but elevated in
   every way" (Json ruling). Same shell, richer execution.
   Register: credibility / calm 55+. Moves: Choreographed-Entrance
   (home hero, one sequence then STILL) + Kinetic-Gradient on the
   gold band (20s+, stare-to-see). No layout changes.
   ============================================================ */

/* Hero CTA: navy-on-navy read as unstyled. On the dark band the
   CTA speaks gold — hairline out, filled on hover. */
.quote-hero .btn-hero {
  background: transparent;
  color: var(--gold-light, #d9bc7a);
  box-shadow: inset 0 0 0 1px var(--gold, #C8A450);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .18s ease;
}
.quote-hero .btn-hero:hover, .quote-hero .btn-hero:focus-visible {
  background: var(--gold, #C8A450);
  color: var(--dark, #16263D);
  box-shadow: inset 0 0 0 1px var(--gold, #C8A450);
}
.quote-hero .btn-hero:active { transform: translateY(1px); }

/* Band depth: widen the hero ramp + one faint gold breath top-right.
   Opaque but never dead-flat (house law). */
.quote-hero {
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(200,164,80,.10), transparent 62%),
    linear-gradient(160deg, var(--dark-gradient-start) 0%, var(--dark-gradient-end) 78%, #101c2c 100%);
}

/* Gold band: Kinetic-Gradient — a 24s drift you only see if you stare. */
.gold-band {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 30%, var(--gold) 55%, var(--gold-light) 80%, var(--gold) 100%);
  background-size: 300% 100%;
  animation: fbo-gold-drift 24s linear infinite;
}
@keyframes fbo-gold-drift { to { background-position: 300% 0; } }

/* Choreographed-Entrance: home hero lands in 3 beats, then still. */
@keyframes fbo-land { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.quote-hero .hero-identity { animation: fbo-land .45s cubic-bezier(.22,.7,.3,1) both; }
.quote-hero .testimonial    { animation: fbo-land .45s cubic-bezier(.22,.7,.3,1) .15s both; }
.quote-hero .quote-hero-photo, .quote-hero-row > picture { animation: fbo-land .45s cubic-bezier(.22,.7,.3,1) .3s both; }

/* Pop floor: quiet, credible states — no glow, no boop. Team-card's own
   hover (elevation-1 → elevation-2, no geometry change) lives with the card
   rules above; this block no longer lifts it — see fault 1, elevate 2026-09-02. */
.site-nav a { transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-text, #8C6A2E); }
.svc-card, .qa-item {
  transition: box-shadow .25s ease;
}
.testimonial-meta { transition: opacity .2s ease; }
.testimonial-meta:hover { opacity: .85; }

/* Reduced motion: designed landed state, everything still. */
@media (prefers-reduced-motion: reduce) {
  .gold-band { animation: none; }
  .quote-hero .hero-identity, .quote-hero .testimonial,
  .quote-hero .quote-hero-photo, .quote-hero-row > picture { animation: none; opacity: 1; transform: none; }
}

/* ── Elevation r2 (Json: "text cramped, split photo not hitting") ──
   Composition rework: contained row, gallery-framed portrait instead
   of an edge-to-edge slab, ragged-right text at a real measure. */
@media (min-width: 900px) {
  .quote-hero-row {
    flex-direction: row-reverse;
    align-items: center;
    max-width: 1240px;
    gap: 4.5rem;
    padding: 5rem 3rem;
  }
  .quote-hero-text { width: auto; flex: 1 1 60%; padding: 0; }
  .quote-hero-photo {
    width: auto; flex: 0 0 340px; min-height: 0; align-self: center;
    position: relative;
  }
  .quote-hero-photo img {
    aspect-ratio: 4/5; height: auto;
    box-shadow: 0 24px 60px rgba(6, 12, 22, .45);
  }
  /* gold offset hairline — gallery frame, the register's move */
  .quote-hero-photo::after {
    content: ""; position: absolute; inset: 0;
    transform: translate(14px, 14px);
    border: 1px solid var(--gold, #C8A450);
    opacity: .55; pointer-events: none; z-index: -1;
  }
  .testimonial blockquote { text-align: left; hyphens: none; }
}
.testimonial blockquote { line-height: 1.72; max-width: 62ch; }
.quote-more p { line-height: 1.7; max-width: 62ch; }
.hero-kicker { font-size: clamp(1.05rem, 1.9vw, 1.35rem); letter-spacing: .01em; }
@media (max-width: 899px) {
  .quote-hero-text { padding: 3.5rem 1.5rem 3rem; }
}

/* r2.1 — optical alignment: top-align the row, photo drops slightly,
   identity row holds one line, less dead navy above the kicker. */
@media (min-width: 900px) {
  .quote-hero-row { align-items: flex-start; padding: 3.5rem 3rem 4.5rem; }
  .quote-hero-photo { margin-top: 1.75rem; }
  .hero-identity { flex-wrap: nowrap; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; }
  .hero-kicker { white-space: nowrap; max-width: none; font-size: clamp(1rem, 1.6vw, 1.25rem); }
}

/* ── Prestige pass (Json: "breathe and live prestige") ──
   Wealth is whitespace. Rhythm scales up; nothing gets louder. */
section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.wrap { padding: 0 clamp(24px, 4vw, 48px); }
.page-hero { padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { letter-spacing: -0.01em; }
.page-hero .kicker { letter-spacing: .22em; }
/* the quote: mark sits WITH the words, not floating alone above them */
.quote-hero .quote-mark { margin: 0 0 -0.75rem; font-size: 3.5rem; }
.testimonial { gap: 1.5rem; }
@media (min-width: 900px) {
  .quote-hero-row { padding: 4.5rem 3rem 5.5rem; }
}
/* footer air */
.site-footer .wrap { padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); }

/* thread node on the dark opener: gold + hairline so the first node
   reads as the start of the thread, not a stray fleck on navy */
.continuity-thread > section.quote-hero::before {
  background: var(--dark);
  border-color: var(--gold);
  opacity: .8;
}

/* ══ LIVE-PARITY REVERT 2026-08-25 (Json: "mine live sells, yours looks
   like a brochure") — hero composition returns to live fbo.com's own
   grammar, measured from post-44.css:
   · ground: linear-gradient(181deg,#161616 0%, #252830) — live's charcoal,
     not our navy (ground-parity law: live atmosphere is manuscript)
   · gold band: thicker, live's own vertical gold ramp
   · photo: full-height edge column again (the frame experiment retired)
   · text: justified with hyphens, as live sets it
   Kept from the elevation: gold-text a11y token, entrance beats, pop states. ══ */
.gold-band {
  height: 14px;
  background: linear-gradient(180deg, #C09B45 0%, #A28139 100%);
  animation: none;
}
@media (max-width: 639px) { .gold-band { height: 9px; } }
.quote-hero {
  background: linear-gradient(181deg, #161616 0%, #252830 100%);
}
@media (min-width: 900px) {
  .quote-hero-row {
    max-width: none;
    gap: 0;
    padding: 0;
    align-items: stretch;
  }
  .quote-hero-text { flex: 1 1 62%; padding: 5rem 4.5rem 4.5rem 6rem; }
  .quote-hero-photo {
    flex: 0 0 34%; margin-top: 0; align-self: stretch;
    min-height: 560px;
  }
  .quote-hero-photo img {
    aspect-ratio: auto; width: 100%; height: 100%;
    object-fit: cover; box-shadow: none; border-radius: 0;
  }
  .quote-hero-photo::after { display: none; }
  .testimonial blockquote { text-align: left; hyphens: manual; }
}
/* live centers the big mark above the words */
.quote-hero .quote-mark { text-align: center; font-size: 4.5rem; margin: 0 0 1.5rem; }


/* ── Footer unification (Json 2026-08-25: "footer clashes with the sub
   footer on some pages") — footer stays the LIVE charcoal family (hero's
   own ramp: #161616 -> #252830, accent #C8A450), separated by the gold bar.
   .svc-closer moved OFF charcoal in the 2026-09-02 elevate pass (fault 2:
   "a black closer band" on a page about trust) — see the services block
   below, which now carries a shallow NAVY band instead. The drawer's own
   close-button/background rules also moved to the Chrome Kit v2 block
   above; the charcoal drawer ground was fault 3 and is retired. */
footer.site-footer {
  /* live: a near-flat dark navy, the gold rule above it. Ours had a lifted
     gradient and columns that wrapped "Email:" onto its own line (Json,
     2026-09-10). */
  background: linear-gradient(180deg, #1f2430 0%, #191d27 100%);
  border-top: 6px solid transparent;
  border-image: linear-gradient(180deg, #C09B45 0%, #A28139 100%) 1;
}

/* ── One motion move, sitewide (elevate 2026-09-02, MOTION.md Light) ──
   "One motion move sitewide: hairline draw on the gold seams on entry, plus
   the reveal-rise on plates; nothing else moves." Zero-JS, scroll-driven
   (animation-timeline: view()) — browsers without support just render the
   landed state, same law as .kicker's ledger-settle above. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .svc-rule, .svc-plate::before, .nav-mobile-seam {
      animation: hairline-draw .5s ease-out both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
      transform-origin: left center;
    }
    @keyframes hairline-draw {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    /* 2026-09-08: reveals move, they never hide (two 800px columns once sat at
       opacity 0 and left /services blank to the footer). Transform only. */
    .svc-plate, .team-card {
      animation: reveal-rise .5s ease-out both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
    @keyframes reveal-rise {
      from { transform: translateY(14px); }
      to { transform: none; }
    }
  }
}


/* ---------- Home, measured off live fbo.com 2026-09-10 (Anne: keep the site as it is) ---------- */
.house-band { background: var(--paper-warm-wash-b); padding: 4rem 0; }
.house-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .house-grid { grid-template-columns: minmax(0, 1fr) 427px; gap: 3.5rem; } }
.house-lead { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.2; color: var(--dark); margin: 0 0 1.2rem; }
.house-copy p:not(.house-lead) { font-size: 1rem; line-height: 1.6; color: var(--ink); max-width: none; }
.house-photo { width: 100%; height: auto; max-width: 427px; justify-self: end; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 72%; display: block; border-radius: 0; }

.closer-band { background: var(--paper-warm-wash-b); padding: 3.5rem 0 0; }
/* Faded reception room behind the lower bands (Anne, 2026-09-11: the old site had it on Home and About) */
.qa-band, .qa-photo { position: relative; isolation: isolate; background-image: url(/assets/img/reception-room.webp); background-size: cover; background-position: center 40%; }
.qa-band::before, .qa-photo::before { content: ""; position: absolute; inset: 0; z-index: -1; background: color-mix(in srgb, #edecea 88%, transparent); }
@media (max-width: 640px) { .qa-band, .qa-photo { background-image: url(/assets/img/reception-room-mobile.webp); } }
.closer-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .closer-grid { grid-template-columns: minmax(0, 1fr) 610px; gap: 2.5rem; } .closer-band { padding: 1.25rem 0; } }
.closer-copy { text-align: center; }
.closer-mark { display: block; width: 85px; height: auto; margin: 0 auto 1.4rem; }
.closer-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.375rem; letter-spacing: .04em; text-transform: uppercase; color: var(--dark); margin: 0 0 .6rem; }
.closer-sub { font-size: 1.1875rem; color: var(--dark); margin: 0 0 1.6rem; }
.closer-btn { display: inline-block; background: var(--gold); color: var(--paper); padding: 12px 24px; border-radius: 3px; font-size: .9375rem; font-weight: 500; text-decoration: none; min-height: 44px; line-height: 1.5; transition: background .2s ease; }
.closer-btn:hover, .closer-btn:focus-visible { background: var(--gold-light); color: var(--paper); }
.closer-grid .footer-slider { aspect-ratio: 1 / 1; height: auto; }


/* ---------- Inner pages, measured off live fbo.com 2026-09-10 ---------- */
/* Photo banner (About): the library photo under a navy scrim, white centred title */
.photo-hero { min-height: 250px; display: grid; align-items: center; position: relative; background: linear-gradient(rgba(26,47,64,.55), rgba(26,47,64,.55)), var(--hero) center / cover no-repeat; padding: 6rem 0; text-align: center; color: var(--paper); }
.photo-hero h1 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin: 0 0 .75rem; color: var(--paper); }
.photo-hero-sub { font-size: 1.125rem; margin: 0; color: var(--paper); }

/* Team cards: white, 10px, soft shadow, portrait column centred with name and role under it, justified text */
.team-card { margin: 0 0 1.25rem; padding: 2rem 2.5rem; border-radius: 10px; background: var(--paper); box-shadow: 0 6px 24px rgba(0,0,0,.08); display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .team-card { grid-template-columns: 220px 1fr; align-items: center; gap: 2.5rem; } }
.team-card:hover, .team-card:focus-within { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.team-card .who { text-align: center; }
.team-card .who img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; box-shadow: none; margin: 0 auto .75rem; display: block; }
.team-card h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; letter-spacing: .04em; color: var(--dark); margin: 0; text-align: center; }
.team-card .role { text-align: center; color: var(--ink-soft); font-size: .8rem; letter-spacing: .04em; margin: .1rem 0 0; }
.team-card p:not(.role) { font-size: .95rem; line-height: 1.55; text-align: left; color: var(--ink); margin: 0; max-width: none; }
.team-card p + p:not(.role) { margin-top: .9rem; }
.mission-band { background: var(--paper-warm-wash-b); padding: 3.5rem 0 4rem; }
.mission-card { max-width: 520px; margin: 0 auto; background: var(--paper); border-radius: 10px; padding: 2rem 2rem 0; box-shadow: 0 10px 30px rgba(0,0,0,.12); overflow: hidden; }
.mission-card h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; text-align: center; color: var(--dark); margin: 0 0 .9rem; }
.mission-card p { font-size: .95rem; line-height: 1.6; text-align: left; color: var(--ink); margin: 0 0 1.5rem; }
.mission-card img { display: block; width: calc(100% + 4rem); max-width: none; height: auto; margin: 0 -2rem; aspect-ratio: 4 / 3; object-fit: cover; }

/* Founder: cream panel, uppercase title, justified text; the portrait flush beside it */
.founder-band { padding: 0; background: #e9dfc9; }
.founder-grid { display: grid; gap: 0; }
@media (min-width: 860px) { .founder-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; } }
.founder-panel { background: #e9dfc9; padding: 3rem 2rem 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.founder-panel h1 { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; letter-spacing: .04em; color: var(--dark); margin: 0 0 1.2rem; text-transform: uppercase; }
.founder-panel p { font-size: .95rem; line-height: 1.55; text-align: left; color: var(--ink); margin: 0 0 1.2rem; max-width: none; }
.founder-panel p:last-child { margin-bottom: 0; }
.founder-photo { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }

/* Services: parchment ground, centred title, live's gold plates with white medallions */
.svc-parchment { background: #e7e1d3; padding: 2.5rem 0 3rem; }
.svc-title { text-align: center; font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--dark); margin: 0 0 1rem; }
.svc-rule--centre { margin: 0 auto 2.5rem; width: min(600px, 90%); height: 1px; background: var(--gold); }
.gold-plates { display: grid; gap: 1.75rem; justify-items: center; }
@media (min-width: 760px) { .gold-plates { grid-template-columns: 1fr 1fr; } .gold-plate--centre { grid-column: 1 / -1; } }
.gold-plate { width: 100%; max-width: 560px; background: linear-gradient(180deg, var(--gold-deep) 0%, #b88f3d 100%); border-radius: 10px; padding: 2rem 2rem 2.5rem; color: var(--ink); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.gold-plate--centre { max-width: 640px; }
.gold-medallion { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: var(--paper); margin: 0 auto 1.5rem; }
.gold-medallion img { width: 44px; height: 44px; display: block; }
.gold-plate h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; line-height: 1.4; color: var(--ink); margin: 0 0 .8rem; text-align: left; }
.gold-plate p { font-size: .95rem; line-height: 1.6; color: var(--ink); text-align: left; margin: 0; max-width: none; }
.gold-plate ul { margin: 0; padding-left: 1.2rem; font-size: .95rem; line-height: 1.7; color: var(--ink); }
.gold-plate li { margin: 0; }

/* Q&A page: the accordion over the library photo, white heading */
.qa-photo { position: relative; background: linear-gradient(rgba(26,47,64,.35), rgba(26,47,64,.35)), var(--hero) center / cover no-repeat; padding: 2.5rem 0 3rem; }
.qa-heading--light { color: var(--paper); margin-bottom: 1.5rem; }


/* ---------- One for one with fbo.com (Anne, 2026-09-10): measured at 1280 ---------- */
/* Header: logo 180x88, nav Montserrat 18/500 uppercase, no phone in the bar */
.brand img { height: 88px; }
@media (min-width: 640px) { .site-header .wrap { min-height: 115px; } }
.nav-desktop a { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0; color: var(--ink); }
.nav-desktop a[aria-current="page"] { color: var(--gold-text); }
.header-phone { display: none !important; }
/* Home hero: 20/30 justified, 60px avatar, 24/800 uppercase byline */
.quote-hero-text p, .quote-hero .hero-lede, .quote-hero p:not(.quote-mark) { font-size: 1.25rem; line-height: 1.7; text-align: left; color: #f0f2f6; }
.quote-hero-text { padding: 5rem 2.5rem 4.5rem; }
.testimonial-meta img { width: 60px; height: 60px; }
.testimonial-meta strong, .testimonial-meta .name { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: var(--paper); }
.testimonial-meta .role { font-size: 1.125rem; color: var(--paper); text-transform: none; letter-spacing: 0; }
@media (min-width: 860px) { .quote-hero-photo { min-height: 773px; } }
/* House: 28/700 justified, body 18/27 justified */
.house-lead { font-size: 1.75rem; line-height: 1.2; text-align: left; }
.house-copy p:not(.house-lead) { font-size: 1.125rem; line-height: 1.5; text-align: left; }
/* Q&A heading 44 */
.qa-heading { font-size: 2.75rem; }
/* Closer: compass 85px gold, title 28/600 sentence case */
.closer-mark--compass { display: block; width: 85px; height: 85px; margin: 0 auto 1.4rem; color: var(--gold); }
.closer-title { font-size: 1.75rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
/* Footer: logo 240 wide, labels Poppins 18/700 gold, copyright 11px */
footer .brand-mark img { height: auto; width: 240px; }
footer .label { font-family: var(--font-accent); font-size: 1.125rem; font-weight: 700; }
footer p { font-size: 1.125rem; }
footer .copyright { font-size: .6875rem; }
/* About: hero 44/400 with 28 sub; cards 23px pad, 15px radius, live's shadow; name 28/600; 18/27 justified */
.photo-hero { min-height: 500px; }
.photo-hero h1 { font-size: 2.75rem; font-weight: 400; }
.photo-hero-sub { font-size: 1.75rem; }
.team-card { padding: 23px; border-radius: 15px; box-shadow: rgba(0,0,0,.5) 0 0 63px -30px; margin-bottom: 20px; }
.team-card h2 { font-size: 1.75rem; font-weight: 600; letter-spacing: 0; }
.team-card .role { font-size: 1.0625rem; color: var(--dark); text-transform: none; letter-spacing: 0; }
.team-card p:not(.role) { font-size: 1.125rem; line-height: 1.5; }
.mission-card { max-width: 560px; }
.mission-card h2 { font-size: 1.4375rem; font-weight: 500; text-transform: uppercase; }
.mission-card p { font-size: 1.125rem; line-height: 1.5; }
/* Q&A page: live's light cream scrim over the library photo, navy heading */
.qa-photo { background: linear-gradient(rgba(245,240,230,.72), rgba(245,240,230,.72)), var(--hero) center / cover no-repeat; }
.qa-heading--light { color: var(--dark); }
/* Services: parchment, plates 780 max, 30px inset, 180px medallion, 18px rows */
.svc-parchment { background: #ecdfc4; }
.svc-title { font-size: 2.75rem; }
.gold-plates { gap: 3rem; }
.gold-plate { max-width: 780px; padding: 3rem 4rem 3.5rem; border-radius: 10px; }
.gold-plate--centre { max-width: 900px; }
.gold-medallion { width: 180px; height: 180px; margin-bottom: 2.5rem; }
.gold-medallion img { width: 120px; height: 120px; }
.gold-plate h2 { font-size: 1.25rem; text-align: left; }
.gold-plate p, .gold-plate ul { font-size: 1.125rem; line-height: 1.6; }
.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; }
.quote-hero blockquote { font-size: 1.25rem; line-height: 1.7; text-align: left; color: #f0f2f6; margin: 0 0 2rem; max-width: 62ch; }
/* fbo-hero-phone (2026-09-15): the one-for-one desktop size (1.25rem) left a
   ~28-character column at 390 — a tall thin wall. Phone gets its own size and
   tighter gutters so a line carries ~42 characters. */
@media (max-width: 639px) {
  /* Specificity has to clear `.quote-hero p:not(.quote-mark)` from the
     one-for-one block, which is (0,2,1) and wins on order otherwise. */
  .quote-hero .testimonial blockquote p,
  .quote-hero p:not(.quote-mark),
  .quote-hero .hero-lede { font-size: 1.0625rem; line-height: 1.65; }
  /* The row already carries the 24px page gutter; this padding stacks on top
     of it, so keep it small or the column reads as a ribbon. */
  .quote-hero-text { padding: 2.75rem .5rem 3rem; }
  .testimonial { gap: 1.5rem; }
}
/* Perfectionist pass 2026-09-10: line-heights, faces and columns to live's computed values */
.nav-desktop a { color: #000; line-height: normal; }
@media (min-width: 860px) { .quote-hero-photo { width: 40%; } .quote-hero-text { padding: 5rem 2.25rem 4.5rem 2.25rem; } }
.testimonial-meta .name { line-height: 1; display: block; }
.testimonial-meta .role { line-height: 2; display: block; }
.house-lead { font-family: var(--font-accent); }
.house-copy p:not(.house-lead) { color: var(--dark); }
.qa-heading { line-height: 1.5; }
.qa-item summary { line-height: 1.5; }
footer .label, footer p { line-height: 1.5; }
.photo-hero h1 { line-height: 1.5; }
.photo-hero-sub { line-height: 1.5; }
.team-card { max-width: 1117px; margin-left: auto; margin-right: auto; }
@media (min-width: 700px) { .team-card { grid-template-columns: 400px 1fr; gap: 1rem; } }
.team-card h2 { line-height: 1; }
.team-card .role { font-size: 1.125rem; font-weight: 500; }
.mission-card { max-width: 578px; }
.mission-card h2 { font-family: var(--font-accent); line-height: 1.2; text-align: left; text-transform: uppercase; }
/* Last deltas from the metric diff: columns and two faces */
@media (min-width: 1200px) { .house-grid { grid-template-columns: 713px 427px; justify-content: space-between; gap: 0; } }
.qa-band .wrap, .qa-photo .wrap { max-width: 1151px; }
.closer-sub { font-family: var(--font-accent); }
footer .label { color: #C7A557; }
.mission-card { padding: 2rem 24px 0; }
.mission-card img { width: calc(100% + 48px); margin: 0 -24px; }
.photo-hero h1, .photo-hero-sub { max-width: none; width: 100%; }
/* Live's About hero: the chandelier (client's own photo from fbo.com), navy scrim as live (linear 360deg black to navy over the photo) */
.photo-hero { background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(32,58,79,.55)), var(--hero) center 40% / cover no-repeat; }
/* Hero byline centred under the text, text block centred in the column, as live */
.quote-hero-text { display: flex; flex-direction: column; justify-content: center; }
.testimonial-meta { justify-content: center; margin: 0 auto; }
/* Closer title reads uppercase on live */
.closer-title { text-transform: uppercase; letter-spacing: .02em; }
/* Footer values are plain on live */
footer a { text-decoration: none; }
.team-card { border-radius: 15px; }
.testimonial-meta .role { text-transform: uppercase; letter-spacing: .02em; }
.hero-identity { display: none; }
/* Phones: live's own bar, logo 75px tall (measured fbo.com at 390: bar 102, logo 153x75) */
@media (max-width: 640px) { .brand img { height: 75px; } }

/* Justification removed site-wide 2026-09-15 (Json, after the hero pass): eight
   rules stretched body copy and two stretched headings, opening rivers of white
   space at every width. Ragged right, with hyphenation left to the author. */
.house-lead, .house-copy p, .team-card p, .mission-card p, .founder-panel p,
.gold-plate p { hyphens: manual; }
