/* ============================================
   DUSTOFF — design system
   palette: cream / tangerine / dark green / grass green
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,YOPQ@0,9..144,400..900,0..100,25..175;1,9..144,400..900,0..100,25..175&family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&family=JetBrains+Mono:wght@400;500;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ============================================
     PALETTE (brand surfaces — no contrast guarantee)
     ============================================ */
  --cream: #FFF8E7;
  --cream-2: #F5EBC8;
  --cream-3: #EBDFAF;
  --tangerine: #FF9F43;
  --tangerine-deep: #D97706;
  --tangerine-soft: #FFD09A;
  --green: #00843D;
  --green-dark: #04652F;
  --grass: #4CAF50;
  --grass-soft: #C9E7CB;
  --night: #1A2515;

  /* ============================================
     TEXT ROLES (WCAG-aware on cream background)
     ----------
     --text-display   tangerine — DECORATIVE only,
                      reserved for monumental
                      display type (>=40px)
     --text-strong    green     4.53:1  AA normal
     --text-body      darker grn 6.80:1 AAA normal
     --text-muted     darker grn 6.80:1 (secondary)
     --text-mono      green     4.53:1  AA normal
     --text-link      darker grn 6.80:1 + underline
     ============================================ */
  --text-display: var(--tangerine);
  --text-display-em: var(--green);
  --text-strong: var(--green);
  --text-body: var(--green-dark);
  --text-muted: var(--green-dark);
  --text-mono: var(--green);
  --text-link: var(--green-dark);
  --text-on-green: var(--cream);
  --text-on-tangerine: var(--cream);

  /* ============================================
     TYPOGRAPHY — font stacks
     ============================================ */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Familjen Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* ============================================
     TYPE SCALE — sizes (clamp so they breathe)
     d1 hero slogan
     d2 section titles
     d3 station / node titles
     d4 receipt / card titles
     h1 sub-headlines
     h2 small titles
     lede intros
     body paragraphs
     small secondary
     mono utility labels
     mono-xs tiny labels
     ============================================ */
  --fs-d1: clamp(40px, 8.4vw, 132px);
  --fs-d2: clamp(40px, 6vw, 96px);
  --fs-d3: clamp(36px, 4vw, 64px);
  --fs-d4: clamp(28px, 3vw, 48px);
  --fs-h1: clamp(24px, 2vw, 32px);
  --fs-h2: clamp(20px, 1.6vw, 24px);
  --fs-lede: clamp(18px, 1.5vw, 22px);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-mono: 12px;
  --fs-mono-xs: 11px;
  --fs-mono-tiny: 10px;

  /* Line heights & tracking */
  --lh-display: 0.92;
  --lh-headline: 1.1;
  --lh-body: 1.55;
  --lh-mono: 1.4;
  --ls-display: -0.035em;
  --ls-mono: 0.14em;

  /* ============================================
     LAYOUT
     ============================================ */
  --maxw: 1440px;
  --pad: 48px;
  --radius: 4px;
  --focus-ring: 2px solid var(--tangerine);
  --focus-offset: 3px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  overflow-x: hidden;
}

::selection { background: var(--tangerine); color: var(--cream); }

/* ============================================
   WCAG — focus, links, skip-link
   ============================================ */
:focus { outline: none; }
:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: 4px;
}
.btn:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 4px;
}
.logo:focus-visible img {
  outline: var(--focus-ring);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Skip to content — keyboard-only, hidden until focused */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green);
  color: var(--cream);
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: var(--fs-mono-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1000;
  border-radius: 999px;
  transition: top 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--tangerine);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* In-prose links: dark green with underline so they don't rely on color alone */
.prose a, p a:not(.btn):not(.logo):not(.pill) {
  color: var(--text-link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s, color 0.2s;
}
.prose a:hover, p a:not(.btn):not(.logo):not(.pill):hover {
  color: var(--tangerine-deep);
  text-decoration-color: var(--tangerine);
}

/* Universal type utility classes (additive — opt in by class) */
.t-display-1 { font: 900 var(--fs-d1)/var(--lh-display) var(--display); letter-spacing: var(--ls-display); color: var(--text-display); }
.t-display-2 { font: 900 var(--fs-d2)/0.95 var(--display); letter-spacing: var(--ls-display); color: var(--text-display); }
.t-display-3 { font: 900 var(--fs-d3)/0.95 var(--display); letter-spacing: -0.03em; color: var(--text-display); }
.t-display-4 { font: 800 var(--fs-d4)/1 var(--display); letter-spacing: -0.025em; color: var(--text-display); }
.t-h1 { font: 700 var(--fs-h1)/1.15 var(--display); letter-spacing: -0.015em; color: var(--text-strong); }
.t-h2 { font: 600 var(--fs-h2)/1.2 var(--display); letter-spacing: -0.01em; color: var(--text-strong); }
.t-lede { font: 500 var(--fs-lede)/1.45 var(--body); color: var(--text-body); }
.t-body { font: 500 var(--fs-body)/var(--lh-body) var(--body); color: var(--text-body); }
.t-small { font: 500 var(--fs-small)/1.5 var(--body); color: var(--text-muted); }
.t-mono { font: 500 var(--fs-mono)/var(--lh-mono) var(--mono); color: var(--text-mono); letter-spacing: var(--ls-mono); text-transform: uppercase; }
.t-mono-xs { font: 500 var(--fs-mono-xs)/1.3 var(--mono); color: var(--text-mono); letter-spacing: 0.18em; text-transform: uppercase; }

/* Screen-reader-only text */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ============================================
   utility bar
   ============================================ */
.util {
  background: var(--green);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.util-left { display: flex; gap: 28px; align-items: center; }
.util-left .dot {
  width: 7px; height: 7px;
  background: var(--tangerine);
  border-radius: 50%;
  display: inline-block;
  vertical-align: 1px;
  margin-right: 8px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.util a:hover { color: var(--tangerine); }
.util-sep { opacity: 0.5; }

/* ============================================
   nav
   ============================================ */
nav.top {
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--cream-3);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

nav.top ul {
  list-style: none;
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
nav.top ul a {
  color: var(--text-link);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
nav.top ul a:hover, nav.top ul a.active { color: var(--tangerine-deep); }
nav.top ul a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.nav-right .phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-mono);
  letter-spacing: 0.04em;
}

/* hamburger — hidden on desktop, shown on mobile */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--green);
  background: var(--cream);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 90;
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
  overflow-y: auto;
}
body.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
body.menu-open { overflow: hidden; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.mobile-menu ul li { border-bottom: 1px solid var(--cream-3); }
.mobile-menu ul a {
  display: block;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 30, 'YOPQ' 60;
  transition: color 0.2s, padding-left 0.3s;
  position: relative;
}
.mobile-menu ul a:hover, .mobile-menu ul a.active { color: var(--green); padding-left: 12px; }
.mobile-menu ul a.active::before {
  content: "→";
  position: absolute;
  left: -28px;
  color: var(--green);
}
.mobile-menu .mm-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu .mm-cta .btn { justify-content: center; padding: 18px 22px; font-size: 16px; }
.mobile-menu .mm-phone {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mono);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mm-phone a { color: var(--text-link); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.mobile-menu .mm-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--cream-3);
  font-family: var(--mono);
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mono);
}
.mobile-menu .mm-foot .blip {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--grass);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
  animation: pulse 2.4s ease-in-out infinite;
}

/* ============================================
   buttons
   ============================================ */
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn svg { transition: transform 0.2s; }
.btn-primary {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(0,132,61,0.5);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: var(--text-link);
  border-color: var(--green);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.btn-big { padding: 18px 28px; font-size: 16px; }

/* ============================================
   typography helpers
   ============================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .ln {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
}

.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'YOPQ' 60;
  color: var(--text-display);
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-display-em);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'YOPQ' 60;
}

.lede {
  font-family: var(--body);
  font-size: var(--fs-lede);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-body);
  max-width: 60ch;
}
.lede strong { color: var(--text-strong); font-weight: 700; }

.mono { font-family: var(--mono); }

.section {
  padding: 100px var(--pad) 120px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.section--full { max-width: none; padding-inline: 0; }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 64px;
  border-bottom: 1.5px solid var(--green);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: var(--fs-d2);
  line-height: 0.95;
  letter-spacing: var(--ls-display);
  color: var(--text-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 30, 'YOPQ' 60;
}
.section-head h2 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--text-display-em);
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
}
.section-head .num {
  font-family: var(--mono);
  font-size: var(--fs-small);
  color: var(--text-mono);
  letter-spacing: 0.08em;
  padding-bottom: 12px;
}
.section-head .meta {
  font-family: var(--mono);
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mono);
  text-align: right;
  line-height: 1.6;
  padding-bottom: 12px;
}

/* ============================================
   footer
   ============================================ */
footer.site {
  background: var(--green);
  color: var(--cream);
  padding: 100px var(--pad) 40px;
  position: relative;
}
footer.site .f-top {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,248,231,0.18);
}
footer.site .belief {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
  color: var(--cream);
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
}
footer.site .belief .ember { color: var(--tangerine); font-style: normal; font-weight: 900; font-variation-settings: 'opsz' 96, 'SOFT' 30; }
footer.site .belief-sub {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tangerine);
  opacity: 0.9;
}
footer.site .f-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,248,231,0.18);
}
footer.site .f-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 24px;
}
footer.site .f-logo img {
  height: 120px;
  width: auto;
  display: block;
}
footer.site p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.78;
  margin-top: 16px;
  max-width: 280px;
}
footer.site h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tangerine);
  margin-bottom: 20px;
}
footer.site ul { list-style: none; }
footer.site li { font-size: 14px; margin-bottom: 10px; opacity: 0.88; }
footer.site li a:hover { color: var(--tangerine); }
footer.site .f-bottom {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ============================================
   reusable cards
   ============================================ */
.card {
  background: var(--cream-2);
  border: 1.5px solid var(--cream-3);
  border-radius: 4px;
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.card:hover {
  border-color: var(--green);
  background: var(--cream);
}

/* ============================================
   "Hand it over" CTA strip used on multiple pages
   ============================================ */
.cta-strip {
  background: var(--tangerine);
  color: var(--cream);
  padding: 100px var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'YOPQ' 60;
}
.cta-strip h2 em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--green);
}
.cta-strip .sub {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
}
.cta-strip .cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-strip .btn-primary {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.cta-strip .btn-ghost {
  border-color: var(--cream);
  color: var(--cream);
}
.cta-strip .btn-ghost:hover {
  background: var(--cream);
  color: var(--tangerine);
}

/* ============================================
   pill, status badge
   ============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-2);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.pill .blip {
  width: 6px; height: 6px;
  background: var(--grass);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
.pill--tangerine {
  background: var(--tangerine);
  color: var(--cream);
  border-color: var(--tangerine);
}
.pill--green {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

/* ============================================
   motion system
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }

/* hero-load: cascading entrance for the headline + lede + actions */
.fx-rise {
  display: inline-block;
  opacity: 0;
  transform: translateY(46px);
  animation: rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fx-rise.d-1 { animation-delay: 0.08s; }
.fx-rise.d-2 { animation-delay: 0.22s; }
.fx-rise.d-3 { animation-delay: 0.36s; }
.fx-rise.d-4 { animation-delay: 0.55s; }
.fx-rise.d-5 { animation-delay: 0.7s; }
.fx-rise.d-6 { animation-delay: 0.82s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.fx-fade {
  opacity: 0;
  animation: fadeIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fx-fade.d-1 { animation-delay: 0.05s; }
.fx-fade.d-2 { animation-delay: 0.2s; }
.fx-fade.d-3 { animation-delay: 0.35s; }
@keyframes fadeIn { to { opacity: 1; } }

/* Subtle parallax on the green ledger background */
.parallax-y {
  transition: transform 0.4s linear;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .fx-rise, .fx-fade {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   responsive — desktop intact, mobile refined
   ============================================ */
@media (max-width: 1100px) {
  :root { --pad: 24px; }
  nav.top { grid-template-columns: 1fr auto; gap: 16px; }
  nav.top ul { display: none; }
  nav.top .nav-right .phone { display: none; }
  .menu-toggle { display: inline-block; }
  footer.site .f-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .meta { text-align: left; }
}

/* phone — < 720px */
@media (max-width: 720px) {
  :root { --pad: 20px; }

  /* util bar — compress, hide separators, keep phone visible */
  .util { padding: 8px 16px; font-size: 10px; letter-spacing: 0.08em; }
  .util-left { gap: 12px; flex: 0 1 auto; overflow: hidden; }
  .util-left span:not(:first-child) { display: none; }
  .util-sep { display: none; }
  .util .dot { width: 6px; height: 6px; margin-right: 6px; }

  /* nav — tighter, hide CTA button (replaced by hamburger drawer CTA) */
  nav.top { padding: 14px var(--pad); }
  nav.top .nav-right .btn { display: none; }
  .logo img { height: 44px; }

  /* sections — reduce vertical padding so the page breathes properly */
  .section { padding: 64px var(--pad) 72px; }
  .section-head { margin-bottom: 36px; padding-bottom: 18px; }

  /* buttons — comfortable touch targets, stack full-width */
  .btn { width: 100%; justify-content: center; padding: 16px 20px; font-size: 15px; min-height: 48px; }
  .btn-big { padding: 18px 22px; font-size: 16px; }
  .btn svg { flex-shrink: 0; }

  /* reduce reveal travel so it feels native on small screens */
  .reveal, .reveal-stagger > * { transform: translateY(18px); }
  .fx-rise { transform: translateY(28px); }

  /* footer simplifications */
  footer.site { padding: 64px var(--pad) 32px; }
  footer.site .f-top { margin-bottom: 48px; padding-bottom: 40px; }
  footer.site .f-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  footer.site .f-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* CTA strip pad */
  .cta-strip { padding: 72px var(--pad); }
  .cta-strip .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-strip .cta-buttons .btn { width: 100%; }
}

/* tiny phones — < 400px */
@media (max-width: 400px) {
  :root { --pad: 16px; }
  .logo img { height: 40px; }
  .mobile-menu ul a { font-size: 32px; padding: 18px 0; }
}
