/* ==========================================================================
   Ganuza Ledger
   Palette is taken from the printed business card. Do not substitute colours
   by eye — every value here is an exact hex, and any new one must be stated
   explicitly in a comment so it can be checked.
   ========================================================================== */

:root {
  /* ---- Card palette (exact values from the brief) ---- */
  --navy:  #29315E;   /* primary: headings, dark panels, buttons */
  --white: #FFFFFF;
  --pale:  #D6DEEA;   /* secondary text on navy; hairline rules */
  --paper: #EDF1F6;   /* near-white page tint */
  --teal:  #7FC6C6;   /* rules and small accents only */
  --brass: #B08D57;   /* sparingly, secondary accent */

  /* ---- Derived neutrals. New values, stated for the record ---- */
  --ink:       #29315E;  /* = navy, headings */
  --body:      #454C6D;  /* body copy — navy desaturated, 8.2:1 on white */
  --muted:     #6B7391;  /* secondary copy, 4.9:1 on white */
  --rule:      #DCE3ED;  /* hairline borders */
  --rule-soft: #E7ECF3;  /* lighter dividers */
  --navy-deep: #1E2547;  /* button hover, gradient base */

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(41, 49, 94, 0.06);
  --shadow: 0 2px 8px rgba(41, 49, 94, 0.07), 0 12px 28px rgba(41, 49, 94, 0.06);

  --container: 1080px;
  --measure: 62ch;
  --gutter: 24px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --font: "Poppins", "Century Gothic", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--navy); color: var(--white); }

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

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.14; }
h2 { font-size: clamp(1.5rem, 2.9vw, 2.05rem); }
h3 { font-size: 1.14rem; }
h4 { font-size: 1rem; }

p { text-wrap: pretty; max-width: var(--measure); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  line-height: 1.65;
  color: var(--body);
}

.muted { color: var(--muted); }
.small { font-size: 0.88rem; }

/* Label: small caps set in the brass/teal register, used sparingly */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 12px;
  background: var(--teal);
}

.section-head--center .eyebrow::after { margin-inline: auto; }

/* --- Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(56px, 8vw, 92px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--paper { background: var(--paper); }
.section--line { border-top: 1px solid var(--rule); }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }
.section-head p { margin-top: 14px; }

/* --- Wordmark -----------------------------------------------------------
   The actual logo file (static/assets/logo-mark.svg), not CSS-built text.
   logo-mark-white.svg is the same mark with GANUZA in white instead of
   navy, for use on the dark footer — LEDGER stays teal in both. To change
   the mark itself (spacing, weight, colors), regenerate those two SVGs;
   don't hand-edit sizing here beyond the height below. */
.brand {
  display: inline-block;
  line-height: 1;
  padding: 2px 0;
}

.brand__img {
  display: block;
  height: 44px;
  width: auto;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:active { transform: none; }
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--rule);
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--navy);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--light:hover { background: var(--pale); border-color: var(--pale); color: var(--navy); }

.btn--onnavy {
  background: transparent;
  color: var(--white);
  border-color: rgba(214, 222, 234, 0.45);
}

.btn--onnavy:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--pale); color: var(--white); }

.btn--lg { padding: 15px 30px; font-size: 0.98rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
}

.textlink:hover { border-bottom-color: var(--navy); }
.textlink svg { transition: transform 0.25s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

/* --- Header ------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease-soft);
}

.header.is-scrolled { border-bottom-color: var(--rule); }

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

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }

.nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--body);
  transition: color 0.2s var(--ease-soft);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--navy); font-weight: 500; }
.nav a.is-active::after { transform: scaleX(1); }

/* Specificity note: `.nav a` would otherwise beat `.btn` and leave the header
   button with dark text on the navy fill (1.48:1, unreadable). */
.nav a.header__cta {
  margin-left: 10px;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--white);
}

.nav a.header__cta::after { display: none; }
.nav a.header__cta:hover { color: var(--white); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  position: relative;
}

.nav-toggle:hover { background: var(--paper); }

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 17px; height: 1.5px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease-soft);
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateX(-50%) translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateX(-50%) translateY(-5px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(41, 49, 94, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-soft), visibility 0.28s;
}

body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 88px));
  padding-bottom: clamp(44px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}

.hero h1 { margin-bottom: 20px; max-width: 20ch; }
.hero .lead { max-width: 56ch; margin-bottom: 30px; }
.hero .btn-row { margin-bottom: 22px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}

.hero__note svg { color: var(--teal); flex: none; }

/* --- Page head (inner pages) -------------------------------------------- */
.page-head {
  padding-top: calc(var(--header-h) + clamp(40px, 6vw, 68px));
  padding-bottom: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid var(--rule);
}

.page-head__inner { max-width: 660px; }
.page-head h1 { margin-bottom: 16px; }

/* --- The two paths ------------------------------------------------------ */
.paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.path {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.path:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.path h3 { font-size: 1.28rem; margin-bottom: 10px; }
.path > p { color: var(--body); font-size: 0.97rem; margin-bottom: 18px; }
.path .btn, .path .textlink { margin-top: auto; align-self: flex-start; }

.path__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* --- Lists -------------------------------------------------------------- */
.ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--body);
}

.ticks svg { color: var(--teal); flex: none; margin-top: 6px; }

.ticks--two { grid-template-columns: repeat(2, 1fr); gap: 10px 32px; }

/* "What I don't do" — the mark is an ✕ shape, so meaning never depends on
   colour alone. Border colour is brass to set it apart from the tick lists. */
.scope-list {
  list-style: none;
  padding: 0;
  margin-inline: auto;
  max-width: 780px;
  display: grid;
  gap: 12px;
}

.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  color: var(--body);
}

.scope-list li p { max-width: none; }
.scope-list strong { color: var(--ink); font-weight: 600; }

/* Same list shape, used for statements rather than exclusions: teal rule,
   no ✕ mark. */
.scope-list--plain li {
  border-left-color: var(--teal);
  padding-left: 22px;
}

.scope-list__mark {
  flex: none;
  width: 20px; height: 20px;
  color: var(--brass);
  margin-top: 3px;
}

/* --- Access & trust block ------------------------------------------------
   The strongest objection-killer on the site, so it gets its own quiet
   moment rather than being buried in a bullet list: an icon, one paragraph,
   a teal rule on the left to distinguish it from the brass "don't do" list. */
.trust-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 760px;
  margin-inline: auto;
  padding: 22px 26px;
  background: var(--paper);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
}

.trust-block svg {
  flex: none;
  color: var(--navy);
  margin-top: 3px;
}

.trust-block p { max-width: none; color: var(--body); font-size: 0.96rem; }

/* --- Cards -------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.94rem; }
.card--flat:hover { box-shadow: none; transform: none; }

/* --- Credentials strip -------------------------------------------------- */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cred {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.cred svg { color: var(--teal); flex: none; }

/* --- Steps -------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.step { padding-top: 20px; border-top: 2px solid var(--rule); }
/* Brass (#B08D57) only reaches 3.09:1 on white, so it fails as small text.
   It stays a non-text accent; the numeral uses --muted at 4.68:1. */
.step__num {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 7px; font-size: 1.05rem; }
.step p { font-size: 0.93rem; }

/* --- Prose -------------------------------------------------------------- */
.prose p + p { margin-top: 17px; }
.prose p { color: var(--body); }

/* --- Portrait placeholder ----------------------------------------------- */
.portrait {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 34px;
  color: var(--white);
  text-align: center;
}

.portrait__slot {
  width: 116px; height: 116px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px dashed rgba(214, 222, 234, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pale);
  line-height: 1.4;
}

.portrait h3 { color: var(--white); margin-bottom: 4px; }
.portrait p { color: var(--pale); font-size: 0.9rem; max-width: none; }
.portrait__rule { height: 1px; background: rgba(127, 198, 198, 0.5); margin: 18px auto; width: 46px; }

/* --- Accordion ---------------------------------------------------------- */
.accordion { border-top: 1px solid var(--rule); max-width: 780px; margin-inline: auto; }
.acc__item { border-bottom: 1px solid var(--rule); }

.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 2px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s var(--ease-soft);
}

.acc__btn:hover { color: var(--navy-deep); }

.acc__icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  color: var(--teal);
  transition: transform 0.3s var(--ease);
}

.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.22s var(--ease-soft);
}

.acc__icon::before { width: 12px; height: 2px; }
.acc__icon::after { width: 2px; height: 12px; }

.acc__item.is-open .acc__icon { transform: rotate(90deg); }
.acc__item.is-open .acc__icon::after { opacity: 0; }

.acc__panel { overflow: hidden; height: 0; transition: height 0.32s var(--ease); }
.acc__panel p { padding: 0 40px 22px 2px; font-size: 0.95rem; }

/* --- Contact ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-list { display: grid; gap: 12px; }

.contact-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease);
}

a.contact-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }

.contact-card__icon { color: var(--teal); flex: none; margin-top: 2px; }

.contact-card__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  word-break: break-word;
}

.contact-card__sub { display: block; font-size: 0.84rem; color: var(--muted); margin-top: 2px; }

/* Form */
.form {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
}

.field { margin-bottom: 16px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 0.94rem;
  transition: border-color 0.2s var(--ease-soft), box-shadow 0.2s var(--ease-soft),
    background-color 0.2s var(--ease-soft);
}

.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(41, 49, 94, 0.12);
}

.form__note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; max-width: none; }

.form__status {
  margin-top: 14px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border-left: 3px solid var(--teal);
  color: var(--body);
  font-size: 0.88rem;
  display: none;
}

.form__status.is-visible { display: block; }

/* --- Navy CTA band ------------------------------------------------------ */
.cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 56px);
  color: var(--white);
  text-align: center;
}

.cta h2 { color: var(--white); margin-bottom: 12px; }
.cta p { color: var(--pale); margin-inline: auto; margin-bottom: 26px; }
.cta .btn-row { justify-content: center; }

/* --- Footer ------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: var(--pale);
  padding-block: clamp(44px, 6vw, 64px) 26px;
  font-size: 0.9rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 34px;
}

.footer__blurb { max-width: 32ch; font-size: 0.88rem; color: var(--pale); margin-top: 16px; }

.footer h5 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer a { color: var(--pale); transition: color 0.2s var(--ease-soft); }
.footer a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(214, 222, 234, 0.22);
  font-size: 0.8rem;
  color: rgba(214, 222, 234, 0.75);
}

.footer__bottom p { max-width: none; }

/* --- Reveal (restrained) ------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js [data-reveal].is-in { opacity: 1; transform: none; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .paths { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }

  .brand__img { height: 36px; }

  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 95;
    width: min(300px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    margin: 0;
    padding: calc(var(--header-h) + 16px) 18px 24px;
    background: var(--white);
    border-left: 1px solid var(--rule);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease), visibility 0.35s;
    overflow-y: auto;
  }

  body.nav-open .nav { transform: translateX(0); visibility: visible; }
  body.nav-open { overflow: hidden; }

  .nav a { padding: 13px 12px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav a::after { display: none; }
  .nav a:hover { background: var(--paper); }
  .nav a.is-active { background: var(--paper); }
  .header__cta { margin: 14px 0 0; width: 100%; }

  .steps { grid-template-columns: 1fr; gap: 22px; }
  .ticks--two { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }

  .grid--2, .field--row { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .path, .card { padding: 24px; }
  .acc__panel p { padding-right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .header, .nav-scrim, .cta { display: none; }
  body { color: #000; }
}
