/* ==========================================================================
   M-Fulfillment — design system
   Paper-dominant. Forest is the ink; lime is a signal, used about once per
   viewport. Lime never carries text on paper: it fills, and ink sits on top.
   ========================================================================== */

/* --- Fonts --------------------------------------------------------------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-variable.woff2') format('woff2-variations');
  font-weight: 400 800;
  font-stretch: 75% 125%;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibmplexsans-variable.woff2') format('woff2-variations');
  font-weight: 100 700;
  font-display: swap;
  font-style: normal;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  --paper:      #FAFAF7;
  --paper-sunk: #F1F2EC;
  --ink:        #0E1F18;
  --forest:     #143024;
  --forest-lift:#1D4030;
  --muted:      #5C6B62;
  --muted-on-dark: #9FB3A6;
  --rule:       #DDE2DA;
  --rule-on-dark: #2A4A3A;
  --lime:       #A3E635;
  --lime-dim:   #8CC92B;
  --danger:     #A33A28;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1220px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);

  --r-control: 4px;
  --shadow-lift: 0 1px 2px rgba(14,31,24,.05), 0 8px 24px -12px rgba(14,31,24,.18);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }

/* --- Type scale ---------------------------------------------------------- */
.t-hero {
  font-size: clamp(2.6rem, 1.5rem + 4.6vw, 5.1rem);
  font-stretch: 112%;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.028em;
}
.t-page {
  font-size: clamp(2.05rem, 1.45rem + 2.4vw, 3.25rem);
  font-stretch: 110%;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.026em;
}
.t-page--narrow { font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem); }
.t-h2 {
  font-size: clamp(1.95rem, 1.35rem + 2.4vw, 3.05rem);
  font-stretch: 108%;
  letter-spacing: -0.024em;
}
.t-h3 { font-size: clamp(1.2rem, 1.08rem + .55vw, 1.5rem); font-stretch: 104%; }
.t-lead {
  font-size: clamp(1.1rem, 1.02rem + .38vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}
.t-measure { max-width: 68ch; }
.t-muted { color: var(--muted); }
.on-dark .t-muted, .on-dark .t-lead,
.cta .t-muted, .cta .t-lead { color: var(--muted-on-dark); }

/* --- Layout -------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.band-dark { background: var(--ink); color: var(--paper); }
.band-sunk { background: var(--paper-sunk); }
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--paper); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--split {
  display: grid;
  gap: 1.25rem clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); }
}

/* --- Skip link ----------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--lime); color: var(--ink);
  padding: .75rem 1.25rem; font-weight: 600; border-radius: 0 0 var(--r-control) 0;
}
.skip:focus { left: 0; }

/* --- Header -------------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.hdr__bar {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.25rem);
  min-height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; flex: none; }
.logo__mark {
  width: 30px; height: 30px; flex: none;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  font-stretch: 120%; letter-spacing: -0.04em;
}
.logo__word {
  font-family: var(--font-display); font-weight: 700; font-size: 1.16rem;
  font-stretch: 108%; letter-spacing: -0.03em;
}
.logo__word span { color: var(--muted); font-weight: 500; }

.nav { display: none; margin-left: auto; }
@media (min-width: 1040px) { .nav { display: block; } }
.nav__list { display: flex; align-items: center; gap: clamp(.4rem, 1.4vw, 1.1rem); list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block; padding: .55rem .35rem;
  text-decoration: none; font-size: .95rem; font-weight: 500;
  color: var(--ink); position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: .35rem; right: .35rem; bottom: .28rem;
  height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform .16s ease;
}
.nav__link:hover::after, .nav__item:focus-within > .nav__link::after { transform: scaleX(1); }
.nav__link[aria-current="page"]::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__item { position: relative; }
.nav__panel {
  position: absolute; top: 100%; left: -.75rem; min-width: 290px;
  background: var(--paper); border: 1px solid var(--rule);
  box-shadow: var(--shadow-lift);
  padding: .4rem; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.nav__item:hover > .nav__panel, .nav__item:focus-within > .nav__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__panel a {
  display: block; padding: .6rem .75rem; text-decoration: none;
  font-size: .92rem; border-left: 3px solid transparent;
}
.nav__panel a:hover, .nav__panel a:focus-visible {
  background: var(--paper-sunk); border-left-color: var(--lime);
}

.hdr__actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
@media (min-width: 1040px) { .hdr__actions { margin-left: 0; } }
.hdr__phone {
  display: none; text-decoration: none; font-weight: 600; font-size: .95rem;
  white-space: nowrap;
}
@media (min-width: 680px) { .hdr__phone { display: inline-block; } }
.hdr__phone:hover { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* Mobile menu */
.burger {
  display: inline-grid; place-items: center; gap: 4px;
  width: 42px; height: 42px; background: none;
  border: 1px solid var(--rule); border-radius: var(--r-control); cursor: pointer;
}
@media (min-width: 1040px) { .burger { display: none; } }
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); }
.mobile-nav { display: none; border-top: 1px solid var(--rule); padding-block: .75rem 1.25rem; }
.mobile-nav.is-open { display: block; }
@media (min-width: 1040px) { .mobile-nav, .mobile-nav.is-open { display: none; } }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
  display: block; padding: .7rem .25rem; text-decoration: none;
  font-size: 1.02rem; font-weight: 500; border-bottom: 1px solid var(--rule);
}
.mobile-nav .is-sub a { padding-left: 1.1rem; font-size: .94rem; color: var(--muted); font-weight: 400; }
.mobile-nav .btn { margin-top: 1rem; width: 100%; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.4rem; border-radius: var(--r-control);
  font-family: var(--font-body); font-weight: 600; font-size: .97rem;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn--primary:hover { background: var(--lime-dim); border-color: var(--lime-dim); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-sunk); }
.on-dark .btn--ghost, .band-dark .btn--ghost, .cta .btn--ghost {
  color: var(--paper); border-color: var(--rule-on-dark);
}
.on-dark .btn--ghost:hover, .band-dark .btn--ghost:hover, .cta .btn--ghost:hover {
  border-color: var(--lime); background: transparent;
}
.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- Focus --------------------------------------------------------------- */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2.5px solid var(--lime);
  outline-offset: 2px;
  border-radius: 2px;
}
.band-dark :where(a, button, summary):focus-visible { outline-color: var(--lime); }

/* --- Hero ---------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 5vw, 4.5rem); }
.hero__grid {
  display: grid; gap: clamp(2.25rem, 5vw, 3.5rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}
.hero__sub { margin-top: 1.4rem; }
.hero__actions { margin-top: 2rem; }
.hero__note { margin-top: 1.1rem; font-size: .9rem; color: var(--muted); }

/* Facility card — the hero's visual anchor */
.facility {
  background: var(--ink); color: var(--paper);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative; overflow: hidden;
}
.facility::before {
  /* racking pattern, drawn not photographed */
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(163,230,53,.14) 46px 47px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(163,230,53,.09) 38px 39px);
  opacity: .8; pointer-events: none;
}
.facility > * { position: relative; }
.facility__loc {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--muted-on-dark); margin-bottom: 1.75rem;
}
.facility__dot { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; flex: none; }
.facility__stat { font-family: var(--font-display); font-stretch: 118%; font-weight: 700; letter-spacing: -0.03em; }
.facility__stat--xl { font-size: clamp(3rem, 6vw, 4.2rem); line-height: .9; color: var(--lime); }
.facility__cap { font-size: .9rem; color: var(--muted-on-dark); margin-top: .5rem; }
.facility__list { list-style: none; margin: 1.75rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--rule-on-dark); display: grid; gap: .7rem; }
.facility__list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .93rem; }
.facility__list span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.facility__list span:first-child { color: var(--muted-on-dark); }

/* --- Operations rail (signature element) --------------------------------- */
.rail { background: var(--forest); color: var(--paper); border-block: 1px solid var(--rule-on-dark); }
.rail__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 880px) { .rail__grid { grid-template-columns: repeat(4, 1fr); } }
.rail__cell {
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1rem, 2.5vw, 1.75rem);
  border-right: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
}
@media (min-width: 880px) {
  .rail__cell { border-bottom: 0; }
  .rail__cell:last-child { border-right: 0; }
}
@media (max-width: 879px) {
  .rail__cell:nth-child(2n) { border-right: 0; }
  .rail__cell:nth-last-child(-n+2) { border-bottom: 0; }
}
.rail__num {
  font-family: var(--font-display); font-weight: 700; font-stretch: 116%;
  font-size: clamp(1.7rem, 1.1rem + 2vw, 2.55rem); line-height: 1;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.rail__num--live { color: var(--lime); }
.rail__lab { font-size: .87rem; color: var(--muted-on-dark); margin-top: .55rem; line-height: 1.4; }

/* --- Cards --------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Services: 2 up on tablet, then 3 + 2 on desktop — never a stranded card */
.grid--services { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .grid--services { grid-template-columns: repeat(6, 1fr); }
  .grid--services > * { grid-column: span 3; }
  .grid--services > *:nth-child(5) { grid-column: span 6; }
}
@media (min-width: 960px) {
  .grid--services > *:nth-child(1),
  .grid--services > *:nth-child(2),
  .grid--services > *:nth-child(3) { grid-column: span 2; }
  .grid--services > *:nth-child(4),
  .grid--services > *:nth-child(5) { grid-column: span 3; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  display: flex; flex-direction: column;
  border-left: 3px solid var(--rule);
  transition: border-left-color .18s ease, border-color .18s ease;
}
.band-sunk .card { background: var(--paper); }
a.card { text-decoration: none; }
a.card:hover { border-color: var(--ink); border-left-color: var(--lime); }
.card__title { margin-bottom: .55rem; }
.card__body { color: var(--muted); font-size: .98rem; flex: 1; }
.card__more {
  margin-top: 1.15rem; font-weight: 600; font-size: .93rem;
  display: inline-flex; align-items: center; gap: .45rem;
}
a.card:hover .card__more { text-decoration: underline; text-underline-offset: 3px; }
.card__icon { margin-bottom: 1.1rem; color: var(--forest); }
.card__icon svg { width: 26px; height: 26px; }

/* Value props on dark */
.prop { border-top: 2px solid var(--lime); padding-top: 1.25rem; }
.prop h3 { margin-bottom: .5rem; }

/* --- Steps (only place numbers are used — it is a real sequence) ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid; gap: .35rem 1.5rem;
  grid-template-columns: auto 1fr;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--rule);
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.band-dark .step, .band-dark .step:last-child { border-color: var(--rule-on-dark); }
.step::before {
  content: counter(step, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-family: var(--font-display); font-weight: 700; font-stretch: 118%;
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1;
  color: var(--lime); letter-spacing: -0.03em;
  min-width: 2.4ch;
}
.band-dark .step::before { color: var(--lime); }
.step h3 { margin: 0; align-self: center; }
.step p { color: var(--muted); margin: 0; max-width: 62ch; }
.band-dark .step p { color: var(--muted-on-dark); }
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: .5rem; }
  .step::before { grid-row: auto; }
}

/* --- Comparison table ---------------------------------------------------- */
.compare { border: 1px solid var(--rule); background: var(--paper); }
.compare__row {
  display: grid; grid-template-columns: 1fr;
  border-bottom: 1px solid var(--rule);
}
.compare__row:last-child { border-bottom: 0; }
@media (min-width: 720px) {
  .compare__row { grid-template-columns: minmax(0,1.25fr) minmax(0,1fr) minmax(0,1fr); }
}
.compare__cell { padding: 1rem clamp(1rem, 2vw, 1.4rem); font-size: .97rem; }
@media (min-width: 720px) {
  .compare__cell + .compare__cell { border-left: 1px solid var(--rule); }
}
.compare__row--head .compare__cell {
  font-family: var(--font-display); font-weight: 700; font-stretch: 106%;
  font-size: 1rem; background: var(--paper-sunk);
}
.compare__label { font-weight: 600; }
.compare__us { background: color-mix(in srgb, var(--lime) 13%, var(--paper)); font-weight: 600; }
.compare__row--head .compare__us { background: color-mix(in srgb, var(--lime) 30%, var(--paper-sunk)); }
.compare__them { color: var(--muted); }
@media (max-width: 719px) {
  .compare__cell::before {
    content: attr(data-th); display: block;
    font-size: .78rem; color: var(--muted); margin-bottom: .2rem;
  }
  .compare__label::before { content: none; }
  .compare__row--head { display: none; }
  .compare__cell + .compare__cell { border-top: 1px dotted var(--rule); }
}

/* --- Integrations wall --------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.chip {
  border: 1px solid var(--rule); background: var(--paper);
  padding: .55rem 1rem; font-size: .93rem; font-weight: 500;
  border-radius: 999px; color: var(--ink);
}
.band-dark .chip { background: transparent; border-color: var(--rule-on-dark); color: var(--paper); }

/* --- Testimonials -------------------------------------------------------- */
.quote { border-left: 3px solid var(--lime); padding-left: 1.4rem; }
.quote blockquote { margin: 0 0 1rem; font-size: 1.05rem; line-height: 1.55; }
.quote figcaption { font-size: .89rem; color: var(--muted); }
.quote figcaption b { display: block; color: var(--ink); font-weight: 600; }
.band-dark .quote figcaption b { color: var(--paper); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-stretch: 104%;
  font-size: clamp(1.02rem, .98rem + .25vw, 1.15rem); line-height: 1.35;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; position: absolute; right: .35rem; top: 1.55rem;
  width: 11px; height: 11px;
  border-right: 2px solid var(--forest); border-bottom: 2px solid var(--forest);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item .faq__a { padding: 0 2.5rem 1.35rem 0; color: var(--muted); max-width: 72ch; }

/* --- Forms --------------------------------------------------------------- */
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; }
.field .req { color: var(--danger); }
.field .hint { font-size: .84rem; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule); border-radius: var(--r-control);
  padding: .78rem .9rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235C6B62' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 12px;
  padding-right: 2.4rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lime) 45%, transparent);
}
.field--error input, .field--error select, .field--error textarea { border-color: var(--danger); }
.field__err { font-size: .85rem; color: var(--danger); font-weight: 500; }
.field--check { flex-direction: row; align-items: flex-start; gap: .65rem; }
.field--check input { width: auto; margin-top: .25rem; flex: none; }
.field--check label { font-weight: 400; font-size: .92rem; color: var(--muted); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 1rem 1.15rem; border-radius: var(--r-control);
  border: 1px solid var(--danger); border-left-width: 3px;
  background: color-mix(in srgb, var(--danger) 7%, var(--paper));
  color: var(--ink); margin-bottom: 1.75rem; font-size: .97rem;
}
.form-panel {
  background: var(--paper); border: 1px solid var(--rule);
  padding: clamp(1.4rem, 3vw, 2.25rem);
}
.form-foot { margin-top: 1.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-foot .t-muted { font-size: .88rem; }

/* --- Contact detail blocks ----------------------------------------------- */
.detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.detail-list dt, .detail-list h3 { font-size: .87rem; color: var(--muted); font-family: var(--font-body); font-weight: 600; margin: 0 0 .3rem; letter-spacing: 0; }
.detail-list a { font-weight: 600; text-decoration: none; }
.detail-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Split layouts ------------------------------------------------------- */
.split {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 920px) { .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.split--form { }
@media (min-width: 920px) {
  .split--form { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
  .split--aside { grid-template-columns: minmax(0,1fr) minmax(0,1.9fr); }
}
.sticky { position: sticky; top: 96px; }
@media (max-width: 919px) { .sticky { position: static; } }

/* Service page in-page nav */
.subnav { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--rule); }
.subnav a {
  display: block; padding: .5rem 0 .5rem 1rem; text-decoration: none;
  font-size: .94rem; color: var(--muted); margin-left: -1px;
  border-left: 2px solid transparent;
}
.subnav a:hover { color: var(--ink); border-left-color: var(--lime); }

.prose h2 { margin-top: 0; }
.prose > section + section { margin-top: clamp(2rem, 4vw, 3rem); }
.prose p { color: var(--muted); max-width: 68ch; }
.prose h3 { color: var(--ink); }

/* Checklist. The marker is positioned, not a grid cell, so list items can
   contain <strong>, links or any other inline content without fragmenting. */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.checks li { position: relative; padding-left: 1.75rem; font-size: .98rem; }
.checks li::before {
  content: '';
  position: absolute; left: 1px; top: .5em;
  width: 15px; height: 8px;
  border-left: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(-45deg);
}
.band-dark .checks li::before { border-color: var(--lime); }

/* --- Pricing ------------------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.price-table th, .price-table td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
.price-table thead th {
  font-family: var(--font-display); font-stretch: 106%; font-weight: 700;
  background: var(--paper-sunk); border-bottom: 1px solid var(--rule);
}
.price-table td:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- CTA band ------------------------------------------------------------ */
.cta { background: var(--ink); color: var(--paper); }
.cta__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .cta__grid { grid-template-columns: minmax(0,1.35fr) minmax(0,1fr); } }

/* --- Footer -------------------------------------------------------------- */
.ftr { background: var(--forest); color: var(--paper); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.ftr a { color: var(--paper); text-decoration: none; }
.ftr a:hover { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.ftr__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .ftr__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.ftr h3 { font-family: var(--font-body); font-size: .85rem; font-weight: 600; color: var(--muted-on-dark); margin-bottom: 1rem; letter-spacing: 0; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .95rem; }
.ftr__blurb { color: var(--muted-on-dark); font-size: .95rem; max-width: 34ch; margin-top: 1rem; }
.ftr__logo .logo__word { color: var(--paper); }
.ftr__logo .logo__word span { color: var(--muted-on-dark); }
.ftr__logo .logo__mark { background: var(--lime); color: var(--ink); }
.ftr__bot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid var(--rule-on-dark);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .87rem; color: var(--muted-on-dark);
}
.ftr__bot ul { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }

/* --- Utilities ----------------------------------------------------------- */
.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.stack > * + * { margin-top: 1.1rem; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }

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

@media print {
  .hdr, .cta, .rail, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
