/* ANK Equipment — landing site styles
   Layered on /tokens.css from the ANK design system. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:root {
  --rail-x: clamp(24px, 5vw, 96px);
  --max-w: 1440px;
  --hairline: 1px solid var(--border-2);
  --hairline-soft: 1px solid var(--border-1);
  --hairline-dark: 1px solid var(--border-inverse);
  --reveal-dur: 720ms;
}

.rail { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--rail-x); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--reveal-dur) var(--ease-out), transform var(--reveal-dur) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(14px); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1){ transition-delay: 40ms; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: 110ms; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: 250ms; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: 390ms; }
.reveal-stagger.in > *:nth-child(7){ transition-delay: 460ms; }
.reveal-stagger.in > *:nth-child(8){ transition-delay: 530ms; }

/* ---------- Common pieces ---------- */
.eyebrow {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow .num {
  color: var(--stone-400);
  font-variant-numeric: tabular-nums;
}
.eyebrow.on-dark { color: var(--gold-300); }
.eyebrow.on-dark .num { color: rgba(251,248,241,0.45); }

.hover-link {
  position: relative;
  display: inline-block;
  padding: 4px 0;
}
.hover-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.hover-link:hover::after { transform: scaleX(1); }

.btn {
  font-family: var(--font-wide);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 2px; border: 1px solid transparent;
  transition: all 200ms var(--ease-out);
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.btn .arrow { transition: transform 220ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--ink-900); color: var(--bone); }
.btn-primary:hover { background: var(--ink-700); box-shadow: inset 0 -1px 0 var(--gold-300); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn-ghost:hover { background: var(--ink-900); color: var(--bone); }
.btn-ghost-dark { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-ghost-dark:hover { background: var(--bone); color: var(--ink-900); }

/* =====================================================================
   01 — HEADER
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  height: 72px;
  background: var(--bone);
  border-bottom: var(--hairline-soft);
  transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out), height 240ms var(--ease-out);
}
.site-header.scrolled { background: var(--bone); border-bottom-color: var(--border-2); }
.site-header.dark { background: rgba(0,0,0,0.66); border-bottom-color: rgba(251,248,241,0.10); }
.site-header.dark.scrolled { background: rgba(0,0,0,0.84); }
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: inherit;
  text-decoration: none;
}
.brand .brand-mark {
  height: 44px; width: auto;
  display: block;
  margin: 2px 0;
}
.brand .word {
  font-family: var(--font-wide);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-700);
  padding-left: 14px;
  border-left: 1px solid var(--border-2);
  line-height: 1;
}
.site-header.dark .brand .word {
  color: rgba(251,248,241,0.78);
  border-left-color: rgba(251,248,241,0.18);
}
.nav-center { display: flex; gap: 36px; justify-self: center; }
.nav-center a {
  font-family: var(--font-wide);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: inherit;
}
.site-header.dark .nav-center a { color: rgba(251,248,241,0.85); }
.header-cta-slot {
  justify-self: end;
  display: flex; align-items: center; gap: 16px;
}
.header-cta {
  font-family: var(--font-wide);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 11px 18px;
  background: var(--ink-900); color: var(--bone);
  border-radius: 2px; border: 0;
  display: inline-flex; align-items: center; gap: 10px;
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out), background 200ms;
}
/* header CTA is now always visible — no hidden state */
.header-cta:hover { background: var(--gold-400); color: var(--ink-900); }
.site-header.dark .header-cta { background: var(--gold-300); color: var(--ink-900); }
.site-header.dark .header-cta:hover { background: var(--bone); }

/* =====================================================================
   02 — HERO
   ===================================================================== */
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--bone);
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
/* Full-bleed photograph; cropped so the drill + hands stay center-frame. */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: 38% 42%;
  background-repeat: no-repeat;
  z-index: 0;
  filter: contrast(1.02) saturate(0.96) brightness(1.04);
}
/* Left-side scrim only — keeps the drill visible, gives type a readable bed. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,9,8,0.88) 0%,
      rgba(10,9,8,0.72) 22%,
      rgba(10,9,8,0.38) 40%,
      rgba(10,9,8,0.08) 58%,
      rgba(10,9,8,0)    72%),
    linear-gradient(180deg,
      rgba(10,9,8,0.35) 0%,
      rgba(10,9,8,0)   22%,
      rgba(10,9,8,0)   72%,
      rgba(10,9,8,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-meta {
  position: absolute;
  top: 96px;
  right: clamp(24px, 5vw, 64px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(20,18,15,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(251,248,241,0.14);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251,248,241,0.78);
}
.hero-meta-k { color: var(--gold-300); }
.hero-meta-v { color: rgba(251,248,241,0.92); }
.hero-meta-dot {
  width: 4px; height: 4px;
  background: var(--gold-300);
  transform: rotate(45deg);
}
.hero-marquee {
  border-top: var(--hairline-dark);
  border-bottom: var(--hairline-dark);
  overflow: hidden;
  position: relative;
  height: 44px;
  display: flex; align-items: center;
}
.hero-marquee::before, .hero-marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.hero-marquee::before { left: 0; background: linear-gradient(90deg, var(--ink-900), transparent); }
.hero-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink-900), transparent); }
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  padding-right: 48px;
}
.marquee-track > span {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251,248,241,0.55);
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-track > span .dot { width: 6px; height: 6px; background: var(--gold-400); display: inline-block; transform: rotate(45deg); }
@keyframes marquee {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  padding: 120px var(--rail-x) 112px var(--rail-x);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-left {
  /* hard-left, sitting against the rail edge — matches every other section */
  width: min(680px, 100%);
  max-width: 680px;
  margin: 0;
  padding: 0;
  text-align: left;
  position: relative;
  justify-self: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-wide);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 40px;
}
.hero-eyebrow .rule {
  display: inline-block;
  width: 44px; height: 1px;
  background: var(--gold-300);
  opacity: 0.85;
}
.hero-eyebrow-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}
.hero-eyebrow-num .ord {
  font-size: 0.72em;
  vertical-align: 0.4em;
  margin: 0 1px 0 -1px;
  text-transform: lowercase;
  letter-spacing: 0;
}
.hero-eyebrow-sep {
  color: rgba(220, 208, 169, 0.40);
  font-weight: 400;
  font-size: 11px;
}
.hero-eyebrow-label {
  color: rgba(251, 248, 241, 0.88);
}
.hero-title {
  font-family: var(--font-wide), var(--font-body);
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: nowrap;
  color: var(--bone);
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
  display: block;
}
.hero-title .hero-title-line,
.hero-title .accent {
  display: block;
  white-space: nowrap;
}
.hero-title .accent {
  color: var(--gold-300);
  font-style: normal;
  font-weight: 400;
  position: relative;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  max-width: 46ch;
  color: rgba(251,248,241,0.86);
  margin: 32px 0 0;
  padding: 0;
  border: 0;
  text-wrap: pretty;
  text-shadow: 0 1px 16px rgba(0,0,0,0.65);
}

.hero-cta-row {
  display: flex; align-items: center; gap: 28px;
  margin-top: 44px;
}
.hero-cta {
  background: var(--gold-300); color: var(--ink-900);
  padding: 18px 26px;
  font-family: var(--font-wide);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 0; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 14px;
  transition: all 200ms var(--ease-out);
}
.hero-cta:hover { background: var(--bone); }
.hero-cta:hover .arrow { transform: translateX(6px); }
.hero-cta .arrow { transition: transform 220ms var(--ease-out); }
.hero-secondary {
  font-family: var(--font-wide);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,248,241,0.85);
  position: relative; padding: 4px 0;
}
.hero-secondary:hover { color: var(--gold-300); }



/* =====================================================================
   03 — TRUST BAR
   ===================================================================== */
.trust {
  border-bottom: var(--hairline);
  padding: 40px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-logos .wm {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-right: var(--hairline);
  min-height: 96px;
}
.trust-logos .wm:first-child { padding-left: 0; }
.trust-logos .wm:last-child { border-right: 0; padding-right: 0; }
.trust-logos .wm img {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* =====================================================================
   04 — NUMBERS (dark band)
   ===================================================================== */
.numbers {
  background: var(--ink-900);
  color: var(--bone);
  padding: 96px 0;
  position: relative;
}
.numbers-head { margin-bottom: 56px; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.numbers-grid .stat {
  padding: 24px 28px 24px 0;
  border-right: 1px solid rgba(251,248,241,0.12);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-content: start;
  min-height: 200px;
}
.numbers-grid .stat:not(:first-child) { padding-left: 28px; }
.numbers-grid .stat:last-child { border-right: 0; padding-right: 0; }
.numbers-grid .stat .lbl {
  font-family: var(--font-wide);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,248,241,0.55);
  max-width: 22ch;
  line-height: 1.25;
}
.numbers-grid .stat .fig {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 7.6vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  align-self: end;
}
.numbers-grid .stat .fig .pre {
  color: var(--gold-300);
  font-weight: 300;
  margin-right: 4px;
  font-size: 0.7em;
  vertical-align: 0.04em;
}
.numbers-grid .stat .fig sup {
  font-size: 0.36em; vertical-align: top;
  color: var(--gold-300); font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0;
  top: 0.45em;
  position: relative;
}

/* =====================================================================
   05 — WHAT WE OFFER (horizontal slider/carousel)
   ===================================================================== */
.offer { padding: 128px 0; border-bottom: var(--hairline); }
.offer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 32px;
}
.slider-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--stone-500);
}
.slider-progress .frac span { color: var(--ink-900); }
.slider-progress .bar {
  width: 160px; height: 1px;
  background: var(--border-2);
  display: block; position: relative;
}
.slider-progress .bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--ink-900);
  transition: width 320ms var(--ease-out);
}
.slider-buttons { display: flex; gap: 8px; }
.sb-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--ink-900);
  background: var(--bone);
  color: var(--ink-900);
  display: grid; place-items: center;
  border-radius: 0;
  transition: all 200ms var(--ease-out);
}
.sb-btn:hover:not(:disabled) { background: var(--ink-900); color: var(--bone); }
.sb-btn:disabled { opacity: 0.25; cursor: not-allowed; }

.cat-rail-wrap {
  position: relative;
  margin: 0 calc(var(--rail-x) * -1);
  padding: 0 var(--rail-x) 8px;
  overflow: hidden;
}
.cat-rail-wrap::after {
  content: "";
  position: absolute; top: 0; bottom: 8px; right: 0;
  width: var(--rail-x);
  background: linear-gradient(to left, var(--bg-1), transparent);
  pointer-events: none;
}
.cat-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 16px;
}
.cat-rail::-webkit-scrollbar { display: none; }

.cat-tile {
  --tile-w: 380px;
  --media-h: 300px;
  flex: 0 0 var(--tile-w);
  width: var(--tile-w);
  scroll-snap-align: start;
  background: var(--plaster);
  border: var(--hairline);
  display: grid;
  grid-template-rows: var(--media-h) 1fr;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.cat-tile.is-active {
  border-color: var(--ink-900);
  box-shadow: 0 18px 44px -28px rgba(0,0,0,0.35);
}

.cat-tile .cat-media {
  position: relative;
  height: var(--media-h);
  overflow: hidden;
  background: var(--stone-200);
}
.cat-tile .cat-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) contrast(0.96);
  transition: filter 480ms var(--ease-out);
}
.cat-tile.is-active .cat-media img {
  filter: grayscale(0) contrast(1);
}

.cat-tile .cat-body {
  padding: 26px 28px 22px;
  display: grid;
  align-content: space-between;
  gap: 14px;
}
.cat-tile .cat-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 16ch;
}
.cat-tile .cat-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.cat-tile .cat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: var(--hairline);
  font-family: var(--font-wide);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-500);
  transition: color 320ms, border-top-color 320ms;
}
.cat-tile.is-active .cat-foot {
  color: var(--gold-500);
  border-top-color: var(--gold-300);
}
.cat-tile .cat-cta-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform 320ms var(--ease-out);
}
.cat-tile.is-active .cat-cta-arrow { transform: translateX(6px); }

@media (hover: hover) {
  .cat-tile:not(.is-active):hover { border-color: var(--ink-900); }
  .cat-tile:not(.is-active):hover .cat-media img { filter: grayscale(0.1) contrast(1); }
}

.offer-foot {
  margin-top: 48px;
  display: flex; justify-content: flex-start;
  padding-top: 0;
}

/* =====================================================================
   06 — WHAT WE DO (about)
   ===================================================================== */
.about { padding: 128px 0; border-bottom: var(--hairline); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: stretch;
}
.about .copy {
  display: grid;
  align-content: start;
  gap: 28px;
}
.about .copy .eyebrow { margin-bottom: 12px; }
.about .lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.014em;
  color: var(--ink-900);
  margin: 0;
  max-width: 24ch;
}
.about .punch {
  font-family: var(--font-wide);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0;
}
.about .copy .btn { margin-top: 12px; justify-self: start; }

.about .photos { display: block; }
.about .ph {
  position: relative;
  overflow: hidden;
  border: var(--hairline);
  background: var(--stone-200);
  height: 100%;
  min-height: 520px;
  display: block;
}
.about .ph .ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* =====================================================================
   07 — WHY ANK (full-bleed alternating rows + featured dark band)
   ===================================================================== */
.why {
  padding: 0;
  background: var(--bg-2);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.why-head-rail { padding-top: 96px; padding-bottom: 28px; }
.why-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.why-head .eyebrow { margin: 0; }
.why-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
}
.why-legend-rule {
  display: inline-block;
  width: 64px;
  height: 1px;
  background: var(--gold-400);
}

/* --- three-column editorial cards --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--hairline);
  position: relative;
}
.why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px clamp(28px, 3vw, 48px) 44px;
  background: var(--bg-2);
  border-right: var(--hairline);
  min-height: 380px;
  overflow: hidden;
  transition: background var(--dur-base) var(--ease-out);
}
.why-legend { gap: 10px; }
.why-card:last-child { border-right: 0; }
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-slow) var(--ease-out);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.why-prefix {
  font-family: var(--font-wide);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.why-prefix .slash { color: var(--stone-400); font-weight: 400; }
.why-prefix-n { color: var(--ink-900); font-weight: 700; letter-spacing: 0.04em; }
.why-rule {
  flex: 1 1 auto;
  height: 1px;
  background: var(--border-2);
  min-width: 16px;
}
.why-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-500);
  white-space: nowrap;
}

.why-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(140px, 13vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-900);
  text-stroke: 1.5px var(--ink-900);
  display: block;
  margin: 8px 0 28px;
  font-variant-numeric: lining-nums tabular-nums;
}

.why-card-body { flex: 1 1 auto; max-width: 36ch; }
.why-lbl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink-900);
  text-wrap: pretty;
}
.why-lead {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--stone-500);
  margin: 0;
  max-width: 38ch;
  text-wrap: pretty;
}
.why-tail {
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink-900);
  text-wrap: pretty;
}
.why-tail .hl {
  background-image: linear-gradient(transparent 62%, var(--gold-200) 62%, var(--gold-200) 96%, transparent 96%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}

/* --- featured dark middle card --- */
.why-card.tone-dark {
  background: var(--ink-900);
  color: var(--bone);
  border-right-color: var(--ink-900);
}
.why-card.tone-dark + .why-card { border-left: 0; }
.why-card.tone-dark::before { background: var(--gold-200); }
.why-card.tone-dark .why-prefix { color: var(--gold-200); }
.why-card.tone-dark .why-prefix .slash { color: var(--stone-400); }
.why-card.tone-dark .why-prefix-n { color: var(--bone); }
.why-card.tone-dark .why-rule { background: rgba(220, 208, 169, 0.22); }
.why-card.tone-dark .why-tag { color: var(--gold-300); }
.why-card.tone-dark .why-num {
  -webkit-text-stroke-color: var(--gold-200);
  text-stroke: 1.5px var(--gold-200);
}
.why-card.tone-dark .why-lbl { color: var(--bone); }
.why-card.tone-dark .why-lead { color: var(--stone-300); }
.why-card.tone-dark .why-tail {
  color: var(--bone);
  border-top-color: rgba(220, 208, 169, 0.22);
}
.why-card.tone-dark .why-tail .hl {
  background-image: linear-gradient(transparent 62%, rgba(220, 208, 169, 0.28) 62%, rgba(220, 208, 169, 0.28) 96%, transparent 96%);
  color: var(--gold-200);
}

/* =====================================================================
   07b — CTA BANNER (narrow full-bleed image with centered Contact Us)
   ===================================================================== */
.cta-banner {
  position: relative;
  width: 100%;
  height: clamp(220px, 26vw, 340px);
  overflow: hidden;
  isolation: isolate;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.cta-banner-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/cta-banner.png");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.cta-banner:hover .cta-banner-media { transform: scale(1.04); }
.cta-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20,18,15,0.05) 0%, rgba(20,18,15,0.08) 55%, rgba(20,18,15,0.28) 85%, rgba(20,18,15,0.22) 100%),
    linear-gradient(180deg, rgba(20,18,15,0.04) 0%, rgba(20,18,15,0.14) 100%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 18% 0 clamp(28px, 6vw, 96px);
}
.cta-banner-btn {
  font-size: 13px;
  letter-spacing: 0.22em;
  padding: 20px 36px;
  background: var(--bone);
  color: var(--ink-900);
  border-color: var(--bone);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 2px 0 rgba(0,0,0,0.15);
}
.cta-banner-btn:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  color: var(--ink-900);
  box-shadow: 0 22px 48px rgba(0,0,0,0.4), inset 0 -1px 0 rgba(0,0,0,0.12);
}

/* =====================================================================
   08 — HOW TO ORDER (large step rows w/ icons)
   ===================================================================== */
.order-flow {
  padding: 128px 0;
  background: var(--bg-2);
  border-bottom: var(--hairline);
}
.order-head { margin-bottom: 56px; }
.order-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-900);
  border-bottom: var(--hairline);
}
.order-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 120px 2fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: var(--hairline);
  position: relative;
  transition: background var(--dur-base) var(--ease-out);
}
.order-row:last-child { border-bottom: 0; }
.order-row:hover { background: var(--bone); }

.order-num {
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: var(--ink-900);
}
.order-num .word {
  font-family: var(--font-wide);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold-500);
  position: relative;
  padding-left: 0;
}
.order-num .digit {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  font-variant-numeric: lining-nums tabular-nums;
}

.order-icon {
  width: 96px; height: 96px;
  border: 1px solid var(--ink-900);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-900);
  background: var(--bone);
  justify-self: center;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.order-icon svg { width: 48px; height: 48px; display: block; }
.order-row:hover .order-icon {
  background: var(--ink-900);
  color: var(--gold-200);
  border-color: var(--ink-900);
}

.order-body { max-width: 56ch; }
.order-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.order-body p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 48ch;
}

/* =====================================================================
   09 — WHAT YOU GET (horizontal strip)
   ===================================================================== */
.spec {
  padding: 0;
  background: var(--ink-900);
  color: var(--bone);
}
.spec-head {
  padding: 48px 0 24px;
  border-bottom: var(--hairline-dark);
}
.spec-head .eyebrow { margin-bottom: 0; }
.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 0 48px;
}
.spec-item {
  border-right: var(--hairline-dark);
  padding: 0 32px 0 0;
  display: grid;
  gap: 22px;
  align-content: start;
}
.spec-item:nth-child(n+2) { padding-left: 32px; }
.spec-item:last-child { border-right: 0; padding-right: 0; }
.spec-item .tick { display: none; }
.spec-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--bone);
  max-width: 18ch;
}
.spec-item .meta { display: none; }

/* =====================================================================
   10 — TESTIMONIALS (editorial blockquotes, oversized opening quote mark)
   ===================================================================== */
.quotes { padding: 128px 0; border-bottom: var(--hairline); }
.quotes-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.quotes-head .since {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-500);
  align-self: end;
  text-align: right;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--hairline);
}
.q-card {
  display: flex;
  flex-direction: column;
  padding: 56px 40px 48px;
  border-bottom: var(--hairline);
  border-right: var(--hairline);
  margin: 0;
  position: relative;
}
.q-card:last-child { border-right: 0; }
.q-portrait {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 28px;
  flex: 0 0 auto;
}
.q-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.q-card .mark {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 140px;
  line-height: 0.6;
  color: var(--gold-300);
  letter-spacing: -0.04em;
  margin: 0 0 -16px;
  text-align: left;
  user-select: none;
  height: 60px;
}
.q-card .stars {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.q-card .stars .star {
  width: 18px;
  height: 18px;
  fill: var(--gold-300, #b48a2a);
  display: block;
}
.q-card blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.45;
  color: var(--ink-900);
  margin: 0;
  letter-spacing: -0.005em;
  flex: 1 1 auto;
}
.q-card .attrib {
  margin-top: 32px;
  padding-top: 20px;
  border-top: var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.q-card .attrib .who {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-900);
}
.q-card .attrib .role {
  font-family: var(--font-wide);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-500);
}
@media (max-width: 900px) {
  .quotes-grid { grid-template-columns: 1fr; }
  .q-card { border-right: 0; }
}

/* =====================================================================
   11 — REQUEST A QUOTE
   ===================================================================== */
.quote-section { padding: 128px 0; background: var(--bg-2); border-bottom: var(--hairline); }
.quote-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 96px;
  align-items: stretch;
}
.quote-form .head {
  margin-bottom: 56px;
}
.quote-form h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 14px 0 16px;
  max-width: 18ch;
}
.quote-form .head .sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 42ch;
  margin: 0;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--hairline);
}
.field {
  position: relative;
  border-bottom: var(--hairline);
  padding: 22px 0 14px;
}
.field.full { grid-column: span 2; }
.field:nth-child(odd):not(.full) { padding-right: 24px; border-right: var(--hairline); }
.field:nth-child(even):not(.full) { padding-left: 24px; }
.field label {
  position: absolute;
  top: 22px; left: 0;
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-500);
  pointer-events: none;
  transition: all 200ms var(--ease-out);
}
.field:nth-child(even):not(.full) label { left: 24px; }
.field input,
.field select,
.field .ms-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0 6px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
  outline: none;
}
.field.has-value label,
.field.is-focus label {
  top: 4px;
  font-size: 9.5px;
  color: var(--gold-500);
}
.field .req {
  color: var(--gold-500);
  margin-left: 4px;
}
.field .ms-trigger {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; padding-right: 24px;
  text-align: left;
  background: transparent; border: 0;
}
.field .ms-trigger .chev {
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--ink-900);
  border-bottom: 1.5px solid var(--ink-900);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 200ms;
}
.field.is-open .ms-trigger .chev { transform: rotate(-135deg); margin-top: 4px; }
.field .ms-pop {
  position: absolute;
  top: calc(100% + 1px); left: 0; right: 0;
  background: var(--bone);
  border: var(--hairline);
  z-index: 10;
  max-height: 280px;
  overflow: auto;
  padding: 10px 0;
  box-shadow: var(--shadow-3);
}
.field .ms-pop label {
  position: static;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-900);
  cursor: pointer;
  font-weight: 400;
  transition: background 120ms;
}
.field .ms-pop label:hover { background: var(--bg-2); }
.field .ms-pop label input {
  appearance: none;
  width: 14px; height: 14px;
  border: 1px solid var(--stone-400);
  border-radius: 2px;
  display: grid; place-items: center;
  padding: 0;
  flex: 0 0 auto;
  background: var(--bone);
}
.field .ms-pop label input:checked {
  background: var(--ink-900);
  border-color: var(--ink-900);
}
.field .ms-pop label input:checked::after {
  content: "✓";
  color: var(--gold-300);
  font-size: 11px;
  line-height: 1;
}
.field .chips {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 6px 0 0;
  min-height: 22px;
}
.field .chip {
  font-family: var(--font-wide);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink-900);
  color: var(--bone);
  padding: 5px 10px 5px 12px;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
}
.field .chip button {
  background: transparent; border: 0; color: var(--gold-300);
  font-size: 14px; line-height: 1;
  padding: 0;
}

.form-actions {
  margin-top: 36px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.form-actions .legal {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--stone-500);
  max-width: 36ch;
  line-height: 1.5;
}
.form-actions button {
  background: var(--ink-900);
  color: var(--bone);
  border: 0;
  padding: 18px 28px;
  font-family: var(--font-wide);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 14px;
  transition: all 200ms;
}
.form-actions button:hover { background: var(--gold-400); color: var(--ink-900); }

.skip-card {
  background: var(--gold-200);          /* Champagne */
  color: var(--ink-900);
  padding: 56px 44px 40px;
  border-radius: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
/* subtle vertical hairline accent */
.skip-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--ink-900);
}

.skip-card .skip-top { display: grid; gap: 18px; }
.skip-card .eyebrow.on-gold {
  color: var(--ink-900);
  opacity: 0.7;
}
.skip-card .skip-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink-900);
}
.skip-card .skip-lede {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 32ch;
  margin: 0;
}

.skip-card .meta {
  display: grid;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(20,18,16,0.22);
}
.skip-card .meta .row {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20,18,16,0.14);
}
.skip-card .meta .row:last-child { border-bottom: 0; }

.skip-card .meta .k {
  font-family: var(--font-wide);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.55);
}
.skip-card .meta .v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.008em;
  color: var(--ink-900);
}
.skip-card .meta .v.link {
  text-decoration: none;
  border-bottom: 1px solid rgba(20,18,16,0.35);
  padding-bottom: 1px;
  transition: border-color 200ms;
}
.skip-card .meta .v.link:hover { border-bottom-color: var(--ink-900); }
.skip-card .meta .row .sub {
  font-family: var(--font-wide);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.55);
}

.skip-card .skip-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(20,18,16,0.22);
}
.skip-card .skip-foot .ft-k {
  font-family: var(--font-wide);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.55);
}
.skip-card .skip-foot .ft-v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

/* =====================================================================
   12 — FAQ
   ===================================================================== */
.faq { padding: 128px 0; border-bottom: var(--hairline); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}
.faq-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 14px 0 32px;
  max-width: 22ch;
}
.faq-head .help {
  margin-top: 32px;
  padding-top: 28px;
  border-top: var(--hairline);
  display: grid;
  gap: 8px;
}
.faq-head .help .k {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-500);
}
.faq-head .help a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 12px;
}
.faq-head .help a:hover { color: var(--gold-500); }
.faq-list { border-top: var(--hairline); }
.faq-item { border-bottom: var(--hairline); }
.faq-item summary, .faq-q {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 16px;
  align-items: center;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q .qnum {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone-500);
  font-variant-numeric: tabular-nums;
}
.faq-q .q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.008em;
  color: var(--ink-900);
}
.faq-q .pm {
  width: 24px; height: 24px;
  position: relative;
  justify-self: end;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute;
  background: var(--ink-900);
  transition: transform 280ms var(--ease-out);
}
.faq-q .pm::before { top: 11px; left: 0; right: 0; height: 1.5px; }
.faq-q .pm::after  { left: 11px; top: 0; bottom: 0; width: 1.5px; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-item.open .pm::before { background: var(--gold-500); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease-out);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
}
.faq-a {
  padding: 0 36px 28px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 64ch;
}

/* =====================================================================
   13 — FOOTER
   ===================================================================== */
.site-footer {
  background: var(--ink-900);
  color: rgba(251,248,241,0.7);
  padding: 128px 0 40px;
}
.footer-mast {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 96px;
  border-bottom: var(--hairline-dark);
}
.footer-mast .brand-block { display: grid; gap: 24px; align-content: start; }
.footer-mast .brand-block .footer-mark {
  height: 132px;
  width: auto;
  display: block;
  margin: -16px 0 0 -8px;
}
.footer-mast .brand-block .strap {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 36ch;
  color: rgba(251,248,241,0.55);
}
.footer-col h4 {
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 24px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.005em;
}
.footer-col a:hover { color: var(--gold-300); }
.footer-foot {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  font-family: var(--font-wide);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,248,241,0.45);
}
.footer-foot .center { justify-self: center; }
.footer-foot .end { justify-self: end; display: flex; gap: 24px; align-items: center;}
.footer-foot a:hover { color: var(--gold-300); }
.footer-cross {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold-300);
  position: relative; padding: 6px 0;
}
.footer-cross::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-300);
  transform: scaleX(0); transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.footer-cross:hover::after { transform: scaleX(1); }

/* =====================================================================
   Responsive — mobile collapse
   ===================================================================== */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 96px; padding-bottom: 64px; }
  .hero-left { max-width: 100%; padding-right: 12px; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .hero-title .hero-title-line,
  .hero-title .accent { white-space: normal; }
  .hero::after { background-position: 65% center; opacity: 0.55; }
  .hero::before { background: linear-gradient(180deg, rgba(20,18,15,0.92) 0%, rgba(20,18,15,0.78) 50%, rgba(20,18,15,0.92) 100%); }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .trust-logos { flex-wrap: wrap; gap: 12px 24px; justify-content: flex-start; }
  .trust-logos .wm { flex: 0 0 auto; padding: 0 12px 0 0; border-right: 0; font-size: 22px; }
  .offer-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .slider-controls { width: 100%; justify-content: space-between; }
  .slider-progress .bar { width: 80px; }
  .cat-rail { padding: 8px 0 16px; }
  .cat-tile { --tile-w: 280px; --media-h: 220px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid .stat { padding: 36px 0; border-right: 0; border-bottom: var(--hairline-dark);}
  .numbers-grid .stat:nth-child(2n) { padding-left: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about .ph { min-height: 320px; }
  .why-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .why-legend { font-size: 10.5px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 48px 24px 40px; min-height: 0; border-right: 0; border-bottom: var(--hairline); }
  .why-card:last-child { border-bottom: 0; }
  .why-card.tone-dark { border-bottom-color: var(--ink-900); }
  .why-num { font-size: 120px; margin: 4px 0 20px; }
  .why-lbl { font-size: 26px; margin-bottom: 14px; }
  .why-lead { font-size: 15px; }
  .why-tail { font-size: 17px; margin-top: 28px; padding-top: 20px; }
  .why-tag { display: none; }
  .stepper { grid-template-columns: 1fr; gap: 36px; }
  .stepper::before { top: 0; bottom: 0; left: 16px; right: auto; width: 1px; height: auto; }
  .step:not(:last-child)::after { display: none; }
  .step { display: grid; grid-template-columns: 32px 1fr; gap: 18px; padding: 0; align-items: start; }
  .step .marker { grid-row: span 3; margin-top: 4px; margin-bottom: 0; }
  .order-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
    align-items: start;
  }
  .order-num { gap: 14px; }
  .order-num .digit { font-size: 88px; }
  .order-icon { width: 72px; height: 72px; justify-self: start; }
  .order-icon svg { width: 36px; height: 36px; }
  .order-body h3 { font-size: 22px; }
  .spec-strip { grid-template-columns: 1fr 1fr; gap: 32px 0; padding: 40px 0;}
  .spec-item { padding: 0 24px 24px 0 !important; border-bottom: var(--hairline-dark); }
  .spec-item:nth-child(2n) { padding-left: 24px !important; border-right: 0; }
  .quotes-head { grid-template-columns: 1fr; gap: 24px; }
  .quotes-head .since { text-align: left; }
  .q-cell { grid-template-columns: 1fr; gap: 8px; padding: 40px 0; }
  .q-cell .mark { font-size: 120px; }
  .quote-grid { grid-template-columns: 1fr; gap: 56px; }
  .skip-card { position: static; }
  .field-grid { grid-template-columns: 1fr; }
  .field, .field:nth-child(odd):not(.full), .field:nth-child(even):not(.full) {
    grid-column: span 1; padding: 22px 0 14px !important; border-right: 0;
  }
  .field:nth-child(even):not(.full) label { left: 0; }
  .form-actions { flex-direction: column; align-items: flex-start; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-mast { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-foot { grid-template-columns: 1fr; gap: 12px; }
  .footer-foot .end { justify-self: start; }
}

/* dead rule placeholder */
.tile-edge { display: none; }
