/* ============================================================ *
 * Hopkins Forensic / StatementProof — homepage stylesheet
 *
 * Design direction: restrained editorial typography on warm
 * off-white. Serif headlines (Source Serif 4) for credibility
 * and visual weight. IBM Plex Sans body for a workmanlike feel
 * without the AI-startup sameness of Inter or Roboto. IBM Plex
 * Mono for numerals on the tie-out exhibit — those should look
 * like a workpaper, not like web text. Dark navy primary,
 * forest-green accent reserved for PASS chips and hover states.
 * Ledger-line dividers (warm tan-grey) between sections.
 * Generous whitespace. Single fluid column under 760px.
 * No JS dependencies. No tracking. No third-party scripts.
 * ============================================================ */


/* ---------- Tokens ---------- */

:root {
  /* Surfaces */
  --c-bg:           #fafaf7;   /* warm off-white "paper" */
  --c-bg-alt:       #f3f1e9;   /* slightly darker, for alternating sections */
  --c-surface:      #ffffff;   /* cards on alt background */

  /* Text */
  --c-text:         #181b22;   /* near-black, slight warm cast */
  --c-text-muted:   #5b6473;
  --c-text-on-dark: #f3f1e9;

  /* Brand */
  --c-navy:         #0f2940;   /* dark navy — primary brand */
  --c-navy-deep:    #091a2c;   /* hover / pressed */
  --c-green:        #1f4a3a;   /* deep forest — accent for PASS, hover */
  --c-green-deep:   #143329;

  /* Ledger */
  --c-rule:         #d9d6cc;   /* warm tan-grey, "ledger line" */
  --c-rule-soft:    #e9e6dd;
  --c-num-bg:       #f7f4ea;   /* slightly warmer than page, for the table demo */

  /* Status chips */
  --c-pass-bg:      #e3ebe5;
  --c-pass-fg:      #143329;
  --c-info-bg:      #e7eaf0;
  --c-info-fg:      #0f2940;
  --c-mismatch-bg: #f4e2d8;
  --c-mismatch-fg: #5a2a14;

  /* Typography */
  --ff-serif:       "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --ff-sans:        "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-mono:        "IBM Plex Mono", ui-monospace, "SF Mono", Consolas, "Liberation Mono", monospace;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --max-container: 1180px;
  --max-narrow:    760px;
  --radius:        2px;          /* corners are restrained, not pillowy */
}

/* ---------- Reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 var(--sp-5) 0;
}

p { margin: 0 0 var(--sp-4) 0; }

a {
  color: var(--c-navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 120ms ease;
}

a:hover, a:focus-visible { color: var(--c-green); }

/* Visible focus for keyboard users — non-negotiable */
:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* Sticky-header offset for anchor scrolling.
 * The site-header is position:sticky at the top of the viewport
 * (~62px tall). Without this rule, clicking any in-page nav link
 * (#statementproof, #who-we-help, #sample, etc.) scrolls the
 * target to y=0, where the sticky header obscures the top ~62px
 * of it. scroll-margin-top pads the target with 4.5rem (~76px)
 * of leading whitespace for anchor scrolls only — it has no
 * effect on layout or regular page scroll. */
[id] { scroll-margin-top: 4.5rem; }

/* Skip link for keyboard / AT users */
.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--c-navy);
  color: var(--c-text-on-dark);
  padding: var(--sp-3) var(--sp-4);
  z-index: 999;
  text-decoration: none;
}
.skip-link:focus { left: var(--sp-3); top: var(--sp-3); }

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--max-container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: var(--max-narrow); }

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--c-rule);
}

.section--light {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-rule);
}

/* Eyebrow label above each section heading */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-4) 0;
}

.section__title {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: var(--sp-5);
  max-width: 30ch;
}

.section__lede {
  font-size: 1.125rem;
  color: var(--c-text);
  max-width: 62ch;
  margin-bottom: var(--sp-7);
}

.section__body { max-width: 65ch; }
.section__body--small { font-size: 0.95rem; color: var(--c-text-muted); }

.subhead {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: var(--sp-7) 0 var(--sp-4) 0;
}

/* ---------- Site header ---------- */

.site-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-rule);
  position: sticky;
  top: 0;
  z-index: 50;
  /* Subtle paper shadow rather than a hard dropshadow */
  box-shadow: 0 1px 0 rgba(15, 41, 64, 0.03);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--c-navy);
  text-decoration: none;
}
.brand:hover { color: var(--c-navy); }
.brand__mark {
  display: inline-flex;
  color: var(--c-navy);
}
.brand__name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name strong {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0;
}
.brand__sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--sp-5);
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--c-text);
  padding-block: var(--sp-2);
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease, color 120ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--c-navy);
  border-bottom-color: var(--c-green);
}

/* Hide nav on small screens — brand + hero CTAs do the work.
 *
 * Below this breakpoint the brand is alone in the header rather
 * than balanced against a 5-item nav. The 0.7rem / 0.18em eyebrow
 * sub-mark that reads as editorial restraint on desktop becomes a
 * whisper without the nav next to it, so we promote it slightly:
 * larger size, tighter tracking. Still uppercase, still secondary
 * to the wordmark, but legible as a standalone subtype.
 */
@media (max-width: 760px) {
  .site-nav { display: none; }

  .brand__name strong {
    font-size: 1.1rem;
  }
  .brand__sub {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
}

/* ---------- Hero ---------- */

.hero {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-rule);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}

/* Left column of the hero. The grid does the layout work; this rule
 * exists so future per-column tweaks have a hook. */
.hero__copy {
  min-width: 0; /* prevent grid overflow on long unbreakable strings */
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 22ch;
}

.hero__lede {
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: var(--sp-6);
  color: var(--c-text);
}

.featured-product {
  border-left: 3px solid var(--c-green);
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-5);
  margin: var(--sp-6) 0;
  background: linear-gradient(90deg, rgba(31, 74, 58, 0.04) 0%, rgba(31, 74, 58, 0) 60%);
}
.featured-product__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-1) 0;
}
.featured-product__name {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-navy);
  margin: 0;
  line-height: 1.15;
}
.featured-product__tagline {
  font-size: 1rem;
  color: var(--c-text);
  margin: var(--sp-1) 0 0 0;
  font-style: italic;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 1.4em;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 100ms ease;
  line-height: 1;
}

.btn--primary {
  background: var(--c-navy);
  color: var(--c-text-on-dark);
  border-color: var(--c-navy);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--c-navy-deep);
  border-color: var(--c-navy-deep);
  color: var(--c-text-on-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--c-navy);
  color: var(--c-text-on-dark);
}

/* ---------- Workpaper card (hero visual) ---------- */

.hero__visual {
  /* Subtle paper shadow + offset; this should feel like a printed
   * workpaper laid on the page, not a UI panel. */
  position: relative;
}

.workpaper-card {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  box-shadow:
    0 1px 0 var(--c-rule),
    0 6px 24px -12px rgba(15, 41, 64, 0.18);
}

.workpaper-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-navy);
  margin-bottom: var(--sp-4);
}
.workpaper-card__tab {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-navy);
  padding: 0.3em 0.6em;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-rule);
}
.workpaper-card__meta {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.workpaper-card__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.workpaper-card__table th,
.workpaper-card__table td {
  padding: 0.55em 0.5em;
  border-bottom: 1px solid var(--c-rule-soft);
  vertical-align: baseline;
  text-align: left;
}
.workpaper-card__table thead th {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  border-bottom-color: var(--c-rule);
  padding-top: var(--sp-3);
}
.workpaper-card__table tbody tr:last-child td {
  border-bottom: none;
}
.workpaper-card__table .num {
  font-family: var(--ff-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.workpaper-card__table .row--emph td {
  font-weight: 600;
  border-top: 1px solid var(--c-navy);
  border-bottom: 1px solid var(--c-navy);
  background: var(--c-num-bg);
}

.workpaper-card__caption {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin: var(--sp-4) 0 0 0;
  line-height: 1.5;
}

/* Status chips inside the workpaper card */
.status {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.2em 0.55em;
  border-radius: var(--radius);
  border: 1px solid transparent;
}
.status--pass { background: var(--c-pass-bg); color: var(--c-pass-fg); border-color: rgba(31, 74, 58, 0.2); }
.status--info { background: var(--c-info-bg); color: var(--c-info-fg); border-color: rgba(15, 41, 64, 0.12); }
.status--mismatch { background: var(--c-mismatch-bg); color: var(--c-mismatch-fg); border-color: rgba(90, 42, 20, 0.2); }

/* Inline status word used in body copy ("PASS or MISMATCH") */
.status-inline {
  display: inline;
  font-family: var(--ff-mono);
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.1em 0.4em;
  border-radius: var(--radius);
}
.status-inline--pass     { background: var(--c-pass-bg);     color: var(--c-pass-fg); }
.status-inline--mismatch { background: var(--c-mismatch-bg); color: var(--c-mismatch-fg); }

/* ---------- Proof formula block ---------- */

.proof-formula {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  border-left: 3px solid var(--c-navy);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
  max-width: 56ch;
}
.proof-formula__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-3) 0;
}
.proof-formula__math {
  font-family: var(--ff-mono);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--c-navy);
  margin: 0 0 var(--sp-4) 0;
  white-space: pre;
  overflow-x: auto;
}
.proof-formula__rule {
  font-size: 0.95rem;
  color: var(--c-text);
  margin: 0;
}

/* ---------- Deliverables grid ---------- */

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.deliverable {
  padding: var(--sp-5) 0 0 0;
  border-top: 1px solid var(--c-rule);
}
.deliverable h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 var(--sp-2) 0;
  color: var(--c-navy);
}
.deliverable p {
  font-size: 0.95rem;
  color: var(--c-text);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Callout (Never show a false tie) ---------- */

.callout {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  padding: var(--sp-5) 0;
  margin: var(--sp-6) 0;
}
.callout__mark {
  font-family: var(--ff-serif);
  color: var(--c-green);
  font-size: 1.4rem;
  line-height: 1;
}
.callout__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--c-navy);
  font-weight: 500;
}

/* ---------- Audience grid ---------- */

.audience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--c-rule);
  border-left: 1px solid var(--c-rule);
}
.audience-grid li {
  padding: var(--sp-5);
  font-size: 1rem;
  border-right: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  background: var(--c-surface);
  position: relative;
}
.audience-grid li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-green);
  border-radius: 50%;
  margin-right: var(--sp-3);
  vertical-align: middle;
  transform: translateY(-2px);
}

/* ---------- Process (How it works) ----------
 * Four numbered cards in a responsive grid. The number itself is
 * the visual anchor — no icons, no arrows, no progress bar. Each
 * step reads like a workpaper line: short title, short body.
 * Cards stack to two columns at ~720px, then a single column at
 * the narrowest sizes via auto-fit minmax. */

.process {
  list-style: none;
  margin: var(--sp-6) 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-5);
  counter-reset: process-step;
}
.process__step {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  border-top: 3px solid var(--c-green);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
}
.process__num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-green);
  margin: 0 0 var(--sp-3) 0;
}
.process__title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.3;
  margin: 0 0 var(--sp-3) 0;
}
.process__body {
  font-size: 0.95rem;
  color: var(--c-text);
  margin: 0;
  line-height: 1.55;
}

/* ---------- FAQ ----------
 * Definition list (<dl>) of Q/A pairs. <dt> question is serif-led
 * and slightly larger; <dd> answer is body sans. Each item is
 * separated by a thin ledger-line top border. No accordion — the
 * answers are short enough to display in full and a forensic
 * audience reads through them rather than expanding. */

.faq {
  margin: var(--sp-6) 0 0 0;
  padding: 0;
  border-top: 1px solid var(--c-rule);
}
.faq__item {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-rule);
}
.faq__q {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.35;
  margin: 0 0 var(--sp-3) 0;
}
.faq__a {
  font-size: 1rem;
  color: var(--c-text);
  margin: 0;
  line-height: 1.6;
  max-width: 65ch;
}

/* ---------- Method section rule card ---------- */

.rule-card {
  background: var(--c-navy);
  color: var(--c-text-on-dark);
  padding: var(--sp-6) var(--sp-6);
  margin: var(--sp-6) 0;
  border-radius: var(--radius);
}
.rule-card__heading {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 241, 233, 0.7);
  margin: 0 0 var(--sp-4) 0;
}
.rule-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rule-card__list li {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(243, 241, 233, 0.15);
}
.rule-card__list li:last-child { border-bottom: none; }
.rule-card__list strong { font-weight: 600; }

.plain-list {
  list-style: none;
  margin: 0 0 var(--sp-5) 0;
  padding: 0;
}
.plain-list li {
  padding: var(--sp-3) 0;
  border-bottom: 1px dotted var(--c-rule);
  font-size: 1rem;
}
.plain-list li:last-child { border-bottom: none; }

/* ---------- Founder credentials ---------- */

.credentials {
  margin: var(--sp-6) 0 var(--sp-5) 0;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
}
.credentials__line {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--c-navy);
  font-weight: 500;
}
.credentials__sep {
  color: var(--c-text-muted);
  margin-inline: var(--sp-2);
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  font-style: italic;
  max-width: 60ch;
}

/* ---------- Templates ---------- */

.templates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-5);
}
.template {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  border-top: 3px solid var(--c-navy);
  padding: var(--sp-5);
}
.template__id {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-2) 0;
}
.template__name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  margin: 0 0 var(--sp-3) 0;
  line-height: 1.3;
}
.template__note {
  font-size: 0.92rem;
  color: var(--c-text);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin: var(--sp-6) 0 var(--sp-5);
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

.tier {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
}
.tier--featured {
  border-color: var(--c-navy);
  border-width: 1px;
  /* Quiet, intentional emphasis — not a "GLOWING" CTA card. */
  box-shadow:
    inset 0 3px 0 var(--c-navy),
    0 4px 20px -16px rgba(15, 41, 64, 0.25);
}
.tier__name {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-3) 0;
}
.tier__price {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-navy);
  margin: 0 0 var(--sp-4) 0;
  line-height: 1.2;
}
.tier__price strong { font-weight: 600; }
.tier__desc {
  font-size: 0.95rem;
  color: var(--c-text);
  margin: 0 0 var(--sp-4) 0;
  line-height: 1.55;
}
.tier__list {
  list-style: none;
  margin: 0;
  padding: var(--sp-4) 0 0 0;
  border-top: 1px solid var(--c-rule);
  font-size: 0.9rem;
}
.tier__list li {
  padding: var(--sp-2) 0 var(--sp-2) 1.2em;
  position: relative;
  color: var(--c-text);
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 8px;
  height: 1.5px;
  background: var(--c-green);
}

/* ---------- Intake ---------- */

.intake {
  margin-top: var(--sp-6);
}
.intake__list {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  padding: var(--sp-5) var(--sp-6) var(--sp-5) calc(var(--sp-6) + 1.3em);
  margin: 0 0 var(--sp-5) 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--c-text);
}
.intake__list li { padding: 2px 0; }

.intake__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
}

.intake__note {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  font-style: italic;
  max-width: 60ch;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--c-navy);
  color: var(--c-text-on-dark);
  padding-block: var(--sp-7) var(--sp-5);
  margin-top: var(--sp-8);
}

.site-footer__inner {
  /* Container wrapper; grid lives on .site-footer__top below */
}

.site-footer__brand {
  /* Hook for future per-column adjustments; the parent grid drives
   * the layout. */
  min-width: 0;
}

.site-footer a {
  color: var(--c-text-on-dark);
  text-decoration: underline;
  text-decoration-color: rgba(243, 241, 233, 0.3);
  text-underline-offset: 3px;
}
.site-footer a:hover, .site-footer a:focus-visible {
  text-decoration-color: var(--c-text-on-dark);
  color: var(--c-text-on-dark);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(243, 241, 233, 0.15);
}
@media (max-width: 800px) {
  .site-footer__top { grid-template-columns: 1fr; gap: var(--sp-5); }
}

.site-footer__name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--sp-2) 0;
}
.site-footer__tag {
  font-style: italic;
  color: rgba(243, 241, 233, 0.75);
  margin: 0;
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav li { padding: var(--sp-1) 0; }

.site-footer__contact p {
  margin: 0 0 var(--sp-2) 0;
  font-size: 0.95rem;
}

.site-footer__disclaimer {
  font-size: 0.82rem;
  color: rgba(243, 241, 233, 0.7);
  line-height: 1.55;
  max-width: 80ch;
  margin: var(--sp-5) 0 var(--sp-3) 0;
}

.site-footer__copy {
  font-size: 0.82rem;
  color: rgba(243, 241, 233, 0.55);
  margin: 0;
}
