/* Story In Reach: site styles
   Edit the tokens in :root to adjust colors and type across every page. */

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-italic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/public-sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette: paper, ink, coastal slate, sea glass, archive rust */
  --paper: #f7f2e8;
  --paper-2: #efe7d8;
  --card: #fffdf8;
  --ink: #1d2629;
  --ink-2: #455257;
  --line: #dcd2c0;
  --slate: #2c5a68;
  --slate-deep: #1f4450;
  --sea: #b9d2cc;
  --sea-soft: #e3eeea;
  --rust: #9a4527;
  --rust-soft: #f3e2d6;
  --focus: #c8551f;

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --measure: 38rem;
  --wide: 72rem;
  --radius: 14px;
  --space: clamp(4rem, 9vw, 7.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  /* faint paper grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .35 0 0 0 0 .3 0 0 0 0 .22 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--slate); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--slate-deep); text-decoration-thickness: 2px; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 .6em;
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); font-weight: 420; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 650; letter-spacing: 0; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
em { font-style: italic; }
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--slate); }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; color: var(--paper); }

.wrap { width: min(100% - 2.5rem, var(--wide)); margin-inline: auto; }
.measure { max-width: var(--measure); }
.section { padding-block: var(--space); }
.section--tint { background: var(--paper-2); border-block: 1px solid var(--line); }
.section--ink { background: var(--slate-deep); color: #eef3f1; }
.section--ink a:not(.btn) { color: #fff; }
.section--ink .eyebrow { color: var(--sea); }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 1.6rem; height: 1px; background: currentColor; }

.lede { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.55; color: var(--ink-2); max-width: 36rem; }
.muted { color: var(--ink-2); }
.small { font-size: .9rem; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247, 242, 232, .92); backdrop-filter: saturate(1.2) blur(8px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }

/* Wordmark. To use an SVG logo later, replace the contents of .wordmark with <img src="/assets/img/logo.svg" alt="Story In Reach" width="180" height="32"> */
.wordmark { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.wordmark:hover { color: var(--ink); }
.wordmark__mark { width: 30px; height: 30px; flex: none; }
.wordmark__text { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; }
.wordmark__text i { font-style: italic; font-weight: 400; color: var(--slate); }

.nav-toggle { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .25rem; }
.primary-nav a { display: block; padding: .55rem .75rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-size: .95rem; font-weight: 500; }
.primary-nav a:hover { background: var(--paper-2); }
.primary-nav a[aria-current="page"] { color: var(--slate); box-shadow: inset 0 -2px 0 var(--slate); border-radius: 0; }
.primary-nav .nav-cta a { background: var(--ink); color: var(--paper); margin-left: .5rem; padding-inline: 1rem; border-radius: 999px; }
.primary-nav .nav-cta a:hover { background: var(--slate-deep); }
.primary-nav .nav-cta a[aria-current="page"] { box-shadow: none; border-radius: 999px; color: var(--paper); }

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: .5rem;
    font: 600 .95rem var(--sans); color: var(--ink);
    background: var(--card); border: 1px solid var(--line); border-radius: 999px;
    padding: .55rem 1rem; min-height: 44px; cursor: pointer;
  }
  .nav-toggle__bars { width: 18px; height: 12px; position: relative; }
  .nav-toggle__bars::before, .nav-toggle__bars::after, .nav-toggle__bars span { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; }
  .nav-toggle__bars::before { top: 0; } .nav-toggle__bars span { top: 5px; } .nav-toggle__bars::after { bottom: 0; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px -20px rgba(29,38,41,.25); display: none; }
  .primary-nav.is-open { display: block; }
  .js-off .primary-nav { display: block; position: static; box-shadow: none; }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: .75rem 1.25rem 1.25rem; gap: 0; }
  .primary-nav a { padding: .85rem .25rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .primary-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--slate); padding-left: .75rem; }
  .primary-nav .nav-cta a { margin: 1rem 0 0; text-align: center; border-bottom: 0; padding: .9rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.4rem; border-radius: 999px;
  font: 600 1rem/1.2 var(--sans); text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--ink); transition: background .15s, color .15s, transform .15s;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--slate-deep); border-color: var(--slate-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--card); color: var(--ink); }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.text-link { font-weight: 600; text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }
.text-link:hover { border-bottom-width: 2.5px; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 7vw, 6rem) var(--space); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: .45em; }
.hero h1 .line2 { display: block; font-style: italic; font-weight: 380; color: var(--slate); }
.hero__art { position: relative; }
.hero__art svg { overflow: visible; }
.hero__note { margin-top: 1.5rem; font-size: .92rem; color: var(--ink-2); }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { width: 100%; max-width: 400px; margin-inline: auto; order: 2; }
}

.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); max-width: 16ch; }
.page-hero__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; }
@media (max-width: 860px) { .page-hero__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Layout helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.split--even { grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 860px) {
  .grid-3, .split, .split--even { grid-template-columns: 1fr; }
}
@media (max-width: 680px) { .grid-2 { grid-template-columns: 1fr; } }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.sticky { position: sticky; top: 6.5rem; }
@media (max-width: 860px) { .sticky { position: static; } }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
}
.card > :last-child { margin-bottom: 0; }
.card--link { transition: transform .2s, box-shadow .2s; }
.card--link:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(29,38,41,.35); }
.card__icon { width: 56px; height: 56px; margin-bottom: 1.25rem; }
.card h3 { margin-bottom: .5rem; }
.card .text-link::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }

.segment-card { display: flex; flex-direction: column; }
.segment-card .tagline { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--slate); margin-bottom: 1rem; }
.segment-card ul { margin: 0 0 1.5rem; }
.segment-card .text-link { margin-top: auto; align-self: flex-start; }

.checklist { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.checklist li { position: relative; padding-left: 1.75rem; margin-bottom: .55rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1rem; height: 1rem; border-radius: 50%;
  background: var(--sea-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.2 2.2 4.8-5' fill='none' stroke='%232c5a68' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat;
}
.checklist--no li::before {
  background: var(--rust-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5l5 5m0-5l-5 5' fill='none' stroke='%239a4527' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center/100% no-repeat;
}

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1.25rem, 3vw, 2.5rem); }
.steps > li { counter-increment: step; border-top: 1.5px solid var(--ink); padding-top: 1.25rem; }
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--rust); margin-bottom: .9rem; font-weight: 400;
}
.section--ink .steps > li { border-top-color: rgba(255,255,255,.5); }
.section--ink .steps > li::before { color: var(--sea); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 1.1rem; top: .5rem; bottom: .5rem; width: 1.5px; background: var(--line); }
.timeline > li { position: relative; padding-left: 3.5rem; padding-bottom: 2.25rem; counter-increment: tl; }
.timeline { counter-reset: tl; }
.timeline > li::before {
  content: counter(tl); position: absolute; left: 0; top: 0;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--card); border: 1.5px solid var(--slate); color: var(--slate);
  font: 600 .95rem var(--sans);
}
.timeline h3 { margin-bottom: .35rem; padding-top: .2rem; }
.timeline .meta { font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--rust); margin-bottom: .5rem; }

/* ---------- Principles / proof ---------- */
.principles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line); }
.principles > div { padding: 1.5rem 1.5rem 1.5rem 0; border-bottom: 1px solid var(--line); }
.principles > div:nth-child(odd) { border-right: 1px solid var(--line); }
.principles > div:nth-child(even) { padding-left: 1.5rem; }
.principles h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.principles p { margin: 0; color: var(--ink-2); font-size: .98rem; }
@media (max-width: 680px) {
  .principles { grid-template-columns: 1fr; }
  .principles > div, .principles > div:nth-child(even) { padding: 1.25rem 0; border-right: 0; }
  .principles > div:nth-child(odd) { border-right: 0; }
}

.proof-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.proof-panel__bar { display: flex; align-items: center; gap: .4rem; padding: .7rem 1rem; border-bottom: 1px solid var(--line); background: var(--paper-2); font-size: .8rem; color: var(--ink-2); }
.proof-panel__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); display: inline-block; }
.proof-panel__bar span { margin-left: .5rem; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.proof-list { list-style: none; margin: 0; padding: .5rem 1.25rem 1.25rem; }
.proof-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.proof-list li:last-child { border-bottom: 0; }
.proof-list b { font-weight: 600; }
.proof-list .val { color: var(--slate); font-weight: 600; text-align: right; white-space: nowrap; }

/* ---------- Pricing ---------- */
.price-card { display: flex; flex-direction: column; }
.price-card .tier { font-family: var(--sans); font-size: .8rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; color: var(--rust); margin: 0 0 .75rem; }
.price { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 2.9rem); line-height: 1; margin: 0 0 .4rem; font-weight: 450; }
.price small { font-family: var(--sans); font-size: .95rem; color: var(--ink-2); font-weight: 400; }
.price-card .fit { color: var(--ink-2); font-size: .98rem; border-bottom: 1px solid var(--line); padding-bottom: 1.1rem; margin-bottom: 1.25rem; }
.price-card .btn { margin-top: auto; }
.price-card--featured { border: 1.5px solid var(--slate); box-shadow: 0 24px 50px -30px rgba(31,68,80,.45); }
.badge { display: inline-block; font-size: .75rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; background: var(--sea-soft); color: var(--slate-deep); padding: .3rem .65rem; border-radius: 999px; position: absolute; top: 1.25rem; right: 1.25rem; }

.band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.band > div { padding: clamp(1.5rem, 3.5vw, 2.5rem); }
.band > div + div { border-left: 1px solid var(--line); }
.band .price { margin-bottom: .6rem; }
@media (max-width: 760px) { .band { grid-template-columns: 1fr; } .band > div + div { border-left: 0; border-top: 1px solid var(--line); } }

.tiers-inline { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin: .25rem 0 1rem; }
.tiers-inline span { font-family: var(--serif); font-size: 1.6rem; }
.tiers-inline span small { font-family: var(--sans); font-size: .85rem; color: var(--ink-2); }

.compare { width: 100%; border-collapse: collapse; font-size: .96rem; background: var(--card); border-radius: var(--radius); overflow: hidden; }
.compare caption { text-align: left; font-family: var(--serif); font-size: 1.5rem; margin-bottom: 1rem; }
.compare th, .compare td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare thead th { background: var(--paper-2); font-weight: 650; }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; }
.compare tbody th { font-weight: 500; }
.yes { color: var(--slate); font-weight: 700; }
.no { color: #6b7478; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
@media (max-width: 560px) { .compare { font-size: .85rem; } .compare th, .compare td { padding: .7rem .5rem; } .compare tbody th { min-width: 8.5rem; } }
.table-scroll:focus-visible { outline-offset: 2px; }

/* ---------- Callouts ---------- */
.callout { border-left: 3px solid var(--slate); background: var(--sea-soft); padding: 1.25rem 1.5rem; border-radius: 0 10px 10px 0; }
.callout--rust { border-left-color: var(--rust); background: var(--rust-soft); }
.callout > :last-child { margin-bottom: 0; }
.callout h3 { font-size: 1.2rem; margin-bottom: .4rem; }

.boundary { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.boundary > div { padding: clamp(1.5rem, 3vw, 2.25rem); }
.boundary > div + div { border-left: 1.5px dashed var(--ink-2); background: var(--paper); }
@media (max-width: 760px) { .boundary { grid-template-columns: 1fr; } .boundary > div + div { border-left: 0; border-top: 1.5px dashed var(--ink-2); } }

/* Example audit findings */
.finding { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.finding:last-child { border-bottom: 0; }
.finding__tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .55rem; border-radius: 6px; height: fit-content; white-space: nowrap; }
.tag-quick { background: var(--sea-soft); color: var(--slate-deep); }
.tag-plan { background: var(--rust-soft); color: #7a3419; }
.finding h4 { margin: 0 0 .25rem; }
.finding p { margin: 0; color: var(--ink-2); font-size: .97rem; }

.example-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #7a3419; background: var(--rust-soft); border: 1px dashed var(--rust);
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}

/* Before / after schematic */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 760px) { .ba { grid-template-columns: 1fr; } }
.ba figure { margin: 0; }
.ba figcaption { font-weight: 650; margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.mock { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 1rem; font-size: .8rem; min-height: 320px; display: flex; flex-direction: column; gap: .6rem; }
.mock .m-bar { height: 10px; border-radius: 4px; background: var(--line); }
.mock .m-nav { display: flex; gap: .35rem; flex-wrap: wrap; }
.mock .m-nav span { background: var(--paper-2); border-radius: 4px; padding: .15rem .4rem; font-size: .68rem; color: var(--ink-2); }
.mock .m-img { background: repeating-linear-gradient(135deg, var(--paper-2) 0 8px, var(--card) 8px 16px); border-radius: 8px; flex: 1; min-height: 110px; display: grid; place-items: center; color: var(--ink-2); font-size: .75rem; text-align: center; padding: .5rem; }
.mock .m-lines i { display: block; height: 7px; background: var(--paper-2); border-radius: 3px; margin-bottom: 5px; }
.mock .m-lines i:nth-child(2) { width: 85%; } .mock .m-lines i:nth-child(3) { width: 70%; }
.mock .m-small { font-size: .66rem; color: #6b7478; }
.mock--after .m-head { font-family: var(--serif); font-size: 1.15rem; line-height: 1.2; color: var(--ink); }
.mock--after .m-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
.mock--after .m-facts div { background: var(--sea-soft); border-radius: 6px; padding: .45rem; }
.mock--after .m-facts b { display: block; font-size: .7rem; color: var(--slate-deep); }
.mock--after .m-facts span { font-size: .66rem; color: var(--ink-2); }
.mock--after .m-cta { display: flex; gap: .4rem; }
.mock--after .m-cta span { background: var(--ink); color: var(--paper); padding: .35rem .7rem; border-radius: 999px; font-size: .7rem; font-weight: 600; }
.mock--after .m-cta span + span { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.ba ul { font-size: .95rem; color: var(--ink-2); margin-top: 1rem; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.2rem 2.5rem 1.2rem 0; font-family: var(--serif); font-size: 1.25rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.5rem; color: var(--slate); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 0 1.25rem; color: var(--ink-2); max-width: 42rem; }

/* ---------- CTA block ---------- */
.cta-block { text-align: left; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: end; }
.cta-block h2 { color: #fff; margin-bottom: .4em; }
.cta-block p { color: #d5e3df; max-width: 34rem; }
.cta-block .btn-row { justify-content: flex-end; margin-top: 0; }
@media (max-width: 760px) { .cta-block { grid-template-columns: 1fr; } .cta-block .btn-row { justify-content: flex-start; } }

/* ---------- About ---------- */
.portrait {
  aspect-ratio: 4 / 5; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--sea-soft), var(--paper-2));
  display: grid; place-items: center; text-align: center; color: var(--ink-2); padding: 1.5rem; font-size: .9rem;
  overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.facts { list-style: none; padding: 0; margin: 1.5rem 0 0; border-top: 1px solid var(--line); }
.facts li { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.facts li span:first-child { color: var(--ink-2); }
.facts li span:last-child { font-weight: 600; text-align: right; }

.pullquote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.3; font-weight: 400; margin: 0; padding-left: 1.5rem; border-left: 3px solid var(--rust); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.field label, .field legend { display: block; font-weight: 600; margin-bottom: .4rem; }
.field .hint { display: block; font-weight: 400; font-size: .88rem; color: var(--ink-2); margin-top: .15rem; }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--card); border: 1.5px solid #b9ae9b; border-radius: 10px;
  padding: .8rem .95rem; min-height: 48px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(44,90,104,.25); }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
fieldset.field { border: 0; padding: 0; margin: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; min-height: 44px; padding: .55rem 1.1rem; border: 1.5px solid #b9ae9b; border-radius: 999px; background: var(--card); font-weight: 500; cursor: pointer; }
.choice input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.choice input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 1rem 1.25rem; border-radius: 10px; display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { background: var(--sea-soft); border: 1px solid var(--sea); }
.form-status.err { background: var(--rust-soft); border: 1px solid var(--rust); }
.req { color: var(--rust); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfd8d6; padding-block: 4rem 2rem; font-size: .95rem; }
.site-footer a { color: #eef3f1; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.footer-grid h2 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sea); margin-bottom: 1rem; font-weight: 650; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.site-footer .wordmark { color: #fff; }
.site-footer .wordmark__text i { color: var(--sea); }
.footer-motto { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: #fff; margin: 1.25rem 0 .5rem; max-width: 22rem; line-height: 1.35; }
.footer-base { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #aab7b4; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:first-child { grid-column: 1 / -1; } }

/* ---------- Misc ---------- */
.divider-wave { color: var(--line); display: block; width: 100%; height: 24px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mb-0 { margin-bottom: 0; }
.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; }
ul.plain { padding-left: 1.2rem; } ul.plain li { margin-bottom: .4rem; }
.prose h2 { font-size: 1.7rem; margin-top: 2.25rem; }
.prose { max-width: 42rem; }

@media print {
  .site-header, .site-footer, .nav-toggle, .btn-row { display: none !important; }
  body { background: #fff; }
}
.page-hero__icon { width: 160px; justify-self: end; }
@media (max-width: 860px) { .page-hero__icon { display: none; } }
.split--form { grid-template-columns: 1.25fr .75fr; }
@media (max-width: 860px) { .split--form { grid-template-columns: 1fr; } }
.callout__title { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: .4rem; line-height: 1.2; }
.finding .finding__title { font-family: var(--sans); font-size: 1rem; font-weight: 650; letter-spacing: 0; margin: 0 0 .25rem; line-height: 1.4; }
