/* ---------- self-hosted type ---------- */
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-var-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* Pragma Build - Phase 1
   Paper, white, ink and the gold from the logo. No dark surfaces anywhere.
   No green. No gradients, no glass, no glow. */

/* ---------- tokens ---------- */
:root {
  --ink:        #1C1E1A;
  --ink-soft:   #45453F;
  --ink-mute:   #63635C;

  --paper:      #F7F6F2;
  --surface:    #FFFFFF;
  --tint:       #F1EFE8;
  --gold-wash:  #F8F1E2;

  --gold:       #C4922B;
  --gold-dk:    #8A6414;
  --gold-hover: #A87A1F;
  --gold-line:  #E4CFA2;

  --rule:       #DEDACF;
  --rule-2:     #EAE6DC;
  --red:        #B4402F;
  --danger:     #A3231C;

  --measure: 62ch;
  --page-max: 78rem;
  --gut: 1.375rem;
  --r: 14px;
  --r-sm: 8px;

  --s--2: clamp(0.76rem, 0.74rem + 0.08vw, 0.81rem);
  --s--1: clamp(0.88rem, 0.86rem + 0.10vw, 0.94rem);
  --s-0:  clamp(1.02rem, 0.98rem + 0.20vw, 1.12rem);
  --s-1:  clamp(1.16rem, 1.08rem + 0.38vw, 1.38rem);
  --s-2:  clamp(1.45rem, 1.26rem + 0.86vw, 2.00rem);
  --s-3:  clamp(1.90rem, 1.50rem + 1.80vw, 3.00rem);
  --s-4:  clamp(2.45rem, 1.65rem + 3.55vw, 4.40rem);

  --disp: "Archivo", system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--body);
  font-size: var(--s-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column; min-height: 100vh;
}

/* ---------- focus ---------- */
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--gold-dk); outline-offset: 3px; border-radius: 3px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink);
  padding: .85rem 1.25rem; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gut); }
main { flex: 1 0 auto; }
.section { padding-block: clamp(2.75rem, 1.9rem + 3.8vw, 4.75rem); }
.section--tint { background: var(--tint); }
.section--dark { background: var(--gold-wash); border-block: 1px solid var(--gold-line); }
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.1em; }

.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
@media (min-width: 62rem) {
  .split { grid-template-columns: minmax(0, 11fr) minmax(0, 13fr); gap: 3.5rem; align-items: start; }
  .split__head { position: sticky; top: 5.5rem; }
}
.split > *, .picker > *, .cards > *, .ba > * { min-width: 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--disp); font-weight: 700; line-height: 1.06;
  letter-spacing: -.032em; text-wrap: balance; color: var(--ink);
  font-variation-settings: "wdth" 112;
}
h1 { font-size: var(--s-4); font-weight: 800; font-variation-settings: "wdth" 116; }
h2 { font-size: var(--s-3); }
h3 { font-size: var(--s-1); line-height: 1.24; letter-spacing: -.02em; font-variation-settings: "wdth" 106; }
.split__head h2 { font-size: var(--s-2); }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-block; font-family: var(--body);
  font-size: var(--s--2); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-dk);
  background: var(--gold-wash); border: 1px solid var(--gold-line);
  border-radius: 999px; padding: .4rem .9rem; margin-bottom: 1.3rem;
}
.section--dark .eyebrow { background: var(--surface); }
.lede { font-size: var(--s-1); line-height: 1.45; color: var(--ink-soft); max-width: 44ch; }
.muted { color: var(--ink-mute); }

a { color: var(--gold-dk); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 2.9rem; padding: .8rem 1.55rem; border-radius: var(--r-sm);
  font-family: var(--body); font-size: var(--s-0); font-weight: 700; line-height: 1.2;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- header ---------- */
.site-head {
  background: var(--paper); color: var(--ink); position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid var(--rule);
}
.site-head__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.75rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.8rem; height: 1.8rem; flex: none; border-radius: var(--r-sm);
  background: var(--gold); color: #fff;
}
.brand__mark svg { width: 1.05rem; height: 1.05rem; }
.brand__word { font-family: var(--disp); font-size: var(--s-1); font-weight: 700; letter-spacing: -.03em; font-variation-settings: "wdth" 112; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 2.6rem;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-sm);
  padding: .5rem .8rem; font-weight: 600; cursor: pointer; color: var(--ink);
}
.nav-toggle__bars { display: block; width: 1.05rem; height: 2px; background: currentColor; position: relative; border-radius: 2px; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px;
}
.nav-toggle__bars::before { top: -5px; } .nav-toggle__bars::after { top: 5px; }

.site-nav { display: none; }
.site-nav.is-open { display: block; }
.site-nav ul { display: flex; flex-direction: column; list-style: none; padding-block: .3rem 1.1rem; }
.site-nav li + li { border-top: 1px solid var(--rule-2); }
.site-nav a:not(.btn) { display: block; padding: .85rem .15rem; color: var(--ink); text-decoration: none; font-weight: 500; }
.site-nav a:not(.btn):hover, .site-nav a:not(.btn)[aria-current="page"] { color: var(--gold-dk); }
.site-nav a:not(.btn)[aria-current="page"] { font-weight: 700; }
.site-nav li.site-nav__cta { border-top: 0; }
.site-nav .btn { margin-top: .9rem; width: 100%; }

@media (min-width: 58rem) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 1.9rem; padding: 0; }
  .site-nav li + li { border-top: 0; }
  .site-nav a:not(.btn) { padding: .3rem 0; }
  .site-nav a:not(.btn)[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--gold); }
  .site-nav .btn { margin-top: 0; width: auto; min-height: 2.75rem; padding: .65rem 1.15rem; }
}

/* ---------- hero ---------- */
.hero { background: var(--tint); padding-block: clamp(2.5rem, 1.8rem + 4vw, 4.5rem); }
.hero h1 { max-width: 16ch; }
.hero .lede { margin-top: 1.35rem; }
.hero--plain h1 { max-width: 20ch; }


/* ---------- proof strip ---------- */
.proof { background: var(--surface); border-block: 1px solid var(--rule); }
.proof ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); padding-block: 1.6rem; }
@media (min-width: 52rem) { .proof ul { grid-template-columns: repeat(4, 1fr); padding-block: 2rem; } }
.proof li { text-align: center; padding: .75rem .5rem; }
@media (min-width: 52rem) { .proof li + li { border-left: 1px solid var(--rule-2); } }
.proof b {
  display: block; font-family: var(--disp); font-weight: 700;
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.8rem); line-height: 1;
  letter-spacing: -.03em; font-variation-settings: "wdth" 96;
  font-variant-numeric: tabular-nums; color: var(--ink);
}
.proof span { display: block; margin-top: .45rem; font-size: var(--s--1); color: var(--ink-mute); }

/* ---------- cards ---------- */
.cards { display: grid; gap: 1rem; list-style: none; }
@media (min-width: 46rem) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 70rem) { .cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.cards li {
  background: var(--surface); border: 1px solid var(--rule-2);
  border-radius: var(--r); padding: 1.5rem 1.4rem; color: var(--ink);
}
.cards .glyph { width: 2.4rem; height: 2.4rem; margin-bottom: 1rem; color: var(--gold-dk); }
.cards h3 { margin-bottom: .45rem; }
.cards p { color: var(--ink-soft); font-size: var(--s--1); line-height: 1.55; }

/* ---------- five step route ---------- */
.route { list-style: none; display: grid; gap: 1rem; margin-top: 2.5rem; }
.route__step {
  position: relative; background: var(--surface); border: 1px solid var(--rule-2);
  border-radius: var(--r); padding: 1.6rem 1.5rem 1.5rem;
}
.route__mark {
  display: flex; align-items: center; justify-content: center;
  width: 3.6rem; height: 3.6rem; border-radius: var(--r-sm);
  background: var(--gold); color: var(--ink); margin-bottom: 1.1rem;
}
.route__mark svg { width: 2rem; height: 2rem; }
.route__n {
  position: absolute; top: 1.6rem; right: 1.5rem;
  font-family: var(--disp); font-weight: 700; font-size: 1.9rem; line-height: 1;
  letter-spacing: -.02em; color: var(--gold-dk);
  font-variation-settings: "wdth" 96;
}
.route h3 { font-size: var(--s-1); margin-bottom: .5rem; }
.route p { color: var(--ink-soft); font-size: var(--s--1); line-height: 1.55; }

@media (min-width: 68rem) {
  .route { grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; }
  /* one rule threading the five marks together */
  .route::before {
    content: ""; position: absolute; left: 3.1rem; right: 3.1rem; top: 3.4rem;
    height: 2px; background: var(--gold-line); z-index: 0;
  }
  .route__step { z-index: 1; }
}

/* ---------- terms: a commitment card, not a list ---------- */
.terms {
  background: var(--surface);
  border: 1px solid var(--gold-line);
  border-top: 4px solid var(--gold);
  border-radius: var(--r);
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
}
.terms__head { display: flex; align-items: center; gap: .75rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--rule); }
.terms__seal {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--gold); color: #fff;
}
.terms__seal svg { width: 1.15rem; height: 1.15rem; }
.terms__title {
  font-family: var(--body); font-size: var(--s--2); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk);
}
.terms ul { list-style: none; display: grid; }
.terms li {
  position: relative; padding: 1.05rem 0 1.05rem 2.4rem;
  border-bottom: 1px solid var(--rule-2); color: var(--ink); font-weight: 500;
}
.terms li:last-child { border-bottom: 0; }
.terms li::before {
  content: ""; position: absolute; left: .35rem; top: 1.45em;
  width: .6rem; height: .3rem;
  border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}
.terms__foot {
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--rule);
  font-size: var(--s--1); color: var(--ink-mute);
}

/* ---------- figures ---------- */
.figure { margin: 0; }
.figure svg, .figure img { width: 100%; border-radius: var(--r); border: 1px solid var(--rule-2); background: var(--surface); }
.figure figcaption { margin-top: .8rem; font-size: var(--s--1); color: var(--ink-mute); }
.figure--wide { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.figure--wide svg { min-width: 46rem; }
.figure--chart { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.figure--chart svg { min-width: 38rem; }
.ba { display: grid; gap: 1.1rem; margin-top: 2rem; }
/* Stacked, not side by side. Side by side made both unreadable. */
.ba { gap: 1.5rem; }

/* ---------- self-select ---------- */
.picker { display: grid; gap: 1.1rem; margin-top: 2rem; }
@media (min-width: 62rem) {
  .picker { grid-template-columns: minmax(0, 10fr) minmax(0, 14fr); gap: 2.25rem; align-items: start; }
}
.picker__tabs { display: grid; gap: .5rem; }
.picker__tab {
  text-align: left; width: 100%; cursor: pointer;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--r-sm);
  padding: .9rem 1rem; font-size: var(--s--1); font-weight: 500; line-height: 1.35;
  min-height: 2.9rem;
  transition: border-color .14s ease, background-color .14s ease;
}
.picker__tab:hover { border-color: var(--gold); }
.picker__tab[aria-selected="true"] {
  background: var(--gold-wash); border-color: var(--gold); font-weight: 700;
  box-shadow: inset 3px 0 0 var(--gold);
}
.picker__tab--other { border-style: dashed; }
.picker__panels { display: grid; gap: 1rem; }
.picker__panel {
  background: var(--surface); border: 1px solid var(--rule-2);
  border-radius: var(--r); padding: clamp(1.3rem, 1rem + 1.4vw, 1.9rem);
}
.picker__panel .glyph { width: 2.2rem; height: 2.2rem; color: var(--gold-dk); margin-bottom: .9rem; }
.picker__panel h3 { margin-bottom: .9rem; }
.picker__panel p + p { margin-top: .85rem; }
.picker__now, .picker__built { color: var(--ink-soft); }
.picker__now b { color: var(--ink); font-weight: 700; }
.picker__built b { color: var(--gold-dk); font-weight: 700; }
.picker__covers {
  font-size: var(--s--1); color: var(--ink-mute);
  border-top: 1px solid var(--rule-2); padding-top: .85rem; margin-top: 1rem;
}
.picker__label { display: block; font-weight: 600; font-size: var(--s--1); margin: 1.1rem 0 .4rem; }
.picker__panel textarea {
  width: 100%; min-height: 6rem; padding: .8rem .95rem; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--r-sm); color: var(--ink); resize: vertical;
}

/* ---------- results and gaps ---------- */
.results__kind {
  font-family: var(--body); font-size: var(--s--2); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: .6rem;
}
.results h3 { margin-bottom: .6rem; }
.gaps h3 { color: var(--gold-dk); margin-bottom: .5rem; }

/* ---------- footer ---------- */
.site-foot { background: var(--surface); color: var(--ink); border-top: 3px solid var(--gold); }
.site-foot a { color: var(--ink); }
.site-foot a:hover { color: var(--gold-dk); }
.site-foot__top { padding-block: 1.5rem; display: grid; gap: 1.25rem; }
@media (min-width: 52rem) { .site-foot__top { grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; align-items: start; } }
.site-foot h2 {
  font-family: var(--body); font-size: var(--s--2); letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: .55rem; font-weight: 700;
}
.site-foot ul { list-style: none; display: grid; gap: .35rem; font-size: var(--s--1); }
.site-foot__contact a { text-decoration: none; font-weight: 600; }
.site-foot__contact a:hover { text-decoration: underline; }
.site-foot__contact .cta-row { margin-top: .9rem; }
.brand--foot { margin-bottom: .6rem; }
.site-foot__tag {
  font-family: var(--body); font-size: var(--s--2); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dk);
}
.site-foot__place { margin-top: .7rem; color: var(--ink-soft); line-height: 1.55; font-size: var(--s--1); }
.site-foot__place span { color: var(--ink-mute); }
.site-foot__rule { border: 0; border-top: 1px solid var(--rule-2); margin: 0; }

.verse { padding-block: 1.4rem; max-width: 50ch; margin-inline: auto; text-align: center; }
.verse blockquote p { font-style: italic; font-size: var(--s--1); line-height: 1.7; color: var(--ink-soft); }
.verse figcaption { margin-top: .9rem; font-size: var(--s--2); color: var(--ink-mute); letter-spacing: .04em; }

.site-foot__legal { border-top: 1px solid var(--rule-2); padding-block: .85rem; font-size: var(--s--2); color: var(--ink-mute); }
.site-foot__legal-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.site-foot__legal a { color: var(--ink-mute); }
.site-foot__legal a:hover { color: var(--ink); }

/* ---------- form ---------- */
.panel { background: var(--surface); border: 1px solid var(--rule-2); border-radius: var(--r); padding: clamp(1.3rem, 1rem + 2vw, 2.1rem); }
.form { max-width: 38rem; }
.form__row + .form__row { margin-top: 1.25rem; }
.form label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: var(--s--1); }
.form input:not([type="hidden"]), .form select, .form textarea {
  width: 100%; min-height: 2.9rem; padding: .75rem .9rem; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--r-sm); color: var(--ink);
}
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible,
.picker__panel textarea:focus-visible { border-color: var(--gold-dk); }
.form textarea { min-height: 8.5rem; resize: vertical; }
.form .error { display: block; color: var(--danger); font-size: var(--s--1); font-weight: 600; margin-top: .35rem; }
.form .error:empty { display: none; }
.form [aria-invalid="true"] { border-color: var(--danger); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__actions { margin-top: 1.75rem; }
.form__privacy { margin-top: 1.1rem; font-size: var(--s--1); color: var(--ink-mute); }
.form__note { margin-top: 1.25rem; padding: .95rem 1.1rem; border-radius: var(--r-sm); background: var(--gold-wash); border: 1px solid var(--gold-line); font-weight: 500; }
.form__note--bad { background: #FBEDEC; border-color: #EDCFCD; }

.contact-line { font-family: var(--disp); font-size: var(--s-1); font-weight: 700; letter-spacing: -.02em; }
.contact-line a { text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }
.contact-line span { color: var(--ink-mute); padding-inline: .4rem; font-weight: 400; }

/* ---------- booking placeholder ---------- */
.embed iframe { display: block; width: 100%; min-height: 40rem; border: 0; border-radius: var(--r); }
.embed--pending { border-style: dashed; border-color: var(--rule); max-width: var(--measure); }
.embed--pending p + p { margin-top: .6rem; }

/* ---------- sticky bar on phones ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--surface); border-top: 1px solid var(--rule);
  padding: .65rem var(--gut) calc(.65rem + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform .22s ease;
}
.dock.is-up { transform: translateY(0); }
.dock .btn { width: 100%; }
@media (min-width: 58rem) { .dock { display: none; } }

/* On wide screens the card sits right so the welder stays visible on the left. */

/* ---------- split hero: words on paper, photograph untouched ---------- */
.hero--split {
  background: var(--paper); padding-block: 0; border-bottom: 1px solid var(--rule);
  /* the photo bleeds with 50vw, which includes the scrollbar. Clip it. */
  overflow-x: clip;
}
.hero__grid { display: grid; gap: 0; align-items: stretch; }
.hero__words { padding-block: clamp(2.25rem, 1.6rem + 3.2vw, 4rem); }
.hero__shot { margin: 0 calc(var(--gut) * -1); }
.hero__shot img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; display: block; }

@media (min-width: 64rem) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 3.25rem; }
  .hero__words { padding-block: clamp(3rem, 2rem + 3vw, 4.75rem); align-self: center; }
  /* the photograph runs to the right edge of the window at full clarity */
  .hero__shot { margin: 0 calc(50% - 50vw) 0 0; height: 100%; min-height: 30rem; }
}

/* ---------- work: was and now, side by side ---------- */
.work { list-style: none; display: grid; gap: 1.1rem; margin-top: 2.25rem; }
.work__item {
  background: var(--surface); border: 1px solid var(--rule-2);
  border-left: 4px solid var(--gold); border-radius: var(--r);
  padding: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
}
.work__item--personal { border-left-color: var(--gold-line); background: var(--gold-wash); }
.work__kind {
  font-family: var(--body); font-size: var(--s--2); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: .5rem;
}
.work__item h3 { font-size: var(--s-2); margin-bottom: 1.25rem; }
.work__ba { display: grid; gap: 1.1rem; }
@media (min-width: 54rem) {
  .work__ba { grid-template-columns: 1fr 1.25fr; gap: 2rem; }
  /* the arrow between was and now */
  .work__now { position: relative; }
  .work__now::before {
    content: ""; position: absolute; left: -1.15rem; top: .55rem;
    width: .5rem; height: .5rem; border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold); transform: rotate(45deg);
  }
}
.work__ba span {
  display: inline-block; font-family: var(--body); font-size: var(--s--2);
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .45rem;
}
.work__was span { color: var(--ink-mute); }
.work__now span { color: var(--gold-dk); }
.work__was p { color: var(--ink-mute); font-size: var(--s--1); line-height: 1.6; }
.work__now p { color: var(--ink); font-size: var(--s--1); line-height: 1.6; }

/* ---------- the About statement ---------- */
/* Two halves of one idea. "code" and "run a plant" trade places, so the
   swap is marked and the pivot gets a rule instead of a full stop. */
.anti { display: grid; gap: 0; }
.anti span { display: block; font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.7rem); line-height: 1.12; }
.anti em { font-style: normal; color: var(--gold-dk); }
.anti__a { padding-bottom: 1.1rem; }
.anti__b { padding-top: 1.1rem; border-top: 2px solid var(--gold); }
.anti__payoff {
  margin-top: 1.6rem; font-family: var(--disp); font-weight: 700;
  font-size: var(--s-1); letter-spacing: -.02em; color: var(--ink);
  max-width: 30ch;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 2px solid var(--gold); margin-top: 2rem; }
@media (min-width: 62rem) { .faq { grid-template-columns: 1fr 1fr; column-gap: 3rem; } }
.faq__item { padding: 1.4rem 0; border-bottom: 1px solid var(--rule); }
.faq dt {
  font-family: var(--disp); font-weight: 700; font-size: var(--s-1);
  letter-spacing: -.02em; color: var(--ink); margin-bottom: .55rem;
  font-variation-settings: "wdth" 106;
}
.faq dd { margin: 0; color: var(--ink-soft); font-size: var(--s--1); line-height: 1.6; }
