/* ============================================================================
   REDEEMED INVESTIGATIONS — DESIGN SYSTEM
   Palette sampled directly from the real logo artwork:
     deep teal  #005860 · water teal #2098A0 · sun amber #E09000 · sky #F8B838
   One system: 4px spacing scale, two radii, one shadow ramp, two typefaces
   (system serif for headings — it echoes the logo wordmark — system sans for
   everything else). No webfonts: nothing to download, nothing to shift.
   ========================================================================= */

/* ── tokens ──────────────────────────────────────────────────────────── */
:root {
  /* brand */
  --teal:        #01555E;
  --teal-deep:   #013B42;
  --teal-lt:     #2098A0;
  --amber:       #E09000;   /* the logo's sun. Fills + text on dark ONLY —
                               it is 2.6:1 on white, so never text on light. */
  --amber-lt:    #F8B838;   /* the logo's sky. Text on dark surfaces. */
  --amber-deep:  #9B6400;   /* same hue, walked down until it passes AA on both
                               white (4.98) and cream (4.57). Use for any amber
                               that carries meaning on a light background:
                               step numbers, required marks, list bullets. */

  /* ink & ground */
  --ink:         #0B1F24;
  --ink-soft:    #14343C;
  --body:        #33484E;
  --muted:       #5A6C71;
  --paper:       #FFFFFF;
  --cream:       #F7F5F1;
  --cream-deep:  #EFEBE3;
  --line:        #E2DCD2;
  --line-strong: #CFC6B8;

  /* on-dark */
  --on-dark:       #F2F6F6;
  --on-dark-muted: #A9C2C6;

  /* type */
  --serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* scale */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 5.5rem;  --sp-10: 7rem;

  --r-sm: 6px;  --r: 12px;  --r-lg: 18px;  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(11,31,36,.06), 0 2px 6px rgba(11,31,36,.05);
  --sh-2: 0 2px 6px rgba(11,31,36,.07), 0 10px 24px rgba(11,31,36,.07);
  --sh-3: 0 6px 16px rgba(11,31,36,.09), 0 24px 56px rgba(11,31,36,.11);

  --wrap: 1160px;
  --wrap-narrow: 760px;
  --header-h: 74px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
/* Must outrank component `display` declarations (.form-success, .sticky-cta,
   .nav-mobile all set display and would otherwise ignore the hidden attribute). */
[hidden] { display: none !important; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-deep); }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); line-height: 1.18; font-weight: 700; letter-spacing: -.012em; }
h1 { font-size: clamp(2.05rem, 5.4vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.16rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
strong { color: var(--ink); font-weight: 650; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--teal-lt);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--r) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.icon { width: 22px; height: 22px; flex: none; }
.icon-sm { width: 16px; height: 16px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sp-8); }
.section-alt { background: var(--cream); }
.section-ink { background: var(--ink); color: var(--on-dark-muted); }
.section-ink h2, .section-ink h3, .section-ink strong { color: #fff; }
/* Any dark surface: keep <strong> legible. Without this it inherits --ink. */
.hero strong, .page-hero strong, .cta-band .cta-copy strong,
.aside-card.tone-ink strong, .site-footer strong, .lp-trust strong { color: #fff; }
.aside-card.tone-ink p, .aside-card.tone-ink li { color: var(--on-dark-muted); }
.aside-card.tone-ink ul li::before { background: var(--amber-lt); }
@media (min-width: 800px) { .section { padding-block: var(--sp-9); } }

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: .82rem 1.4rem; border-radius: var(--r-pill);
  font-family: var(--sans); font-weight: 650; font-size: .975rem; letter-spacing: .005em;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
  min-height: 48px; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { transition: transform .18s var(--ease); }
.btn:hover .icon-sm { transform: translateX(3px); }

.btn-primary { background: var(--amber); color: var(--ink); box-shadow: var(--sh-1); }
.btn-primary:hover { background: var(--amber-lt); color: var(--ink); box-shadow: var(--sh-2); }

.btn-secondary { background: var(--teal); color: #fff; }
.btn-secondary:hover { background: var(--teal-deep); color: #fff; }

.btn-outline { background: transparent; color: var(--teal); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--cream); border-color: var(--teal); color: var(--teal-deep); }

.btn-ghost { background: transparent; color: var(--teal); border-color: transparent; padding-inline: .6rem; }
.btn-ghost:hover { color: var(--teal-deep); }

.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn-sm { padding: .58rem 1.05rem; font-size: .9rem; min-height: 42px; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.03rem; min-height: 54px; }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.link-phone { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 650; color: var(--teal); text-decoration: none; white-space: nowrap; }
.link-phone:hover { text-decoration: underline; }
.link-phone-light { color: var(--amber-lt); }
.link-phone-light:hover { color: #fff; }

/* ── header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--sh-1); }
.header-inner { display: flex; align-items: center; gap: var(--sp-4); min-height: var(--header-h); }
@media (min-width: 1020px) and (max-width: 1300px) { .brand-sub { display: none !important; } .nav-desktop a { font-size: .9rem; } }

.brand { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.06rem; color: var(--teal); letter-spacing: -.01em; }
.brand-name em { font-style: normal; color: var(--ink); font-weight: 400; letter-spacing: .045em; font-size: .82em; display: block; text-transform: uppercase; }
.brand-sub { display: none; white-space: nowrap; font-size: .66rem; color: var(--muted); letter-spacing: .03em; text-transform: uppercase; margin-top: 2px; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: var(--sp-4); }
.nav-desktop a {
  color: var(--ink-soft); text-decoration: none; font-weight: 550; font-size: .945rem;
  padding-block: .4rem; border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--teal); border-bottom-color: var(--amber); }

.header-actions { display: none; align-items: center; gap: var(--sp-3); }
.header-actions .btn { white-space: nowrap; }
.header-phone { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 700; color: var(--teal); text-decoration: none; font-size: 1rem; white-space: nowrap; }
.header-phone:hover { color: var(--teal-deep); }

.header-call-mobile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex: none; margin-left: auto;
  background: var(--teal); color: #fff; border-radius: var(--r-sm); text-decoration: none;
}
.header-call-mobile:hover { background: var(--teal-deep); color: #fff; }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: transparent; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; }
.nav-toggle-bars { display: block; width: 21px; height: 15px; position: relative; }
.nav-toggle-bars span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s var(--ease), opacity .18s var(--ease), top .22s var(--ease); }
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6.5px; }
.nav-toggle-bars span:nth-child(3) { top: 13px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6.5px; transform: rotate(-45deg); }

.nav-mobile { border-top: 1px solid var(--line); background: var(--paper); padding: var(--sp-4) var(--sp-5) var(--sp-6); max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
.nav-mobile ul { margin-bottom: var(--sp-5); }
.nav-mobile li + li { border-top: 1px solid var(--line); }
.nav-mobile ul a { display: block; padding: .95rem 0; font-size: 1.08rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.nav-mobile ul a:hover { color: var(--teal); }
.nav-mobile-cta { display: grid; gap: var(--sp-3); }
.nav-mobile-cta .btn { padding: .85rem 1.1rem; font-size: .95rem; }

@media (min-width: 1020px) {
  .nav-desktop, .header-actions { display: flex; }
  .nav-toggle, .header-call-mobile { display: none; }
  .nav-mobile { display: none !important; }
  .brand-sub { display: block; }
  .brand-mark { width: 46px; height: 46px; }
}

/* ── breadcrumbs ─────────────────────────────────────────────────────── */
.breadcrumbs { background: var(--cream); border-bottom: 1px solid var(--line); font-size: .84rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; padding-block: .75rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line-strong); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--ink-soft); font-weight: 550; }

/* ── hero ────────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--ink); color: var(--on-dark-muted); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(32,152,160,.30), transparent 58%),
    radial-gradient(90% 70% at 8% 96%, rgba(224,144,0,.16), transparent 62%),
    linear-gradient(168deg, #0B1F24 0%, #0E2C33 55%, #123A41 100%);
}
/* A single, quiet horizon line — the logo's sunrise, abstracted. Never a
   spy motif; this is the only decorative flourish in the whole design. */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  background:
    linear-gradient(to top, rgba(1,85,94,.55), transparent),
    repeating-linear-gradient(to bottom, transparent 0 38px, rgba(32,152,160,.07) 38px 39px);
  mask-image: linear-gradient(to top, #000 20%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; padding-block: var(--sp-7) var(--sp-7); }
.hero-grid { display: grid; gap: var(--sp-7); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--amber-lt); display: block; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .72rem;
  background: rgba(32,152,160,.16); border: 1px solid rgba(32,152,160,.4);
  color: #BFE7EA; border-radius: var(--r-pill);
  padding: .42rem .95rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: var(--sp-5); line-height: 1.35;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-lt); flex: none; }
.hero-sub { font-size: clamp(1.04rem, 2.1vw, 1.2rem); color: var(--on-dark-muted); margin-top: var(--sp-5); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero-note { display: flex; align-items: flex-start; gap: var(--sp-2); margin-top: var(--sp-5); font-size: .92rem; color: var(--on-dark-muted); max-width: 48ch; }
.hero-note .icon { color: var(--teal-lt); margin-top: 2px; }

.hero-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: var(--sp-6); backdrop-filter: blur(6px); }
.hero-card h2 { color: #fff; font-size: 1.22rem; margin-bottom: var(--sp-4); }
.hero-card ul { display: grid; gap: var(--sp-4); }
.hero-card li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: .96rem; }
.hero-card li .icon { color: var(--amber-lt); margin-top: 3px; }
.hero-card li strong { color: #fff; display: block; font-size: 1rem; }

@media (min-width: 900px) {
  .hero-inner { padding-block: var(--sp-9) var(--sp-9); }
  .hero-eyebrow { font-size: .8rem; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: var(--sp-8); }
}

/* page hero (interior) */
.page-hero { background: linear-gradient(170deg, var(--ink) 0%, #123A41 100%); color: var(--on-dark-muted); }
.page-hero .wrap { padding-block: var(--sp-7); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .eyebrow { color: var(--amber-lt); }
.page-hero p { margin-top: var(--sp-4); font-size: 1.08rem; max-width: 62ch; }
.page-hero .btn-row { margin-top: var(--sp-6); }
@media (min-width: 800px) { .page-hero .wrap { padding-block: var(--sp-8); } }

/* ── section head ────────────────────────────────────────────────────── */
.section-head { max-width: 68ch; margin: 0 auto var(--sp-7); text-align: center; }
.section-head.is-left { margin-inline: 0; text-align: left; }
.eyebrow { display: block; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--teal-lt); margin-bottom: var(--sp-3); }
.section-ink .eyebrow, .cta-band .eyebrow { color: var(--amber-lt); }
.section-sub { margin-top: var(--sp-4); font-size: 1.06rem; color: var(--muted); }
.section-ink .section-sub { color: var(--on-dark-muted); }

/* ── cards ───────────────────────────────────────────────────────────── */
.card-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3);
  transition: border-color .18s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.section-alt .card { background: var(--paper); }
.card-linked { text-decoration: none; color: inherit; }
.card-linked:hover { border-color: var(--teal-lt); box-shadow: var(--sh-2); transform: translateY(-3px); color: inherit; }
.card h3 { color: var(--ink); }
.card p { color: var(--body); font-size: .985rem; margin: 0; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--cream-deep); color: var(--teal); flex: none; }
.card-linked:hover .card-icon { background: var(--teal); color: #fff; }
.card-link { margin-top: auto; padding-top: var(--sp-2); display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--teal); font-weight: 650; font-size: .93rem; }
.card-linked:hover .card-link .icon-sm { transform: translateX(3px); }

/* ── trust bar ───────────────────────────────────────────────────────── */
.trustbar { background: var(--cream); border-block: 1px solid var(--line); padding-block: var(--sp-5); }
.trust-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 620px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }
.trust-item { display: flex; align-items: flex-start; gap: var(--sp-3); }
.trust-item .icon { color: var(--teal); margin-top: 2px; }
.trust-item strong { display: block; color: var(--ink); font-size: .96rem; line-height: 1.35; }
.trust-item span { display: block; font-size: .84rem; color: var(--muted); margin-top: 1px; }

/* ── situations ──────────────────────────────────────────────────────── */
.situations { display: grid; gap: var(--sp-4); }
@media (min-width: 700px) { .situations { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .situations { grid-template-columns: repeat(3, 1fr); } }
.situation {
  display: flex; flex-direction: column; gap: var(--sp-3);
  background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--amber);
  border-radius: var(--r); padding: var(--sp-5) var(--sp-5) var(--sp-4);
  text-decoration: none; transition: background .18s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.situation:hover { background: var(--paper); box-shadow: var(--sh-2); transform: translateY(-2px); }
.situation-quote { color: var(--amber-deep); }
.situation-said { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); line-height: 1.4; margin: 0; }
.situation-go { margin-top: auto; display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--teal); font-weight: 650; font-size: .9rem; }
.situation:hover .situation-go .icon-sm { transform: translateX(3px); }

/* ── steps ───────────────────────────────────────────────────────────── */
.steps { display: grid; gap: var(--sp-5); counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); } }
.step { position: relative; padding-top: var(--sp-5); border-top: 2px solid var(--line-strong); }
.step-num { position: absolute; top: -.85rem; left: 0; background: var(--cream); padding-right: var(--sp-3); font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--amber-deep); line-height: 1; }
.section:not(.section-alt) .step-num { background: var(--paper); }
.step h3 { margin-bottom: var(--sp-2); }
.step p { font-size: .96rem; margin: 0; }

/* ── checklist ───────────────────────────────────────────────────────── */
.checklist { display: grid; gap: var(--sp-3); max-width: 900px; margin-inline: auto; }
@media (min-width: 760px) { .checklist { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3) var(--sp-6); } }
.checklist li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: 1rem; }
.checklist .icon { color: var(--teal); background: rgba(32,152,160,.14); border-radius: 50%; padding: 3px; width: 22px; height: 22px; margin-top: 3px; flex: none; }

/* ── split ───────────────────────────────────────────────────────────── */
.split { display: grid; gap: var(--sp-7); }
@media (min-width: 940px) { .split { grid-template-columns: 1.35fr .65fr; gap: var(--sp-8); align-items: start; } }
.split-aside { display: grid; gap: var(--sp-4); position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
@media (max-width: 939px) { .split-aside { position: static; } }
.aside-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: var(--sp-5); display: grid; gap: var(--sp-3); }
.aside-card h3 { font-size: 1.14rem; }
.aside-card p { font-size: .95rem; margin: 0; }
.aside-card.tone-ink { background: var(--ink); border-color: var(--ink); color: var(--on-dark-muted); }
.aside-card.tone-ink h3 { color: #fff; }
.aside-card.tone-ink .card-icon { background: rgba(255,255,255,.1); color: var(--amber-lt); }
.aside-card.tone-ink a:not(.btn) { color: var(--amber-lt); }
.aside-card.tone-ink .btn-outline { color: var(--amber-lt); border-color: rgba(255,255,255,.3); }
.aside-card.tone-ink .btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── prose ───────────────────────────────────────────────────────────── */
.prose { font-size: 1.06rem; }
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-6); color: var(--ink); }
.prose h2 + p, .prose h3 + p { margin-top: var(--sp-3); }
.prose ul, .prose ol { display: grid; gap: var(--sp-2); padding-left: var(--sp-5); }
.prose ul li { list-style: none; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: calc(var(--sp-5) * -1); top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-deep); }
.prose ol { list-style: decimal; }
.prose ol li { list-style: decimal; padding-left: var(--sp-1); }
.prose ol li::marker { color: var(--teal); font-weight: 700; }
.prose blockquote { border-left: 3px solid var(--amber); padding: var(--sp-2) 0 var(--sp-2) var(--sp-5); font-family: var(--serif); font-size: 1.16rem; color: var(--ink); }
.prose .lead { font-size: 1.16rem; color: var(--ink-soft); }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prose th, .prose td { text-align: left; padding: var(--sp-3); border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-family: var(--sans); font-weight: 700; color: var(--ink); background: var(--cream); }
.callout {
  background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--teal-lt);
  border-radius: var(--r-sm); padding: var(--sp-5); font-size: 1rem;
}
.callout > * + * { margin-top: var(--sp-3); }
.callout strong { color: var(--teal-deep); }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: var(--sp-2); }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-item h3 { font-size: inherit; margin: 0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: var(--sp-5); font-family: var(--serif); font-size: 1.08rem; font-weight: 700;
  color: var(--ink); line-height: 1.35; min-height: 60px;
}
.faq-q:hover { color: var(--teal); }
.faq-chevron { color: var(--teal); transform: rotate(90deg); transition: transform .22s var(--ease); flex: none; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(-90deg); }
.faq-a { padding: 0 var(--sp-5) var(--sp-5); font-size: 1rem; }
.faq-a > * + * { margin-top: var(--sp-3); }
.faq-a ul { display: grid; gap: var(--sp-2); padding-left: var(--sp-5); list-style: disc; }
.faq-a li { list-style: disc; }

/* ── testimonials ────────────────────────────────────────────────────── */
.testimonial blockquote { font-family: var(--serif); font-size: 1.06rem; color: var(--ink); line-height: 1.5; }
.testimonial figcaption { margin-top: auto; padding-top: var(--sp-3); font-weight: 650; color: var(--ink); font-size: .93rem; }
.testimonial figcaption span { display: block; font-weight: 400; color: var(--muted); font-size: .86rem; }

/* ── related ─────────────────────────────────────────────────────────── */
.related { display: grid; gap: var(--sp-3); }
@media (min-width: 720px) { .related { grid-template-columns: repeat(2, 1fr); } }
.related a { display: flex; align-items: center; gap: var(--sp-3); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: var(--sp-4) var(--sp-5); text-decoration: none; transition: border-color .18s var(--ease), box-shadow .2s var(--ease); }
.related a:hover { border-color: var(--teal-lt); box-shadow: var(--sh-1); }
.related strong { display: block; color: var(--ink); }
.related span { display: block; font-size: .88rem; color: var(--muted); }
.related .icon-sm { margin-left: auto; color: var(--teal); flex: none; }

/* ── contact options ─────────────────────────────────────────────────── */
.contact-options { display: grid; gap: var(--sp-4); }
@media (min-width: 760px) { .contact-options { grid-template-columns: repeat(3, 1fr); } }
.contact-option {
  display: grid; gap: var(--sp-1); justify-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--sp-5); text-decoration: none; transition: border-color .18s var(--ease), box-shadow .2s var(--ease);
}
.contact-option:not(.is-static):hover { border-color: var(--teal-lt); box-shadow: var(--sh-2); }
.contact-option .icon { color: var(--teal); margin-bottom: var(--sp-2); }
.co-label { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-option strong { font-size: 1.16rem; color: var(--ink); line-height: 1.3; }
.co-email { font-size: .95rem; overflow-wrap: anywhere; line-height: 1.35; }
.co-note { font-size: .87rem; color: var(--muted); }

/* ── form ────────────────────────────────────────────────────────────── */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--sh-2); }
@media (min-width: 620px) { .form-card { padding: var(--sp-6); } }
.form-head { margin-bottom: var(--sp-5); }
.form-head h3 { font-size: 1.32rem; }
.form-head p { margin-top: var(--sp-2); font-size: .95rem; color: var(--muted); }

.lead-form { display: grid; gap: var(--sp-4); }
.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--sp-2); }
.field label { font-size: .89rem; font-weight: 650; color: var(--ink); }
.req { color: var(--amber-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .9rem; background: var(--paper);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  font-size: 1rem; min-height: 48px; transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2333484E' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; background-size: 18px; padding-right: 2.4rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(32,152,160,.2); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #B3261E; }
.field-error { font-size: .84rem; color: #B3261E; font-weight: 600; }

.field-optional { border: 1px dashed var(--line-strong); border-radius: var(--r-sm); padding: var(--sp-3) var(--sp-4); }
.field-optional summary { cursor: pointer; font-size: .91rem; font-weight: 650; color: var(--teal); list-style: none; display: block; min-height: 32px; padding-block: .35rem; }
.field-optional summary::-webkit-details-marker { display: none; }
.field-optional summary::before { content: "+"; display: inline-block; width: 1rem; font-size: 1.15rem; line-height: 1; color: var(--amber-deep); font-weight: 700; }
.field-optional[open] summary::before { content: "–"; }
.field-optional summary span { font-weight: 400; color: var(--muted); }
.field-optional summary::marker { content: ""; }
.field-optional > *:not(summary) { margin-top: var(--sp-4); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-privacy { display: flex; gap: var(--sp-3); align-items: flex-start; background: var(--cream); border-radius: var(--r-sm); padding: var(--sp-3) var(--sp-4); font-size: .86rem; color: var(--muted); }
.form-privacy .icon { color: var(--teal); margin-top: 2px; }
.form-alt { text-align: center; font-size: .92rem; color: var(--muted); }
.form-error { background: #FDECEA; border: 1px solid #F3B5B0; color: #8C1D18; border-radius: var(--r-sm); padding: var(--sp-3) var(--sp-4); font-size: .92rem; font-weight: 600; }

.btn-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(11,31,36,.25); border-top-color: var(--ink); border-radius: 50%; animation: spin .7s linear infinite; }
.is-sending .btn-spinner { display: block; }
.is-sending .btn-label { opacity: .65; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success { text-align: center; display: grid; gap: var(--sp-4); justify-items: center; padding-block: var(--sp-4); }
.success-mark { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: rgba(32,152,160,.15); color: var(--teal); }
.success-mark .icon { width: 28px; height: 28px; }
.form-success p { color: var(--body); max-width: 44ch; }

/* ── CTA band ────────────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(160deg, var(--ink) 0%, #123A41 100%); color: var(--on-dark-muted); }
.cta-inner { display: grid; gap: var(--sp-7); }
@media (min-width: 940px) { .cta-inner.has-form { grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; } }
.cta-inner.no-form { max-width: 720px; margin-inline: auto; text-align: center; }
.cta-inner.no-form .btn-row { justify-content: center; }
.cta-copy h2 { color: #fff; }
.cta-copy > p { margin-top: var(--sp-4); font-size: 1.06rem; max-width: 52ch; }
.cta-inner.no-form .cta-copy > p { margin-inline: auto; }
.cta-points { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
.cta-points li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: .98rem; }
.cta-points .icon { color: var(--amber-lt); margin-top: 3px; }
.cta-call { margin-top: var(--sp-5); font-size: .98rem; }
.cta-band .form-card { color: var(--body); }

/* ── sticky mobile CTA ───────────────────────────────────────────────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: auto 1fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%); transition: transform .28s var(--ease);
  box-shadow: 0 -4px 20px rgba(11,31,36,.12);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-btn { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); padding: .95rem var(--sp-4); font-weight: 700; font-size: .96rem; text-decoration: none; min-height: 56px; }
.sticky-call { background: var(--paper); color: var(--teal); }
.sticky-consult { background: var(--amber); color: var(--ink); }
@media (min-width: 1020px) { .sticky-cta { display: none !important; } }
@media (max-width: 1019px) { body { padding-bottom: 0; } .sticky-cta.is-visible ~ * { } }

/* ── footer ──────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding-block: var(--sp-8) var(--sp-6); margin-bottom: 56px; font-size: .95rem; }
@media (min-width: 1020px) { .site-footer { margin-bottom: 0; } }
.footer-grid { display: grid; gap: var(--sp-7); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); } }
.footer-brand img { margin-bottom: var(--sp-4); }
.footer-name { font-family: var(--serif); font-size: 1.16rem; color: #fff; font-weight: 700; }
.footer-blurb { margin-top: var(--sp-3); font-size: .92rem; max-width: 40ch; }
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--on-dark); }
.footer-social a:hover { background: var(--teal-lt); color: var(--ink); }
.footer-col h2 { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--amber-lt); margin-bottom: var(--sp-4); }
.footer-col ul { display: grid; gap: var(--sp-3); }
.footer-col a { color: var(--on-dark-muted); text-decoration: none; display: inline-flex; align-items: center; gap: var(--sp-2); }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact .icon { color: var(--teal-lt); flex: none; }
.footer-email { overflow-wrap: anywhere; }
.footer-area { display: flex; gap: var(--sp-2); align-items: flex-start; }
.footer-area .icon { margin-top: 3px; }
.footer-license { display: flex; gap: var(--sp-3); align-items: flex-start; margin-top: var(--sp-5); padding: var(--sp-4); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm); }
.footer-license .icon { color: var(--amber-lt); margin-top: 2px; }
.footer-license strong { display: block; color: #fff; font-size: .9rem; }
.footer-license span { display: block; font-size: .85rem; font-variant-numeric: tabular-nums; }
.footer-license a { display: inline-block; margin-top: var(--sp-2); color: var(--amber-lt); font-size: .85rem; }

.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); justify-content: space-between; align-items: center; margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer-legal a { color: var(--on-dark-muted); text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.footer-disclaimer { margin-top: var(--sp-5); font-size: .8rem; color: #7E979C; max-width: 92ch; line-height: 1.6; }

/* ── 404 ─────────────────────────────────────────────────────────────── */
.notfound { text-align: center; padding-block: var(--sp-9); }
.notfound .code { font-family: var(--serif); font-size: clamp(4rem, 16vw, 8rem); color: var(--cream-deep); line-height: 1; }
.notfound h1 { margin-top: calc(var(--sp-5) * -1); }
.notfound .btn-row { justify-content: center; margin-top: var(--sp-6); }
.notfound ul { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); justify-content: center; margin-top: var(--sp-6); }

/* ── landing pages (paid traffic) ────────────────────────────────────── */
.lp-min .site-header .nav-desktop { display: none; }
.lp-trust { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); justify-content: center; margin-top: var(--sp-6); }
.lp-trust li { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: .92rem; color: var(--on-dark-muted); }
.lp-trust .icon { color: var(--amber-lt); }

/* ── motion & print ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .btn:hover, .card-linked:hover, .situation:hover { transform: none; }
}
@media print {
  .site-header, .sticky-cta, .cta-band, .breadcrumbs, .form-card { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .site-footer { background: none; color: #000; }
}
