/* ============================================================================
   Caught & Booked — Brand Design System (BRAND-002 v1.0)
   ONE stylesheet. ONE token source. No Tailwind, no second sheet, no conflicts.
   Palette / type / spacing / radii / shadows all per BRAND-002.
   ========================================================================== */

/* ---- 0. Tokens ----------------------------------------------------------- */
:root {
  /* Colour — exact BRAND-002 hex */
  --ink:        #0E2438;
  --ink-deep:   #0A1B2B;   /* darker ink for layered dark sections */
  --brass:      #E8A33D;   /* accent — ALWAYS ink text on it, never white */
  --brass-text: #8A5300;   /* AA-safe brass for links/labels on light */
  --slate:      #2E5A7D;
  --white:      #FFFFFF;
  --paper:      #F7F5F2;
  --line:       #E4E0D9;
  --muted:      #51606E;
  --body:       #1A2A39;
  --success:    #1E7F4F;
  --warn-fill:  #F4B43C;
  --warn-text:  #8A5300;
  --error:      #C0362C;

  /* On-ink neutrals (for dark sections) */
  --on-ink:       #F4F1EC;
  --on-ink-muted: #AFC0CF;
  --ink-line:     rgba(244,241,236,0.14);

  /* Type */
  --font-head: 'Archivo', 'Arial Narrow', Arial, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Radii */
  --r-btn: 8px;
  --r-card: 12px;
  --r-surface: 16px;
  --r-pill: 999px;

  /* Shadows — ink-tinted, soft */
  --e1: 0 1px 2px rgba(14,36,56,.06), 0 2px 8px rgba(14,36,56,.06);
  --e2: 0 4px 16px rgba(14,36,56,.10);
  --e3: 0 12px 32px rgba(14,36,56,.16);

  /* Layout */
  --maxw: 1200px;
  --measure: 64ch;
  --gutter: clamp(16px, 5vw, 24px);
}

/* ---- 1. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (min-width: 768px) { body { font-size: 17px; } }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brass-text); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
button, input, textarea, select { font: inherit; color: inherit; }
:where(button, a) { -webkit-tap-highlight-color: transparent; }

/* Focus — 2px Brass ring + offset, never removed */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- 2. Typography ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; text-wrap: balance; }
h1 { font-weight: 800; font-size: clamp(2rem, 1.3rem + 3.2vw, 3rem); line-height: 1.06; letter-spacing: -.02em; }
h2 { font-weight: 700; font-size: clamp(1.625rem, 1.2rem + 1.9vw, 2.25rem); letter-spacing: -.015em; }
h3 { font-weight: 700; font-size: clamp(1.3125rem, 1.15rem + .7vw, 1.625rem); letter-spacing: -.01em; }
h4 { font-weight: 600; font-size: clamp(1.125rem, 1.05rem + .35vw, 1.25rem); letter-spacing: 0; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brass); display: inline-block; }
.lead { font-size: clamp(1.0625rem, 1rem + .5vw, 1.25rem); line-height: 1.55; color: var(--body); max-width: var(--measure); }
.muted { color: var(--muted); }
.measure { max-width: var(--measure); }
.center { text-align: center; }
.amp { color: var(--brass); font-weight: 700; }

/* ---- 3. Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 820px; margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.panel--paper { background: var(--paper); }
.panel--white { background: var(--white); }
.panel--tint  { background: linear-gradient(180deg, #FBFAF8, var(--paper)); border-block: 1px solid var(--line); }
.panel--ink   { background: var(--ink); color: var(--on-ink); }
.panel--ink h1, .panel--ink h2, .panel--ink h3, .panel--ink h4 { color: var(--white); }
.panel--ink .eyebrow { color: var(--brass); }
.panel--ink .lead, .panel--ink p { color: var(--on-ink-muted); }
.panel--ink a:not(.btn) { color: var(--brass); }

.grid { display: grid; gap: clamp(20px, 3vw, 28px); }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: 1fr; }
.split  { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 640px) { .cols-2 { grid-template-columns: repeat(2,1fr); } .cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 880px) {
  .cols-3 { grid-template-columns: repeat(3,1fr); }
  .cols-4 { grid-template-columns: repeat(4,1fr); }
  .split  { grid-template-columns: 1fr 1fr; }
  .split--media-first > :first-child { order: 1; }
}

.stack-sm { display: grid; gap: 12px; }
.stack    { display: grid; gap: 20px; }
.stack-lg { display: grid; gap: 32px; }

/* ---- 4. Buttons ---------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--white); --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  letter-spacing: .01em; text-decoration: none;
  min-height: 48px; padding: 14px 24px;
  border-radius: var(--r-btn); border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  text-align: center;
}
.btn:hover { box-shadow: var(--e2); transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { --btn-bg: var(--ink); --btn-fg: var(--white); }
.btn--primary:hover { --btn-bg: #16334d; }
.btn--accent  { --btn-bg: var(--brass); --btn-fg: var(--ink); }
.btn--accent:hover { --btn-bg: #d9941f; }
.btn--secondary { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--secondary:hover { --btn-bg: rgba(14,36,56,.05); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--slate); --btn-bd: transparent; padding-inline: 8px; min-height: 40px; }
.btn--ghost:hover { box-shadow: none; text-decoration: underline; }
.btn--lg { min-height: 54px; padding: 16px 30px; font-size: 1.0625rem; }
.btn--block { display: flex; width: 100%; }
/* On ink */
.panel--ink .btn--secondary, .on-ink .btn--secondary { --btn-fg: var(--white); --btn-bd: rgba(255,255,255,.55); }
.panel--ink .btn--secondary:hover, .on-ink .btn--secondary:hover { --btn-bg: rgba(255,255,255,.08); --btn-bd:#fff; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-row--center { justify-content: center; }

/* ---- 5. Cards ------------------------------------------------------------ */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--e1); padding: clamp(20px, 3vw, 28px);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card--link { text-decoration: none; color: inherit; display: block; }
.card--link:hover { box-shadow: var(--e2); transform: translateY(-2px); border-color: #d8d2c8; }
.card--feature { position: relative; }
.card--feature::before {
  content: ""; position: absolute; inset: -1px -1px auto -1px; height: 4px;
  background: var(--brass); border-radius: var(--r-card) var(--r-card) 0 0;
}
.card h3 { margin-bottom: 8px; }
.card .muted:last-child, .card p:last-child { margin-bottom: 0; }

/* ---- 6. Stat block (SIGNATURE) ------------------------------------------- */
.stat { display: grid; gap: 10px; }
.stat__num {
  font-family: var(--font-head); font-weight: 800; color: var(--ink);
  font-size: clamp(2.4rem, 1.6rem + 3.4vw, 3.4rem); line-height: 1; letter-spacing: -.02em;
}
.panel--ink .stat__num { color: var(--white); }
.stat__keyline { width: 56px; height: 4px; background: var(--brass); border-radius: 2px; }
.stat__label { font-size: .95rem; color: var(--muted); max-width: 28ch; }
.panel--ink .stat__label { color: var(--on-ink-muted); }

/* ---- 7. Feature / icon items -------------------------------------------- */
.feature { display: grid; gap: 14px; }
.icon-badge {
  width: 48px; height: 48px; border-radius: var(--r-card);
  display: grid; place-items: center; flex: none;
  background: rgba(14,36,56,.05); border: 1px solid var(--line); color: var(--ink);
}
.icon-badge svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge--brass { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.panel--ink .icon-badge { background: rgba(255,255,255,.06); border-color: var(--ink-line); color: var(--brass); }

/* Numbered steps */
.step { display: grid; grid-template-columns: auto 1fr; gap: 16px 18px; align-items: start; }
.step__n {
  width: 40px; height: 40px; border-radius: var(--r-pill); flex: none;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800;
  background: var(--ink); color: var(--white); font-size: 1.1rem;
}
.step h3 { grid-column: 2; margin-bottom: 4px; }
.step p { grid-column: 2; margin: 0; }

/* Checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: 14px; }
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.checklist svg { width: 22px; height: 22px; color: var(--success); stroke: currentColor; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.panel--ink .checklist svg { color: var(--brass); }

/* Chips / pills */
.chips { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; padding: 0; list-style: none; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--ink); }
.chip svg { width: 18px; height: 18px; color: var(--success); stroke: currentColor; stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.panel--ink .chip { color: var(--on-ink); } .panel--ink .chip svg { color: var(--brass); }
.pill {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body);
  font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brass-text); background: rgba(232,163,61,.12); border: 1px solid rgba(232,163,61,.32);
  padding: 5px 12px; border-radius: var(--r-pill);
}

/* ---- 8. Header / nav ----------------------------------------------------- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

.nav { position: sticky; top: 0; z-index: 100; background: rgba(247,245,242,.86); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
.nav__links { display: none; list-style: none; padding: 0; gap: 28px; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .98rem; padding: 6px 0; position: relative; }
.nav__links a:hover { color: var(--brass-text); }
.nav__links a[aria-current="page"]::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--brass); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__cta .btn { min-height: 42px; padding: 10px 18px; }
.nav__cta .nav-callbtn { display: none; }
.nav__toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-btn); background: var(--white); }
.nav__toggle svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 2; fill: none; stroke-linecap: round; }
@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .nav__cta .nav-callbtn { display: inline-flex; }
}

/* Logo wordmark — clean Archivo type, brass ampersand (no drawn circle) */
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.32rem; letter-spacing: -.02em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; white-space: nowrap; flex: none; }
.brand__mark .amp { color: var(--brass); }
.brand .amp { padding-inline: 1px; }
.brand--reversed { color: var(--on-ink); }
.brand--reversed .brand__mark { background: rgba(255,255,255,.08); border: 1px solid var(--ink-line); }

/* Mobile menu */
.menu { position: fixed; inset: 0; z-index: 150; background: var(--ink); color: var(--on-ink); padding: 20px var(--gutter) 40px; display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .26s ease; visibility: hidden; overflow-y: auto; }
.menu[data-open="true"] { transform: translateX(0); visibility: visible; }
.menu__top { display: flex; align-items: center; justify-content: space-between; min-height: 68px; margin-bottom: 18px; }
.menu__close { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--ink-line); border-radius: var(--r-btn); color: var(--on-ink); }
.menu__close svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.menu a:not(.btn) { color: var(--on-ink); text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--ink-line); }
.menu a:not(.btn):hover { color: var(--brass); }
.menu .btn { margin-top: 14px; }
.menu .btn--secondary { --btn-fg:#fff; --btn-bd: rgba(255,255,255,.5); }

/* ---- 9. Hero ------------------------------------------------------------- */
.hero { padding-block: clamp(40px, 6vw, 80px) clamp(48px, 7vw, 96px); }
.hero__grid { display: grid; gap: clamp(32px, 5vw, 56px); align-items: center; }
@media (min-width: 920px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { margin-bottom: 18px; }
.hero .lead { margin-bottom: 4px; }

/* ---- 10. Conversation demo (the text-back) ------------------------------ */
.convo { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-surface); box-shadow: var(--e3); padding: 18px; max-width: 420px; margin-inline: auto; }
.convo__head { display: flex; align-items: center; gap: 12px; padding: 4px 6px 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.convo__avatar { width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .74rem; letter-spacing: -.03em; line-height: 1; white-space: nowrap; flex: none; }
.convo__avatar .amp { color: var(--brass); }
.convo__who { font-weight: 600; font-size: .92rem; color: var(--ink); }
.convo__sub { font-size: .76rem; color: var(--muted); }
.convo__thread { display: grid; gap: 12px; }
.bubble { max-width: 86%; padding: 11px 14px; border-radius: 16px; font-size: .92rem; line-height: 1.45; position: relative; }
.bubble__meta { display: block; font-size: .7rem; margin-top: 5px; opacity: .72; }
.bubble--in { background: var(--paper); border: 1px solid var(--line); color: var(--body); border-bottom-left-radius: 5px; justify-self: start; }
.bubble--out { background: var(--ink); color: var(--on-ink); border-bottom-right-radius: 5px; justify-self: end; }
.bubble--out .bubble__meta { color: var(--on-ink-muted); opacity: 1; }
.bubble--booked { background: var(--success); color: #fff; }
.bubble--booked .bubble__meta { color: rgba(255,255,255,.85); opacity:1; }

/* ---- 11. Media frame (art-directed image placeholder / real <img>) ------- */
.media { position: relative; border-radius: var(--r-surface); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--e1); background: var(--ink); aspect-ratio: 4 / 3; }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--portrait { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 16 / 9; }
.media__ph { position: absolute; inset: 0; display: grid; place-content: center; gap: 12px; text-align: center; padding: 28px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 12px, transparent 12px 24px),
    radial-gradient(120% 90% at 100% 0%, rgba(232,163,61,.22), transparent 55%),
    var(--ink);
  color: var(--on-ink-muted);
}
.media__ph .mk { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid var(--ink-line); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .82rem; letter-spacing: -.03em; line-height: 1; white-space: nowrap; color: #fff; margin-inline: auto; }
.media__ph .mk .amp { color: var(--brass); }
.media__ph strong { color: var(--on-ink); font-family: var(--font-head); font-size: .95rem; font-weight: 700; }
.media__ph code { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: .72rem; color: var(--brass); background: rgba(0,0,0,.28); border: 1px solid var(--ink-line); padding: 4px 9px; border-radius: 6px; }
.media__ph span { font-size: .76rem; }

/* ---- 12. Forms ----------------------------------------------------------- */
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: .875rem; color: var(--body); }
.field .hint { font-size: .8rem; color: var(--muted); }
.input, .field input, .field textarea, .field select {
  width: 100%; min-height: 48px; padding: 12px 14px; font-size: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); color: var(--body);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(232,163,61,.35); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
/* Consent / privacy checkbox row inside forms */
.field--check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.field--check input[type="checkbox"] { width: 20px; height: 20px; min-height: 0; min-width: 20px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--brass); }
.field--check label { font-weight: 500; font-size: .85rem; color: var(--muted); line-height: 1.45; }
.field--check label a { color: var(--slate); text-decoration: underline; }
/* Inline form success / error message */
.form-note { margin: 14px 0 0; padding: 11px 14px; border-radius: var(--r-card); font-size: .9rem; line-height: 1.45; }
.form-note--ok { background: rgba(34,139,84,.1); border: 1px solid rgba(34,139,84,.4); color: #166c3b; }
.form-note--error { background: rgba(193,42,42,.08); border: 1px solid rgba(193,42,42,.4); color: #a12121; }

/* ---- 13. ROI Calculator -------------------------------------------------- */
.calc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-surface); box-shadow: var(--e2); overflow: hidden; }
.calc__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 860px) { .calc__grid { grid-template-columns: 1.15fr .85fr; } }
.calc__inputs { padding: clamp(22px, 4vw, 36px); display: grid; gap: 22px; align-content: start; }
.calc__field { display: grid; gap: 10px; }
.calc__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.calc__row label { font-weight: 600; font-size: .95rem; color: var(--ink); }
.calc__val { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.calc__note { font-size: .8rem; color: var(--muted); }
.calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--line); outline-offset: 6px; }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); border: 3px solid var(--white); box-shadow: var(--e1); cursor: pointer; }
.calc input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); border: 3px solid var(--white); box-shadow: var(--e1); cursor: pointer; }
.calc input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(232,163,61,.6); }
.calc__result { background: var(--ink); color: var(--on-ink); padding: clamp(24px, 4vw, 36px); display: grid; align-content: center; gap: 6px; }
.calc__result .k { font-size: .92rem; color: var(--on-ink-muted); }
.calc__big { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem, 1.8rem + 4vw, 3.6rem); line-height: 1; color: var(--white); letter-spacing: -.02em; }
.calc__big::after { content:""; display:block; width: 64px; height: 4px; background: var(--brass); border-radius: 2px; margin-top: 14px; }
.calc__recovered { font-size: .92rem; color: var(--on-ink); background: rgba(232,163,61,.14); border: 1px solid rgba(232,163,61,.3); border-radius: var(--r-card); padding: 12px 14px; margin-top: 14px; }
.calc__recovered b { color: var(--brass); }
.calc__disclaimer { font-size: .76rem; color: var(--on-ink-muted); margin-top: 12px; }

/* ---- 14. Highlight band (keep your number) ------------------------------ */
.highlight { display: grid; gap: 20px; align-items: center; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--brass); border-radius: var(--r-card); box-shadow: var(--e1); padding: clamp(22px, 3vw, 32px); }
@media (min-width: 720px) { .highlight { grid-template-columns: auto 1fr; gap: 24px; } }

/* ---- 15. Pricing --------------------------------------------------------- */
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 22px; margin: 8px 0 4px; }
.price__amt { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 2.4rem; line-height: 1; }
.price__amt--sub { font-size: 1.7rem; }
.price__per { font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: var(--muted); }

/* ---- 16. Article (blog) -------------------------------------------------- */
.article { max-width: 720px; margin-inline: auto; }
.article .meta { color: var(--muted); font-size: .9rem; margin-bottom: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
.article h1 { margin: 6px 0 18px; }
.article h2 { margin: 40px 0 12px; }
.article p { margin-bottom: 18px; font-size: 1.0625rem; line-height: 1.7; }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; display: grid; gap: 10px; }
.article li { line-height: 1.6; }
.article blockquote { margin: 26px 0; padding: 18px 22px; background: var(--paper); border-left: 4px solid var(--brass); border-radius: 0 var(--r-card) var(--r-card) 0; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; line-height: 1.4; color: var(--ink); }
.crumb { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.crumb a { color: var(--brass-text); }

.post-card { display: grid; gap: 12px; align-content: start; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--brass-text); }
.post-card .read { margin-top: auto; font-weight: 600; color: var(--brass-text); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.post-card .read:hover { gap: 10px; }

/* ---- 17. Footer ---------------------------------------------------------- */
.footer { background: var(--ink); color: var(--on-ink-muted); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--on-ink-muted); text-decoration: none; }
.footer a:hover { color: var(--brass); }
.footer__brand .brand { color: var(--white); font-size: 1.4rem; }
.footer__brand p { margin-top: 12px; max-width: 34ch; font-size: .92rem; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--ink-line); font-size: .82rem; color: var(--on-ink-muted); }

/* ---- 18. Sticky mobile CTA + WhatsApp FAB ------------------------------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: 10px; padding: 10px var(--gutter); background: rgba(247,245,242,.94); backdrop-filter: blur(8px); border-top: 1px solid var(--line); }
.sticky-cta .btn { flex: 1; min-height: 46px; }
@media (min-width: 940px) { .sticky-cta { display: none; } }
.wa-fab { position: fixed; right: 16px; bottom: 78px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: var(--e2); }
.wa-fab svg { width: 30px; height: 30px; fill: currentColor; }
@media (min-width: 940px) { .wa-fab { bottom: 22px; right: 22px; } }
@media (max-width: 939px) { body { padding-bottom: 68px; } }

/* ---- 19. Legal flag (internal review marker) ---------------------------- */
.legal-flag { display: inline; font-size: .82em; color: var(--warn-text); background: rgba(244,180,60,.16); border-bottom: 1px dashed var(--warn-text); padding: 0 3px; border-radius: 3px; }
.panel--ink .legal-flag { color: #F4D08A; background: rgba(244,180,60,.14); border-color: rgba(244,208,138,.5); }

/* ---- 20. Reveal -----------------------------------------------------------
   Content is ALWAYS visible (no opacity/transform hidden state). The .reveal
   hook is retained only as a styling anchor; entrance motion was removed for
   reliability across embedded webviews that throttle CSS animations. -------- */
.reveal { opacity: 1; }

/* ---- 21. Utilities ------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 40px; }
.text-success { color: var(--success); } .strong { font-weight: 700; color: var(--ink); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(40px, 6vw, 72px); }

/* ---- 22. Cookie consent (gates analytics until accepted) ----------------- */
.cc-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 720px; margin-inline: auto; background: var(--ink); color: var(--on-ink);
  border: 1px solid var(--ink-line); border-radius: var(--r-surface);
  box-shadow: 0 18px 48px rgba(10,27,43,.4); padding: 18px 20px;
  display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }
.cc-banner p { margin: 0; flex: 1 1 280px; font-size: .92rem; color: var(--on-ink-muted); }
.cc-banner p a { color: #F4D08A; }
.cc-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cc-banner .btn { min-height: 44px; }
@media (max-width: 939px) { .cc-banner { bottom: 76px; } }

/* Cal.com embed: fixed-height booking box so the slot list scrolls instead of stretching the page */
[data-cal-mount]{height:560px;max-height:78vh;overflow:hidden;border-radius:10px}
[data-cal-mount] iframe{height:100%!important;min-height:100%!important;width:100%!important}
