/* Trace Technical, bespoke site kit. 17 September 2026.
   One stylesheet for the rebuilt pages. Colours are Parloa's live values, accepted
   by Glen as a starting point. Font is Onest. Nothing here depends on tokens.css,
   components.css or theme.css. */

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1F1C1B;
  --ink-2: #2D2724;
  --cream: #EBE9E1;
  --cream-2: #F5F4F0;
  --white: #FFFFFF;
  --edge: #D9D6CE;
  --text: #1F1C1B;
  --muted: #665953;
  --muted-2: #80736B;
  --on-ink: #FFFFFF;
  --on-ink-2: #C7C1B7;
  --on-ink-3: #A69B92;

  --font: "Onest", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --h1: clamp(2.5rem, 4.3vw, 3.875rem);
  --h2: clamp(1.875rem, 2.8vw, 2.5rem);
  --h3: 1.25rem;
  --lede: 1.125rem;
  --body: 1rem;
  --small: 0.875rem;
  --label: 0.8125rem;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4rem, 7vw, 6.5rem);
  --r-control: 4px;
  --r-panel: 8px;
  --shadow: 0 18px 40px rgba(31, 28, 27, 0.10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; }
h1, h2, h3, h4, p, figure { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
::selection { background: var(--ink); color: var(--white); }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 300;
  padding: 0.625rem 1rem; background: var(--white); color: var(--ink);
  font-size: var(--small);
}
.skip-link:focus { top: 1rem; }
.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; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* Surfaces. Each section says what it sits on. */
.on-ink { background: var(--ink); color: var(--on-ink); }
.on-cream { background: var(--cream); color: var(--text); }
.on-cream-2 { background: var(--cream-2); color: var(--text); }
.on-white { background: var(--white); color: var(--text); }
.muted { color: var(--muted); }
.on-ink .muted { color: var(--on-ink-2); }

/* Type */
h1 { font-size: var(--h1); font-weight: 500; line-height: 1.04; letter-spacing: -0.03em; text-wrap: balance; }
h2 { font-size: var(--h2); font-weight: 500; line-height: 1.12; letter-spacing: -0.025em; text-wrap: balance; }
h3 { font-size: var(--h3); font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.lede { font-size: var(--lede); line-height: 1.55; max-width: 58ch; }
.on-ink .lede { color: var(--on-ink-2); }
.small { font-size: var(--small); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: var(--label);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 0.4375rem 0.75rem;
  border: 1px solid rgba(31, 28, 27, 0.28);
  border-radius: var(--r-control);
  color: var(--text);
}
.on-ink .eyebrow { color: var(--on-ink); border-color: rgba(255, 255, 255, 0.34); }

/* Buttons and quiet links */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  min-height: 3rem; padding: 0.8125rem 1.375rem;
  border: 0; border-radius: var(--r-control);
  font-size: var(--small); font-weight: 500; line-height: 1.2;
  cursor: pointer; transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-2); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--cream-2); }
.btn:active { transform: translateY(1px); }

.link-quiet {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--small); font-weight: 500; color: var(--muted);
  transition: color 0.16s ease;
}
.link-quiet::after { content: ""; width: 1rem; height: 1px; background: currentColor; transition: width 0.16s ease; }
.link-quiet:hover { color: var(--text); }
.link-quiet:hover::after { width: 1.5rem; }
.on-ink .link-quiet { color: var(--on-ink-2); }
.on-ink .link-quiet:hover { color: var(--on-ink); }

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }

/* Card */
.card {
  background: var(--white); color: var(--text);
  border-radius: var(--r-panel); padding: 2rem;
}
.on-ink .card { background: var(--ink-2); color: var(--on-ink); }

/* Sections */
.section { padding-block: var(--section); }
.section__head { max-width: 46rem; margin-bottom: 3rem; }
.section__head .eyebrow { margin-bottom: 1.25rem; }
.section__head .lede { margin-top: 1rem; }

/* ---------- Navigation (ink) ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: var(--ink); color: var(--on-ink); }
.nav__in { display: flex; align-items: center; gap: 2.5rem; min-height: 4.5rem; }
.nav__brand { display: inline-flex; align-items: center; flex: none; }
.nav__brand img { height: 1.125rem; width: auto; }
.nav__links { display: flex; align-items: center; gap: 0.25rem; margin-inline: auto; }
.nav__item { position: relative; }
.nav__item > a, .nav__item > span {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.625rem 0.875rem; border-radius: var(--r-control);
  font-size: var(--small); font-weight: 500; color: var(--on-ink-2); cursor: default;
  transition: color 0.16s ease, background-color 0.16s ease;
}
.nav__item > a { cursor: pointer; }
.nav__item:hover > a, .nav__item:hover > span, .nav__item:focus-within > a, .nav__item:focus-within > span,
.nav__item > a[aria-current="page"] { color: var(--on-ink); }
.nav__chev { width: 0.625rem; height: 0.625rem; opacity: 0.7; }
.nav__panel {
  position: absolute; top: calc(100% + 0.5rem); left: 0; min-width: 16rem;
  padding: 0.5rem; background: var(--white); color: var(--text);
  border-radius: var(--r-panel); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
}
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel {
  opacity: 1; visibility: visible; transform: none; transition-delay: 0s;
}
.nav__panel a {
  display: block; padding: 0.625rem 0.75rem; border-radius: var(--r-control);
  font-size: var(--small); font-weight: 500;
}
.nav__panel a:hover { background: var(--cream-2); }
.nav__cta { flex: none; }

.nav__mobile { display: none; margin-left: auto; }
.nav__mobile summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.34); border-radius: var(--r-control);
}
.nav__mobile summary::-webkit-details-marker { display: none; }
.nav__burger { position: relative; display: block; width: 1.125rem; height: 0.75rem; }
.nav__burger span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 1px; background: var(--on-ink);
  transition: transform 0.22s ease, opacity 0.16s ease, top 0.22s ease;
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: calc(50% - 1px); }
.nav__burger span:nth-child(3) { top: calc(100% - 2px); }
.nav__mobile[open] .nav__burger span:nth-child(1) { top: calc(50% - 1px); transform: rotate(45deg); }
.nav__mobile[open] .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__mobile[open] .nav__burger span:nth-child(3) { top: calc(50% - 1px); transform: rotate(-45deg); }
@media (prefers-reduced-motion: reduce) { .nav__burger span { transition: none; } }
.nav__mobile-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  padding: 1rem var(--gutter) 1.5rem; background: var(--ink);
  display: grid; gap: 0.25rem; box-shadow: var(--shadow);
}
.nav__mobile-panel a { display: block; padding: 0.625rem 0; font-size: 1rem; font-weight: 500; color: var(--on-ink); }
.nav__mobile-panel .nav__group { padding: 0.5rem 0 0.25rem; font-size: var(--label); color: var(--on-ink-3); }
.nav__mobile-panel a.btn {
  display: inline-flex; justify-self: stretch; margin-top: 1rem;
  min-height: 3rem; padding: 0.8125rem 1.375rem; font-size: var(--small); color: var(--ink);
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__mobile { display: block; }
}

/* ---------- Hero (ink) ---------- */
.hero { padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6.5rem); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.hero__copy { max-width: 42rem; }
.hero__copy .eyebrow { margin-bottom: 1.75rem; }
.hero__copy h1 { margin-bottom: 1.5rem; }
.hero__copy .lede { margin-bottom: 2.25rem; }
.hero__media {
  padding: 0.875rem; background: var(--ink-2); border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.hero__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%;
  border-radius: var(--r-panel); background: var(--cream);
}
.hero__caption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.875rem 0.25rem 0.125rem;
  font-size: var(--label); color: var(--on-ink-2);
}
.hero__caption strong { font-weight: 500; color: var(--on-ink); }
.hero__role { color: var(--on-ink-3); }
.hero__linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500; color: var(--on-ink); transition: color 0.16s ease;
}
.hero__linkedin svg { width: 1rem; height: 1rem; }
.hero__linkedin:hover { color: var(--on-ink-2); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 26rem; }
}

/* ---------- Section 2: six categories strip (cream) ---------- */
.strip { padding-block: 1.5rem; }
.strip__in { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.5rem; }
.strip__label { font-size: var(--label); font-weight: 500; color: var(--muted-2); flex: none; }
.strip__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem;
  font-size: var(--small); font-weight: 500; color: var(--text);
}
.strip__list strong { font-weight: 500; }
.strip__list span { font-weight: 400; color: var(--muted-2); }

/* ---------- Section 4: the stance (ink, three raised cards) ---------- */
.stance__foot {
  margin-top: 3rem; display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 3rem; align-items: end;
}
@media (max-width: 900px) { .stance__foot { grid-template-columns: 1fr; align-items: start; } }

/* Shared card grid */
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }

/* ---------- Section 5: Training (cream, split) ---------- */
.training__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.training__head { margin-bottom: 0; }
.training__aim { margin-top: 1.5rem; font-weight: 500; }
.training__cards { display: grid; gap: 1.25rem; }
.training__cards .service__top { margin-bottom: 1rem; align-items: center; }
.training__cards h3 { margin-bottom: 0; }
@media (max-width: 900px) { .training__grid { grid-template-columns: 1fr; } }

/* ---------- Section 6: Latest reading (white, sketch thumbnails) ---------- */
.section__head--row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; max-width: none; }
.section__head--row > div { max-width: 46rem; }
.section__head--row .link-quiet { flex: none; margin-bottom: 0.5rem; }
.read { display: flex; flex-direction: column; gap: 0.5rem; }
.read__art {
  display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-panel);
  background: var(--cream); margin-bottom: 0.75rem;
}
.read__art img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 0.5rem; }
@media (prefers-reduced-motion: no-preference) {
  .read__art img { transition: transform 220ms ease-out; }
  .read:focus-visible .read__art img { transform: translateY(-4px); }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .read:hover .read__art img { transform: translateY(-4px); }
}
.read__kind { font-size: var(--label); font-weight: 500; color: var(--muted-2); }
.read h3 { font-size: 1.25rem; }
.read p { font-size: var(--small); color: var(--muted); }

/* ---------- Section 7: Close (ink, Parloa pattern) ---------- */
.close { position: relative; overflow: hidden; padding-block: clamp(5rem, 9vw, 8.5rem) clamp(5rem, 8vw, 7.5rem); }
.close__arcs {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
  fill: none; stroke: rgba(255, 255, 255, 0.10); stroke-width: 1;
}
.close .wrap { position: relative; }
.close__title {
  display: grid; gap: 0.1em;
  font-size: clamp(2.75rem, 5.6vw, 5rem); line-height: 1.02; letter-spacing: -0.035em;
}
.close__step { padding-left: clamp(0rem, 22vw, 20rem); }
.close__row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); margin-top: clamp(3rem, 6vw, 5.5rem); }
.close__side { grid-column: 2; max-width: 30rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.close__lede { color: var(--on-ink-2); margin-bottom: 1.5rem; }
@media (max-width: 900px) {
  .close__step { padding-left: 0; }
  .close__row { grid-template-columns: 1fr; }
  .close__side { grid-column: 1; }
}

/* ---------- Service page: hero fee panel ---------- */
.hero--service .hero__grid { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); align-items: center; }
.fee-panel {
  padding: 2rem; background: var(--ink-2); border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.fee-panel__label { font-size: var(--label); font-weight: 500; color: var(--on-ink-3); margin-bottom: 1rem; }
.fee-panel__price { font-size: clamp(2.5rem, 3.6vw, 3.25rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: var(--white); }
.fee-panel__unit { margin-top: 0.5rem; font-weight: 500; color: var(--on-ink); }
.fee-panel__terms { list-style: none; margin: 1.5rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid rgba(255, 255, 255, 0.14); display: grid; gap: 0.5rem; font-size: var(--small); color: var(--on-ink-2); }

/* ---------- Centred hero (About) ---------- */
.hero--centered { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem) clamp(4rem, 8vw, 7rem); }
.hero--centered .wrap { position: relative; }
.hero__center { display: grid; justify-items: center; text-align: center; max-width: 52rem; }
.hero__center .eyebrow { margin-bottom: 1.75rem; }
.hero__center h1 { margin-bottom: 1.5rem; }
.hero__center .lede { margin-bottom: 2.25rem; text-align: center; }
.actions--center { justify-content: center; }
.hero__center .hero__linkedin { font-size: var(--small); }

/* ---------- About ---------- */
.prose { display: grid; gap: 1rem; }
.prose .eyebrow { justify-self: start; margin-bottom: 0.5rem; }
.prose h2 { margin-bottom: 0.25rem; }
.prose p { color: var(--muted); max-width: 58ch; }
.prose .link-quiet { justify-self: start; margin-top: 0.5rem; }
.first__note h3 { font-size: 1.25rem; }
.route .step h3 { font-size: 1.0625rem; }
.route .step:nth-child(even) { margin-top: 0; }
.plain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.875rem; }
.plain-list li { color: var(--muted); }
.plain-list--tight { gap: 0.5rem; }
.plain-list--tight li { color: var(--text); font-weight: 500; }
.feat-grid--ink .card { padding: 1.75rem 1.5rem; }
.feat-grid--ink .card h3 { font-size: 1.125rem; }
.feat-grid--ink .card p { font-size: var(--small); }
.about__foot { padding-block: 0 3rem; }
.about__foot p { max-width: 70ch; }

/* ---------- Service page: where you are ---------- */
.who-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem 2rem; }
.who h3 { margin-bottom: 0.625rem; }
.who p { color: var(--muted); }

/* ---------- Service page: steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.step { padding: 1.75rem 1.5rem; background: var(--cream); border-radius: var(--r-panel); display: flex; flex-direction: column; gap: 0.625rem; }
.step:nth-child(even) { margin-top: 2.5rem; }
.step__num { font-size: var(--label); font-weight: 500; color: var(--muted-2); margin-bottom: 0.75rem; }
.step h3 { font-size: 1.125rem; }
.step p { font-size: var(--small); color: var(--muted); }

.steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Open process rows: used on Certification Management's How it runs section. */
.steps--rows { grid-template-columns: 1fr; gap: 0; }
.steps--rows .step {
  display: grid; grid-template-columns: 2.5rem minmax(12rem, 0.75fr) minmax(0, 1.5fr);
  align-items: baseline; gap: 1.5rem; padding: 1.5rem 0; margin: 0;
  background: transparent; border-radius: 0; border-top: 1px solid var(--edge);
}
.steps--rows .step__num { margin: 0; color: var(--muted); }
.steps--rows .step p { max-width: 65ch; }
@media (max-width: 700px) {
  .steps--rows .step { grid-template-columns: 2rem minmax(0, 1fr); gap: 0.5rem 1rem; }
  .steps--rows .step p { grid-column: 2; }
}

.fee__examples { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.625rem; }
.fee__examples li { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--small); color: var(--on-ink-2); }
.fee__examples strong { font-weight: 500; color: var(--on-ink); }
.handover__grid--two .handover__item { padding: 1.75rem; }
.handover__grid--two .handover__item h3 { font-size: 1.25rem; }
.handover__grid--two .handover__item p { font-size: var(--body); }

/* ---------- Service page: handover ---------- */
.handover { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.handover__head { margin-bottom: 0; }
.handover__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.handover__item { padding: 1.5rem; background: var(--white); border-radius: var(--r-panel); }
.handover__item h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.handover__item p { font-size: var(--small); color: var(--muted); }

/* ---------- Training: six topics, three across ---------- */
.topics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.topics .handover__item { padding: 1.75rem; }
.topics .handover__item h3 { font-size: 1.125rem; }
.handover__item .link-quiet { margin-top: 1rem; }

/* ---------- Read and learn: one archive, filtered ---------- */
.archive__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem 2rem; margin-bottom: 3rem; }
.archive .cards-3 { gap: 3rem 1.25rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter {
  display: inline-flex; align-items: center; min-height: 2.5rem; padding: 0 1rem;
  background: transparent; color: var(--text);
  border: 1px solid rgba(31, 28, 27, 0.28); border-radius: var(--r-control);
  font-size: var(--small); font-weight: 500; line-height: 1; cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.filter:hover { background: var(--cream-2); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.read[hidden] { display: none; }
.archive__empty { color: var(--muted); }

/* ---------- Article: Field Notes, Guides and Insights ---------- */
.article__head { padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem); }
.article__headgrid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.article__intro .eyebrow { margin-bottom: 1.5rem; }
.article__intro h1 { font-size: clamp(2.125rem, 3.6vw, 3.25rem); margin-bottom: 1.75rem; }
.byline { display: flex; align-items: center; gap: 0.875rem; }
.byline img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.byline__name { font-weight: 500; }
.byline__role { font-weight: 400; color: var(--muted); margin-left: 0.375rem; }
.byline__meta { font-size: var(--small); color: var(--muted); }
.on-ink .byline__role, .on-ink .byline__meta { color: var(--on-ink-2); }
.article__art { aspect-ratio: 16 / 11; border-radius: var(--r-panel); background: transparent; overflow: hidden; }
.article__art img { width: 100%; height: 100%; object-fit: contain; }

.article__wrap { padding-block: var(--section); }
.article__grid { display: grid; grid-template-columns: 15rem minmax(0, 44rem); gap: clamp(2rem, 5vw, 5rem); justify-content: start; }
.article__grid--solo { grid-template-columns: minmax(0, 44rem); justify-content: center; }
.toc { position: sticky; top: 6rem; padding: 1.25rem 1.5rem; background: var(--cream-2); border-radius: var(--r-panel); }
.toc__label { font-size: var(--label); font-weight: 500; color: var(--muted); margin-bottom: 0.75rem; }
.toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.toc a { display: block; padding: 0.375rem 0; font-size: var(--label); font-weight: 400; line-height: 1.4; color: var(--muted); transition: color 0.16s ease; }
.toc a:hover { color: var(--text); }
.toc a[aria-current="true"] { color: var(--text); font-weight: 500; }
.on-ink .toc { background: var(--ink-2); }
.on-ink .toc__label { color: var(--on-ink-3); }
.on-ink .toc a { color: var(--on-ink-2); }
.on-ink .toc a:hover, .on-ink .toc a[aria-current="true"] { color: var(--on-ink); }

.takeaways { padding: 1.75rem 2rem; background: var(--cream-2); border-radius: var(--r-panel); margin-bottom: 2.5rem; }
.takeaways__label { font-size: var(--label); font-weight: 500; color: var(--muted-2); margin-bottom: 0.75rem; }
.takeaways p { font-size: 1.125rem; font-weight: 500; line-height: 1.5; }
.takeaways ul { margin: 0; padding-left: 1.125rem; display: grid; gap: 0.5rem; font-weight: 500; }
.on-ink .takeaways { background: var(--ink-2); }
.on-ink .takeaways__label { color: var(--on-ink-3); }

.article__body { font-size: 1.0625rem; line-height: 1.75; font-weight: 400; color: var(--muted); }
.article__body h2, .article__body h3, .article__body strong, .article__body .note-intro, .article__body .guide-intro, .article__body .guide-callout > p, .article__body tbody th { color: var(--text); }
.article__body > * + *,
.article__body section > * + *,
.article__body .note-section > * + *,
.article__body blockquote > * + *,
.article__body p + p { margin-top: 1.75rem; }
.article__body section + section, .article__body .note-section + .note-section,
.article__body > * + section, .article__body * + h2, .article__body * + h3 { margin-top: 3rem; }
.article__body h2 { font-size: 1.625rem; scroll-margin-top: 6rem; }
.article__body h3 { font-size: 1.25rem; }
.article__body h2 + *, .article__body h3 + * { margin-top: 1rem; }
.article__body .note-intro, .article__body .guide-intro { font-size: 1.25rem; font-weight: 400; line-height: 1.5; }
.article__body strong { font-weight: 500; }
.article__body a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.25em; text-decoration-color: var(--muted-2); }
.article__body a:hover { text-decoration-color: currentColor; }
.article__body ul, .article__body ol { margin-inline: 0; margin-bottom: 0; padding-left: 1.25rem; }
.article__body li + li { margin-top: 1.125rem; }
.article__body li > strong:first-child { display: block; margin-bottom: 0.25rem; }
.article__body li::marker { color: var(--muted-2); }
.article__body blockquote { margin-inline: 0; margin-bottom: 0; padding: 1.25rem 1.5rem; background: var(--cream-2); border-radius: var(--r-panel); }
.article__body table { width: 100%; border-collapse: collapse; font-size: var(--small); line-height: 1.5; }
.article__body th, .article__body td { padding: 0.75rem 1rem 0.75rem 0; text-align: left; vertical-align: top; }
.article__body thead th { font-size: var(--label); font-weight: 500; color: var(--muted-2); }
.article__body tbody th { font-weight: 500; }
.article__body .note-callout, .article__body .guide-callout { padding: 1.5rem 1.75rem; background: var(--cream-2); border-radius: var(--r-panel); }
.article__body .note-callout__label, .article__body .guide-callout > span { display: block; font-size: var(--label); font-weight: 500; color: var(--muted-2); margin-bottom: 0.5rem; }
.article__body .note-callout > p:first-of-type, .article__body .guide-callout > p:first-of-type { margin-top: 0; }
.article__body .guide-callout > p { font-size: 1.125rem; font-weight: 500; line-height: 1.5; }
.article__body .guide-jump { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.article__body .guide-jump__label { font-size: var(--label); font-weight: 500; color: var(--muted-2); }
.article__body .guide-jump ul { display: contents; }
.article__body .guide-jump li { margin: 0; list-style: none; }
.article__body .guide-jump a { display: inline-flex; align-items: center; min-height: 2.25rem; padding: 0 0.875rem; border: 1px solid rgba(31, 28, 27, 0.28); border-radius: var(--r-control); font-size: var(--label); font-weight: 500; text-decoration: none; }
.article__body .guide-jump a:hover { background: var(--cream-2); }
.on-ink .article__body { color: var(--on-ink-2); }
.on-ink .article__body h2, .on-ink .article__body h3, .on-ink .article__body strong, .on-ink .article__body .note-intro, .on-ink .article__body .guide-intro, .on-ink .article__body .guide-callout > p, .on-ink .article__body tbody th { color: var(--on-ink); }
.on-ink .article__body blockquote, .on-ink .article__body .note-callout, .on-ink .article__body .guide-callout { background: var(--ink-2); }
.on-ink .article__body .note-callout__label, .on-ink .article__body .guide-callout > span, .on-ink .article__body .guide-jump__label, .on-ink .article__body thead th { color: var(--on-ink-3); }
.on-ink .article__body .guide-jump a { border-color: rgba(255, 255, 255, 0.34); color: var(--on-ink); }
.on-ink .article__body .guide-jump a:hover { background: var(--ink-2); }
.on-ink .article__body a { text-decoration-color: var(--on-ink-3); }

.article__faq { margin-top: 3rem; }
.article__faq h2 { font-size: 1.625rem; margin-bottom: 1.25rem; }
.article__faq dl { margin: 0; display: grid; gap: 1.5rem; }
.article__faq dt { font-size: 1.125rem; font-weight: 500; line-height: 1.45; }
.article__faq dd { margin: 0.375rem 0 0; color: var(--muted); }
.article__faq dd a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.25em; }
.on-ink .article__faq dd { color: var(--on-ink-2); }

.article__next { margin-top: 3.5rem; padding: 1.5rem 1.75rem; background: var(--cream-2); border-radius: var(--r-panel); display: grid; gap: 0.625rem; justify-items: start; }
.article__next .eyebrow { margin-bottom: 0.5rem; }
.article__next h2 { font-size: 1.25rem; line-height: 1.35; max-width: 34ch; }
.article__next p { color: var(--muted); max-width: 56ch; }
.article__next .link-quiet { margin-top: 0.375rem; }
.article__next .small a { text-decoration: underline; }
.article__disclaimer { margin-top: 2rem; font-size: var(--label); color: var(--muted-2); max-width: 70ch; }
.on-ink .article__disclaimer { color: var(--on-ink-3); }

.on-ink .read__kind { color: var(--on-ink-3); }
.on-ink .read p { color: var(--on-ink-2); }
.on-ink .read__art { background: var(--ink-2); }

@media (max-width: 900px) {
  .article__headgrid { grid-template-columns: 1fr; }
  .article__art { max-width: 32rem; }
  .article__grid { grid-template-columns: 1fr; }
  .toc { position: static; }
}

/* ---------- Booking: small hero, the calendar is the page ---------- */
.hero--small { padding-block: clamp(2.25rem, 4vw, 3rem); }
.hero__row { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: end; }
.hero--small .eyebrow { margin-bottom: 1rem; }
.hero--small h1 { font-size: var(--h2); }
.hero__about { margin-top: 0.75rem; font-weight: 500; }
.bk-calendar-section { padding-block: clamp(2rem, 4vw, 3rem) var(--section); }
.bk-calendar { min-height: 24rem; }
#bk-cal-inline { width: 100%; overflow: hidden; border-radius: var(--r-panel); }
.bk-status, .bk-error { padding: 1rem 0; }
.bk-link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.25em; text-decoration-color: var(--muted-2); }
.bk-link:hover { text-decoration-color: currentColor; }
.first--top { align-items: start; }
.first__copy .lede { margin-bottom: 1rem; }
.bk-form { padding: 2rem; background: var(--white); border-radius: var(--r-panel); display: grid; gap: 1.25rem; }
.bk-form__gotcha { position: absolute; left: -9999px; }
.field__label { display: block; font-size: var(--small); font-weight: 500; margin-bottom: 0.5rem; }
.field__label span { font-weight: 400; color: var(--muted-2); }
.field__input { display: block; width: 100%; padding: 0.8125rem 1rem; background: var(--cream-2); border: 0; border-radius: var(--r-control); color: var(--text); font: inherit; line-height: 1.5; }
.field__input::placeholder { color: var(--muted-2); }
.field__input:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
textarea.field__input { min-height: 9rem; resize: vertical; }
.bk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.bk-form .btn { justify-self: start; }
.bk-form__submit[disabled] { opacity: 0.55; cursor: wait; }
.bk-form__state a { text-decoration: underline; }
.bk-form__privacy { max-width: 56ch; }
@media (max-width: 900px) { .hero__row { grid-template-columns: 1fr; align-items: start; } }
@media (max-width: 560px) { .bk-form__row { grid-template-columns: 1fr; } }

/* ---------- Legal: small head, one reading column ---------- */
.legal__head { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem); }
.legal__head .eyebrow { margin-bottom: 1.25rem; }
.legal__head h1 { font-size: var(--h2); margin-bottom: 0.75rem; }
.legal__head .lede { margin-bottom: 0.75rem; }
.article__body .lg-callout { padding: 1.25rem 1.5rem; background: var(--cream-2); border-radius: var(--r-panel); }
.article__body .lg-callout p { margin: 0; color: var(--text); }
.article__body .lg-table-wrap { overflow-x: auto; }

/* ---------- Standards: category cards with their standards listed ---------- */
.std-moto { list-style: none; margin: 0; padding: 0; }
.std-cats { list-style: none; margin: 0; padding: 0; }
.std-cats .handover__item > p:first-of-type { color: var(--muted); }
.std-k { margin-top: 1.25rem; font-size: var(--label); font-weight: 500; color: var(--muted-2); }
.std-list { list-style: none; margin: 0.5rem 0 0; padding: 0; display: grid; gap: 0.5rem; font-size: var(--small); color: var(--muted); }
.std-list strong { font-weight: 500; color: var(--text); margin-right: 0.375rem; white-space: nowrap; }
.feat h3 + p { margin-top: 0; }
.feat .link-quiet { margin-top: auto; padding-top: 0.75rem; }

/* ---------- How I work: four passes with artefact panels; the quote ---------- */
.passes { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.pass { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: 2rem 0; }
.pass:nth-child(even) .pass__text { order: 2; }
.pass__k { font-size: var(--label); font-weight: 500; color: var(--muted-2); margin-bottom: 0.75rem; }
.pass h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.pass__text p:not(.pass__k) { color: var(--muted); max-width: 44ch; }
.art { padding: 1.5rem; background: var(--white); border-radius: var(--r-panel); box-shadow: 0 1px 2px rgba(31, 28, 27, 0.04), 0 12px 32px rgba(31, 28, 27, 0.06); }
.art__cap { font-size: var(--label); font-weight: 500; color: var(--muted-2); }
.art__state { display: flex; align-items: center; gap: 0.375rem; margin: 0.75rem 0 1rem; font-size: var(--label); color: var(--muted-2); }
.pip { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--edge); }
.pip--on { background: var(--ink); }
.pip--half { background: linear-gradient(90deg, var(--ink) 50%, var(--edge) 50%); }
.art__count { margin-left: 0.375rem; }
.art__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.art__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.625rem 0.875rem; background: var(--cream-2); border-radius: var(--r-control); font-size: var(--small); }
.art__row--open { background: var(--cream); }
.art__tag { font-size: var(--label); font-weight: 500; color: var(--muted-2); white-space: nowrap; }
.art__tag--live { color: var(--text); }
.art__quote { margin-top: 0.75rem; font-size: 1.125rem; font-weight: 500; line-height: 1.5; }
.art__meta { margin-top: 0.875rem; font-size: var(--label); color: var(--muted-2); }
.art__sign { margin-top: 1rem; font-weight: 500; }
.quote { margin: 0; }
.quote p { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 500; line-height: 1.2; letter-spacing: -0.02em; text-wrap: balance; }
.quote footer { margin-top: 1.25rem; font-size: var(--small); color: var(--on-ink-2); }
.why__foot { display: grid; gap: 1rem; max-width: 46rem; }
.why__foot .link-quiet { display: inline-flex; }
@media (max-width: 900px) {
  .pass { grid-template-columns: 1fr; padding: 1rem 0; }
  .pass:nth-child(even) .pass__text { order: 0; }
}

/* ---------- Service page: fees on ink ---------- */
.fees { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 1.25rem; }
.fee { padding: 2rem; background: var(--ink-2); border-radius: var(--r-panel); display: flex; flex-direction: column; gap: 0.375rem; }
.fee--lead { background: var(--white); color: var(--text); }
.fee__label { font-size: var(--label); font-weight: 500; color: var(--on-ink-3); }
.fee--lead .fee__label { color: var(--muted-2); }
.fee__price { font-size: 2.25rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; margin-top: 0.75rem; }
.fee__unit { font-weight: 500; }
.fee__text { margin-top: 0.75rem; font-size: var(--small); color: var(--on-ink-2); }
.fee--lead .fee__text { color: var(--muted); }
.fee .btn { margin-top: auto; align-self: flex-start; padding-top: 0.8125rem; }
.fee--lead .btn { background: var(--ink); color: var(--white); margin-top: 1.5rem; }
.fee--lead .btn:hover { background: var(--ink-2); }
.fees__terms { margin-top: 2rem; max-width: 70ch; font-size: var(--small); color: var(--on-ink-2); }

/* ---------- Service page: first product ---------- */
.first { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.first__copy .eyebrow { margin-bottom: 1.25rem; }
.first__copy h2 { margin-bottom: 1rem; }
.first__note { padding: 2rem; background: var(--white); border-radius: var(--r-panel); display: grid; gap: 1rem; justify-items: start; }
.first__note p:not(.service__price) { color: var(--muted); }

/* ---------- WCR: before and after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ba__panel { padding: 1.75rem; border-radius: var(--r-panel); background: var(--cream); }
.ba__panel--after { background: var(--white); box-shadow: 0 1px 2px rgba(31, 28, 27, 0.04), 0 12px 32px rgba(31, 28, 27, 0.08); }
.ba__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.ba__ph { display: block; width: 4rem; height: 4rem; flex: none; border-radius: var(--r-control); background: var(--white); }
.ba__panel--after .ba__ph { background: var(--cream); }
.ba__panel .ba__ph--sketch { background: transparent; }
.ba__ph--sketch svg { display: block; width: 100%; height: 100%; }
.ba__head h3 { font-size: 1.125rem; }
.ba__label { font-size: var(--label); font-weight: 500; color: var(--muted-2); }
.ba__panel--after .ba__label { color: var(--text); }
.ba__lines { margin: 0; display: grid; gap: 1.125rem; }
.ba__lines div { display: grid; grid-template-columns: 7rem minmax(0, 1fr); gap: 1rem; align-items: baseline; }
.ba__lines dt { font-size: var(--label); font-weight: 500; color: var(--muted-2); }
.ba__lines dd { margin: 0; line-height: 1.7; }
.ba__lines mark { background: transparent; color: inherit; padding: 0.1em 0.35em; border-radius: 3px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.ba__panel--before mark { background: rgba(31, 28, 27, 0.08); color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(31, 28, 27, 0.55); text-decoration-thickness: 1px; }
.ba__panel--after mark { background: var(--ink); color: var(--white); font-weight: 500; }
.ba__notes { margin: 2rem 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; font-size: var(--small); color: var(--muted); }
.ba__notes strong { display: block; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; }
.ba__disclaimer { margin-top: 1.5rem; font-size: var(--label); color: var(--muted-2); max-width: 70ch; }
@media (max-width: 900px) { .ba, .ba__notes { grid-template-columns: 1fr; } .ba__lines div { grid-template-columns: 1fr; gap: 0.25rem; } }

/* ---------- Retainer: feature grid ---------- */
.feat-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.feat { padding: 1.75rem 1.5rem; background: var(--cream); border-radius: var(--r-panel); display: flex; flex-direction: column; gap: 0.5rem; }
.feat__num { font-size: var(--label); font-weight: 500; color: var(--muted-2); margin-bottom: 0.75rem; }
.feat h3 { font-size: 1.125rem; }
.feat p { font-size: var(--small); color: var(--muted); }

/* ---------- Retainer: comparison on ink ---------- */
.compare { display: grid; gap: 0.75rem; }
.compare__head, .compare__row { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr) minmax(0, 1.1fr); gap: 0.75rem; align-items: stretch; }
.compare__head span { font-size: var(--label); font-weight: 500; color: var(--on-ink-3); padding: 0 1.5rem 0.25rem; }
.compare__row > span { padding: 1.25rem 1.5rem; border-radius: var(--r-panel); background: var(--ink-2); color: var(--on-ink-2); font-size: var(--small); }
.compare__label { background: transparent !important; color: var(--on-ink) !important; font-weight: 500; font-size: 1rem !important; padding-left: 0 !important; }
.compare__us { background: var(--white) !important; color: var(--text) !important; font-weight: 500; }

/* ---------- Retainer: member rate ---------- */
.rates { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.rates__head { margin-bottom: 0; }
.rates__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.rates__list li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--white); border-radius: var(--r-panel);
}
.rates__name { font-weight: 500; }

@media (max-width: 900px) {
  .hero--service .hero__grid, .who-grid, .handover, .handover__grid, .fees, .first, .rates, .topics { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(even) { margin-top: 0; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .compare__head { display: none; }
  .compare__row { grid-template-columns: 1fr; }
  .compare__row > span::before { content: attr(data-col); display: block; font-size: var(--label); color: var(--on-ink-3); margin-bottom: 0.25rem; }
  .compare__label::before { display: none; }
  .rates__list li { flex-wrap: wrap; }
}
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---------- Footer (ink) ---------- */
.footer { padding-block: 4rem 2rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer__top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 3rem 5rem; }
.footer__notes h2 { font-size: 1.5rem; margin: 1.25rem 0 0.5rem; }
.footer__form { margin-top: 1.5rem; max-width: 30rem; }
.footer__gotcha { position: absolute; left: -9999px; }
.footer__controls {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0.25rem 0.25rem 0.5rem; background: var(--white); border-radius: var(--r-control);
}
.footer__input {
  flex: 1 1 auto; min-width: 0; min-height: 2.5rem; padding: 0.5rem 0.75rem;
  background: transparent; color: var(--ink); border: 0; outline: none;
}
.footer__input::placeholder { color: var(--muted-2); }
.footer__controls:focus-within { outline: 2px solid var(--white); outline-offset: 3px; }
.footer__submit.btn { flex: none; min-height: 2.5rem; padding: 0.5rem 1.125rem; background: var(--ink); color: var(--white); }
.footer__submit.btn:hover { background: var(--ink-2); }
.footer__state { margin-top: 0.75rem; color: var(--on-ink-2); }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer__group { display: grid; gap: 0.5rem; align-content: start; }
.footer__group a { font-size: var(--small); color: var(--on-ink-2); }
.footer__group a:hover { color: var(--on-ink); }
.footer__title { font-size: var(--label); font-weight: 500; color: var(--on-ink-3); margin-bottom: 0.5rem; }
.footer__meta {
  margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; color: var(--on-ink-3);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a:hover { color: var(--on-ink); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; gap: 0.875rem; }
.card h3 { margin-bottom: 0.125rem; }
.card p { color: var(--muted); }
.on-ink .card p { color: var(--on-ink-2); }
.card .link-quiet { margin-top: auto; padding-top: 0.75rem; }
.section__note { margin-top: 2.5rem; max-width: 60ch; color: var(--muted); }

/* ---------- Section 3: four services (white ground, cream cards, price in the open) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.service {
  display: flex; flex-direction: column;
  padding: 2rem 2rem 1.75rem; background: var(--white); border-radius: var(--r-panel);
  box-shadow: 0 1px 2px rgba(31, 28, 27, 0.04), 0 12px 32px rgba(31, 28, 27, 0.06);
}
.service__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 2.25rem; }
.service__icon { width: 2rem; height: 2rem; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service__price {
  display: inline-flex; align-items: baseline; gap: 0.375rem;
  padding: 0.5rem 0.875rem; background: var(--ink); border-radius: var(--r-control);
  font-size: var(--label); line-height: 1.2; color: var(--on-ink-2);
}
.service__price strong { font-size: 1rem; font-weight: 500; color: var(--white); white-space: nowrap; }
@media (max-width: 900px) { .service__price { flex-wrap: wrap; } }
.service h3 { font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 0.625rem; }
.services-grid .service__top { margin-bottom: 1.25rem; }
@media (min-width: 901px) { .services-grid .service__price { white-space: nowrap; } }
.service__for { font-weight: 500; color: var(--text); margin-bottom: 0.75rem; }
.service__desc { color: var(--muted); margin-bottom: 1.75rem; }
.service__list { list-style: disc; margin: 0 0 1.75rem; padding-left: 1.125rem; display: grid; gap: 0.5rem; color: var(--muted); }
.service__list li::marker { color: var(--muted-2); }
.service .link-quiet { margin-top: auto; }
.services-terms { margin-top: 2rem; max-width: 64ch; font-size: var(--small); color: var(--muted-2); }

@media (max-width: 900px) {
  .cards-3, .services-grid { grid-template-columns: 1fr; }
  .service { padding: 1.75rem; }
}
