/* ══════════════════════════════════════════════════════════════
   Remote Accountants Hub — lead magnet
   Palette derived from the client's own mark: plum #3b3345,
   mint #55c3a5, muted lavender #949198.
   ══════════════════════════════════════════════════════════════ */

:root {
  --plum-950: #1c1624;
  --plum-900: #241d2e;
  --plum-800: #2c2436;
  --plum-700: #3b3345;
  --plum-600: #4c4359;
  --plum-500: #6a6076;

  --mint: #55c3a5;
  --mint-bright: #6fd8bb;
  --mint-deep: #0f7355;      /* AA on white */
  --mint-wash: #eaf7f2;

  --paper: #f7f7f8;
  --paper-2: #eeedf0;
  --white: #ffffff;

  --ink: #241d2e;
  --ink-soft: #5f5869;
  --ink-faint: #6b6577;

  --on-dark: #ffffff;
  --on-dark-soft: #c8c2d1;   /* tinted from the plum hue, not gray */
  --on-dark-faint: #9a93a6;

  --line: #e2e0e6;
  --line-dark: rgba(255, 255, 255, 0.14);

  --shell: 1200px;
  --gutter: 24px;
  --header-h: 84px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --shadow-card: 0 18px 40px -24px rgba(36, 29, 46, 0.45);
  --shadow-float: 0 30px 60px -30px rgba(36, 29, 46, 0.6);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── reset / base ───────────────────────────────────────────── */

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

html {
  overflow-x: hidden;              /* on html, never body */
  scroll-behavior: smooth;         /* fallback when Lenis is not running */
  -webkit-text-size-adjust: 100%;
}

/* Lenis (vendored): page-wide inertial smooth scrolling.
   While it runs it owns the scroll, so native smooth must be off. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
/* Set by our own init. NOTE: the class must not contain the substring
   "lenis" — the library rewrites className by string replace and would
   corrupt any class that does. */
html.has-smoothscroll { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

::selection { background: var(--mint); color: var(--plum-950); }

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

/* browser surfaces themed from the palette */
html { scrollbar-color: var(--plum-500) var(--paper-2); scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--plum-500); border: 3px solid var(--paper-2); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--plum-700); }

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

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--mint); color: var(--plum-950);
  padding: 12px 20px; border-radius: var(--r-sm);
  font-weight: 700; text-decoration: none;
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 16px; }

.lede {
  margin-top: 18px;
  max-width: 62ch;
  font-size: 1.06rem;
  color: var(--ink-soft);
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }

/* ── buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms var(--ease), color 200ms var(--ease),
              border-color 200ms var(--ease), box-shadow 200ms var(--ease),
              transform 120ms var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn-accent {
  background: var(--mint);
  color: var(--plum-950);
  box-shadow: 0 10px 26px -14px rgba(85, 195, 165, 0.9);
}
.btn-accent:hover {
  background: var(--mint-bright);
  box-shadow: 0 14px 30px -12px rgba(85, 195, 165, 0.95);
}

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-lg { min-height: 54px; padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ── pill / eyebrow ─────────────────────────────────────────── */

.pill {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 16px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  color: var(--on-dark-soft);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.pill-dot {
  flex: none;
  width: 7px; height: 7px;
  margin-top: 6px;                  /* aligns to line 1, not the wrapped block */
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(85, 195, 165, 0.22);
}

/* ── header ─────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(28, 22, 36, 0.85), rgba(28, 22, 36, 0));
  transition: background-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.site-header.is-stuck {
  background: var(--plum-950);
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.9);
}

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

.brand { display: block; flex: none; }
.brand img { width: 218px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0; padding: 0;
  list-style: none;
}
.nav-links > li > a:not(.btn) {
  color: var(--on-dark-soft);
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.nav-links > li > a:not(.btn):hover {
  color: var(--white);
  border-bottom-color: var(--mint);
}
.nav-cta-item { margin-left: 6px; }
.nav-cta-item .btn { white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle-bars { display: block; width: 18px; }
.nav-toggle-bars span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform 220ms var(--ease), opacity 180ms var(--ease);
}
.nav-toggle-bars span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ── hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(880px, 100svh);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 72px;
  background: var(--plum-950);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(28, 22, 36, 0.95) 0%, rgba(28, 22, 36, 0.86) 38%, rgba(28, 22, 36, 0.35) 72%, rgba(28, 22, 36, 0.55) 100%),
    linear-gradient(to top, rgba(28, 22, 36, 0.92) 0%, rgba(28, 22, 36, 0) 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: end;
}

.hero-copy h1 {
  margin-top: 26px;
  font-size: clamp(2.4rem, 4.5vw, 3.65rem);
  letter-spacing: -0.038em;
  max-width: 15ch;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--mint);
}
.hero-sub {
  margin-top: 24px;
  max-width: 58ch;
  font-size: 1.1rem;
  color: var(--on-dark-soft);
}

.hero-card {
  padding: 30px 30px 26px;
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-float);
}
.hero-card-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.hero-card-facts { list-style: none; margin: 20px 0 0; padding: 0; }
.hero-card-facts li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.hero-card-facts li:first-child { border-top: 0; padding-top: 4px; }
.fact-num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--plum-800);
}
.fact-cap { font-size: 0.9rem; line-height: 1.45; color: var(--ink-soft); }
.hero-card-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ── trust strip ────────────────────────────────────────────── */

.strip { background: var(--plum-900); color: var(--on-dark); padding: 30px 0; }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 32px;
}
.strip-lead {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}
.strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 0; padding: 0;
  list-style: none;
}
.strip-list li {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--on-dark-soft);
}

/* ── problem ────────────────────────────────────────────────── */

.problem { padding: 108px 0; background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 72px;
  align-items: start;
}
.problem-copy h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }

.pain-list { list-style: none; counter-reset: pain; margin: 44px 0 0; padding: 0; }
.pain-list li {
  counter-increment: pain;
  position: relative;
  padding: 24px 0 24px 54px;
  border-top: 1px solid var(--line);
}
.pain-list li::before {
  content: counter(pain, decimal-leading-zero);
  position: absolute;
  left: 0; top: 25px;
  font-size: 0.82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--mint-deep);
}
.pain-list h3 { font-size: 1.14rem; letter-spacing: -0.02em; line-height: 1.3; }
.pain-list p { margin-top: 8px; font-size: 0.98rem; color: var(--ink-soft); }

.problem-figure { margin: 0; position: sticky; top: calc(var(--header-h) + 32px); }
.problem-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.problem-figure figcaption {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-left: 1px solid var(--mint);
  padding-left: 16px;
}

/* ── services ───────────────────────────────────────────────── */

.services { padding: 108px 0; background: var(--paper); }
.svc-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.svc-col { padding: 0 36px; border-left: 1px solid var(--line); }
.svc-col:first-child { padding-left: 0; border-left: 0; }
.svc-col:last-child { padding-right: 0; }

.svc-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-deep);
  padding-bottom: 20px;
  border-bottom: 2px solid var(--plum-800);
}
.svc-list { margin: 0; }
.svc-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.svc-item dt {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--plum-800);
}
.svc-item dd {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ── audience ───────────────────────────────────────────────── */

.audience { padding: 108px 0; background: var(--plum-900); color: var(--on-dark); }
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}
.audience-copy h2 { font-size: clamp(1.9rem, 3.1vw, 2.6rem); }
.audience-copy .lede { color: var(--on-dark-soft); }
.audience-copy .btn { margin-top: 32px; }

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0; padding: 0;
  list-style: none;
}
.audience-list li {
  padding: 26px 26px 26px 0;
  border-top: 1px solid var(--line-dark);
}
.audience-list li:nth-child(2n) { padding-left: 26px; border-left: 1px solid var(--line-dark); padding-right: 0; }
.audience-list h3 { font-size: 1.05rem; letter-spacing: -0.02em; line-height: 1.3; }
.audience-list p { margin-top: 8px; font-size: 0.93rem; color: var(--on-dark-soft); }

/* ── story ──────────────────────────────────────────────────── */

.story { padding: 108px 0; background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}
.story-figure { margin: 0; position: sticky; top: calc(var(--header-h) + 32px); }
.story-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.story-copy h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }

.story-facts { list-style: none; margin: 40px 0 0; padding: 0; }
.story-facts li { padding: 26px 0; border-top: 1px solid var(--line); }
.story-facts h3 { font-size: 1.1rem; letter-spacing: -0.02em; line-height: 1.32; }
.story-facts p { margin-top: 8px; font-size: 0.97rem; color: var(--ink-soft); }

.story-kicker {
  margin-top: 32px;
  padding: 26px 30px;
  border-radius: var(--r-md);
  background: var(--mint-wash);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--plum-800);
}

/* ── process ────────────────────────────────────────────────── */

.process { padding: 108px 0; background: var(--paper); }
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0; padding: 0;
}
.steps li {
  counter-increment: step;
  padding: 0 32px;
  border-left: 1px solid var(--line);
}
.steps li:first-child { padding-left: 0; border-left: 0; }
.steps li:last-child { padding-right: 0; }
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--plum-800);
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.steps h3 { font-size: 1.08rem; letter-spacing: -0.02em; line-height: 1.3; }
.steps p { margin-top: 10px; font-size: 0.95rem; color: var(--ink-soft); }

/* ── faq ────────────────────────────────────────────────────── */

.faq { padding: 108px 0; background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}
.faq-head h2 { font-size: clamp(1.9rem, 3.1vw, 2.6rem); }
.faq-head { position: sticky; top: calc(var(--header-h) + 32px); }

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item h3 { margin: 0; font-size: inherit; letter-spacing: normal; }
.acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 48px;
  padding: 24px 0;
  background: none;
  border: 0;
  font: inherit;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: left;
  color: var(--plum-800);
  cursor: pointer;
  transition: color 180ms var(--ease);
}
.acc-trigger:hover { color: var(--mint-deep); }

.acc-icon {
  flex: none;
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease), transform 260ms var(--ease);
}
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  border-radius: 2px;
  background: var(--plum-800);
  transform: translate(-50%, -50%);
  transition: opacity 200ms var(--ease), background-color 200ms var(--ease);
}
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-trigger:hover .acc-icon { border-color: var(--mint); }
.acc-trigger[aria-expanded="true"] .acc-icon {
  background: var(--mint);
  border-color: var(--mint);
  transform: rotate(180deg);
}
.acc-trigger[aria-expanded="true"] .acc-icon::after { opacity: 0; }
.acc-trigger[aria-expanded="true"] .acc-icon::before { background: var(--plum-950); }

.acc-panel { padding: 0 0 26px; max-width: 68ch; }
.acc-panel p { font-size: 0.99rem; color: var(--ink-soft); }
.acc-panel:not([hidden]) { animation: accIn 260ms var(--ease) both; }
@keyframes accIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ── final cta ──────────────────────────────────────────────── */

.cta {
  padding: 108px 0;
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(85, 195, 165, 0.16) 0%, rgba(85, 195, 165, 0) 55%),
    var(--plum-950);
  color: var(--on-dark);
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.cta-copy h2 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
.cta-copy .lede { color: var(--on-dark-soft); }

.cta-figure { margin: 34px 0 0; }
.cta-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.cta-contact { list-style: none; margin: 30px 0 0; padding: 0; }
.cta-contact li {
  display: flex;
  min-height: 48px;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
}
.cta-contact span {
  min-width: 56px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}
.cta-contact a {
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
  word-break: break-word;
}
.cta-contact a:hover { text-decoration: underline; text-decoration-color: var(--mint); }

/* form */
.form-card {
  padding: 34px;
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-float);
}
.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--plum-800);
  margin-bottom: 24px;
}
.field { margin-bottom: 20px; border: 0; padding: 0; }
.field > label, .field legend {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--plum-800);
}
.req { font-weight: 500; color: var(--mint-deep); }
.opt { font-weight: 500; color: var(--ink-faint); }

.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  caret-color: var(--mint-deep);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease);
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:hover, .field textarea:hover { border-color: var(--plum-500); }
.field input:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--mint-deep);
  box-shadow: 0 0 0 3px rgba(85, 195, 165, 0.28);
}
.field input[aria-invalid="true"] { border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.16); }
.field-error { margin-top: 7px; font-size: 0.84rem; font-weight: 600; color: #a51f18; }

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  min-height: 28px;
}
.check-list input {
  flex: none;
  width: 18px; height: 18px;
  margin: 0;
  accent-color: var(--mint-deep);
}
.check-list label {
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-soft);
  cursor: pointer;
}

.form-note { margin-top: 14px; font-size: 0.82rem; color: var(--ink-faint); }
.form-status:not(:empty) {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--mint-wash);
  font-size: 0.92rem;
  font-weight: 600;
  color: #0b5c44;
}

/* ── footer ─────────────────────────────────────────────────── */

.site-footer { background: var(--plum-950); color: var(--on-dark-soft); padding: 60px 0 48px; }
.footer-inner { display: grid; gap: 22px; justify-items: start; }
.footer-logo { width: 240px; height: auto; }
.footer-line { font-size: 0.92rem; line-height: 1.7; }
.footer-meta { font-size: 0.84rem; color: var(--on-dark-faint); }
.footer-meta a { color: var(--mint); text-decoration: none; text-underline-offset: 4px; }
.footer-meta a:hover { text-decoration: underline; }

/* ── scroll reveal (visible by default; JS opts elements in) ── */

.pre-reveal { opacity: 0; transform: translateY(18px); }
.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

/* ══ responsive ═══════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-card { max-width: 460px; }
  .problem-grid, .story-grid, .audience-grid, .faq-grid, .cta-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .problem-figure, .story-figure, .faq-head { position: static; }
  .story-figure img { aspect-ratio: 16 / 9; }
  .story-grid { grid-template-areas: none; }
  .svc-cols { grid-template-columns: minmax(0, 1fr); }
  .svc-col { padding: 0; border-left: 0; margin-top: 40px; }
  .svc-col:first-child { margin-top: 0; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 44px; }
  .steps li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .steps li:nth-child(even) { padding-right: 0; }
}

@media (max-width: 1060px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--header-h) - 6px);
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line-dark);
    border-radius: var(--r-md);
    background: var(--plum-950);
    box-shadow: var(--shadow-float);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > li > a:not(.btn) {
    display: block;
    padding: 13px 8px;
    font-size: 1rem;
    color: var(--white);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-links > li:last-child > a { border-bottom: 0; }
  .nav-cta-item { margin: 12px 0 0; }
  .nav-cta-item .btn {
    width: 100%;
    color: var(--plum-950);
    white-space: nowrap;
  }
  .brand img { width: 180px; }

  .hero {
    min-height: 96svh;
    padding-top: calc(var(--header-h) + 200px);
    padding-bottom: 56px;
  }
  .hero-media img { object-position: 60% 12%; }
  .hero::after {
    background:
      linear-gradient(to top, rgba(28, 22, 36, 0.97) 0%, rgba(28, 22, 36, 0.95) 52%, rgba(28, 22, 36, 0.62) 74%, rgba(28, 22, 36, 0.42) 100%);
  }

  .audience-list { grid-template-columns: minmax(0, 1fr); }
  .audience-list li,
  .audience-list li:nth-child(2n) {
    padding: 24px 0;
    border-left: 0;
  }
}

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

  .problem, .services, .audience, .story, .process, .faq, .cta { padding: 76px 0; }
  .section-head { margin-bottom: 40px; }

  .hero-copy h1 { font-size: clamp(2.15rem, 9vw, 2.9rem); }
  .hero-sub { font-size: 1.02rem; }

  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .audience-copy .btn { width: 100%; }

  /* eyebrows must never wrap to a second line on mobile */
  .pill { font-size: 0.74rem; white-space: nowrap; padding: 8px 14px; }
  .strip-lead { white-space: nowrap; }

  .hero-card { max-width: none; padding: 26px 22px 22px; }
  .hero-card-facts li { grid-template-columns: 72px 1fr; gap: 14px; }
  .fact-num { font-size: 1.4rem; }

  .steps { grid-template-columns: minmax(0, 1fr); row-gap: 36px; }
  .steps li { padding: 0; border-left: 0; }

  .form-card { padding: 26px 20px; }
  .acc-trigger { font-size: 1rem; gap: 16px; }
  .footer-logo { width: 200px; }
  .strip-inner { flex-direction: column; gap: 14px; }
}
