/* ─────────────────────────────────────────────────────────────
   Curabo — landing page
   Design tokens taken from the Curabo brand canvas.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Surfaces */
  --paper:      #F3F1EA;
  --white:      #FFFFFF;
  --ink:        #1C1B17;
  --ink-soft:   #2A2822;

  /* Text */
  --text:       #1C1B17;
  --text-mid:   #57534A;
  --text-dim:   #7A766A;
  --text-faint: #A5A093;

  /* Lines */
  --line:       #E3E0D4;
  --line-soft:  #EFEDE4;
  --line-input: #D3CFC2;
  --line-dark:  #3D3A31;

  /* Accents */
  --gold:       #E5B567;
  --gold-deep:  #B08930;
  --gold-tint:  #F0E7CE;
  --gold-bg:    #FAF6EA;
  --gold-line:  #E8DDBE;
  --green:      #1F7A4D;
  --green-soft: #4C7A5E;
  --rust:       #8A2F26;

  /* Type */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --shell:   1296px;   /* 1440 canvas − 72px gutters */
  --gutter:  clamp(20px, 5vw, 72px);
  --radius:  16px;
  --radius-sm: 10px;

  /* Rhythm */
  --section-y: clamp(56px, 8vw, 88px);
}

/* ── Reset ─────────────────────────────────────────────────── */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--rust); }

button, input { font: inherit; color: inherit; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: var(--paper); }

/* ── Primitives ────────────────────────────────────────────── */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.wordmark:hover { color: inherit; }
.wordmark-sm { font-size: 18px; }
.dot { color: var(--gold); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.mono-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  line-height: 1.45;
}

.fineprint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  line-height: 1.6;
}
.fineprint-left { text-align: left; }
.fineprint a { color: var(--gold); }

.link-muted { font-size: 14px; color: var(--text-mid); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding-inline: 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease,
              border-color .15s ease, transform .1s ease, opacity .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-dark  { background: var(--ink); color: var(--paper); }
.btn-dark:hover  { background: #35322A; color: var(--paper); }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--white); color: var(--ink); }

.btn-ghost { background: transparent; border-color: var(--line); color: var(--text-mid); }
.btn-ghost:hover { border-color: var(--line-input); color: var(--text); }

.btn-sm { height: 40px; padding-inline: 20px; font-size: 14px; }
.btn-xs { height: 34px; padding-inline: 16px; font-size: 13px; font-weight: 500; }

.btn[disabled] { opacity: .55; cursor: progress; }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.panel-inset { background: var(--paper); }

.pill {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 4px 12px;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  border: 1px solid var(--gold-line);
  background: var(--gold-bg);
  border-radius: 99px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── Header ────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  font-size: 14px;
  color: var(--text-mid);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-block: clamp(56px, 8vw, 104px) clamp(48px, 6.5vw, 84px);
  text-align: center;
}

h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 900px;
  text-wrap: balance;
}

.lede {
  font-size: clamp(16px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 640px;
  text-wrap: pretty;
}
.lede strong { color: var(--text); font-weight: 600; }

/* ── Access form ───────────────────────────────────────────── */

.access-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
}

.access-form input {
  flex: 1 1 260px;
  min-width: 0;
  height: 50px;
  padding-inline: 18px;
  background: var(--white);
  border: 1px solid var(--line-input);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.access-form input::placeholder { color: var(--text-faint); }
.access-form input:hover { border-color: #BEB9A9; }
.access-form input:focus-visible {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px var(--gold-tint);
}
.access-form input[aria-invalid="true"] { border-color: var(--rust); }

.form-status {
  flex-basis: 100%;
  min-height: 1.2em;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--text-dim);
}
.form-status[data-state="ok"]    { color: var(--green); }
.form-status[data-state="error"] { color: var(--rust); }

.access-form-dark { justify-content: flex-start; max-width: 440px; }
.access-form-dark input {
  background: var(--ink-soft);
  border-color: var(--line-dark);
  color: var(--paper);
  height: 48px;
}
.access-form-dark input::placeholder { color: var(--text-dim); }
.access-form-dark input:hover { border-color: #4E4A3F; }
.access-form-dark input:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(229,181,103,.22);
}
.access-form-dark .btn { height: 48px; padding-inline: 26px; }
.access-form-dark .form-status { text-align: left; color: var(--text-faint); }
.access-form-dark .form-status[data-state="ok"] { color: var(--gold); }
.access-form-dark .form-status[data-state="error"] { color: #E39C93; }

/* ── Approval box ──────────────────────────────────────────── */

.showcase { padding-bottom: clamp(56px, 7vw, 96px); }

.approval {
  max-width: 980px;
  margin-inline: auto;
  box-shadow: 0 24px 60px -32px rgba(28, 27, 23, .25);
  overflow: hidden;
}

.approval-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.approval-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.approval-head .wordmark-sm { font-size: 17px; }

.approval-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.approval-row:last-child { border-bottom: 0; }

.approval-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.approval-title { font-size: 14px; font-weight: 500; }

.approval-meta { margin-left: auto; white-space: nowrap; }
.approval-meta.signed { color: var(--green); letter-spacing: 0.08em; }

.gate-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 99px;
}
.gate-dot > span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: 1px dashed currentColor;
}
.gate-dot-green { border: 2px solid var(--green); color: var(--green); }
.gate-dot-gold  { border: 2px solid var(--gold);  color: var(--gold); }
.gate-dot-done  { background: var(--ink); }

/* ── Integrations strip ────────────────────────────────────── */

.strip { padding-bottom: clamp(48px, 6vw, 72px); }

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-align: center;
}

.strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  color: var(--text-mid);
}
.strip-list li + li::before { content: "·"; margin-right: 14px; color: var(--text-faint); }

/* ── Section shells ────────────────────────────────────────── */

.section { padding-block: var(--section-y); }

.band {
  padding-block: var(--section-y);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-top-only { border-bottom: 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-wrap: balance;
}
.h2-sm { font-size: clamp(24px, 3vw, 30px); line-height: 1.2; }

.section-lede {
  font-size: clamp(14.5px, 1.4vw, 15px);
  line-height: 1.65;
  color: var(--text-mid);
  text-wrap: pretty;
}
.section-lede strong { color: var(--text); font-weight: 600; }

/* ── Timeline ──────────────────────────────────────────────── */

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 0;
  margin-top: 44px;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 16px;
}
.step + .step { padding-left: 16px; }

/* connector line, drawn from each marker to the next */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 34px;
  right: -16px;
  height: 1px;
  background: var(--line);
}
.step-done::after { background: var(--ink); }

.step h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.step p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-dim);
}

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 99px;
  border: 1px solid var(--line-input);
  background: var(--white);
}
.step-done .step-marker { background: var(--ink); border-color: var(--ink); }

.step-gate .step-marker { border: 2px solid var(--gold); }
.step-gate .step-marker > span {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  border: 1px dashed var(--gold);
}
.step-gate-active .step-marker { box-shadow: 0 0 0 5px var(--gold-tint); }

.gate-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}

/* ── Cards ─────────────────────────────────────────────────── */

.pillars { padding-block: var(--section-y); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  text-wrap: pretty;
}
.card-foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px !important;
  letter-spacing: 0.08em;
  color: var(--text-faint) !important;
  padding-top: 6px;
}

/* ── Split sections ────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.split-reverse { grid-template-columns: minmax(0, 460px) minmax(0, 1fr); }

.split-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-text h2 { font-size: clamp(26px, 3.4vw, 36px); }

.split-visual { min-width: 0; }

/* ── Team composer ─────────────────────────────────────────── */

.composer { padding: 22px; display: flex; flex-direction: column; gap: 12px; }

.composer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.role-list { display: flex; flex-direction: column; gap: 8px; }

.role {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 99px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}
.avatar-pm  { background: var(--green-soft); }
.avatar-dv  { background: var(--ink); }
.avatar-sec { background: var(--rust); font-size: 10px; }

.role-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.role-name { font-size: 13.5px; font-weight: 600; }
.role-qual { font-weight: 400; color: var(--text-dim); }
.role .mono-label { font-size: 10px; letter-spacing: 0.05em; }

.evals { margin-left: auto; color: var(--green) !important; white-space: nowrap; }

.composer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.composer-rest { font-size: 12px; color: var(--text-dim); }

/* ── Insight card ──────────────────────────────────────────── */

.insight { padding: 22px; display: flex; flex-direction: column; gap: 14px; }

.insight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.insight-title { display: flex; flex-direction: column; gap: 4px; }
.insight-name { font-size: 15px; font-weight: 600; line-height: 1.35; }

.insight-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-mid);
}
.insight-body strong { color: var(--text); font-weight: 600; }

.insight-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.insight-actions .btn { height: 36px; }

.insight-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

/* ── Trust ─────────────────────────────────────────────────── */

.trust-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-head > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}
.tile h3 { font-size: 14px; font-weight: 600; }
.tile p { font-size: 13px; line-height: 1.55; color: var(--text-mid); }

/* ── CTA ───────────────────────────────────────────────────── */

.cta { background: var(--ink); color: var(--paper); }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: clamp(56px, 7vw, 72px);
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}
.cta h2 {
  font-size: clamp(30px, 4vw, 40px);
  color: var(--paper);
}
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p { font-size: 15px; line-height: 1.6; color: var(--text-faint); }
.cta .access-form { margin-top: 8px; }
.cta .fineprint { color: var(--text-dim); }

.cta-seal { flex: none; width: 150px; height: 150px; }

/* ── Footer ────────────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--line); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 28px;
}
.footer-motto { letter-spacing: 0.12em; font-size: 10px; color: var(--text-faint); }
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .card-grid  { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .split, .split-reverse { grid-template-columns: minmax(0, 1fr); }
  .split-reverse .split-visual { order: 2; }
  .split-reverse .split-text   { order: 1; }

  .composer, .insight { max-width: 560px; }

  .cta-inner { gap: 32px; }
  .cta-seal { width: 120px; height: 120px; }
}

@media (max-width: 900px) {
  /* Timeline becomes a vertical rail */
  .timeline { grid-template-columns: minmax(0, 1fr); gap: 24px; margin-top: 32px; }

  .step {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    grid-template-areas: "marker title" "marker body";
    column-gap: 16px;
    row-gap: 3px;
    padding: 0;
  }
  .step + .step { padding-left: 0; }
  .step-marker { grid-area: marker; }
  .step h3 { grid-area: title; align-self: center; }
  .step p  { grid-area: body; }

  .step:not(:last-child)::after {
    top: 30px;
    bottom: -24px;
    left: 12.5px;
    right: auto;
    width: 1px;
    height: auto;
  }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .header-inner { position: relative; }

  .nav {
    position: absolute;
    /* .header-inner is the shell itself, so its padding box already spans
       the full width — offset to 0, then re-apply the gutter as padding. */
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px -28px rgba(28, 27, 23, .4);
  }
  .nav[data-open="true"] { display: flex; }
  .nav a {
    padding: 14px 2px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav a:last-child { border-bottom: 0; }

  /* Group the CTA with the toggle instead of stranding it mid-header. */
  .header-actions { margin-left: auto; }
  .header-actions .sign-in { display: none; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-seal { align-self: center; }
}

@media (max-width: 760px) {
  .approval-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 10px;
    padding: 18px 20px;
  }
  .gate-dot { grid-row: 1; }
  .approval-item { grid-column: 2; }
  .approval-meta { grid-column: 2; margin-left: 0; }
  .approval-row .btn { grid-column: 2; justify-self: start; }

  .approval-head { padding: 14px 20px; }

  .strip-inner { flex-direction: column; gap: 14px; }

  .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 620px) {
  .card-grid, .trust-grid { grid-template-columns: minmax(0, 1fr); }

  .card { padding: 26px 22px; }

  .access-form { flex-direction: column; align-items: stretch; }
  /* flex-basis governs height once the axis flips — pin it back to the row size. */
  .access-form input { flex: 0 0 auto; width: 100%; height: 50px; }
  .access-form-dark input { height: 48px; }
  .access-form .btn { width: 100%; }

  .trust-head { align-items: flex-start; }

  /* Give the role description the full card width; drop the eval count below it. */
  .role {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 8px;
  }
  .role-body, .evals { grid-column: 2; }
  .evals { margin-left: 0; }

  .insight-foot, .composer-foot { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .header-actions .btn { padding-inline: 14px; font-size: 13px; }
  .wordmark { font-size: 22px; }
}

/* ── Motion ────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  :where(.site-header) { scroll-margin-top: 90px; }
  :where(section[id]) { scroll-margin-top: 90px; }
}

/* ── Print ─────────────────────────────────────────────────── */

@media print {
  .site-header, .nav-toggle, .access-form { display: none !important; }
  body { background: #fff; }
  .band, .cta { background: #fff !important; color: #000 !important; }
}
