/* =====================================================================
   TOLEDO APPS · "FORGED IN TOLEDO"
   ---------------------------------------------------------------------
   One stylesheet for every page. Subpage implementers compose from the
   component families below — DO NOT edit this file from a subpage task.

   INDEX OF COMPONENT FAMILIES
   ───────────────────────────
    1. TOKENS            — surfaces, inks, accents, rules, type, motion
    2. BASE              — reset, grain, quench gradient, focus, selection
    3. TYPE UTILITIES    — .mono-label, .prose, .link-gold, heading <em> inlay
    4. THE EDGE          — .edge (signature spine line; chrome-injected)
    5. LAYOUT            — .forge wrapper, .stage sections, .stage__kicker,
                           .cols / .cols--2 / .cols--3, .facts-row
    6. CTA BUTTONS       — .cta, .cta--ember, .cta--ghost, .cta--line
    7. HERO              — .hero, .hero--page, .hero--steel variants
    8. RAIL              — .rail / .rail__stage (forge-stage process rows)
    9. PATTERN DRAWINGS  — .pattern (hairline schematic figure + caption)
   10. LANES             — .lane (work rows: drawing + copy + band)
   11. SPEC TABLE        — .spec-table (quiet comparison/specification)
   12. INSCRIPTIONS      — .inscriptions / .inscription (commitments)
   13. NOTE PLATE        — .note-plate (letterpress honesty note)
   14. PLATES            — .plates / .plate (engraved offer/price plates)
   15. BAND LIST         — .band-list / .band-row (pricing bands)
   16. FAQ               — .faq-item (details/summary accordion)
   17. FORMS             — .form, .field, .choice (intake & contact)
   18. CARDS             — .card (quiet generic card; contact shortcuts)
   19. CHROME: HEADER    — .site-head (injected)
   20. CHROME: DRAWER    — .drawer (injected, full-screen nav)
   21. CHROME: INDEX     — .cmdk (⌘K palette, injected)
   22. CHROME: COLOPHON  — .colophon (footer, injected)
   23. CHROME: MISC      — .skip-link, .mobile-cta, .ornament
   24. MOTION            — [data-reveal] forge reveal, reduced-motion
   25. PAGE HELPERS      — anchor offsets, .form__row/__honey, .intake,
                           .band-group, .cta-row (hoisted from Wave 2)
   26. THE EXPERIENCE    — the Quench (scroll-driven light), First Heat
                           (arrival ignition), the Strike (spine ticks)
   ===================================================================== */

/* ─── 1. TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Surfaces — warm carbon, never blue */
  --coal: #0e0c0a;
  --coal-deep: #0a0807;
  --iron: #161210;
  --iron-2: #1d1714;
  --iron-3: #261d18;

  /* Ink — bone & ash, never pure white */
  --ink-1: #ece4d4;
  --ink-2: #c8bda6;
  --ink-3: #9b9180;
  --ink-ghost: #6b6253; /* decorative / large display only — not body text */

  /* Accents */
  --ember: #ff7a3d;
  --ember-deep: #e85d26;
  --ember-soft: rgba(232, 93, 38, 0.14);
  --gold: #c9a86a;
  --gold-bright: #dcc193;
  --steel: #8da3b8;
  --steel-bright: #b3c2d1;

  /* Hairlines */
  --rule: rgba(236, 228, 212, 0.09);
  --rule-2: rgba(236, 228, 212, 0.17);
  --gold-rule: rgba(201, 168, 106, 0.36);
  --gold-rule-dim: rgba(201, 168, 106, 0.18);
  --steel-rule: rgba(141, 163, 184, 0.26);

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --t-hero: clamp(3.1rem, 9vw, 8.5rem);
  --t-h2: clamp(2.125rem, 4.6vw, 3.875rem);
  --t-h3: clamp(1.5rem, 2.6vw, 2.125rem);
  --t-h4: 1.3125rem;
  --t-lede: clamp(1.125rem, 1.5vw, 1.3125rem);
  --t-body: 1.0625rem;
  --t-small: 0.9375rem;
  --t-label: 0.6875rem;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 240ms;
  --dur-reveal: 640ms;

  /* Layout */
  --page-w: 1480px;
  --spine-x: clamp(22px, 6vw, 92px); /* where the Edge runs */
  --pad-r: clamp(20px, 6vw, 92px);
  --gutter-l: calc(var(--spine-x) + clamp(26px, 4vw, 68px));
  --measure: 62ch;
  --head-h: 64px;

  /* Edge draw progress (JS fallback writes this; default fully drawn) */
  --edge-reveal: 1;
}

/* ─── 2. BASE ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  background: var(--coal);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  min-height: 100vh;
  font-size: var(--t-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  /* The quench: warm at the top of the page, cooled by the foot. */
  background:
    linear-gradient(
      180deg,
      rgba(232, 93, 38, 0.04) 0%,
      rgba(201, 168, 106, 0.015) 22%,
      transparent 45%,
      rgba(141, 163, 184, 0.025) 86%,
      rgba(141, 163, 184, 0.05) 100%
    ),
    var(--coal);
}
/* Film grain — fixed, faint, never animated. Sits over everything. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 360 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 360px 360px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}
::selection {
  background: rgba(232, 93, 38, 0.4);
  color: var(--ink-1);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 420;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

/* ─── 3. TYPE UTILITIES ─────────────────────────────────────────────── */
/* The smith's measurements voice: small, letterspaced, uppercase mono.  */
.mono-label {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.mono-label b,
.mono-label strong {
  color: var(--gold-bright);
  font-weight: 500;
}
/* Gold-inlaid italic — the damascene stroke inside any display heading. */
h1 em,
h2 em,
h3 em,
h4 em,
.display em {
  font-style: italic;
  font-weight: 460;
  color: var(--gold-bright);
}
/* Long-form copy (about, stack, faq answers). */
.prose {
  max-width: var(--measure);
  color: var(--ink-2);
  font-size: var(--t-body);
}
.prose h3,
.prose h4 {
  color: var(--ink-1);
  margin: 2em 0 0.6em;
}
.prose a {
  color: var(--ink-1);
  border-bottom: 1px solid var(--gold-rule);
  transition: border-color var(--dur) var(--ease);
}
.prose a:hover {
  border-bottom-color: var(--gold);
}
.prose ul {
  padding-left: 1.1em;
}
.prose li {
  margin-bottom: 0.4em;
}
/* Inline text link with gold underline — use anywhere. */
.link-gold {
  color: var(--ink-1);
  border-bottom: 1px solid var(--gold-rule);
  transition:
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.link-gold:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* ─── 4. THE EDGE ───────────────────────────────────────────────────── */
/* One continuous 1px line down every page. Ember at the top, tempered
   steel by the footer. Injected by chrome inside the page wrapper.      */
.edge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--spine-x);
  width: 1px;
  z-index: 1;
  pointer-events: none;
}
.edge::before {
  /* incandescent halo where the line leaves the fire */
  content: '';
  position: absolute;
  top: -30px;
  left: -45px;
  width: 90px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(232, 93, 38, 0.3), transparent 72%);
}
.edge__line {
  position: absolute;
  inset: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    #ffc49a 0,
    var(--ember) 120px,
    rgba(255, 122, 61, 0.8) 7%,
    rgba(201, 168, 106, 0.72) 22%,
    rgba(201, 168, 106, 0.4) 48%,
    rgba(176, 178, 178, 0.34) 66%,
    rgba(141, 163, 184, 0.42) 86%,
    rgba(141, 163, 184, 0.66) 100%
  );
}
/* Draw-with-scroll. CSS scroll timeline where supported… */
@supports (animation-timeline: scroll()) {
  html.js .edge__line {
    animation: edge-draw linear both;
    animation-timeline: scroll(root);
  }
  html.js .edge__spark {
    display: block;
    animation: edge-spark linear both;
    animation-timeline: scroll(root);
  }
}
/* …JS fallback writes --edge-reveal (html.edge-js set by site.js). */
html.edge-js .edge__line {
  clip-path: inset(0 0 calc((1 - var(--edge-reveal)) * 100%) 0);
}
html.edge-js .edge__spark {
  display: block;
  top: calc(var(--edge-reveal) * 100% - 4px);
}
@keyframes edge-draw {
  from {
    clip-path: inset(0 0 88% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes edge-spark {
  from {
    top: 12%;
  }
  to {
    top: 100%;
  }
}
.edge__spark {
  display: none;
  position: absolute;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd9bd;
  box-shadow:
    0 0 6px 2px rgba(255, 122, 61, 0.8),
    0 0 22px 8px rgba(232, 93, 38, 0.35);
}

/* ─── 5. LAYOUT ─────────────────────────────────────────────────────── */
.forge {
  position: relative;
  max-width: var(--page-w);
  margin-inline: auto;
  min-height: 100vh;
}
.main {
  position: relative;
  z-index: 2;
}
/* Section shell. Every band of content on every page is a .stage.
   <section class="stage" id="…">
     <p class="stage__kicker mono-label">02 — THE PROCESS</p>
     <header class="stage__head"><h2>…<em>…</em></h2>
       <p class="stage__lede">…</p></header>
     …family content…
   </section> */
.stage {
  position: relative;
  padding: clamp(72px, 9vw, 132px) var(--pad-r) clamp(72px, 9vw, 132px) var(--gutter-l);
}
.stage--tight {
  padding-block: clamp(48px, 6vw, 84px);
}
.stage__kicker {
  position: relative;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--gold);
}
/* Registration tick — a small gold diamond that sits ON the Edge line. */
.stage__kicker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(var(--spine-x) - var(--gutter-l));
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--coal);
  border: 1px solid var(--gold);
}
.stage__head {
  max-width: 880px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.stage__head h2 {
  font-size: var(--t-h2);
  font-weight: 400;
}
.stage__lede {
  max-width: var(--measure);
  margin-top: 1.25em;
  color: var(--ink-2);
  font-size: var(--t-lede);
  line-height: 1.6;
}
/* Simple column helpers for subpages. */
.cols {
  display: grid;
  gap: clamp(24px, 3.5vw, 48px);
}
.cols--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cols--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 880px) {
  .cols--2,
  .cols--3 {
    grid-template-columns: 1fr;
  }
}
/* Quiet mono fact row — hero bands, footers of facts.
   <p class="facts-row mono-label">DISCOVERY <b>$750–$15K</b><i></i>BUILDS
   <b>$15K–$750K+</b><i></i>OWNED BY YOU, DAY ONE</p>                    */
.facts-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9em;
  margin: 0;
}
.facts-row i {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--gold-rule);
}

/* ─── 6. CTA BUTTONS ────────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.cta svg {
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.cta:hover svg {
  transform: translateX(3px);
}
.cta--ember {
  background: var(--ember-deep);
  color: #1b0e06;
  border-color: var(--ember-deep);
}
.cta--ember:hover {
  background: var(--ember);
  border-color: var(--ember);
  transform: translateY(-1px);
}
.cta--ghost {
  background: transparent;
  color: var(--ink-1);
  border-color: var(--rule-2);
}
.cta--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.cta--ghost kbd {
  font-family: inherit;
  font-size: 0.75rem;
  color: var(--ink-3);
}
/* Bare text CTA with a drawing gold underline. */
.cta--line {
  padding: 6px 0;
  border: 0;
  color: var(--ink-1);
  background:
    linear-gradient(var(--gold), var(--gold)) left bottom / 0% 1px no-repeat,
    linear-gradient(var(--gold-rule-dim), var(--gold-rule-dim)) left bottom / 100% 1px no-repeat;
  transition:
    background-size 320ms var(--ease),
    color var(--dur) var(--ease);
}
.cta--line:hover {
  color: var(--gold-bright);
  background-size:
    100% 1px,
    100% 1px;
}

/* ─── 7. HERO ───────────────────────────────────────────────────────── */
/* Flagship: <section class="hero" id="welcome"> …
   Subpages:  <section class="hero hero--page" id="welcome"> …
   Records:   add .hero--steel for the cooled variant.                   */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: max(92vh, 640px);
  padding: calc(var(--head-h) + clamp(48px, 8vw, 96px)) var(--pad-r) clamp(56px, 7vw, 96px)
    var(--gutter-l);
  overflow: hidden;
}
/* The forge horizon — a low ember glow the whole hero stands before. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 42% at 18% 96%, rgba(232, 93, 38, 0.21), transparent 68%),
    radial-gradient(ellipse 40% 26% at 6% 100%, rgba(255, 122, 61, 0.14), transparent 70%),
    radial-gradient(ellipse 60% 50% at 88% -10%, rgba(201, 168, 106, 0.05), transparent 65%);
}
/* Heat shimmer — barely-perceptible breathing of the glow. */
.hero::after {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -20%;
  width: 80%;
  height: 60%;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 38% at 35% 85%, rgba(255, 122, 61, 0.1), transparent 70%);
  animation: hero-breathe 9s var(--ease) infinite alternate;
}
@keyframes hero-breathe {
  from {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(4%, -2%, 0) scale(1.06);
  }
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  margin: 0 0 clamp(24px, 4vh, 44px);
  color: var(--gold);
}
.hero__head {
  font-size: var(--t-hero);
  font-weight: 380;
  line-height: 0.98;
  letter-spacing: -0.022em;
  max-width: 11.5ch;
  margin-left: -0.04em; /* optical alignment of the serif against the spine */
}
.hero__lede {
  max-width: 56ch;
  margin-top: clamp(28px, 4vh, 44px);
  font-size: var(--t-lede);
  line-height: 1.6;
  color: var(--ink-2);
}
.hero__lede b {
  color: var(--ink-1);
  font-weight: 500;
}
.hero__sub {
  max-width: 56ch;
  margin-top: 0.9em;
  color: var(--ink-3);
  font-size: var(--t-body);
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(32px, 5vh, 52px);
}
.hero__facts {
  margin-top: clamp(40px, 7vh, 72px);
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  max-width: 720px;
}
/* Vertical annotation at the hero's right edge (desktop only). */
.hero__annot {
  position: absolute;
  right: calc(var(--pad-r) / 2);
  bottom: clamp(56px, 7vw, 96px);
  z-index: 2;
  writing-mode: vertical-rl;
  color: var(--ink-ghost);
  letter-spacing: 0.34em;
}
/* Compact hero for subpages — same language, less altitude. */
.hero--page {
  min-height: 0;
  padding-top: calc(var(--head-h) + clamp(56px, 9vw, 120px));
  padding-bottom: clamp(40px, 6vw, 72px);
}
.hero--page::before {
  background:
    radial-gradient(ellipse 60% 55% at 12% 110%, rgba(232, 93, 38, 0.13), transparent 68%),
    radial-gradient(ellipse 50% 40% at 90% -20%, rgba(201, 168, 106, 0.04), transparent 65%);
}
.hero--page::after {
  display: none;
}
.hero--page .hero__head {
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
}
/* Steel-cast hero variant for record pages (stack, about, faq, 404). */
.hero--steel::before {
  background:
    radial-gradient(ellipse 60% 55% at 12% 110%, rgba(141, 163, 184, 0.12), transparent 68%),
    radial-gradient(ellipse 50% 40% at 90% -20%, rgba(201, 168, 106, 0.04), transparent 65%);
}

/* ─── 8. RAIL — the four forge stages ───────────────────────────────── */
/* <ol class="rail">
     <li class="rail__stage rail__stage--fire">
       <span class="rail__node" aria-hidden="true"></span>
       <div class="rail__id"><span class="rail__num mono-label">01</span>
         <h3 class="rail__name">Fire</h3></div>
       <div class="rail__body">
         <h4 class="rail__title">Discovery, <em>written.</em></h4>
         <p>…</p>
         <p class="rail__meta mono-label">DURATION — <b>1–4 WKS</b></p>
       </div>
     </li> ×4
   </ol>
   Stage temperature classes: --fire --anvil --edge --temper             */
.rail {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rail__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 290px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(36px, 5vw, 60px) 0;
  border-top: 1px solid var(--rule);
}
.rail__stage:last-child {
  border-bottom: 1px solid var(--rule);
}
/* The stage node sits ON the Edge line. */
.rail__node {
  position: absolute;
  top: clamp(48px, 6vw, 76px);
  left: calc(var(--spine-x) - var(--gutter-l));
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--coal);
  border: 1px solid currentColor;
}
.rail__stage--fire {
  color: var(--ember);
}
.rail__stage--anvil {
  color: var(--gold);
}
.rail__stage--edge {
  color: var(--ink-2);
}
.rail__stage--temper {
  color: var(--steel);
}
.rail__num {
  display: block;
  margin-bottom: 10px;
  color: inherit;
  opacity: 0.85;
}
.rail__name {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
}
.rail__body {
  max-width: var(--measure);
  color: var(--ink-2);
}
.rail__title {
  font-size: var(--t-h4);
  font-weight: 460;
  color: var(--ink-1);
  margin-bottom: 0.6em;
}
.rail__meta {
  margin-top: 1.4em;
}
.rail__meta b {
  color: var(--ink-2);
}
@media (max-width: 760px) {
  .rail__stage {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ─── 9. PATTERN DRAWINGS ───────────────────────────────────────────── */
/* The site's illustrative language: measured hairline schematics on
   coal. Always aria-hidden decorative, always captioned in mono.
   <figure class="pattern" aria-hidden="true">
     <div class="pattern__plate"> [inline SVG] </div>
     <figcaption class="pattern__caption mono-label">
       <span>PATTERN 01 / MEASURED PLAN</span><span>SCALE 1:1 · TOL. ±0</span>
     </figcaption>
   </figure>
   Inside the SVG, use these classes on strokes/text:
     .p-line  hairline gold       .p-dim   dashed dimension line
     .p-ghost faint hairline      .p-ember ember accent stroke
     .p-node  ember filled node   .p-text  mono annotation text
     .p-hatch section hatching    .p-text--dim quieter annotation        */
.pattern {
  margin: 0;
}
.pattern__plate {
  position: relative;
  border: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(236, 228, 212, 0.012), transparent 40%),
    var(--coal-deep);
  padding: clamp(18px, 2.5vw, 30px);
  transition: border-color var(--dur) var(--ease);
}
/* engraved corner registration marks */
.pattern__plate::before,
.pattern__plate::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border: 0 solid var(--gold-rule);
}
.pattern__plate::before {
  top: 6px;
  left: 6px;
  border-top-width: 1px;
  border-left-width: 1px;
}
.pattern__plate::after {
  bottom: 6px;
  right: 6px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}
.pattern__plate svg {
  width: 100%;
  height: auto;
}
.pattern__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--ink-3);
}
/* SVG stroke & text vocabulary */
.pattern .p-line {
  stroke: rgba(201, 168, 106, 0.66);
  stroke-width: 1;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.pattern .p-ghost {
  stroke: rgba(236, 228, 212, 0.13);
  stroke-width: 1;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.pattern .p-dim {
  stroke: rgba(201, 168, 106, 0.42);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.pattern .p-hatch {
  stroke: rgba(201, 168, 106, 0.28);
  stroke-width: 1;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.pattern .p-ember {
  stroke: rgba(255, 122, 61, 0.85);
  stroke-width: 1;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.pattern .p-node {
  fill: var(--ember);
  stroke: none;
}
.pattern .p-text {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  fill: rgba(201, 168, 106, 0.78);
}
.pattern .p-text--dim {
  fill: rgba(155, 145, 128, 0.75);
}

/* ─── 10. LANES — the four shapes of work ───────────────────────────── */
/* <article class="lane">
     <figure class="pattern lane__fig" aria-hidden="true">…</figure>
     <div class="lane__body">
       <p class="lane__kicker mono-label">LANE 01 — INTERNAL TOOLS</p>
       <h3 class="lane__title">…<em>…</em></h3>
       <p class="lane__copy">…</p>
       <p class="lane__band mono-label"><b>$15K–$45K</b><i></i>3–10 WEEKS</p>
       <a class="cta cta--line" href="/internal-tools/">Read the lane</a>
     </div>
   </article>
   Even-numbered lanes flip sides automatically.                         */
.lane {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 10fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  padding: clamp(44px, 6vw, 80px) 0;
  border-top: 1px solid var(--rule);
}
.lane:last-of-type {
  border-bottom: 1px solid var(--rule);
}
.lane:nth-of-type(even) .lane__fig {
  order: 2;
}
.lane:hover .pattern__plate {
  border-color: var(--gold-rule-dim);
}
.lane__kicker {
  margin: 0 0 18px;
  color: var(--gold);
}
.lane__title {
  font-size: var(--t-h3);
  font-weight: 410;
  max-width: 18ch;
}
.lane__copy {
  max-width: 52ch;
  margin-top: 1.1em;
  color: var(--ink-2);
}
.lane__band {
  display: flex;
  align-items: center;
  gap: 0.9em;
  margin: 1.6em 0 1.5em;
  color: var(--ink-3);
}
.lane__band b {
  color: var(--gold-bright);
  font-weight: 500;
}
.lane__band i {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--gold-rule);
}
@media (max-width: 920px) {
  .lane {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .lane:nth-of-type(even) .lane__fig {
    order: 0;
  }
}

/* ─── 11. SPEC TABLE ────────────────────────────────────────────────── */
/* The quiet specification — comparison without the feature-war grid.
   <div class="spec-wrap"><table class="spec-table">
     <thead><tr><th>Vector</th><th>No-code</th>…<th class="is-us">Toledo
       Apps</th></tr></thead>
     <tbody><tr><th scope="row">Speed</th><td data-th="No-code">…</td>…
       <td class="is-us" data-th="Toledo Apps">…</td></tr>…</tbody>
   </table></div>
   data-th powers the stacked mobile rendering.                          */
.spec-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
}
.spec-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: var(--t-small);
  line-height: 1.5;
}
.spec-table thead th {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: left;
  padding: 0 18px 14px 0;
  border-bottom: 1px solid var(--rule-2);
}
.spec-table tbody th {
  font-family: var(--font-display);
  font-weight: 460;
  font-size: 1.0625rem;
  color: var(--ink-1);
  text-align: left;
  vertical-align: top;
  padding: 18px 18px 18px 0;
}
.spec-table td {
  color: var(--ink-3);
  vertical-align: top;
  padding: 18px 18px 18px 0;
}
.spec-table tbody tr {
  border-bottom: 1px solid var(--rule);
}
.spec-table .is-us {
  color: var(--ink-1);
  position: relative;
  padding-left: 18px;
}
.spec-table thead .is-us {
  color: var(--gold-bright);
}
.spec-table tbody .is-us {
  box-shadow: inset 1px 0 0 var(--gold-rule);
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.05), transparent 80%);
}
.spec-table a {
  color: inherit;
  border-bottom: 1px dotted var(--gold-rule);
}
.spec-table a:hover {
  color: var(--gold-bright);
}
@media (max-width: 880px) {
  .spec-table {
    min-width: 0;
  }
  .spec-table thead {
    display: none;
  }
  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    padding: 0;
  }
  .spec-table tbody tr {
    padding: 22px 0;
  }
  .spec-table tbody th {
    padding-bottom: 12px;
  }
  .spec-table td {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 5px 0;
  }
  .spec-table td::before {
    content: attr(data-th);
    flex: none;
    width: 9ch;
    font-family: var(--font-mono);
    font-size: var(--t-label);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-ghost);
    padding-top: 3px;
  }
  .spec-table td.is-us::before {
    color: var(--gold);
  }
  .spec-table .is-us {
    box-shadow: none;
    background: none;
    border-top: 1px solid var(--gold-rule-dim);
    margin-top: 8px;
    padding-top: 10px;
  }
}

/* ─── 12. INSCRIPTIONS — commitments, engraved ──────────────────────── */
/* <div class="inscriptions">
     <article class="inscription">
       <span class="inscription__num" aria-hidden="true">I</span>
       <h3>Built to <em>outlast the contract.</em></h3>
       <p>…</p>
     </article> ×3
   </div> */
.inscriptions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.inscription {
  border-top: 1px solid var(--gold-rule);
  padding-top: 26px;
  position: relative;
}
.inscription::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 38px;
  border-top: 1px solid var(--gold);
}
.inscription__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.inscription h3 {
  font-size: 1.5rem;
  font-weight: 430;
  margin-bottom: 0.65em;
}
.inscription p {
  color: var(--ink-2);
  font-size: var(--t-small);
}
.inscription a {
  color: var(--ink-1);
  border-bottom: 1px solid var(--gold-rule);
}
.inscription a:hover {
  color: var(--gold-bright);
}
@media (max-width: 880px) {
  .inscriptions {
    grid-template-columns: 1fr;
  }
}

/* ─── 13. NOTE PLATE — the letterpress honesty note ─────────────────── */
/* <aside class="note-plate">
     <p class="note-plate__salute">New shop. First clients now.</p>
     <p>…body…</p>
     <p class="note-plate__sign mono-label">— TOLEDO APPS · TOLEDO, OH</p>
   </aside> */
.note-plate {
  position: relative;
  max-width: 720px;
  border: 1px solid var(--rule-2);
  outline: 1px solid var(--rule);
  outline-offset: 5px;
  background: linear-gradient(180deg, rgba(236, 228, 212, 0.02), transparent 60%), var(--iron);
  padding: clamp(32px, 5vw, 56px);
}
.note-plate__salute {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.2;
  color: var(--ink-1);
  margin-bottom: 0.8em;
}
.note-plate p {
  color: var(--ink-2);
}
.note-plate a {
  color: var(--ink-1);
  border-bottom: 1px solid var(--gold-rule);
}
.note-plate a:hover {
  color: var(--gold-bright);
}
.note-plate__sign {
  margin-top: 2em;
  padding-top: 1.4em;
  border-top: 1px solid var(--gold-rule-dim);
  color: var(--gold);
}

/* ─── 14. PLATES — engraved offers (discovery, pricing, thanks) ─────── */
/* <div class="plates">
     <article class="plate">
       <p class="plate__label mono-label">DELPHI APP DISCOVERY
         <b>MOST COMMON</b></p>
       <h3 class="plate__title">…</h3>
       <p class="plate__copy">…</p>
       <ul class="tick-list"><li>…</li> ×3</ul>
       <div class="plate__foot">
         <span class="plate__band mono-label"><b>$3,500–$5,000</b>
           · 1–2 WEEKS</span>
         <a class="cta cta--ember" href="…">Begin</a>
       </div>
     </article> ×n
   </div>
   <p class="plates__note mono-label">…credit rule…</p>                  */
.plates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.plate {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule-2);
  background: linear-gradient(180deg, rgba(236, 228, 212, 0.025), transparent 45%), var(--iron);
  padding: clamp(28px, 4vw, 44px);
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.plate::before,
.plate::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--gold-rule);
  transition: border-color var(--dur) var(--ease);
}
.plate::before {
  top: 7px;
  left: 7px;
  border-top-width: 1px;
  border-left-width: 1px;
}
.plate::after {
  bottom: 7px;
  right: 7px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}
.plate:hover {
  border-color: var(--gold-rule);
  transform: translateY(-2px);
}
.plate:hover::before,
.plate:hover::after {
  border-color: var(--gold);
}
.plate__label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  color: var(--gold);
}
.plate__label b {
  color: var(--ink-3);
  font-weight: 400;
}
.plate__title {
  font-size: 1.625rem;
  font-weight: 430;
  margin-bottom: 0.6em;
}
.plate__copy {
  color: var(--ink-2);
  font-size: var(--t-small);
}
.plate__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 26px;
}
.plate__band {
  color: var(--ink-3);
  letter-spacing: 0.14em;
}
.plate__band b {
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 0.8125rem;
}
.plates__note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--gold-rule-dim);
  color: var(--ink-3);
  max-width: 720px;
}
.plates__note b {
  color: var(--gold-bright);
}
@media (max-width: 880px) {
  .plates {
    grid-template-columns: 1fr;
  }
}
/* Hairline-separated include rows — used inside plates & elsewhere. */
.tick-list {
  list-style: none;
  margin: 1.6em 0 0;
  padding: 0;
}
.tick-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-top: 1px solid var(--rule);
  color: var(--ink-2);
  font-size: var(--t-small);
}
.tick-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 1.35em;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
}

/* ─── 15. BAND LIST — pricing bands as measured rows ────────────────── */
/* <ol class="band-list">
     <li class="band-row">
       <span class="band-row__num mono-label">01</span>
       <div class="band-row__name"><h3>Internal Tools</h3><p>…note…</p></div>
       <span class="band-row__band mono-label"><b>$15K–$45K</b></span>
       <span class="band-row__time mono-label">3–10 WEEKS</span>
     </li> ×n
   </ol> */
.band-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.band-row {
  display: grid;
  grid-template-columns: 3ch minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: clamp(16px, 3vw, 44px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid var(--rule);
  transition: background var(--dur) var(--ease);
}
.band-row:last-child {
  border-bottom: 1px solid var(--rule);
}
.band-row:hover {
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.04), transparent 70%);
}
.band-row__num {
  color: var(--gold);
}
.band-row__name h3 {
  font-size: var(--t-h4);
  font-weight: 440;
}
.band-row__name p {
  margin: 0.35em 0 0;
  color: var(--ink-3);
  font-size: var(--t-small);
}
.band-row__band b {
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 0.8125rem;
}
.band-row__time {
  color: var(--ink-3);
}
@media (max-width: 720px) {
  .band-row {
    grid-template-columns: 3ch minmax(0, 1fr);
    row-gap: 8px;
  }
  .band-row__band,
  .band-row__time {
    grid-column: 2;
  }
}

/* ─── 16. FAQ — accordion ───────────────────────────────────────────── */
/* <details class="faq-item"><summary>Question?</summary>
     <div class="faq-item__a"><p>…</p></div></details>                   */
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-of-type {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 440;
  color: var(--ink-1);
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  flex: none;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--gold);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--gold-bright);
}
.faq-item__a {
  max-width: var(--measure);
  padding: 0 0 26px;
  color: var(--ink-2);
  font-size: var(--t-small);
}

/* ─── 17. FORMS — intake & contact ──────────────────────────────────── */
/* <form class="form">
     <div class="field"><label for="x">NAME</label>
       <input id="x" type="text" /></div>
     <div class="field"><label>LANE</label>
       <div class="choices">
         <label class="choice"><input type="radio" name="lane" />
           <span><b>Internal tool</b><small>$15K–$45K</small></span></label>…
       </div></div>
     <button class="cta cta--ember" type="submit">Send</button>
   </form> */
.form {
  display: grid;
  gap: 26px;
  max-width: 680px;
}
.field {
  display: grid;
  gap: 9px;
}
.field > label {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='url'],
.field select,
.field textarea {
  width: 100%;
  background: var(--coal-deep);
  border: 1px solid var(--rule-2);
  border-radius: 0;
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: var(--t-body);
  padding: 13px 14px;
  transition: border-color var(--dur) var(--ease);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-ghost);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a86a' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field__hint {
  color: var(--ink-3);
  font-size: 0.8125rem;
  margin: 0;
}
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.choice {
  position: relative;
  display: block;
  cursor: pointer;
}
.choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.choice span {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid var(--rule-2);
  background: var(--coal-deep);
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.choice b {
  font-weight: 500;
  font-size: var(--t-small);
  color: var(--ink-1);
}
.choice small {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.choice:hover span {
  border-color: var(--gold-rule);
}
.choice input:checked + span {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.07), transparent 70%), var(--coal-deep);
}
.choice input:focus-visible + span {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ─── 18. CARDS — quiet generic card ────────────────────────────────── */
/* <a class="card" href="…"> or <article class="card">
     <p class="card__kicker mono-label">…</p>
     <h3 class="card__title">…</h3>
     <p class="card__copy">…</p>
     <span class="card__meta mono-label">…</span>
   </…> Variant: .card--steel (cooled, for record pages).                */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--rule);
  background: var(--iron);
  padding: clamp(22px, 3vw, 32px);
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.card::before {
  /* gold top hairline that arrives on hover */
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 106, 0.1));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.card:hover {
  border-color: var(--rule-2);
  transform: translateY(-2px);
}
.card:hover::before {
  opacity: 1;
}
.card__kicker {
  color: var(--gold);
  margin: 0;
}
.card__title {
  font-size: var(--t-h4);
  font-weight: 440;
}
.card__copy {
  color: var(--ink-2);
  font-size: var(--t-small);
  margin: 0;
}
.card__meta {
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink-3);
}
.card--steel {
  background: linear-gradient(180deg, rgba(141, 163, 184, 0.05), transparent 60%), var(--iron);
}
.card--steel .card__kicker {
  color: var(--steel);
}
.card--steel::before {
  background: linear-gradient(90deg, var(--steel), rgba(141, 163, 184, 0.1));
}

/* ─── 19. CHROME: HEADER ────────────────────────────────────────────── */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.is-scrolled {
  background: rgba(12, 10, 8, 0.94);
  border-bottom-color: var(--gold-rule-dim);
}
.site-head__in {
  max-width: var(--page-w);
  margin-inline: auto;
  height: var(--head-h);
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: var(--spine-x) var(--pad-r);
}
.site-head__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink-1);
}
.site-head__brand:hover {
  color: var(--gold-bright);
}
.site-head__mark {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
  background: transparent;
}
.site-head__crumb {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-head__tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-head__index,
.site-head__menu,
.site-head__contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 36px;
  padding: 0 14px;
  background: none;
  border: 1px solid transparent;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.site-head__index kbd {
  font-family: inherit;
  font-size: 0.625rem;
  color: var(--ink-3);
  border: 1px solid var(--rule-2);
  padding: 2px 5px;
}
.site-head__index:hover,
.site-head__contact:hover,
.site-head__menu:hover {
  color: var(--gold-bright);
}
.site-head__menu {
  border-color: var(--rule-2);
}
.site-head__menu:hover {
  border-color: var(--gold-rule);
}
.site-head__menu svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 760px) {
  .site-head__crumb,
  .site-head__contact,
  .site-head__index {
    display: none;
  }
  .site-head__in {
    padding-inline: 16px;
  }
}

/* ─── 20. CHROME: DRAWER ────────────────────────────────────────────── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(8, 6, 5, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
body.is-drawer .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 40% at 15% 108%, rgba(232, 93, 38, 0.13), transparent 70%),
    var(--coal-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5%);
  transition:
    opacity 320ms var(--ease),
    transform 320ms var(--ease),
    visibility 0s 320ms;
  overflow-y: auto;
}
body.is-drawer .drawer {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity 360ms var(--ease),
    transform 360ms var(--ease);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--head-h);
  padding-inline: var(--spine-x) var(--pad-r);
  flex: none;
}
.drawer__brand {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--ink-3);
}
.drawer__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid var(--rule-2);
  color: var(--ink-2);
  cursor: pointer;
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.drawer__close:hover {
  color: var(--gold-bright);
  border-color: var(--gold-rule);
}
.drawer__close svg {
  width: 16px;
  height: 16px;
}
.drawer__body {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 96px);
  align-content: center;
  padding: clamp(24px, 4vh, 56px) var(--pad-r) clamp(24px, 4vh, 56px) var(--gutter-l);
}
.drawer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 26px);
  padding: clamp(6px, 1.2vh, 12px) 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5.2vh, 3.25rem);
  font-weight: 380;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  transition:
    color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.drawer__nav a:hover {
  color: var(--ink-1);
  transform: translateX(6px);
}
.drawer__nav a[aria-current='page'] {
  color: var(--gold-bright);
  font-style: italic;
}
.drawer__num {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.22em;
  color: var(--gold);
}
.drawer__aux {
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: center;
  border-left: 1px solid var(--rule);
  padding-left: clamp(20px, 3vw, 40px);
}
.drawer__aux a {
  display: block;
  padding: 9px 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color var(--dur) var(--ease);
}
.drawer__aux a:hover,
.drawer__aux a[aria-current='page'] {
  color: var(--gold-bright);
}
.drawer__foot {
  flex: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px var(--pad-r) max(20px, env(safe-area-inset-bottom)) var(--gutter-l);
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.drawer__foot a {
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0.08em;
}
.drawer__foot a:hover {
  color: var(--gold-bright);
}
/* staggered settle of nav rows */
.drawer__nav li {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 380ms var(--ease),
    transform 380ms var(--ease);
}
body.is-drawer .drawer__nav li {
  opacity: 1;
  transform: none;
}
body.is-drawer .drawer__nav li:nth-child(1) {
  transition-delay: 60ms;
}
body.is-drawer .drawer__nav li:nth-child(2) {
  transition-delay: 100ms;
}
body.is-drawer .drawer__nav li:nth-child(3) {
  transition-delay: 140ms;
}
body.is-drawer .drawer__nav li:nth-child(4) {
  transition-delay: 180ms;
}
body.is-drawer .drawer__nav li:nth-child(5) {
  transition-delay: 220ms;
}
body.is-drawer .drawer__nav li:nth-child(6) {
  transition-delay: 260ms;
}
@media (max-width: 760px) {
  .drawer__body {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: start;
    overflow-y: auto;
  }
  .drawer__aux {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: 18px;
    align-self: start;
  }
}

/* ─── 21. CHROME: THE INDEX (⌘K) ────────────────────────────────────── */
.cmdk {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 14vh, 140px) 18px 18px;
  background: rgba(8, 6, 5, 0.72);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 200ms var(--ease),
    visibility 0s 200ms;
}
body.is-cmdk .cmdk {
  opacity: 1;
  visibility: visible;
  transition: opacity 200ms var(--ease);
}
.cmdk__panel {
  width: min(660px, 100%);
  max-height: min(560px, 78vh);
  display: flex;
  flex-direction: column;
  background: var(--coal-deep);
  border: 1px solid var(--gold-rule-dim);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: translateY(-8px);
  transition: transform 220ms var(--ease);
}
body.is-cmdk .cmdk__panel {
  transform: none;
}
.cmdk__input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gold-rule-dim);
}
.cmdk__sigil {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.875rem;
}
.cmdk__input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: 1rem;
}
.cmdk__input::placeholder {
  color: var(--ink-ghost);
}
.cmdk__esc {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  border: 1px solid var(--rule-2);
  padding: 3px 6px;
}
.cmdk__list {
  overflow-y: auto;
  padding: 10px 8px 14px;
  scrollbar-width: thin;
}
.cmdk__group-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 14px 8px;
}
.cmdk__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  cursor: pointer;
}
.cmdk__item.is-focus {
  background: var(--iron-2);
  box-shadow: inset 2px 0 0 var(--gold);
}
.cmdk__item-num {
  flex: none;
  width: 2.5ch;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  color: var(--ink-ghost);
}
.cmdk__item.is-focus .cmdk__item-num {
  color: var(--gold);
}
.cmdk__item-body {
  min-width: 0;
}
.cmdk__item-title {
  font-size: var(--t-small);
  color: var(--ink-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cmdk__item-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cmdk__item-go {
  margin-left: auto;
  color: var(--ink-ghost);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.cmdk__item.is-focus .cmdk__item-go {
  opacity: 1;
  color: var(--gold);
}
.cmdk__footer {
  display: flex;
  gap: 22px;
  padding: 12px 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cmdk__footer kbd {
  font-family: inherit;
  color: var(--ink-2);
  border: 1px solid var(--rule-2);
  padding: 1px 5px;
  margin-right: 3px;
}

/* ─── 22. CHROME: COLOPHON ──────────────────────────────────────────── */
/* The cooled end of the page — tempered steel resolves the quench. */
.colophon {
  position: relative;
  margin-top: clamp(48px, 7vw, 100px);
  border-top: 1px solid var(--steel-rule);
  background:
    radial-gradient(ellipse 80% 60% at 50% 115%, rgba(141, 163, 184, 0.09), transparent 70%),
    linear-gradient(180deg, transparent, rgba(141, 163, 184, 0.03));
}
.colophon__in {
  padding: clamp(56px, 7vw, 96px) var(--pad-r) 36px var(--gutter-l);
}
.colophon .ornament {
  width: min(420px, 70%);
  height: 16px;
  color: var(--steel-rule);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.colophon__motto {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 380;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  margin: 0 0 clamp(44px, 6vw, 72px);
}
.colophon__motto em {
  font-style: italic;
  color: var(--steel-bright);
  font-weight: 420;
}
.colophon__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.colophon__brand {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--steel-bright);
  margin: 0 0 14px;
}
.colophon__col p {
  color: var(--ink-3);
  font-size: var(--t-small);
  max-width: 38ch;
}
.colophon__mail {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--steel-bright);
  border-bottom: 1px solid var(--steel-rule);
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.colophon__mail:hover {
  color: var(--gold-bright);
  border-color: var(--gold-rule);
}
.colophon__col h3 {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 16px;
}
.colophon__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.colophon__col li {
  margin-bottom: 9px;
}
.colophon__col ul a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink-2);
  font-size: var(--t-small);
  transition: color var(--dur) var(--ease);
}
.colophon__col ul a:hover {
  color: var(--steel-bright);
}
.colophon__col ul a span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--steel);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.colophon__base {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.colophon__base-right {
  color: var(--steel);
}
@media (max-width: 980px) {
  .colophon__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .colophon__col--wide {
    grid-column: 1 / -1;
  }
}

/* ─── 23. CHROME: MISC ──────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 300;
  padding: 12px 18px;
  background: var(--iron-3);
  border: 1px solid var(--gold);
  color: var(--ink-1);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: top 160ms var(--ease);
}
.skip-link:focus {
  top: 14px;
}
/* Damascene ornament rule — color via currentColor. */
.ornament {
  color: var(--gold-rule);
}
/* Mobile sticky CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: rgba(12, 10, 8, 0.96);
  border-top: 1px solid var(--gold-rule-dim);
  transform: translateY(0);
  transition: transform 280ms var(--ease);
}
.mobile-cta.is-hidden {
  transform: translateY(110%);
}
.mobile-cta__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.mobile-cta__meta b {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-cta__meta span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.mobile-cta .cta {
  flex: none;
  padding: 13px 20px;
}
@media (max-width: 760px) {
  .mobile-cta {
    display: flex;
  }
}

/* ─── 24. MOTION — the forge reveal ─────────────────────────────────── */
/* Add data-reveal to any block. JS adds .is-visible once, on entry.
   The reveal: metal drawn from the fire — a warm settle + rise.         */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
html.js [data-reveal].is-visible {
  animation: forge-reveal var(--dur-reveal) var(--ease) both;
}
@keyframes forge-reveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: sepia(0.5) saturate(1.5) brightness(1.18);
  }
  55% {
    opacity: 1;
    filter: sepia(0.22) saturate(1.2) brightness(1.07);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero::after {
    animation: none;
    opacity: 0.6;
  }
  .edge__line {
    animation: none !important;
    clip-path: none !important;
  }
  .edge__spark {
    display: none !important;
  }
}

/* ─── 25. PAGE HELPERS ──────────────────────────────────────────────── */
/* Hoisted from Wave 2 page rebuilds; composed from system tokens.       */

/* Anchor landings clear the fixed header — applies site-wide. */
[id] {
  scroll-margin-top: calc(var(--head-h) + 16px);
}

/* formsubmit.co honeypot — visually removed, present in the POST. */
.form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Paired fields on one measured row. */
.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 640px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* Intake rows — sticky description spine left, form right. */
.intake {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
  padding: clamp(44px, 6vw, 80px) 0;
  border-top: 1px solid var(--rule);
}
.intake:last-of-type {
  border-bottom: 1px solid var(--rule);
}
.intake__kicker {
  margin: 0 0 18px;
  color: var(--gold);
}
.intake__intro h3 {
  font-size: var(--t-h3);
  font-weight: 410;
  max-width: 18ch;
}
.intake__intro > p {
  max-width: 52ch;
  margin-top: 1.1em;
  color: var(--ink-2);
}
.intake__facts {
  margin-top: 1.6em;
  color: var(--ink-3);
}
.triage {
  margin-top: clamp(32px, 4vw, 48px);
}
@media (min-width: 921px) {
  .intake__intro {
    position: sticky;
    top: calc(var(--head-h) + 24px);
  }
}
@media (max-width: 920px) {
  .intake {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Build-band groups — a labeled cluster of band rows per lane. */
.band-group + .band-group {
  margin-top: clamp(44px, 6vw, 72px);
}
.band-group__label {
  margin: 0 0 16px;
  color: var(--gold);
}

/* Generic wrapping CTA row. */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── 26. THE EXPERIENCE ────────────────────────────────────────────── */
/* Lighting and arrival. Everything here is enhancement: gated by
   html.js and prefers-reduced-motion, the page is complete without it.  */

/* THE QUENCH — the ambient temperature follows the reader.
   site.js writes --scroll-p (0 at the fire, 1 at the quench). Two fixed
   light layers crossfade with it, so the cooling happens under your
   hand instead of being painted per-section. They sit at z 0 — under
   .edge (z 1) and .main (z 2), over the coal.                           */
html.js .forge::before,
html.js .forge::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
html.js .forge::before {
  /* forge ambience — overhead warmth, strongest on arrival */
  background:
    radial-gradient(120% 90% at 16% -12%, rgba(232, 93, 38, 0.15), transparent 56%),
    radial-gradient(90% 70% at 86% -4%, rgba(201, 168, 106, 0.07), transparent 60%);
  opacity: calc(1 - var(--scroll-p, 0));
}
html.js .forge::after {
  /* quench ambience — steel light rising from the foot */
  background:
    radial-gradient(120% 90% at 50% 112%, rgba(141, 163, 184, 0.12), transparent 62%),
    radial-gradient(80% 60% at 90% 104%, rgba(141, 163, 184, 0.06), transparent 55%);
  opacity: var(--scroll-p, 0);
}
@media (prefers-reduced-motion: reduce) {
  /* No live lighting under reduced motion — hold a neutral mix. */
  html.js .forge::before,
  html.js .forge::after {
    opacity: 0.45;
  }
}

/* FIRST HEAT — arrival. Once per visit (sessionStorage) the Edge
   ignites from the top and the headline comes up to temperature.
   site.js adds html.first-heat only when motion is welcome.             */
html.first-heat .edge__line {
  transform-origin: 50% 0;
  animation: first-heat-ignite 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
html.first-heat .edge::before {
  animation: first-heat-halo 1.6s var(--ease) both;
}
html.first-heat .hero__head {
  animation: first-heat-temper 1.5s var(--ease) both;
}
html.first-heat .hero__head em {
  animation: first-heat-inlay 1.7s var(--ease) both;
}
@keyframes first-heat-ignite {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes first-heat-halo {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  55% {
    opacity: 1;
    transform: scale(1.18);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes first-heat-temper {
  0% {
    opacity: 0;
    transform: translateY(12px);
    text-shadow: 0 0 64px rgba(232, 93, 38, 0.55);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: none;
    text-shadow: 0 0 0 rgba(232, 93, 38, 0);
  }
}
@keyframes first-heat-inlay {
  0% {
    color: #ffc49a;
  }
  60% {
    color: #ffc49a;
  }
  100% {
    color: var(--gold);
  }
}

/* THE STRIKE — the spine registers your position. When a stage tick or
   rail node crosses the centre band of the viewport it takes one beat
   of heat, then settles back to engraved gold. site.js adds .is-struck. */
@media (prefers-reduced-motion: no-preference) {
  .stage__kicker.is-struck::before,
  .rail__stage.is-struck .rail__node {
    animation: strike 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@keyframes strike {
  0% {
    background: var(--ember);
    border-color: var(--ember);
    box-shadow: 0 0 0 0 rgba(232, 93, 38, 0.55);
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
  40% {
    box-shadow: 0 0 18px 5px rgba(232, 93, 38, 0.22);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.55);
  }
  100% {
    /* background/border omitted — each tick settles to its own metal */
    box-shadow: 0 0 0 0 rgba(232, 93, 38, 0);
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
}

/* ─── RESPONSIVE FOUNDATIONS ────────────────────────────────────────── */
@media (max-width: 760px) {
  :root {
    --spine-x: 16px;
    --gutter-l: 44px;
    --pad-r: 18px;
  }
  .hero__annot {
    display: none;
  }
  .hero {
    min-height: max(86vh, 560px);
  }
  body {
    /* keep clear of the sticky CTA */
    padding-bottom: 76px;
  }
}
