@charset "UTF-8";

/* ==========================================================================
   Lantana Digital — home page (v3)
   The Metes & Bounds world from v2, rebalanced paper-dominant for a long
   read. Deep forest green is the dark ground: the thesis, the measurement
   band, the fit statement and the close. The red field is reserved for the
   risk-reversal band. Red marks only ever mean a bloom or an action.
   ========================================================================== */

:root {
  --field: #1C2A21;        /* deep forest: the dark band ground */
  --field-deep: #141F18;   /* footer: the forest one step down */
  --paper: #EFEEEA;
  --shade: #E3E1D9;

  --bloom: #E5311A;        /* marks and display type */
  --bloom-up: #FF6A4D;     /* small red text on forest */
  --bloom-lit: #DB3318;    /* action fields on forest; white text 4.67:1, 3.2:1 on the ground */
  --bloom-deep: #C4290F;   /* action fields; red text on paper */
  --bloom-ink: #A5270D;    /* small red text on either light ground */
  --bloom-press: #B2250B;  /* pressed action */

  --ink: #1E1E1D;
  --body: #3A3B36;
  --note: #62635B;
  --hair: #B9B7AD;

  /* On forest: secondary tints are drawn from the green, not grey. */
  --ink-up: #EFEEEA;
  --body-up: #D3DBD1;
  --note-up: #9DAF9F;
  --hair-up: #354A3C;

  --measure: 64ch;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --bay: clamp(4rem, 9vw, 7.5rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Overpass, system-ui, sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.62;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; font-weight: 800; line-height: 1.06; letter-spacing: -0.035em; text-wrap: balance; }
p, ul, ol, dl, figure { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
img, svg { display: block; max-width: 100%; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* --- Browser surfaces belong to the palette ------------------------------ */

::selection { background: var(--bloom-deep); color: var(--paper); }
input { caret-color: var(--bloom-deep); }

:focus-visible { outline: 2px solid var(--bloom-deep); outline-offset: 3px; border-radius: 1px; }
.band--dark :focus-visible, .band--bloom :focus-visible { outline-color: var(--paper); }

html { scrollbar-color: var(--hair) var(--paper); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--hair); }
::-webkit-scrollbar-thumb:hover { background: var(--bloom-deep); }

/* --- Bands: whole regions of ground, each carrying its own ink ----------- */

.band {
  --t-ink: var(--ink);
  --t-body: var(--body);
  --t-note: var(--note);
  --t-hair: var(--hair);
  --t-red: var(--bloom-ink);
  --t-ground: var(--paper);
  background: var(--t-ground);
  color: var(--t-ink);
  padding: var(--bay) var(--gutter) calc(var(--bay) * 0.8);
}

.band--shade { --t-ground: var(--shade); }

.band--dark {
  --t-ink: var(--ink-up);
  --t-body: var(--body-up);
  --t-note: var(--note-up);
  --t-hair: var(--hair-up);
  --t-red: var(--bloom-up);
  --t-ground: var(--field);
}

.footer.band--dark { --t-ground: var(--field-deep); }

.band--bloom {
  --t-ink: var(--paper);
  --t-body: #FBE6E0;
  --t-note: #FBE6E0;
  --t-hair: #E08972;
  --t-red: var(--paper);
  --t-ground: var(--bloom-deep);
}

/* The wordmark's rhythm marks where the dark and red bands begin and end. */
.band--dark:not(.footer), .band--bloom { position: relative; }
.band--dark:not(.footer)::before, .band--bloom::before,
.band--dark:not(.footer)::after, .band--bloom::after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: max(var(--gutter), calc((100% - 78rem) / 2));
  right: max(var(--gutter), calc((100% - 78rem) / 2));
}
.band--dark:not(.footer)::before, .band--bloom::before {
  top: 0;
  height: 4px;
  background: repeating-linear-gradient(to right, var(--t-ink) 0 18px, transparent 18px 29px);
  opacity: 0.35;
}
.band--dark:not(.footer)::after {
  bottom: 0;
  height: 8px;
  background: radial-gradient(circle at 4px 50%, var(--bloom) 3.6px, transparent 3.9px) repeat-x;
  background-size: 17px 8px;
}
.band--bloom::after {
  bottom: 0;
  height: 8px;
  background: radial-gradient(circle at 4px 50%, var(--paper) 3.6px, transparent 3.9px) repeat-x;
  background-size: 17px 8px;
  opacity: 0.55;
}

.wrap { max-width: 78rem; margin-inline: auto; width: 100%; }

/* --- Type ---------------------------------------------------------------- */

.h2 {
  font-size: clamp(1.75rem, 1.15rem + 2.3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 18ch;
}

.prose p {
  max-width: var(--measure);
  font-size: clamp(1.03rem, 0.98rem + 0.25vw, 1.13rem);
  line-height: 1.68;
  color: var(--t-body);
}

.prose p + p { margin-top: 1.05em; }
.prose strong { color: var(--t-ink); font-weight: 700; }

.prose a, .inline-link {
  color: var(--t-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--bloom);
}
.prose a:hover, .inline-link:hover { text-decoration-thickness: 2px; }

.note {
  font-family: "Overpass Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.65;
  color: var(--t-note);
}

.thesis, .prose p.thesis {
  font-size: clamp(1.55rem, 1.1rem + 1.9vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: var(--t-ink);
  max-width: 24ch;
}
.thesis em { font-style: normal; color: var(--t-red); }

/* Section header beside its body: uses the width on a long reading page. */
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem); }

@media (min-width: 62rem) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); column-gap: clamp(3rem, 6vw, 6rem); align-items: start; }
}

.stack > * + * { margin-top: clamp(2.25rem, 4.5vw, 3.25rem); }

/* The section head travels with its body, so the left column never reads as dead space. */
@media (min-width: 62rem) { .split > :first-child { position: sticky; top: 2rem; } }

/* ==========================================================================
   WORDMARK
   ========================================================================== */

.lockup { display: inline-grid; gap: 0.45rem; text-decoration: none; color: inherit; width: max-content; }

/* The dash and dot rows space themselves to whole tiles, so they start and
   end cleanly on the name whatever its length; each row overhangs by its own
   trailing gap, which stays invisible. */
.lockup__dashes {
  height: 4px;
  margin-right: -11px;
  background: linear-gradient(to right, currentColor 0 18px, transparent 18px 29px) 0 0 / 29px 4px round;
}

.lockup__name {
  display: flex;
  align-items: baseline;
  gap: 0.55em;
  font-weight: 800;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.7rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.lockup__name b { font-weight: 700; font-size: max(0.72rem, 0.44em); letter-spacing: 0.3em; margin-right: -0.3em; }

.lockup__dots {
  height: 8px;
  margin-right: -9px;
  background: radial-gradient(circle at 4px 50%, var(--bloom) 3.6px, transparent 3.9px) 0 0 / 17px 8px round;
}

/* ==========================================================================
   ACTIONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font: inherit;
  font-weight: 700;
  font-size: clamp(0.98rem, 0.93rem + 0.28vw, 1.1rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  padding: 0.85em 1.45em;
  cursor: pointer;
  /* Each context sets four colours; hover wipes the fill in from the left. */
  --btn-bg: var(--bloom-deep);
  --btn-fg: var(--paper);
  --btn-fill: var(--field);
  --btn-fg-hover: var(--paper);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--btn-bg);
  color: var(--btn-fg);
  transition: color 120ms linear 150ms, box-shadow 240ms var(--ease), transform 160ms var(--ease);
}
/* The fill is its own layer behind the label: it slides in from the left and,
   on leaving, slides out to the right. The label turns once the fill has
   crossed the middle, so it never sits unreadable over a half-filled button. */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 420ms var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); transform-origin: left center; }
/* Once the wipe has landed, the button's own ground takes the fill colour too,
   so the resting hover state is a plain, honest pair of colours. */
.btn:hover, .btn:focus-visible {
  color: var(--btn-fg-hover);
  background-color: var(--btn-fill);
  transition: color 120ms linear 150ms, background-color 0s linear 420ms, box-shadow 240ms var(--ease), transform 160ms var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 0.9em; height: 0.9em; fill: currentColor; flex: none; transition: transform 320ms var(--ease); }
.btn:hover svg, .btn:focus-visible svg { transform: translateX(4px); }

/* Outline: the fill is the band's ink, and the label turns to the ground. */
.btn--line {
  --btn-bg: transparent;
  --btn-fg: var(--t-ink);
  --btn-fill: var(--t-ink);
  --btn-fg-hover: var(--t-ground);
  box-shadow: inset 0 0 0 1.5px var(--t-ink);
}

/* Forest bands: a brighter red that wipes to paper with a forest label. */
.band--dark .btn:not(.btn--line) {
  --btn-bg: var(--bloom-lit);
  --btn-fg: #FFFFFF;
  --btn-fill: var(--paper);
  --btn-fg-hover: var(--field);
}

/* The red field: paper that wipes to forest. */
.band--bloom .btn {
  --btn-bg: var(--paper);
  --btn-fg: var(--bloom-deep);
  --btn-fill: var(--field);
  --btn-fg-hover: var(--paper);
}

.btn--sm { padding: 0.62em 1.05em; font-size: 0.95rem; }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem 1rem; margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }

.link-arrow {
  display: inline;
  font-weight: 700;
  color: var(--t-ink);
  text-decoration: none;
  padding-bottom: 0.15em;
  box-shadow: inset 0 -1px 0 var(--bloom);
  position: relative;
}
/* Hover draws a heavier rule across, left to right, and nudges the arrow. */
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--bloom);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 380ms var(--ease);
}
.link-arrow:hover::after, .link-arrow:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.link-arrow svg { display: inline-block; width: 0.85em; height: 0.85em; margin-left: 0.4em; vertical-align: -0.08em; fill: var(--t-red); transition: transform 320ms var(--ease); }
.link-arrow:hover svg, .link-arrow:focus-visible svg { transform: translateX(4px); }

/* ==========================================================================
   MASTHEAD
   ========================================================================== */

.masthead { background: var(--paper); color: var(--ink); padding: clamp(1rem, 2.2vw, 1.4rem) var(--gutter); }

.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); flex-wrap: wrap; }

.nav__links { display: none; gap: clamp(1rem, 2.2vw, 1.75rem); margin: 0; padding: 0; list-style: none; }

.nav__links a, .nav__call {
  color: var(--body);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__links a:hover, .nav__call:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--bloom); text-underline-offset: 0.25em; }

@media (min-width: 60rem) { .nav__links { display: flex; } }
@media (max-width: 30rem) { .nav__call { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero { padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: 0; }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4rem); align-items: end; }

@media (min-width: 62rem) {
  .hero__grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); column-gap: clamp(3rem, 5vw, 5rem); }
}

.hero h1 {
  font-size: clamp(2.35rem, 1.3rem + 4.1vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.99;
  max-width: 15ch;
}

.hero__sub {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  max-width: 52ch;
  font-size: clamp(1.08rem, 1rem + 0.42vw, 1.28rem);
  line-height: 1.55;
  color: var(--t-body);
}

/* Plates: framed survey plates with registration ticks and a title block. */
.plate { position: relative; margin: 0; background: var(--shade); border: 1px solid var(--t-hair); overflow: hidden; }
.plate--hero { aspect-ratio: 4 / 5; display: grid; }
.plate__fill, .plate__img { grid-area: 1 / 1; width: 100%; height: 100%; object-fit: cover; }

.plate__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.9rem;
  background: var(--paper);
  border-top: 1px solid var(--t-hair);
  font-family: "Overpass Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--note);
}

.tick { position: absolute; z-index: 1; width: 16px; height: 16px; border: 0 solid var(--ink); opacity: 0.6; pointer-events: none; }
.tick--tl { top: 10px; left: 10px; border-top-width: 1.5px; border-left-width: 1.5px; }
.tick--tr { top: 10px; right: 10px; border-top-width: 1.5px; border-right-width: 1.5px; }
.tick--bl { bottom: 10px; left: 10px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.tick--br { bottom: 10px; right: 10px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.plate--hero .tick--bl, .plate--hero .tick--br { bottom: calc(2.25rem + 10px); }

@media (max-width: 61.99rem) { .plate--hero { aspect-ratio: 2 / 1; } }

/* Trust strip: operating commitments standing in for numbers not yet earned. */
.trust {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  border-top: 1px solid var(--t-hair);
}

.trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem) 1.25rem clamp(1.1rem, 2.4vw, 1.6rem) 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--t-ink);
}

.trust svg { width: 28px; height: 28px; flex: none; margin-top: -0.1rem; }

/* ==========================================================================
   SERVICES
   ========================================================================== */

.intro { margin-top: 1.1rem; max-width: 46ch; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem); color: var(--t-body); }

.services {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.25rem, 4vw, 2.75rem) clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 40rem) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 74rem) { .services { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.service { display: flex; flex-direction: column; gap: 0.85rem; padding-top: 1.35rem; border-top: 1px solid var(--t-hair); }
.service > svg { width: 84px; height: 84px; color: var(--t-ink); }
.service h3 { font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.42rem); letter-spacing: -0.03em; }
.nowrap { white-space: nowrap; }
.service .link-arrow { align-self: flex-start; }
.service p { flex: 1; font-size: 1rem; line-height: 1.62; color: var(--t-body); }

/* ==========================================================================
   MEASUREMENT BAND + SAMPLE REPORT
   ========================================================================== */

.measure { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.75rem, 5vw, 4rem); align-items: center; }

@media (min-width: 66rem) { .measure { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); column-gap: clamp(3rem, 5vw, 5rem); } }

.measure .h2 { margin-bottom: clamp(1.5rem, 3vw, 2rem); }

.report {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(1.25rem, 2.6vw, 1.9rem);
  border-radius: 2px;
  box-shadow: 0 28px 56px -28px rgb(0 0 0 / 0.65);
  font-size: 0.95rem;
}

.report__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--hair); }
.report__title { font-weight: 800; letter-spacing: -0.02em; font-size: 1.1rem; }

.tag {
  font-family: "Overpass Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--bloom-deep);
  padding: 0.3em 0.65em;
  border-radius: 2px;
}

.report__meta { margin-top: 0.6rem; font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.78rem; color: var(--note); }

.kpis {
  margin: 1rem 0 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
@media (min-width: 30rem) { .kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.kpi { background: var(--paper); padding: 0.8rem 0.75rem; }
.kpi dt { font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.78rem; letter-spacing: 0.04em; line-height: 1.35; color: var(--note); }
.kpi dd { margin: 0.35rem 0 0; font-weight: 800; font-size: clamp(1.15rem, 1rem + 0.55vw, 1.5rem); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }

.bysource { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.bysource caption { caption-side: top; text-align: left; padding-bottom: 0.4rem; font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--note); }
.bysource th, .bysource td { padding: 0.55rem 0.3rem; border-top: 1px solid var(--hair); text-align: right; }
.bysource th:first-child, .bysource td:first-child { text-align: left; padding-left: 0; }
.bysource thead th { border-top: 0; font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--note); }
.bysource tbody th { font-weight: 600; }
.bysource tfoot th, .bysource tfoot td { font-weight: 800; border-top: 1.5px solid var(--ink); }

.report__foot { margin-top: 0.9rem; display: flex; justify-content: space-between; gap: 1rem; font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.76rem; color: var(--note); }

.fig-note { margin-top: 1rem; }
.report .tick { width: 12px; height: 12px; }
.report .tick--tl { top: 6px; left: 6px; }
.report .tick--tr { top: 6px; right: 6px; }
.report .tick--bl { bottom: 6px; left: 6px; }
.report .tick--br { bottom: 6px; right: 6px; }

/* ==========================================================================
   COST SCALE
   ========================================================================== */

.scale { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: grid; gap: 1.1rem; }

.scale__row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0.45rem; }
@media (min-width: 48rem) { .scale__row { grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr); align-items: center; column-gap: 1.5rem; } }

.scale__label { font-size: 0.95rem; font-weight: 600; color: var(--t-ink); line-height: 1.35; }
.scale__label--ref { font-weight: 400; color: var(--t-note); }

.scale__track { position: relative; height: 16px; background: linear-gradient(var(--t-hair), var(--t-hair)) center / 100% 1px no-repeat; }

.scale__band {
  position: absolute;
  top: 2px; bottom: 2px;
  left: calc(var(--from) * 1%);
  width: calc((var(--to) - var(--from)) * 1%);
  background: var(--bloom-deep);
}
.scale__band--ref { top: 5px; bottom: 5px; background: var(--t-note); opacity: 0.45; }

.scale__axis {
  position: relative;
  height: 1.4rem;
  font-family: "Overpass Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  color: var(--t-note);
}
@media (min-width: 48rem) { .scale__axis { margin-left: calc(min(16rem, 100%) + 1.5rem); } }
.scale__axis > span { position: absolute; left: calc(var(--at) * 1%); transform: translateX(-50%); top: 0; white-space: nowrap; }
.scale__axis > span:first-child { transform: none; }
.scale__axis > span:last-child { transform: translateX(-100%); }
.mobile-only { display: none; }
@media (max-width: 47.99rem) {
  .scale__axis .axis-minor, .scale__axis .axis-unit { display: none; }
  .mobile-only { display: inline; }
}

/* ==========================================================================
   TIMELINE MODULE
   ========================================================================== */

.timeline { margin-top: clamp(2.75rem, 5vw, 3.75rem); }

.timeline__marks { position: relative; height: 4rem; }

/* Two markers sit on the axis. The earlier one labels the upper row and the
   later one the lower row, so neither leader crosses the other's label. */
.mark {
  position: absolute;
  left: calc(var(--at) * 1%);
  top: 0;
  bottom: 0;
  padding-left: 0.85rem;
  width: max-content;
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--t-ink);
}
.mark::after { content: ""; position: absolute; left: 0; top: 0.6rem; bottom: 0; width: 1px; background: var(--t-hair); }
.mark::before { content: ""; position: absolute; left: 0; bottom: -5px; z-index: 1; width: 9px; height: 9px; border-radius: 50%; background: var(--bloom); transform: translateX(-50%); }
.mark:nth-child(2) { padding-top: 1.95rem; }
.mark:nth-child(2)::after { top: 2.55rem; }

.timeline__bar { position: relative; display: flex; border-top: 2px solid var(--t-ink); }

/* Month ticks at 0, 3, 6 and 12, on the same axis the phases divide. */
.timeline__ticks { position: absolute; inset: 0; pointer-events: none; }
.timeline__ticks span {
  position: absolute;
  top: 0;
  left: calc(var(--at) * 1%);
  padding: 0.45rem 0 0 0.45rem;
  font-family: "Overpass Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  line-height: 1;
  color: var(--t-note);
  white-space: nowrap;
}
.timeline__ticks span::before { content: ""; position: absolute; left: 0; top: -7px; width: 1.5px; height: 12px; background: var(--t-ink); }
.timeline__ticks span:last-child { transform: translateX(-100%); padding: 0.45rem 0.45rem 0 0; }
.timeline__ticks span:last-child::before { left: auto; right: 0; }

.phase { position: relative; flex: var(--span) 1 0; padding: 1.8rem 1rem 0 0; min-width: 0; }
.phase + .phase { padding-left: 1rem; }
/* Dividers start below the month numbers, so the ticks read clear of them. */
.phase + .phase::before { content: ""; position: absolute; left: 0; top: 1.6rem; bottom: 0; width: 1px; background: var(--t-hair); }
.phase b { display: block; font-family: "Overpass Mono", ui-monospace, monospace; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--t-note); }
.phase span { display: block; margin-top: 0.3rem; font-weight: 700; font-size: 1rem; line-height: 1.3; }

/* Phones: a vertical axis down the middle. Phases read on the left; the two
   markers sit on the axis at their true position, labelled on the right. */
@media (max-width: 47.99rem) {
  .timeline { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); height: 30rem; }
  .timeline__bar { grid-column: 1; grid-row: 1; flex-direction: column; border-top: 0; border-right: 2px solid var(--t-ink); }
  .timeline__marks { grid-column: 2; grid-row: 1; height: auto; }
  .phase, .phase + .phase { flex: var(--span) 1 0; border-left: 0; padding: 0.15rem 0.9rem 0 0; text-align: right; }
  .phase + .phase { border-top: 1px solid var(--t-hair); padding-top: 0.5rem; }
  .mark, .mark:nth-child(2) { top: calc(var(--at) * 1%); bottom: auto; left: 0; width: auto; max-width: none; padding: 0 0 0 0.9rem; }
  .mark::after, .mark:nth-child(2)::after { display: none; }
  .mark::before { left: -1px; top: 0.35rem; bottom: auto; }
  .timeline__ticks span { font-size: 0; padding: 0; top: calc(var(--at) * 1%); left: auto; right: -2px; transform: none; }
  .timeline__ticks span::before, .timeline__ticks span:last-child::before { left: auto; right: -5px; top: 0; width: 12px; height: 1.5px; }
  .timeline__ticks span:last-child { top: auto; bottom: 0; padding: 0; transform: none; }
}

/* ==========================================================================
   RANKING FACTORS TABLE
   ========================================================================== */

.table-scroll { margin-top: clamp(2.25rem, 4.5vw, 3rem); overflow-x: auto; }

.factors { width: 100%; border-collapse: collapse; }
.factors th, .factors td { text-align: left; vertical-align: top; padding: 1rem 1.25rem 1rem 0; border-top: 1px solid var(--t-hair); }
.factors thead th { border-top: 0; padding-top: 0; font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t-note); }
.factors tbody th { font-weight: 700; width: 26%; }
.factors td:nth-child(2) { width: 22%; }
.factors td:last-child { color: var(--t-body); line-height: 1.55; }

.weight { display: grid; gap: 0.45rem; }
.weight b { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.bar { display: block; height: 6px; width: calc(var(--w) * 3.125%); background: var(--bloom-deep); }

.after-table { margin-top: clamp(1.75rem, 3.5vw, 2.25rem); }

@media (max-width: 40rem) {
  .factors th, .factors td { padding: 0.85rem 0.7rem 0.85rem 0; }
  .factors tbody th { width: 36%; font-size: 0.95rem; line-height: 1.3; }
  .factors td:nth-child(2) { width: 20%; }
  .factors td:last-child { font-size: 0.93rem; }
  .weight b { font-size: 1.05rem; }
}

/* ==========================================================================
   VETTING CHECKLIST + CAPTURE MODULE
   ========================================================================== */

.checklist { margin-top: 0.4rem; padding: 0; list-style: none; counter-reset: q; }

.checklist li {
  counter-increment: q;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--t-hair);
  font-size: clamp(1.02rem, 0.98rem + 0.22vw, 1.12rem);
  line-height: 1.5;
  color: var(--t-ink);
}
.checklist li:last-child { border-bottom: 1px solid var(--t-hair); }
.checklist li::before { content: counter(q, decimal-leading-zero); font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.82rem; color: var(--t-red); padding-top: 0.2rem; }

.flags { margin-top: 1.5rem; max-width: var(--measure); color: var(--t-body); font-size: clamp(1.03rem, 0.98rem + 0.25vw, 1.13rem); line-height: 1.68; }
.flags strong { color: var(--t-ink); }

.capture {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.25rem, 2.8vw, 1.75rem);
  background: var(--paper);
  border: 1px solid var(--t-hair);
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 48rem) { .capture { grid-template-columns: minmax(0, 1fr) auto; align-items: end; column-gap: 1.5rem; } }

.capture__title { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--ink); }
.capture__field { display: grid; gap: 0.35rem; margin-top: 0.75rem; }
.capture__field label { font-size: 0.92rem; font-weight: 600; color: var(--body); }
.capture input {
  font: inherit;
  font-size: 1rem;
  padding: 0.75em 0.85em;
  border: 1px solid var(--note);
  border-radius: 2px;
  background: #F7F6F2;
  color: var(--ink);
  width: 100%;
}
.capture input:focus-visible { outline: 2px solid var(--bloom-deep); outline-offset: 1px; border-color: var(--ink); }
.capture__status { grid-column: 1 / -1; color: var(--bloom-ink); }

/* ==========================================================================
   FIT + PROCESS
   ========================================================================== */

.fit-link { margin-top: 1.5rem; }

.steps { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: 0; list-style: none; counter-reset: step; display: grid; }

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  padding: clamp(1.4rem, 2.8vw, 1.9rem) 0;
  border-top: 1px solid var(--t-hair);
}
.steps li:last-child { border-bottom: 1px solid var(--t-hair); }

@media (min-width: 52rem) { .steps li { grid-template-columns: 6rem minmax(0, 1fr); column-gap: clamp(1.5rem, 3vw, 2.5rem); } }

.steps li::before {
  content: "STA " counter(step, decimal-leading-zero);
  font-family: "Overpass Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--t-red);
  padding-top: 0.3rem;
}

.steps p { max-width: 62ch; font-size: clamp(1.03rem, 0.98rem + 0.25vw, 1.13rem); line-height: 1.66; color: var(--t-body); }
.steps strong { display: block; margin-bottom: 0.2rem; font-size: clamp(1.15rem, 1.02rem + 0.5vw, 1.4rem); letter-spacing: -0.025em; line-height: 1.25; color: var(--t-ink); }

/* ==========================================================================
   SERVICE AREA MAP
   ========================================================================== */

.where { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 62rem) { .where { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: clamp(3rem, 6vw, 6rem); } }

.metro-fig { max-width: 34rem; width: 100%; margin-inline: auto; }
.metro { width: 100%; height: auto; overflow: visible; color: var(--ink); }
.metro--crop { height: 100%; overflow: hidden; }

.metro .grat { stroke: var(--hair); stroke-width: 0.6; fill: none; opacity: 0.5; }
.metro .routes path { stroke: var(--ink); stroke-width: 1.1; fill: none; opacity: 0.32; stroke-linecap: round; stroke-linejoin: round; }
.metro .water { stroke: var(--note); stroke-width: 1.6; fill: none; opacity: 0.7; stroke-linecap: round; }
.metro .bloom { fill: var(--bloom); }
.metro .ring { fill: none; stroke: var(--bloom); stroke-width: 1.2; opacity: 0.55; }
.metro .cross { stroke: var(--ink); stroke-width: 1; opacity: 0.45; }
.metro .name { font: 700 14px Overpass, system-ui, sans-serif; fill: var(--ink); }
.metro .name--hub { font-size: 18px; font-weight: 800; }
.metro .dist { font: 400 11px "Overpass Mono", ui-monospace, monospace; fill: var(--note); letter-spacing: 0.03em; }
.metro .route-label { font: 400 11px "Overpass Mono", ui-monospace, monospace; fill: var(--note); letter-spacing: 0.06em; }
.metro .l { text-anchor: end; }
.metro .compass path { fill: var(--ink); opacity: 0.6; }
.metro .compass text, .metro .legend { font: 400 11px "Overpass Mono", ui-monospace, monospace; fill: var(--note); letter-spacing: 0.06em; }
.metro .scalebar path { stroke: var(--ink); stroke-width: 1; opacity: 0.55; }

/* Plate 3 moment: the metro blooms outward from Austin. */
.metro .bloom { transform-box: fill-box; transform-origin: center; transition: transform 560ms var(--ease), opacity 560ms var(--ease); }
.metro.is-armed .town:not(.town--hub) .bloom { transform: scale(0.35); opacity: 0.25; }
.metro.is-armed.is-in .town:not(.town--hub) .bloom { transform: scale(1); opacity: 1; }

@media (max-width: 40rem) {
  .metro .route-label { display: none; }
  .metro .name { font-size: 18px; }
  .metro .name--hub { font-size: 21px; }
  .metro .dist { font-size: 16px; transform: translateY(6px); }
  .metro .compass text, .metro .legend { font-size: 16px; }
}

/* ==========================================================================
   RISK REVERSAL
   ========================================================================== */

.prove { max-width: 46rem; }
.prove .h2 { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.4rem); }
.prove p { margin-top: clamp(1.25rem, 2.5vw, 1.75rem); font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem); line-height: 1.6; color: var(--t-body); max-width: 56ch; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq details { border-top: 1px solid var(--t-hair); }
.faq details:last-child { border-bottom: 1px solid var(--t-hair); }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-size: clamp(1.06rem, 0.99rem + 0.35vw, 1.24rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.32; }

.faq summary::after {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--bloom-deep);
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat;
  transition: transform 220ms var(--ease);
}
.faq details[open] > summary::after { background: linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat; }
.faq summary:hover h3 { text-decoration: underline; text-decoration-color: var(--bloom); text-underline-offset: 0.2em; }

.faq .answer { padding: 0 0 1.4rem; max-width: 62ch; color: var(--t-body); font-size: clamp(1.02rem, 0.98rem + 0.22vw, 1.1rem); line-height: 1.66; }
.faq .answer a { color: var(--t-ink); text-decoration: underline; text-decoration-color: var(--bloom); text-underline-offset: 0.2em; }

/* ==========================================================================
   CLOSE + FOOTER
   ========================================================================== */

.close .h2 { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.4rem); max-width: 20ch; }
.close p { margin-top: clamp(1.25rem, 2.5vw, 1.75rem); max-width: 58ch; font-size: clamp(1.08rem, 1rem + 0.4vw, 1.26rem); line-height: 1.6; color: var(--t-body); }

.footer { padding-top: 0; }
.footer__grid {
  display: grid;
  gap: 1.75rem 3rem;
  grid-template-columns: minmax(0, 1fr);
  padding-top: clamp(2rem, 4vw, 2.75rem);
}
@media (min-width: 56rem) { .footer__grid { grid-template-columns: auto minmax(0, 1fr) auto; align-items: start; } }
.footer a { color: var(--t-ink); }
.cities { display: flex; flex-wrap: wrap; gap: 0.3rem 1.15rem; margin: 0; padding: 0; list-style: none; font-family: Overpass, system-ui, sans-serif; font-size: 0.92rem; letter-spacing: 0; }
.cities li { white-space: nowrap; }
.footer .note a { text-decoration: none; }

/* ==========================================================================
   MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* Phones: one-line plate title, compass clear of the Georgetown label, and
   phase labels that fit their column without breaking mid-phrase. */
@media (max-width: 40rem) {
  .plate__coords { display: none; }
  .metro .compass { transform: translate(440px, 112px); }
}
@media (max-width: 47.99rem) {
  .phase b { letter-spacing: 0; }
  .phase + .phase::before { display: none; }
}

/* Paper and shade bands: the wordmark's dash rhythm sits under each section
   head and travels with it while the head holds its place. */
.split > :first-child::after {
  content: "";
  display: block;
  margin-top: clamp(1.1rem, 2.2vw, 1.5rem);
  width: min(100%, 13.5rem);
  height: 3px;
  background: repeating-linear-gradient(to right, var(--t-ink) 0 14px, transparent 14px 23px);
  opacity: 0.5;
}

/* Icon accents come from the palette, so a colour change reaches every icon. */
.ico-bloom { fill: var(--bloom); }
.ico-bloom-stroke { stroke: var(--bloom); }
.ico-deep { fill: var(--bloom-deep); }
.ico-deep-stroke { stroke: var(--bloom-deep); }

/* Spacing that used to live in inline style attributes, which WordPress
   strips for anyone who is not an Administrator. */
.prose p.thesis { margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }
.where__prose { margin-top: clamp(1.5rem, 3vw, 2rem); }
.metro-caption { margin-top: 0.75rem; }

/* Plate 1 pull-back. The resting frame below is what no-JS and reduced-motion
   visitors see; the script only animates toward it. --k keeps strokes a steady
   width on screen while the viewBox zooms. */
.metro--crop .grat { stroke-width: calc(0.6px * var(--k, 1)); }
.metro--crop .routes path { stroke-width: calc(1.1px * var(--k, 1)); }
.metro--crop .bloom { transition: none; }
.metro--crop .name--start { opacity: 0; }
.metro--crop .reach { fill: none; stroke: var(--bloom); stroke-width: calc(1.2px * var(--k, 1)); opacity: 0; }
.metro--crop .ping { fill: var(--bloom); opacity: 0.45; }

/* --- The roadside meadow ---------------------------------------------------
   Texas highway wildflowers: bluebonnet, Indian paintbrush and evening
   primrose sown on the verge. Used once, where the
   page's final forest band begins; the flowers grow out of its top edge, so
   that band skips its dash row. */
.meadow {
  height: clamp(64px, 8.5vw, 122px);
  background: var(--paper);
  overflow: hidden;
  margin-bottom: -1px;
}
.meadow svg { width: 100%; height: 100%; display: block; }
.meadow .verge { fill: var(--field); }
.meadow + .band--dark::before { display: none; }

/* ==========================================================================
   v4 — COMPOSITION VARIETY
   Centered heads, pairs, a plat-cell bento, flipped splits, a station row,
   and the Plate 4 growth chart. Same world, different arrangements.
   ========================================================================== */

/* --- Section heads ------------------------------------------------------- */
.section-head { margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem); }
.section-head::after {
  content: "";
  display: block;
  margin-top: clamp(1.1rem, 2.2vw, 1.5rem);
  width: min(100%, 13.5rem);
  height: 3px;
  background: repeating-linear-gradient(to right, var(--t-ink) 0 14px, transparent 14px 23px);
  opacity: 0.5;
}
.section-head--center { text-align: center; }
.section-head--center .h2 { margin-inline: auto; max-width: 22ch; }
.section-head--center .intro { margin-inline: auto; max-width: 52ch; }
.section-head--center::after { margin-inline: auto; }

/* --- Paragraph arrangements ---------------------------------------------- */
.pair > p, .coda, .lead-p p, .columns > p {
  font-size: clamp(1.03rem, 0.98rem + 0.25vw, 1.13rem);
  line-height: 1.68;
  color: var(--t-body);
}
.pair { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.05em clamp(2.5rem, 5vw, 4.5rem); max-width: 68rem; margin-inline: auto; }
.prose.pair > p + p, .pair > p + p { margin-top: 0; }
@media (min-width: 48rem) {
  .pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pair--ruled { column-gap: 0; }
  .pair--ruled > p:first-child { padding-right: clamp(2.5rem, 5vw, 4.5rem); }
  .pair--ruled > p:last-child { padding-left: clamp(2.5rem, 5vw, 4.5rem); border-left: 1px solid var(--t-hair); }
}

.thesis--center, .prose p.thesis--center { margin: clamp(2.75rem, 6vw, 4.5rem) auto 0; max-width: 22ch; text-align: center; }
.coda { max-width: 56ch; margin: clamp(1.75rem, 4vw, 2.75rem) auto 0; text-align: center; }
.coda-block { margin-top: clamp(2rem, 4vw, 2.75rem); }
.prose.coda-block .coda { margin-top: 0; }
.prose.coda-block .coda + .coda { margin-top: 1.1rem; }

.lead-p { max-width: var(--measure); margin-inline: auto; }
.columns { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.05em clamp(2.5rem, 5vw, 4.5rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.prose.columns > p + p { margin-top: 0; }
@media (min-width: 52rem) { .columns { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --- Flipped splits: the figure leads visually; the text still leads the DOM */
@media (min-width: 66rem) {
  .measure--flip { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .measure--flip > figure { order: -1; }
}
@media (min-width: 62rem) { .where--flip > figure { order: -1; } }

/* --- How to vet: checklist and a sticky side ------------------------------ */
.vet { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (min-width: 62rem) {
  .vet { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); column-gap: clamp(3rem, 6vw, 5rem); }
  .vet__side { position: sticky; top: 2rem; }
}
.vet .checklist { margin-top: 0; }
.vet__side .flags { margin-top: 0; }
.vet__side .capture { grid-template-columns: minmax(0, 1fr); }

/* --- How we start: five stations on one ruled line ------------------------ */
@media (min-width: 52rem) {
  .steps--row { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.5rem, 3vw, 2.5rem); }
  .steps--row li, .steps--row li:last-child { grid-template-columns: minmax(0, 1fr); border-bottom: 0; }
}
@media (min-width: 74rem) {
  .steps--row { grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 2px solid var(--t-ink); }
  .steps--row li { border-top: 0; padding-top: 1.35rem; position: relative; align-content: start; }
  .steps--row li::after { content: ""; position: absolute; top: -6px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--bloom); }
}

/* --- Centered bands ------------------------------------------------------- */
.prove--center { margin-inline: auto; text-align: center; }
.prove--center p { margin-inline: auto; }
.prove--center .cta-row, .close--center .cta-row { justify-content: center; }
.close--center { text-align: center; }
.close--center .h2, .close--center p { margin-inline: auto; }
.faq--center { max-width: 54rem; margin-inline: auto; }



.steps--row li { align-content: start; }


/* --- Services: four even plat cells --------------------------------------- */
.services.tiles { gap: 0; border-top: 1px solid var(--t-hair); border-left: 1px solid var(--t-hair); }
.tiles .service { border-top: 0; border-right: 1px solid var(--t-hair); border-bottom: 1px solid var(--t-hair); padding: clamp(1.5rem, 2.6vw, 2rem); }
@media (min-width: 40rem) { .services.tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 84rem) { .services.tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Every tile shares the same four rows (icon, title, text, link), so titles,
   paragraphs and links line up across the row even when one title wraps. */
@media (min-width: 40rem) {
  .services.tiles { grid-auto-rows: auto auto 1fr auto; }
  .tiles .service { display: grid; grid-row: span 4; grid-template-rows: subgrid; row-gap: 0.85rem; align-content: start; }
  .tiles .service > p { flex: none; }
  .tiles .service .link-arrow { align-self: end; justify-self: start; margin-top: 0.4rem; }
}
.tiles .service .link-arrow { white-space: nowrap; }
@media (min-width: 84rem) {
  .tiles .service { padding: clamp(1.5rem, 2vw, 1.85rem); }
  .tiles .service .link-arrow { font-size: 0.9rem; }
}

/* --- Sample report: every figure sits on the same line, whatever its label - */
.kpi { display: flex; flex-direction: column; }
.kpi dd { margin-top: auto; padding-top: 0.5rem; }


/* ==========================================================================
   PLATE 4 — THE CLIMB (growth.js, GSAP ScrollTrigger)
   Stacked by default: heading, graph, paragraphs. On wide screens with motion
   allowed, the script pins the section and the whole band becomes the graph:
   the line climbs from lower left to upper right, and the paragraphs take
   turns in the empty space above-left of the curve.
   ========================================================================== */
.climb { position: relative; }
.climb__plot { position: relative; width: 100%; aspect-ratio: 16 / 10; max-height: 62vh; margin-bottom: clamp(2rem, 4vw, 3rem); }
.climb__plot svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.climb__steps { display: grid; gap: 1.05em clamp(2.5rem, 5vw, 4.5rem); }
.prose.climb__steps > p + p { margin-top: 0; }
@media (min-width: 52rem) { .climb__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.climb__note { margin-top: clamp(1.75rem, 3vw, 2.25rem); }

.climb__plot text { font-family: "Overpass Mono", ui-monospace, monospace; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; fill: var(--note); }
.climb__plot .c-grid { stroke: var(--hair); stroke-width: 1; }
.climb__plot .c-base { stroke: var(--ink); stroke-width: 1.5; }
.climb__plot .c-area { fill: var(--ink); opacity: 0.045; }
.climb__plot .c-bar { fill: var(--bloom-deep); opacity: 0.15; }
.climb__plot .c-line { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.climb__plot .c-head { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.climb__plot .c-bloom { fill: var(--bloom); }
.climb__plot .c-ring { fill: none; stroke: var(--bloom); stroke-width: 1.5; opacity: 0; }
.climb__plot .c-label--ink { fill: var(--ink); }

/* Pinned: one viewport tall, the graph fills the band, text lives top-left. */
.band.is-climbing { height: 100vh; min-height: 36rem; padding-block: clamp(2.5rem, 7vh, 4.5rem) clamp(1.5rem, 4vh, 2.5rem); }
.is-climbing .climb { height: 100%; }
.is-climbing .climb__plot { position: absolute; inset: 0; aspect-ratio: auto; max-height: none; margin: 0; }
.is-climbing .climb__head, .is-climbing .climb__steps, .is-climbing .climb__note { position: relative; z-index: 1; }
.is-climbing .climb__head { width: min(44%, 34rem); margin-bottom: clamp(1.25rem, 3vh, 2rem); }
.is-climbing .climb__steps { display: grid; grid-template-columns: minmax(0, 1fr); width: min(40%, 31rem); }
.is-climbing .climb__step { grid-area: 1 / 1; opacity: 0; visibility: hidden; }
.is-climbing .climb__note { position: absolute; left: 0; bottom: 0; margin: 0; }

/* Explicit hover pairs per context (same values as the tokens above). */
.btn--line::before { background: var(--t-ink); }
.btn--line:hover, .btn--line:focus-visible { background-color: var(--t-ink); color: var(--t-ground); }
.band--dark .btn--line::before { background: var(--paper); }
.band--dark .btn--line:hover, .band--dark .btn--line:focus-visible { background-color: var(--paper); color: var(--field); }
.band--dark .btn:not(.btn--line)::before { background: var(--paper); }
.band--dark .btn:not(.btn--line):hover, .band--dark .btn:not(.btn--line):focus-visible { background-color: var(--paper); color: var(--field); }
.btn:not(.btn--line)::before { background: var(--field); }
.band--bloom .btn::before { background: var(--field); }

/* ==========================================================================
   STICKY MASTHEAD
   One persistent way to book or call on a long page, instead of more
   buttons between the reading sections. The bar keeps one height so nothing
   below it shifts; once the page scrolls it gains a hairline and the lockup
   settles smaller.
   ========================================================================== */
.masthead {
  --t-ink: var(--ink);
  --t-ground: var(--paper);
  position: sticky;
  top: 0;
  z-index: 40;
  padding-block: clamp(0.7rem, 1.4vw, 0.95rem);
  transition: box-shadow 260ms var(--ease);
}
.masthead .lockup { transform-origin: left center; transition: transform 260ms var(--ease); }
.masthead.is-stuck { box-shadow: 0 1px 0 var(--hair); }
.masthead.is-stuck .lockup { transform: scale(0.84); }
.masthead.is-stuck .masthead__inner { flex-wrap: nowrap; }

.nav__call-short { display: none; }
@media (max-width: 30rem) {
  .masthead__inner { flex-wrap: nowrap; gap: 0.75rem; }
  .masthead .lockup__name { font-size: 1.02rem; white-space: nowrap; }
  .masthead.is-stuck .lockup { transform: none; }
  .nav { gap: 0.45rem; flex-wrap: nowrap; }
  .masthead .btn--sm { font-size: 0.9rem; padding: 0.62em 0.75em; white-space: nowrap; }
  .nav__call-short { display: inline-flex; justify-content: center; width: 2.45rem; height: 2.45rem; padding: 0; }
  .masthead .nav__call-short svg { width: 1.2rem; height: 1.2rem; fill: none; }
  .nav__call-short:hover svg, .nav__call-short:focus-visible svg { transform: none; }
}

/* Jump links and the pinned growth section clear the bar. */
[id] { scroll-margin-top: calc(var(--mast-h, 4rem) + 0.75rem); }
.band.is-climbing { height: calc(100vh - var(--mast-h, 0px)); min-height: 34rem; }

/* Station titles reserve two lines in the five-across row, so every description starts on one line. */
@media (min-width: 74rem) {
  .steps--row strong { min-height: calc(2em * 1.25); }
}

/* ==========================================================================
   THE LOGO, AS SUPPLIED
   The header and footer now carry the owner's own lockups: the site mark in
   the masthead, the square badge in the footer. Both are the real SVG files,
   inlined so their type renders in the logo's own faces.
   ========================================================================== */
.lockup--head .lockup__mark { display: block; width: clamp(9.5rem, 15vw, 12rem); height: auto; }
.masthead.is-stuck .lockup--head { transform: scale(0.86); }
.lockup--foot { display: inline-block; }
.lockup--foot .lockup__badge { display: block; width: clamp(6rem, 12vw, 7.5rem); height: auto; border-radius: 2px; }
@media (max-width: 30rem) { .lockup--head .lockup__mark { width: 8.5rem; } }

/* ==========================================================================
   LOGO BAR
   The classic marquee: businesses we have worked with and the tools we work
   in, sliding past on one line. The files are used as supplied, at their own
   colours. The second track is a copy that makes the loop seamless, so it is
   hidden from screen readers. With reduced motion it stops and wraps.
   ========================================================================== */
.logos { padding-block: clamp(1.75rem, 3.5vw, 2.5rem); overflow: hidden; }
.logos__marquee {
  display: flex;
  width: max-content;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  mask-image: linear-gradient(to right, transparent, #000 4rem, #000 calc(100% - 4rem), transparent);
}
.logos__track { display: flex; align-items: center; gap: clamp(2.5rem, 5vw, 4.5rem); margin: 0; padding: 0; list-style: none; animation: logos-run 46s linear infinite; }
.logos__track li { display: flex; align-items: center; }
.logos__marquee:hover .logos__track, .logos__marquee:focus-within .logos__track { animation-play-state: paused; }
.logos__track img { display: block; width: auto; height: var(--h); max-width: none; }
@media (max-width: 40rem) { .logos__track img { height: calc(var(--h) * 0.82); } }
@keyframes logos-run { from { transform: translateX(0); } to { transform: translateX(calc(-100% - clamp(2.5rem, 5vw, 4.5rem))); } }
@media (prefers-reduced-motion: reduce) {
  .logos__marquee { width: auto; flex-wrap: wrap; justify-content: center; mask-image: none; }
  .logos__track { flex-wrap: wrap; justify-content: center; animation: none; }
  .logos__track[aria-hidden="true"] { display: none; }
}

/* A hero subhead can open with one bold line that carries the point on its own. */
.hero__lead { display: block; margin-bottom: 0.35rem; font-weight: 800; font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.42rem); letter-spacing: -0.03em; line-height: 1.2; color: var(--t-ink); }

/* A service whose own page is not built yet: the words stay, the link goes. */
.link-soon { display: inline-block; font-weight: 700; color: var(--t-note); }

/* --- Legal pages: a plain, readable column ---------------------------------- */
.legal .h2 { max-width: 20ch; }
.legal__date { margin-top: 0.85rem; }
.legal__body { margin-top: clamp(2rem, 4vw, 3rem); }
.legal__intro { font-size: clamp(1.08rem, 1rem + 0.42vw, 1.28rem); line-height: 1.55; color: var(--t-ink); }
.legal__body h2 { margin-top: clamp(2.25rem, 4vw, 3rem); font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.42rem); letter-spacing: -0.03em; color: var(--t-ink); }
.legal__body h2 + p { margin-top: 0.9rem; }
.legal__body a { color: var(--t-ink); text-decoration: underline; text-decoration-color: var(--bloom); text-underline-offset: 0.2em; }

/* Footer: the small print row */
.footer__legal { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: clamp(1.75rem, 3.5vw, 2.5rem); padding-top: clamp(1.25rem, 2.5vw, 1.75rem); border-top: 1px solid var(--t-hair); }
.footer__legal a { color: var(--t-body); text-decoration: none; }
.footer__legal a:hover { color: var(--t-ink); text-decoration: underline; text-decoration-color: var(--bloom); text-underline-offset: 0.2em; }
.capture__consent { grid-column: 1 / -1; margin-top: 0.75rem; color: var(--t-note); }
.capture__consent a { color: var(--t-body); text-decoration: underline; text-decoration-color: var(--bloom); text-underline-offset: 0.2em; }
