/* ==========================================================================
   Contemporary layer
   --------------------------------------------------------------------------
   Loaded after site.css. Two earlier directions were rejected and both for
   good reasons: pastel-blue rounded cards read as generated, and cream paper
   with a display serif read as dated. This one is deliberately neither.

   The bet here: high contrast on a monochrome palette, a warm humanist sans
   for headings, hairline borders at 1px, near-square corners, and no accent
   hue at all — emphasis comes from weight and size. Dense rather than airy;
   sparse layouts are a large part of what makes a page look auto-generated.
   ========================================================================== */

:root {
  /* near-monochrome ground */
  --n-0:   #FFFFFF;
  --n-25:  #FAFAFA;
  --n-50:  #F4F4F5;
  --n-100: #E9E9EC;
  --n-200: #D6D6DB;
  --n-400: #8E8E97;
  --n-600: #5A5A63;
  --n-800: #26262B;
  --n-900: #131316;
  --n-950: #08080A;

  /* No accent hue. The whole palette is ink on paper; emphasis comes from
     weight, size and contrast instead of colour. */
  --signal:      #08080A;
  --signal-600:  #26262B;
  --signal-tint: #EDEDF0;

  --ok:      #08080A;
  --ok-tint: #EDEDF0;

  /* remap the legacy names the older rules still use */
  --ink-900: var(--n-950);
  --ink-700: var(--n-800);
  --ink-500: var(--n-600);
  --ink-300: var(--n-400);
  --paper:   var(--n-0);
  --paper-2: var(--n-50);
  --paper-3: var(--n-100);
  --rule:      var(--n-100);
  --rule-soft: var(--n-50);
  --accent:      var(--signal);
  --accent-600:  var(--signal-600);
  --accent-100:  var(--signal-tint);
  --sage: var(--ok); --sage-100: var(--ok-tint);
  --indigo: var(--n-800); --indigo-100: var(--n-50);
  --ochre: var(--n-800); --ochre-100: var(--n-50);

  --navy: var(--n-950); --navy-soft: var(--n-800);
  --ink: var(--n-800); --muted: var(--n-600); --faint: var(--n-400);
  --blue: var(--signal); --blue-600: var(--signal-600);
  --blue-100: var(--signal-tint); --blue-50: var(--n-50);
  --green: var(--ok); --green-600: var(--ok); --green-100: var(--ok-tint);
  --yellow: var(--n-800); --yellow-600: var(--n-800); --yellow-100: var(--n-50);
  --pink: var(--signal); --pink-100: var(--signal-tint);
  --line: var(--n-100); --line-soft: var(--n-50);
  --page: var(--n-0); --wash: var(--n-50); --wash-2: var(--n-50);

  /* Figtree on headings: a humanist sans with open apertures and rounded
     terminals — warmer than the tightly-drawn grotesques, and it holds up at
     display sizes. Inter Tight stays on body copy, which it is better at over
     long paragraphs. --font-brand is the wordmark alone. */
  --font-brand:   "Bricolage Grotesque", "Inter Tight", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-display: "Figtree", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-serif:   "Figtree", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-ui:      "Inter Tight", "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
  --font: var(--font-ui);

  --r-sm: 5px; --r: 6px; --r-lg: 8px; --r-xl: 10px;

  --shadow-xs: none;
  --shadow-sm: none;
  --shadow:    none;
  --shadow-lg: 0 20px 60px rgba(8, 8, 10, .16);
  --shadow-blue: none;

  --container: 1240px;
  --measure: 72ch;
}

body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  color: var(--n-800);
  background: var(--n-0);
  font-variant-numeric: normal;
  letter-spacing: -.006em;
}

/* Headings are set in Figtree at 700 with only light negative tracking. The
   very tight tracking used earlier is a big part of what reads as "techy" —
   letting the letters breathe is most of the warmth. */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--n-950);
  font-weight: 700;
  font-variation-settings: normal;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6.6vw, 5rem); letter-spacing: -.028em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.7rem); letter-spacing: -.024em; }
h3 { font-size: clamp(1.05rem, 1.7vw, 1.3rem); letter-spacing: -.014em; }
h4 { font-size: .98rem; letter-spacing: -.008em; }

/* ---------------------------------------------------------------- chrome */

.site-header {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--n-100);
}
/* backdrop-filter makes an element a containing block for fixed-position
   descendants. Below 960px the nav becomes `position: fixed; inset: 78px 0 0`
   inside this header — so with the blur on, the drawer resolved against a
   61px-tall header and collapsed to a 59px sliver instead of filling the
   screen. The header is an opaque bar at this width anyway, so the blur has
   nothing to blur. */
@media (max-width: 960px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
}
.site-header.is-stuck { box-shadow: none; }
.header-inner { height: 60px; gap: 22px; }

.brand-text {
  font-family: var(--font-brand); font-weight: 800; font-size: 1.28rem;
  letter-spacing: -.045em; color: var(--n-950); line-height: 1;
  font-variation-settings: "opsz" 24;
}
/* The .org is set as a quiet suffix — the brand is "Articled". */
.brand-text .dot-org {
  color: var(--n-400); font-size: .62em; font-weight: 600;
  letter-spacing: -.01em; vertical-align: .12em; margin-left: .04em;
}
.site-footer .brand-text { color: #fff; }
.site-footer .brand-text .dot-org { color: rgba(255,255,255,.42); }

/* Desktop only. Below 960px .nav becomes a fixed full-screen drawer with
   `inset: 78px 0 0; margin: 0`, and an unscoped margin-left here overrides that
   margin — pushing the drawer 14px off the left edge and shrinking it to
   361px of a 375px viewport. */
@media (min-width: 961px) {
  .nav { gap: 1px; margin-left: 14px; }
}
.nav-link {
  font-size: .875rem; font-weight: 450; letter-spacing: -.01em;
  color: var(--n-600); border-radius: 6px; padding: 7px 11px;
}
.nav-link:hover, .nav-item.is-open > .nav-link { background: var(--n-50); color: var(--n-950); }

.mega, .dropdown { border-color: var(--n-100); border-radius: 12px; box-shadow: var(--shadow-lg); }
.mega a:not(.btn), .dropdown a:not(.btn) { font-size: .875rem; border-radius: 6px; }
.mega a:not(.btn):hover, .dropdown a:not(.btn):hover { background: var(--n-50); color: var(--n-950); }
.mega-all { font-weight: 600; color: var(--n-950) !important; }
.mega-footer { border-top-color: var(--n-100); }

/* ---------------------------------------------------------- mobile drawer */
@media (max-width: 960px) {
  /* 44px minimum on every tappable row. The desktop mega packs links at 34px,
     which is fine for a cursor and too small for a thumb. */
  .nav-link { min-height: 52px; font-size: 1.02rem; }
  .mega a, .dropdown a { min-height: 44px; display: flex; align-items: center; padding: 10px 12px; }

  /* The desktop mega lists five services per category plus an "All N" link —
     about 200 rows once every category is stacked into one column. On a phone
     that is a wall, not a menu. Show the category and its count only; the
     category page is one tap away and lists everything properly. */
  .mega-col a:not(.mega-all) { display: none; }
  .mega-col h4 {
    font-size: .95rem; text-transform: none; letter-spacing: -.01em;
    color: var(--n-950); font-weight: 600; margin: 14px 0 0;
  }
  .mega-all {
    font-size: .85rem; font-weight: 500; color: var(--n-600) !important;
    padding-top: 0; min-height: 34px;
  }
  .mega-grid { gap: 0; }
}
.mega-footer p { font-size: .875rem; color: var(--n-600); }
.mega-col h4 { font-size: .68rem; letter-spacing: .08em; color: var(--n-400); }

/* ---------------------------------------------------------------- buttons */

.btn {
  font-family: var(--font-ui); font-weight: 500; font-size: .9rem;
  letter-spacing: -.011em; border-radius: 7px; padding: 10px 16px;
  border-width: 1px; box-shadow: none;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--n-950); color: #fff; border-color: var(--n-950); }
.btn-primary:hover { background: var(--signal); border-color: var(--signal); transform: none; box-shadow: none; }
.btn-secondary { background: #fff; color: var(--n-900); border-color: var(--n-200); }
.btn-secondary:hover { background: var(--n-50); border-color: var(--n-400); color: var(--n-950); transform: none; box-shadow: none; }
.btn-ghost { border-color: transparent; color: var(--n-600); }
.btn-ghost:hover { background: var(--n-50); color: var(--n-950); }
.btn-lg { padding: 13px 22px; font-size: .96rem; }
.btn-sm { padding: 7px 12px; font-size: .84rem; }

/* --------------------------------------------------------- section rhythm */

.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 112px 0; }
.section-wash { background: var(--n-25); border-block: 1px solid var(--n-100); }
.section-wash-2 { background: var(--n-25); border-block: 1px solid var(--n-100); }
.section-navy { background: var(--n-950); color: var(--n-400); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }

.section-head {
  max-width: none; margin: 0 0 44px; text-align: left;
  border-top: 0; padding-top: 0; display: block;
}
.section-head h2 { margin: 0 0 12px; max-width: 20ch; }
.section-head p { color: var(--n-600); font-size: 1.02rem; max-width: 58ch; margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--n-50) !important; color: var(--n-600) !important;
  border: 1px solid var(--n-100);
  padding: 4px 10px; border-radius: 999px; margin: 0 0 16px;
  font-family: var(--font-ui); font-size: .74rem; font-weight: 500;
  letter-spacing: -.005em; text-transform: none;
}
.eyebrow::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--signal); flex-shrink: 0;
}

/* ------------------------------------------------------------------ cards */

.card {
  background: #fff; border: 1px solid var(--n-100); border-radius: 12px;
  padding: 22px; box-shadow: none;
  transition: border-color .16s, background .16s;
}
.card-hover:hover { transform: none; box-shadow: none; border-color: var(--n-400); background: var(--n-25); }
.card h3 { font-size: 1.06rem; margin-bottom: 7px; }
.card p { color: var(--n-600); font-size: .92rem; line-height: 1.5; }
.card-link {
  font-family: var(--font-ui); font-size: .84rem; font-weight: 500;
  letter-spacing: -.01em; text-transform: none; color: var(--n-950); margin-top: 14px;
}
.card-hover:hover .card-link { color: var(--signal); }

.chip {
  display: grid; width: 32px; height: 32px; border-radius: 8px;
  background: var(--n-50) !important; color: var(--n-800) !important;
  border: 1px solid var(--n-100); margin-bottom: 14px;
}
.card-hover:hover .chip { transform: none; }

.grid { gap: 14px; }

/* ------------------------------------------------------------------ steps */

.steps { gap: 14px; }
.step {
  background: #fff; border: 1px solid var(--n-100); border-radius: 12px;
  padding: 20px; box-shadow: none;
}
.step .chip { display: grid; width: 30px; height: 30px; margin: 0 0 12px; }
.step-num {
  position: static; width: auto; height: auto; border-radius: 0;
  background: none !important; color: var(--n-400);
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  display: block; margin-bottom: 10px; letter-spacing: .04em;
}
.step h3 { font-size: 1rem; margin-bottom: 5px; }
.step p { font-size: .9rem; color: var(--n-600); }
.step-dots { display: none; }

/* ------------------------------------------------------------- pull-outs */

.callout {
  background: var(--n-25); border: 1px solid var(--n-100); border-left: 3px solid var(--signal);
  border-radius: 8px; padding: 18px 20px; margin: 28px 0;
}
.callout.green { border-left-color: var(--ok); }
.callout.yellow, .callout.purple { border-left-color: var(--n-800); }
.callout h4 {
  font-size: .82rem; font-weight: 600; letter-spacing: -.01em;
  text-transform: none; color: var(--n-950); margin-bottom: 6px;
}
.callout p { color: var(--n-600); font-size: .94rem; }

/* ------------------------------------------------------------------ prose */

.prose { font-size: 1rem; max-width: var(--measure); line-height: 1.65; }
.prose > p:first-of-type {
  font-size: 1.14rem; line-height: 1.55; color: var(--n-800);
  font-family: var(--font-ui); font-weight: 400; letter-spacing: -.014em;
}
.prose h2 { margin-top: 52px; padding-top: 0; border-top: 0; }
.prose h3 { margin-top: 32px; }
.prose a { color: var(--signal); border-bottom: 0; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--n-200); }
.prose a:hover { text-decoration-color: var(--signal); }
.prose ul li::marker { color: var(--n-400); }

.lede {
  font-family: var(--font-ui); font-weight: 400;
  font-size: clamp(1.06rem, 1.7vw, 1.22rem); line-height: 1.5;
  color: var(--n-600); max-width: 56ch; letter-spacing: -.014em;
}

/* ------------------------------------------------------------------- misc */

.tag {
  border-radius: 7px; border-color: var(--n-100); background: #fff;
  font-size: .855rem; color: var(--n-800); padding: 6px 11px;
}
.tag:hover { border-color: var(--n-400); background: var(--n-25); color: var(--n-950); transform: none; }

.crumbs { font-size: .8rem; color: var(--n-400); }

.toc { background: var(--n-25); border: 1px solid var(--n-100); border-radius: 10px; padding: 16px; }
/* n-600, not n-400: at .7rem this is small text, so it needs the 4.5:1 floor
   rather than the 3:1 one that large text gets away with. */
.toc h4 { font-size: .7rem; letter-spacing: .06em; color: var(--n-600); }
.toc a { font-size: .855rem; border-left: 0; border-radius: 6px; padding: 6px 9px; }
.toc a:hover { background: var(--n-50); color: var(--n-950); }
.toc a.is-active { background: #fff; color: var(--signal); border-left: 0; box-shadow: inset 0 0 0 1px var(--n-100); }

.related-links a {
  border: 1px solid var(--n-100); border-radius: 8px; background: #fff;
  padding: 11px 13px; font-size: .875rem;
}
.related-links a:hover { border-color: var(--n-400); color: var(--n-950); transform: none; background: var(--n-25); }

.faq { border: 1px solid var(--n-100); border-radius: 12px; background: #fff; }
.faq-item + .faq-item { border-top-color: var(--n-100); }
.faq-q { font-family: var(--font-ui); font-size: .98rem; font-weight: 500; letter-spacing: -.016em; padding: 16px 20px; }
.faq-q:hover { background: var(--n-25); }
.faq-icon { background: var(--n-50) !important; color: var(--n-600); border-radius: 6px; }
.faq-item.is-open .faq-icon { background: var(--n-950) !important; color: #fff; }
.faq-a-inner > div { padding: 0 20px 18px; font-size: .94rem; color: var(--n-600); }

.review { background: #fff; border: 1px solid var(--n-100); border-radius: 12px; padding: 18px; box-shadow: none; }
.review:hover { transform: none; box-shadow: none; border-color: var(--n-200); }
.review p { font-size: .93rem; color: var(--n-600); }
.avatar { border-radius: 8px; font-size: .78rem; font-weight: 600; }
.review-tag, .verified-pill { border-radius: 5px; font-size: .73rem; }
.stars { color: var(--n-950); }

.price-table { font-size: .9rem; }
.price-table th {
  font-size: .72rem; letter-spacing: .02em; text-transform: none;
  color: var(--n-400); font-weight: 500; border-bottom-color: var(--n-100);
}
.price-table td { border-bottom-color: var(--n-50); }
.price-table tbody tr:hover { background: var(--n-25); }
.table-wrap { border: 1px solid var(--n-100); border-radius: 10px; background: #fff; }

.cta-band { background: var(--n-950); border-radius: 16px; padding: 60px 48px; text-align: center; }
.cta-band::before, .cta-band::after { display: none; }
.cta-band p { color: var(--n-400); }
.cta-actions { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--n-950); border-color: #fff; }
.cta-band .btn-primary:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.24); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); color: #fff; }

.cta-note { margin-top: 22px; font-size: .88rem; color: var(--n-400); }
.prose.on-dark, .prose.on-dark p { color: rgba(255, 255, 255, .68); }
.prose.on-dark a { color: #fff; text-decoration-color: rgba(255,255,255,.4); }

.site-footer { background: var(--n-950); color: var(--n-400); margin-top: 0; }
.footer-badge { border-radius: 6px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.footer-col a { font-size: .875rem; }

.field input, .field select, .field textarea {
  border-radius: 7px; border-color: var(--n-200); background: #fff; font-size: .92rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-tint);
}
.choice span { border-radius: 7px; border-color: var(--n-200); font-size: .875rem; }
.choice input:checked + span { border-color: var(--n-950); background: var(--n-950); color: #fff; }

.stat { background: #fff; border: 1px solid var(--n-100); border-radius: 10px; padding: 18px; text-align: left; }
.stat b { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -.022em; color: var(--n-950); }
.stat span { font-size: .82rem; color: var(--n-600); }
.section-navy .stat { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }

.trust-band { background: var(--n-25); border: 1px solid var(--n-100); border-radius: 14px; padding: 26px 30px; }
.quote-mark { display: none; }
.trust-quote p { font-size: 1.1rem; line-height: 1.45; color: var(--n-950); font-weight: 450; letter-spacing: -.018em; }
.trust-quote cite { font-size: .84rem; color: var(--n-400); }
.trust-logos { border-left: 1px solid var(--n-100); }
.trust-logos > span { font-size: .76rem; color: var(--n-600); text-transform: none; letter-spacing: 0; }

.detector { border-radius: 10px; border-color: var(--n-100); background: #fff; }
.detector:hover { border-color: var(--n-400); transform: none; }
.detector b { font-size: .89rem; letter-spacing: -.015em; }
.detector-tick { background: var(--ok-tint); color: var(--ok); }

.calc-out, .basket-summary { background: var(--n-950); border-radius: 12px; color: rgba(255,255,255,.74); }
.calc-out::after { display: none; }            /* was a blue radial glow */
.calc-row span { color: rgba(255,255,255,.62); }
.calc-split { background: rgba(255,255,255,.07); }
.calc-panel { background: #fff; border-color: var(--n-100); border-radius: 12px; }
.price-hero { background: var(--n-25); border: 1px solid var(--n-100); border-radius: 14px; }
.price-big { font-family: var(--font-display); letter-spacing: -.03em; }
.sample-request { background: var(--n-25); border: 1px solid var(--n-100); border-radius: 14px; }
.tree-card { background: var(--n-25); border: 1px solid var(--n-100); border-radius: 14px; text-align: left; }
.doc-card { border-radius: 12px; border-color: var(--n-100); box-shadow: var(--shadow-lg); }
/* The swoosh svg is stretched with preserveAspectRatio="none", which scales
   the stroke with it and turns a 7-unit line into a blob under a 5rem
   heading. non-scaling-stroke keeps it an actual pen line at any size. */
.underline-swoosh svg { bottom: -.14em; height: .3em; }
.underline-swoosh path {
  stroke: var(--n-950);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}
.basket-line, .sample { border-color: var(--n-100); border-radius: 12px; }

/* Tick and cross, monochrome. The pair still has to be distinguishable at a
   glance without colour, so the tick is a filled black disc and the cross is
   an open outline — shape and weight carry the difference. */
.checklist li::before {
  background: var(--n-950) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.crosslist li::before {
  background: var(--n-0) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E8E97' stroke-width='3.4' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/11px no-repeat;
  box-shadow: inset 0 0 0 1.5px var(--n-200);
}
.crosslist li { color: var(--n-600); }
.section-navy .checklist li::before {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2308080A' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Numbers and identifiers read better in mono. */
.calc-row b, .calc-total b, .price-big, .terms-strip dd { font-feature-settings: "tnum" 1; }

/* ------------------------------------------------------------- masthead */

.masthead { padding: 84px 0 0; border-bottom: 1px solid var(--n-100); }
.masthead-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 450; color: var(--n-600);
  background: var(--n-50); border: 1px solid var(--n-100);
  padding: 5px 12px; border-radius: 999px; margin: 0 0 30px;
}
.masthead-kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok);
}
.masthead h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem); line-height: 1.02;
  letter-spacing: -.03em; margin: 0 0 30px; max-width: 16ch; font-weight: 700;
}
.masthead-body {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 56px; align-items: end; padding-bottom: 46px;
}
.masthead-lede {
  font-family: var(--font-ui); font-weight: 400;
  font-size: clamp(1.06rem, 1.7vw, 1.24rem); line-height: 1.5;
  color: var(--n-600); max-width: 48ch; margin: 0; letter-spacing: -.014em;
}
.masthead-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.terms-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 0 0 -1px; border-top: 1px solid var(--n-100);
}
.terms-strip > div { padding: 22px 24px 26px 0; }
.terms-strip > div + div { border-left: 1px solid var(--n-100); padding-left: 24px; }
.terms-strip dt {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--n-400);
  margin-bottom: 10px;
}
.terms-strip dd {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: 1.5rem; line-height: 1.1; color: var(--n-950); letter-spacing: -.022em;
}
.terms-strip dd span {
  display: block; font-family: var(--font-ui); font-weight: 400;
  font-size: .82rem; color: var(--n-600); margin-top: 7px; letter-spacing: -.008em;
}

@media (max-width: 900px) {
  .masthead { padding-top: 46px; }
  .masthead-body { grid-template-columns: 1fr; align-items: start; }
  .terms-strip { grid-template-columns: 1fr 1fr; }
  .terms-strip > div { padding: 16px 16px 18px 0; }
  .terms-strip > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .terms-strip > div:nth-child(n+3) { border-top: 1px solid var(--n-100); }
}
@media (max-width: 520px) {
  .terms-strip { grid-template-columns: 1fr; }
  .terms-strip > div { border-left: 0 !important; padding-left: 0 !important; }
  .terms-strip > div + div { border-top: 1px solid var(--n-100); }
  .cta-band { padding: 40px 24px; }
}

/* ------------------------------------------------- touch targets, mobile */
/* A standalone link is a control and wants a 44px target. A link inside a
   sentence is not — WCAG exempts inline text links, and padding them out
   would wreck the line spacing of the prose. So this lists the standalone
   contexts explicitly rather than reaching for a blanket `main a`.
   Measured before this rule: breadcrumbs 20px, the linked category headings
   on /services/ 27px (26 of them), footer and TOC links 32px. */
@media (max-width: 960px) {
  .crumbs a,
  .footer-col a,
  .toc a,
  .related-links a,
  .card-link,
  h2 > a:only-child,
  h3 > a:only-child {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* These two are block-level lists, so the target should fill the row rather
     than only the width of the words. */
  .footer-col a, .toc a { display: flex; }
  .crumbs { line-height: 1.2; }

  /* Buttons render at 39px, service/filter chips at 35px and the basket remove
     control at 34px — all just under the 44px touch minimum. Set the floor on
     the classes rather than per page, so new pages inherit it. */
  .btn, .btn-sm, .btn-lg { min-height: 44px; }
  .tag { min-height: 44px; display: inline-flex; align-items: center; }
  .basket-remove { min-height: 44px; min-width: 44px; }
  /* The range thumb is dragged rather than tapped, but it still wants a
     finger-sized handle. */
  input[type="range"]::-webkit-slider-thumb { width: 26px; height: 26px; }

  /* The wordmark is the home link in both header and footer, and sat at 20px. */
  .brand { min-height: 44px; display: inline-flex; align-items: center; }

  /* An email address on its own line is a control, not prose. Left alone when
     it appears mid-sentence, where padding would break the line spacing. */
  p > a[href^="mailto:"]:only-child,
  p > a[href^="tel:"]:only-child {
    min-height: 44px; display: inline-flex; align-items: center;
  }
}
