/* ============================================================
   Doorpost Solutions — "Threshold"  (v3)
   Dark editorial. Warm charcoal, gold doorpost accent, pewter pines.
   Operations & process consultancy. Built to be bulletproof:
   container sizing uses literal values, never a var that could fail.
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --bg:        #0B1116;
  --bg-1:      #0F161D;
  --bg-2:      #141D25;
  --bg-3:      #1B2630;

  --ink:       #F5F2EB;
  --ink-dim:   #C7CFD6;
  --muted:     #939DA6;
  --faint:     #66707A;

  --navy:      #0E5B87;
  --navy-lift: #4C9BC4;   /* lifted navy for legibility on dark */
  --gold:      #FBC241;
  --gold-deep: #D49A2E;
  --silver:    #B7C1C7;

  --line:        rgba(183, 193, 199, 0.14);
  --line-strong: rgba(183, 193, 199, 0.30);
  --gold-line:   rgba(251, 194, 65, 0.55);

  --serif: "Fraunces", "Source Serif Pro", Georgia, serif;
  --sans:  "Hanken Grotesk", "Inter", system-ui, -apple-system, sans-serif;

  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: dark;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

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

/* ---- Base ---- */
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-dim);
  background-color: var(--bg);
  background-image:
    radial-gradient(110% 70% at 82% -10%, rgba(251, 194, 65, 0.08), transparent 55%),
    radial-gradient(85% 60% at 5% 2%, rgba(14, 91, 135, 0.18), transparent 52%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before { /* grain */
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
p { margin: 0; }
p + p { margin-top: 1.05em; }
strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; }

::selection { background: rgba(251, 194, 65, 0.28); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ============================================================
   Layout primitives — LITERAL values, no fragile vars
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}
.wrap--narrow { max-width: 1000px; }
.section { padding-block: clamp(4.5rem, 7vw, 7.5rem); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(3rem, 5vw, 5rem); }

/* Section intro block (eyebrow + heading + lede) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--sans);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.eyebrow::before { content: ""; width: 2.25rem; height: 2px; background: var(--gold); border-radius: 2px; }

.section-title {
  font-size: clamp(2.6rem, 1.8rem + 3.4vw, 4.25rem);
  margin-top: 1.1rem;
  max-width: 18ch;
}
.lede {
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  line-height: 1.55; color: var(--ink-dim); max-width: 46ch;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 1.0625rem;
  line-height: 1; border-radius: 4px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--gold { background: var(--gold); color: #241A03; }
.btn--gold:hover { background: #FFD061; transform: translateY(-2px); box-shadow: 0 16px 38px -14px rgba(251,194,65,0.6); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 0.72rem 1.15rem; font-size: 0.95rem; }

.skip-link {
  position: absolute; top: -120px; left: 1.5rem;
  background: var(--gold); color: #241A03; padding: 0.75rem 1rem;
  border-radius: 4px; font-weight: 600; z-index: 200;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 0.9rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { height: 58px; width: auto; }

.nav-list { display: flex; align-items: center; gap: clamp(1.75rem, 2.5vw, 2.75rem); }
.nav-list a {
  font-size: 1.15rem; font-weight: 500; color: var(--ink-dim);
  position: relative; padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: right 0.3s var(--ease);
}
.nav-list a:hover, .nav-list a:focus-visible { color: var(--ink); }
.nav-list a:hover::after, .nav-list a:focus-visible::after { right: 0; }

.nav-cta { display: inline-flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-list, .btn--nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: fixed; inset: 0; background: var(--bg-1);
    flex-direction: column; justify-content: center; gap: 2.25rem;
    transform: translateX(100%); transition: transform 0.4s var(--ease-out); z-index: 60;
  }
  .nav-list a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
  .nav-toggle { z-index: 70; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-list { transform: translateX(0); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.hero-grid {
  display: grid; gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}

.hero-eyebrow { margin-bottom: 1.6rem; }
.hero-title {
  font-size: clamp(3.1rem, 2rem + 5.2vw, 6.25rem);
  line-height: 0.98; letter-spacing: -0.028em; color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-title .line2 { display: block; color: var(--gold); }
.hero-sub {
  margin-top: 1.75rem; font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  line-height: 1.55; color: var(--ink-dim); max-width: 40ch;
}
.hero-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-promise { margin-top: 1.5rem; font-size: 0.95rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.55rem; max-width: 42ch; }
.hero-promise .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 6px; margin-top: 0.5rem; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-logo { width: 100%; max-width: 460px; height: auto; }
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(52% 48% at 50% 46%, rgba(251,194,65,0.13), transparent 70%);
  z-index: -1; pointer-events: none;
}
@media (max-width: 899px) {
  .hero-visual { order: -1; }
  .hero-logo { max-width: 300px; }
}
@media (max-width: 420px) {
  .hero-logo { max-width: 230px; }
}

/* Threshold divider */
.threshold { display: flex; align-items: center; gap: 1.25rem; margin-block: clamp(0.5rem, 2vw, 1.75rem); }
.threshold::before, .threshold::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.threshold .mark { width: 9px; height: 9px; transform: rotate(45deg); border: 1px solid var(--gold-line); flex: 0 0 9px; }

/* ============================================================
   Section intro grid (shared)
   ============================================================ */
.intro { display: grid; gap: 1.5rem; margin-bottom: clamp(3rem, 4.5vw, 4.25rem); }
@media (min-width: 880px) {
  .intro--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: end; gap: clamp(2rem, 4vw, 4rem); }
}
.intro--center { text-align: center; justify-items: center; }
.intro--center .eyebrow { justify-content: center; }
.intro--center .section-title, .intro--center .lede { margin-inline: auto; }

/* ============================================================
   Problem
   ============================================================ */
.problem-grid {
  display: grid; gap: 1px; grid-template-columns: 1fr;
  background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
@media (min-width: 620px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.pain {
  background: var(--bg-1); padding: 1.75rem 1.6rem; display: flex; gap: 0.9rem; align-items: flex-start;
  transition: background 0.3s var(--ease);
}
.pain:hover { background: var(--bg-2); }
.pain .m { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: 0 0 8px; margin-top: 0.62rem; }
.pain p { color: var(--ink-dim); font-size: 1.05rem; line-height: 1.5; }
.problem-foot { margin-top: 2.25rem; font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.55rem); color: var(--ink); }

/* ============================================================
   Capabilities
   ============================================================ */
.caps-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .caps-grid { grid-template-columns: repeat(3, 1fr); } }
.cap {
  position: relative; padding: 2rem 1.75rem 2.1rem;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.cap::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.35s var(--ease-out);
}
.cap:hover { border-color: var(--line-strong); transform: translateY(-4px); background: var(--bg-2); }
.cap:hover::before { transform: scaleY(1); }
.cap-num { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.cap h3 { font-size: 1.55rem; color: var(--ink); margin-bottom: 0.7rem; }
.cap p { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.cap-tag { margin-top: 1.1rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); opacity: 0.82; }

/* ============================================================
   Process
   ============================================================ */
.process { background: var(--bg-1); border-block: 1px solid var(--line); }
.steps { display: grid; gap: 2rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.step { position: relative; padding-top: 2.5rem; counter-increment: step; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; width: 15px; height: 15px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 5px rgba(251,194,65,0.14);
}
.step::after { content: ""; position: absolute; top: 6px; left: 24px; right: -1.5rem; height: 2px; background: linear-gradient(90deg, var(--gold-line), var(--line)); }
@media (max-width: 759px) { .step::after { display: none; } }
.steps .step:last-child::after { display: none; }
.step-label { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.step h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.55rem; }
.step p { color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* ============================================================
   Case study
   ============================================================ */
.case-grid { display: grid; gap: 2.5rem; }
@media (min-width: 980px) { .case-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 4rem; align-items: start; } }
.case-meta .eyebrow { margin-bottom: 1.4rem; }
.case-meta h2 { font-size: clamp(2.4rem, 1.7rem + 2.8vw, 3.6rem); margin-bottom: 0.9rem; }
.case-sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem); color: var(--silver); line-height: 1.4; margin-bottom: 1.5rem; }
.case-stats { margin-top: 1.75rem; border-top: 1px solid var(--line); }
.case-stat { padding: 1.05rem 0; border-bottom: 1px solid var(--line); display: grid; gap: 0.3rem; }
.case-stat dt { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.case-stat dd { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.case-stat dd .accent { color: var(--gold); }
.case-prose p { color: var(--ink-dim); margin-bottom: 1.1em; }
.case-prose .kicker { background: var(--bg-2); border-left: 3px solid var(--gold); padding: 1.4rem 1.6rem; border-radius: 0 8px 8px 0; margin-bottom: 1.75rem; }
.case-prose .kicker p { color: var(--ink); margin: 0; }
.case-quote {
  margin: 2.25rem 0 0; padding-left: 1.6rem; border-left: 3px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 1.2rem + 1vw, 1.85rem); line-height: 1.32; color: var(--ink);
}
.case-quote cite { display: block; margin-top: 0.9rem; font-family: var(--sans); font-style: normal; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.case-cta { margin-top: 2rem; }

/* ============================================================
   Audience
   ============================================================ */
.aud-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 640px) { .aud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .aud-grid { grid-template-columns: repeat(3, 1fr); } }
.aud-card { background: var(--bg-1); padding: 1.75rem 1.6rem; transition: background 0.3s var(--ease); }
.aud-card:hover { background: var(--bg-2); }
.aud-card h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 0.6rem; }
.aud-card h3::before { content: ""; display: block; width: 1.5rem; height: 2px; background: var(--gold); margin-bottom: 0.95rem; }
.aud-card p { color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* ============================================================
   About
   ============================================================ */
.about { background: var(--bg-1); border-block: 1px solid var(--line); }
.about-grid { display: grid; gap: 2.5rem; }
@media (min-width: 880px) { .about-grid { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 4rem; align-items: start; } }
.about-portrait { position: relative; max-width: 19rem; }
.about-portrait img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center top; border-radius: 8px; border: 1px solid var(--line-strong); }
.about-portrait::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--gold-line); border-radius: 8px; z-index: -1; }
.about-body .eyebrow { margin-bottom: 1.4rem; }
.about-body h2 { font-size: clamp(2.4rem, 1.7rem + 2.8vw, 3.6rem); margin-bottom: 1.4rem; }
.about-body p { color: var(--ink-dim); margin-bottom: 1.05em; max-width: 46ch; }
.about-scripture { margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-family: var(--serif); font-style: italic; color: var(--silver); max-width: 46ch; font-size: 1.05rem; line-height: 1.55; }

/* ============================================================
   FAQ (native <details>, no JS)
   ============================================================ */
.faq-list { border-top: 1px solid var(--line); max-width: 64rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.55rem);
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary .ic { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.faq-item summary .ic::before, .faq-item summary .ic::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq-item summary .ic::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-item summary .ic::after { left: 9px; top: 0; width: 2px; height: 20px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.faq-item[open] summary .ic::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--gold); }
.faq-a { padding: 0 0 1.6rem; max-width: 54rem; }
.faq-a p { color: var(--ink-dim); font-size: 1.0625rem; line-height: 1.65; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(60% 110% at 50% 0%, rgba(251,194,65,0.13), transparent 60%); pointer-events: none; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { font-size: clamp(2.9rem, 1.9rem + 3.6vw, 4.5rem); margin-top: 1.1rem; }
.cta-promise { font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem); color: var(--ink-dim); max-width: 40ch; margin: 1.25rem auto 2.25rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.cta-meta { margin-top: 2.75rem; display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; justify-content: center; font-size: 0.95rem; color: var(--muted); }
.cta-meta a { color: var(--ink-dim); border-bottom: 1px solid var(--gold-line); transition: color 0.25s var(--ease); }
.cta-meta a:hover { color: var(--gold); }
.cta-meta .label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.25rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2.25rem; background: var(--bg); position: relative; z-index: 2; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr); } }
.footer-brand .brand-logo { height: 62px; }
.footer-tag { color: var(--muted); font-size: 0.95rem; margin-top: 1.1rem; max-width: 28rem; font-family: var(--serif); font-style: italic; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); font-weight: 700; margin-bottom: 1rem; }
.footer-col a { font-size: 0.95rem; color: var(--ink-dim); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-col li + li { margin-top: 0.6rem; }
.footer-base { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.82rem; color: var(--faint); }
.footer-base .built { font-family: var(--serif); font-style: italic; color: var(--muted); }

/* ============================================================
   Reveal / load animation (JS-gated)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .stagger > * { opacity: 0; transform: translateY(18px); }
.js .stagger.in > * { animation: rise 0.9s var(--ease-out) forwards; }
.stagger.in > *:nth-child(1) { animation-delay: 0.05s; }
.stagger.in > *:nth-child(2) { animation-delay: 0.15s; }
.stagger.in > *:nth-child(3) { animation-delay: 0.27s; }
.stagger.in > *:nth-child(4) { animation-delay: 0.39s; }
.stagger.in > *:nth-child(5) { animation-delay: 0.51s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ---- Print ---- */
@media print {
  body { background: #fff; color: #000; }
  .site-header, .site-footer, .nav-toggle, .cta-band::before, body::before { display: none !important; }
}
