/* --- 0. Fonts (self-hosted, no third-party requests) -------------------- */
@font-face{font-family:"Inter";src:url("../fonts/inter-latin-400-normal.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("../fonts/inter-latin-500-normal.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("../fonts/inter-latin-600-normal.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("../fonts/inter-latin-700-normal.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"Barlow Condensed";src:url("../fonts/barlow-condensed-latin-500-normal.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"Barlow Condensed";src:url("../fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:"Barlow Condensed";src:url("../fonts/barlow-condensed-latin-700-normal.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"IBM Plex Mono";src:url("../fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"IBM Plex Mono";src:url("../fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}

/* ==========================================================================
   Jordan Machine Company — Design System
   Modern industrial. Black + company red. Static HTML/CSS/JS only.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
/*  PALETTE
    The whole site is driven by the accent tokens below. Change --accent,
    --accent-lt, --accent-lo and --accent-rgb and the entire site re-skins:
    buttons, rules, eyebrows, technical drawings, focus rings, everything.

      --accent      fills, buttons, borders, rules            (used on light)
      --accent-lt   text + line-work sitting ON dark surfaces (needs to be
                    lighter than --accent to stay legible on near-black)
      --accent-lo   hover / pressed state
      --accent-rgb  the same colour as R,G,B for rgba() tints
      --accent-ink  resolved automatically — do not set by hand
*/
:root {
  /* Surfaces — neutral blacks and greys, so red reads clean against them */
  --ink:        #0A0B0D;
  --ink-2:      #101113;
  --ink-3:      #17191C;
  --steel:      #2A2C30;
  --paper:      #FFFFFF;
  --paper-2:    #F5F5F6;
  --paper-3:    #E7E8EA;

  /* Ink on surfaces */
  --text:       #131417;
  --text-mut:   #55585E;
  --on-dark:    #E9EAEC;
  --on-dark-mut:#94979D;

  /* Accent — OXIDE RED (company colour) */
  --accent:     #A32A21;
  --accent-lt:  #E05242;
  --accent-lo:  #78180F;
  --accent-rgb: 163,42,33;
  --accent-ink: var(--accent);

  /* Lines */
  --line-d:     rgba(255,255,255,.10);
  --line-d-2:   rgba(255,255,255,.18);
  --line-l:     #DEDFE2;
  --line-l-2:   #C7C9CD;

  /* Type */
  --f-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Metrics */
  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 56px);
  --sec: clamp(64px, 9vw, 128px);
  --r: 2px;

  --shadow-1: 0 1px 2px rgba(10,11,13,.06), 0 6px 20px rgba(10,11,13,.06);
  --shadow-2: 0 2px 4px rgba(10,11,13,.08), 0 18px 48px rgba(10,11,13,.12);
}

/* On dark surfaces, accent text and line-work switch to the lighter tint so
   small type stays legible. Everything using var(--accent-ink) follows. */
.t-dark, .t-dark2, .hero, .phero, .cta, .hdr, .ftr,
.card--dark, .fig--dark, .spec--dark { --accent-ink: var(--accent-lt); }

/* --- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1,h2,h3,h4,h5 { margin: 0; font-weight: 700; line-height: 1.05; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.1em; }
hr { border: 0; border-top: 1px solid var(--line-l); margin: 0; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 0; }

/* --- 3. Layout ---------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { max-width: 1440px; }
.section { padding-block: var(--sec); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.grid { display: grid; gap: clamp(24px, 3.4vw, 48px); }
/* grid/flex children default to min-width:auto, which lets wide tables and
   long words blow out the track. Reset it everywhere we lay out. */
.grid > *, .frow > *, .sec-head > *, .step > *, .cta__inner > *,
.hero__inner > *, .phero__inner > *, .ftr__top > *, .band > *,
.card > *, .ctile > *, .form__row > * { min-width: 0; }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.g-5-7 { grid-template-columns: 5fr 7fr; align-items: center; }
.g-7-5 { grid-template-columns: 7fr 5fr; align-items: center; }
.g-6-6 { grid-template-columns: 1fr 1fr; align-items: start; }

@media (max-width: 960px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .g-5-7, .g-7-5, .g-6-6 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

/* Themes */
.t-dark  { background: var(--ink); color: var(--on-dark); }
.t-dark2 { background: var(--ink-2); color: var(--on-dark); }
.t-gray  { background: var(--paper-2); }
.t-dark p, .t-dark2 p { color: var(--on-dark-mut); }
.t-dark .lede, .t-dark2 .lede { color: var(--on-dark); }

/* --- 4. Type ------------------------------------------------------------ */
.display {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: .92;
}
.d-1 { font-size: clamp(3rem, 8.2vw, 6.5rem); }
.d-2 { font-size: clamp(2.4rem, 5.6vw, 4.25rem); }
.d-3 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }

h3.sub, .sub {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: .01em;
  line-height: 1.1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--accent-ink); flex: none;
}
.eyebrow--plain::before { display: none; }

.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: var(--text-mut);
  max-width: 62ch;
}
.t-dark .lede, .t-dark2 .lede { color: var(--on-dark-mut); }

.measure { max-width: 68ch; }
.mono { font-family: var(--f-mono); }
.accent { color: var(--accent-ink); }
.center { text-align: center; }
.center .lede, .center .measure { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* --- 5. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--f-body);
  font-size: .86rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 17px 30px;
  border: 2px solid transparent;
  border-radius: var(--r);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .18s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--pri { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--pri:hover { background: var(--accent-lo); border-color: var(--accent-lo); }

.btn--ghost-d { color: var(--on-dark); border-color: var(--line-d-2); }
.btn--ghost-d:hover { border-color: var(--on-dark); background: rgba(255,255,255,.06); }

.btn--ghost-l { color: var(--text); border-color: var(--line-l-2); }
.btn--ghost-l:hover { border-color: var(--text); background: rgba(0,0,0,.03); }

.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: var(--steel); border-color: var(--steel); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 560px) {
  .btn { white-space: normal; text-align: center; max-width: 100%; padding-inline: 22px; }
  .btn-row > .btn { flex: 1 1 100%; }
}

.link-arw {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); text-decoration: none;
  border-bottom: 2px solid transparent; padding-bottom: 3px;
  transition: border-color .18s ease, gap .18s ease;
}
.link-arw:hover { border-color: var(--accent-ink); gap: 16px; }
.link-arw svg { width: 15px; height: 15px; }

/* --- 6. Header / Nav ---------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,17,22,.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line-d);
  color: var(--on-dark);
}
.hdr__bar {
  display: flex; align-items: center; gap: 28px;
  min-height: 78px;
}
.hdr__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; flex: none; }
.hdr__logo svg { height: 40px; width: auto; }

.logo-wm { display: flex; flex-direction: column; line-height: 1; }
.logo-wm b {
  font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.55rem; letter-spacing: .01em;
}
.logo-wm span {
  font-family: var(--f-mono); font-size: .53rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--on-dark-mut); margin-top: 4px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--on-dark-mut);
  font-size: .8rem; font-weight: 600; letter-spacing: .085em; text-transform: uppercase;
  padding: 10px 13px; border-radius: var(--r);
  transition: color .16s ease, background .16s ease;
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px 0 var(--accent-ink); }

.hdr__cta { display: flex; align-items: center; gap: 16px; flex: none; }
.hdr__tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: .82rem; font-weight: 500;
  color: #fff; text-decoration: none; letter-spacing: .02em;
}
.hdr__tel svg { width: 15px; height: 15px; color: var(--accent-ink); }
.hdr__tel:hover { color: var(--accent-lt); }
.hdr .btn { padding: 13px 22px; font-size: .78rem; }
.nav .btn { display: none; }

.burger {
  display: none; background: none; border: 1px solid var(--line-d-2);
  border-radius: var(--r); padding: 0; width: 46px; height: 46px;
  align-items: center; justify-content: center; cursor: pointer; flex: none;
}
.burger span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: background .15s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff;
  transition: transform .22s ease, top .18s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1120px) {
  .hdr__cta .btn { display: none; }
}
@media (max-width: 1000px) {
  .hdr__bar { gap: 14px; min-height: 66px; }
  .hdr__logo { margin-right: auto; }
  .hdr__cta { order: 2; margin-left: 0; }
  .burger { display: inline-flex; order: 3; }
  .nav {
    order: 4; width: 100%; flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav.open { max-height: 620px; }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line-d); font-size: .95rem; border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--accent-ink); padding-left: 14px; }
  .hdr__bar { flex-wrap: wrap; }
  .hdr__cta { margin-left: auto; }
  .nav .btn { display: inline-flex; margin: 18px 0 22px; align-self: flex-start; }
  .nav a.btn--pri { color: #fff; }
  .nav a.btn--pri:hover { color: #fff; background: var(--accent-lo); }
}
@media (max-width: 620px) {
  .hdr__tel span { display: none; }
  .logo-wm b { font-size: 1.18rem; }
  .logo-wm span { font-size: .47rem; letter-spacing: .22em; }
  .hdr__logo svg { height: 32px; }
  .burger { width: 42px; height: 42px; }
}
@media (max-width: 380px) {
  .logo-wm span { display: none; }
}

/* --- 7. Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(var(--line-d) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(120% 100% at 70% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000 20%, transparent 78%);
}
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 900px; height: 900px; right: -180px; top: -320px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.20), transparent 62%);
}
.hero__inner { position: relative; z-index: 2; }

.hero--home .hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 130px);
}
@media (max-width: 1000px) { .hero--home .hero__inner { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent-ink); }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-d);
  position: relative; z-index: 2;
}
.hero__stats div {
  padding: 26px 0 30px;
  border-right: 1px solid var(--line-d);
}
.hero__stats div:last-child { border-right: 0; }
.hero__stats b {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1; color: #fff;
}
.hero__stats span {
  display: block; margin-top: 8px;
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--on-dark-mut);
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats div:nth-child(2) { border-right: 0; }
  .hero__stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line-d); }
}

/* Page hero (interior) */
.phero {
  background: var(--ink); color: var(--on-dark);
  position: relative; overflow: hidden; isolation: isolate;
}
.phero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(60px, 8vw, 104px) clamp(56px, 7vw, 88px);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
@media (max-width: 900px) { .phero__inner { grid-template-columns: 1fr; align-items: start; } }
.phero h1 { color: #fff; }

.crumbs {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--on-dark-mut); margin-bottom: 22px;
}
.crumbs a { color: var(--on-dark-mut); text-decoration: none; }
.crumbs a:hover { color: var(--accent-ink); }
.crumbs span { margin: 0 8px; color: var(--steel); }

/* --- 8. Cards ----------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: clamp(26px, 3vw, 36px);
  position: relative;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card::after {
  content: ""; position: absolute; left: -1px; top: -1px; height: 3px; width: 0;
  background: var(--accent-ink); transition: width .28s ease;
}
.card:hover { border-color: var(--line-l-2); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card:hover::after { width: calc(100% + 2px); }

.card--dark {
  background: var(--ink-2); border-color: var(--line-d); color: var(--on-dark);
}
.card--dark:hover { border-color: var(--line-d-2); box-shadow: none; }
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--on-dark-mut); }

.card__no {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .18em;
  color: var(--accent-ink); margin-bottom: 18px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-mut); font-size: .96rem; }
.card .link-arw { margin-top: auto; padding-top: 22px; }

.card__ico {
  width: 46px; height: 46px; margin-bottom: 22px; color: var(--accent-ink);
}
.card__ico svg { width: 100%; height: 100%; }

/* Card list (bulleted specs inside cards) */
.tick {
  list-style: none; padding: 0; margin: 4px 0 0;
  font-size: .93rem;
}
.tick li {
  position: relative; padding-left: 24px; margin-bottom: 9px; color: var(--text-mut);
}
.tick li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 2px; background: var(--accent-ink);
}
.card--dark .tick li, .t-dark .tick li, .t-dark2 .tick li { color: var(--on-dark-mut); }

/* --- 9. Feature rows ---------------------------------------------------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.frow + .frow { margin-top: clamp(56px, 7vw, 104px); }
.frow--flip > *:first-child { order: 2; }
@media (max-width: 900px) {
  .frow { grid-template-columns: 1fr; }
  .frow--flip > *:first-child { order: 0; }
}

/* --- 10. Spec table ----------------------------------------------------- */
.spec {
  width: 100%; border-collapse: collapse; font-size: .93rem;
}
.spec caption {
  text-align: left; font-family: var(--f-mono); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent-ink); padding-bottom: 14px;
}
.spec th, .spec td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line-l); vertical-align: top; }
.spec thead th {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mut); font-weight: 500; border-bottom: 2px solid var(--text);
}
.spec tbody th { font-weight: 600; color: var(--text); width: 40%; }
.spec td { color: var(--text-mut); }
.spec tbody tr:hover { background: var(--paper-2); }
.spec--dark th, .spec--dark td { border-color: var(--line-d); }
.spec--dark thead th { color: var(--on-dark-mut); border-bottom-color: var(--on-dark-mut); }
.spec--dark tbody th { color: #fff; }
.spec--dark td { color: var(--on-dark-mut); }
.spec--dark tbody tr:hover { background: rgba(255,255,255,.03); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
/* Only force a scroll width on narrow screens. At desktop the table should fit
   its column — inside a half-width .frow track a hard min-width clips instead. */
@media (max-width: 720px) {
  .table-scroll table { min-width: 560px; }
}

/* --- 11. Chips / tags --------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; list-style: none; }
.chips li {
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .07em;
  padding: 8px 14px; border: 1px solid var(--line-l-2); border-radius: 100px;
  color: var(--text-mut); background: var(--paper);
  transition: border-color .18s, color .18s;
}
.chips li:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.t-dark .chips li, .t-dark2 .chips li {
  border-color: var(--line-d-2); color: var(--on-dark-mut); background: transparent;
}
.chips li:has(a), .chips li:has(button) { padding: 0; }
.chips li a, .chips li button {
  display: block; padding: 8px 14px; text-decoration: none; cursor: pointer;
  font: inherit; color: inherit; background: none; border: 0; border-radius: 100px;
}
.chips li:has(button[aria-pressed="true"]) {
  border-color: var(--accent-ink); color: var(--accent-ink);
  background: rgba(var(--accent-rgb), .07);
}

/* --- 12. Stat band ------------------------------------------------------ */
.band {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border: 1px solid var(--line-l);
}
.band > div { padding: clamp(26px, 3vw, 38px); border-right: 1px solid var(--line-l); }
.band > div:last-child { border-right: 0; }
.band b {
  display: block; font-family: var(--f-display); font-weight: 700; line-height: 1;
  font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--text);
}
.band span {
  display: block; margin-top: 10px; font-family: var(--f-mono);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mut);
}
@media (max-width: 700px) { .band > div { border-right: 0; border-bottom: 1px solid var(--line-l); } }

/* --- 13. Process steps -------------------------------------------------- */
.steps { counter-reset: s; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 88px 1fr; gap: clamp(20px, 3vw, 40px);
  padding: clamp(26px, 3.2vw, 40px) 0;
  border-top: 1px solid var(--line-l);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-l); }
.step__n {
  font-family: var(--f-display); font-weight: 700; font-size: 2.6rem; line-height: .9;
  color: var(--line-l-2);
  transition: color .2s ease;
}
.step:hover .step__n { color: var(--accent-ink); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-mut); max-width: 70ch; }
.t-dark .step, .t-dark2 .step { border-color: var(--line-d); }
.t-dark .step__n, .t-dark2 .step__n { color: var(--ink-3); }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: 8px; } .step__n { font-size: 1.8rem; } }

/* --- 14. Quote / callout ------------------------------------------------ */
.pull {
  border-left: 4px solid var(--accent-ink);
  padding: 6px 0 6px 28px;
  font-family: var(--f-display); font-weight: 600; text-transform: none;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.2;
}
.pull cite {
  display: block; margin-top: 18px; font-family: var(--f-mono); font-style: normal;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mut);
}
.t-dark .pull cite, .t-dark2 .pull cite { color: var(--on-dark-mut); }

.note {
  border: 1px solid var(--line-l); border-left: 3px solid var(--accent-ink);
  background: var(--paper-2); padding: 22px 26px; font-size: .94rem; color: var(--text-mut);
}

/* --- 15. CTA band ------------------------------------------------------- */
.cta {
  background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; isolation: isolate;
}
.cta__hatch {
  position: absolute; inset: 0; z-index: 0; opacity: .55;
  background-image: repeating-linear-gradient(135deg, rgba(var(--accent-rgb),.16) 0 2px, transparent 2px 14px);
  mask-image: linear-gradient(100deg, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(100deg, #000 0%, transparent 62%);
}
.cta__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 4vw, 60px); align-items: center;
}
@media (max-width: 860px) { .cta__inner { grid-template-columns: 1fr; } }
.cta h2 { color: #fff; }

/* --- 16. Footer --------------------------------------------------------- */
.ftr { background: var(--ink-2); color: var(--on-dark-mut); font-size: .92rem; }
.ftr__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(52px, 6vw, 80px);
}
@media (max-width: 900px) { .ftr__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr__top { grid-template-columns: 1fr; } }

.ftr h4 {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; font-weight: 500; margin-bottom: 20px;
}
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 11px; }
.ftr a { color: var(--on-dark-mut); text-decoration: none; transition: color .16s; }
.ftr a:hover { color: var(--accent-ink); }
.ftr__logo { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; margin-bottom: 20px; }
.ftr__logo svg { height: 38px; width: auto; }
.ftr address { font-style: normal; line-height: 1.9; }
.ftr__bot {
  border-top: 1px solid var(--line-d);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.esop-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-d-2); padding: 12px 18px; border-radius: var(--r);
  margin-top: 22px; color: #fff;
}
.esop-badge svg { width: 26px; height: 26px; color: var(--accent-ink); flex: none; }
.esop-badge b { font-family: var(--f-display); text-transform: uppercase; font-size: 1rem; display: block; line-height: 1.1; }
.esop-badge span { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .16em; color: var(--on-dark-mut); }

/* --- 17. Forms ---------------------------------------------------------- */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-mut);
}
.field label .req { color: var(--accent-ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem;
  padding: 14px 16px;
  border: 1px solid var(--line-l-2);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--text);
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .18);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA6B2; }
.form__hint { font-size: .85rem; color: var(--text-mut); }

/* --- 18. Contact tiles -------------------------------------------------- */
.ctile {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px 0; border-bottom: 1px solid var(--line-l);
}
.ctile:first-child { border-top: 1px solid var(--line-l); }
.ctile__ico { width: 26px; height: 26px; color: var(--accent-ink); flex: none; margin-top: 3px; }
.ctile h4 {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-mut); font-weight: 500; margin: 0 0 8px;
}
.ctile a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 1.05rem; }
.ctile a:hover { color: var(--accent-ink); }
.ctile address { font-style: normal; font-weight: 600; font-size: 1.05rem; line-height: 1.5; }

/* --- 19. Reveal animation ---------------------------------------------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* --- 20. Misc utilities ------------------------------------------------- */
.mt-0{margin-top:0}.mt-1{margin-top:12px}.mt-2{margin-top:22px}.mt-3{margin-top:34px}.mt-4{margin-top:48px}
.mb-0{margin-bottom:0}.mb-2{margin-bottom:22px}.mb-3{margin-bottom:34px}.mb-4{margin-bottom:48px}
.sr { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.rule { height: 1px; background: var(--line-l); }
.t-dark .rule, .t-dark2 .rule { background: var(--line-d); }

.sec-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: clamp(36px, 4vw, 56px); }
@media (max-width: 760px) { .sec-head { grid-template-columns: 1fr; } }

.fig {
  border: 1px solid var(--line-l); background: var(--paper-2);
  border-radius: var(--r); padding: clamp(18px, 2.6vw, 32px);
}
.t-dark .fig, .t-dark2 .fig, .fig--dark {
  border-color: var(--line-d); background: rgba(255,255,255,.02);
}
.fig figcaption {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mut); margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line-l);
}
.t-dark .fig figcaption, .t-dark2 .fig figcaption, .fig--dark figcaption {
  color: var(--on-dark-mut); border-color: var(--line-d);
}
