/* ═══════════════════════════════════════════════════════════
   LUDWORK — field manual
   Paper stock, ink navy, safety rust. Technical warmth.
   ═══════════════════════════════════════════════════════════ */

:root {
  --paper:    #F5F1E8;
  --paper-2:  #EBE4D4;
  --paper-3:  #DED5C0;
  --ink:      #14202E;
  --ink-soft: #3A4758;
  --navy:     #1C3A5A;
  --rust:     #C4471F;
  --rust-dk:  #9E3614;
  --brass:    #BE8A2C;
  --sage:     #56694F;

  --shell: 1180px;
  --panel-w: 640px;

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Archivo", "Helvetica Neue", sans-serif;
  --f-mono: "Azeret Mono", ui-monospace, monospace;

  --lift: 0 1px 2px rgba(20,32,46,.06), 0 8px 24px rgba(20,32,46,.10),
          0 28px 64px rgba(20,32,46,.14);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

::selection { background: var(--rust); color: var(--paper); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper);
  padding: .8rem 1.2rem; font-family: var(--f-mono); font-size: 13px;
}
.skip:focus { left: 0; }

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

/* ── shell ───────────────────────────────────────────────── */
.shell {
  width: min(100% - 3rem, var(--shell));
  margin-inline: auto;
}

/* ── type ────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--rust); flex: none;
}
.eyebrow--light { color: var(--brass); }
.eyebrow--light::before { background: var(--brass); }
.eyebrow .num { color: var(--ink-soft); }
.eyebrow--light .num { color: rgba(245,241,232,.6); }

.prose p { margin: 0 0 1.15rem; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }

.pull {
  border-left: 2px solid var(--rust);
  padding-left: 1.4rem;
  font-size: 18.5px;
  color: var(--ink) !important;
  font-style: italic;
}

/* ── nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  transition: background .35s var(--ease), box-shadow .35s var(--ease),
              padding .35s var(--ease);
}
.nav.is-stuck {
  background: rgba(245,241,232,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(20,32,46,.12);
  padding-block: .75rem;
}
.nav__mark {
  font-family: var(--f-display);
  font-size: 23px; font-weight: 600; letter-spacing: -.02em;
  color: var(--paper); text-decoration: none;
  transition: color .35s var(--ease);
  display: flex; align-items: center; gap: .65rem;
}
.nav__sealwrap {
  position: relative; width: 36px; height: 36px; flex: none;
}
.nav__seal {
  position: absolute; inset: 0; width: 36px; height: 36px;
  transition: opacity .35s var(--ease);
}
.nav__seal--onLight { opacity: 0; }
.nav.is-stuck .nav__seal--onDark { opacity: 0; }
.nav.is-stuck .nav__seal--onLight { opacity: 1; }
.nav.is-stuck .nav__mark { color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; text-decoration: none;
  color: rgba(245,241,232,.82);
  transition: color .25s var(--ease);
}
.nav.is-stuck .nav__links a { color: var(--ink-soft); }
.nav__links a:hover { color: var(--rust); }
.nav__cta {
  border: 1px solid rgba(245,241,232,.45);
  padding: .5rem 1.1rem; border-radius: 2px;
}
.nav.is-stuck .nav__cta { border-color: rgba(20,32,46,.28); }
.nav__cta:hover { border-color: var(--rust); }
@media (max-width: 820px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ── buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-body);
  font-size: 15px; font-weight: 600;
  padding: .95rem 1.7rem; border-radius: 2px;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease);
}
.btn--primary {
  background: var(--rust); color: var(--paper);
  box-shadow: 0 2px 0 var(--rust-dk);
}
.btn--primary:hover { background: var(--rust-dk); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  border-color: rgba(245,241,232,.4); color: var(--paper);
}
.btn--ghost:hover { border-color: var(--paper); transform: translateY(-2px); }

/* ═══ PARALLAX: fixed bg, floating panels ═══════════════════
   clip-path on the section makes position:fixed children
   scope to it — works on iOS where background-attachment doesn't.
   ══════════════════════════════════════════════════════════ */
.para {
  position: relative;
  clip-path: inset(0);
  padding-block: clamp(6rem, 14vh, 9rem);
}
.para__bg {
  position: fixed; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
/* grain */
.para__bg::after {
  content: ""; position: absolute; inset: 0;
  opacity: .16; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.para > .shell, .para > .hero, .para > .scroll-hint { position: relative; z-index: 2; }

/* ── background plates (swap for photography — see README) ── */
.bg--hero {
  background-color: #0E1925;
  background-image:
    linear-gradient(100deg, rgba(10,17,25,.92) 0%, rgba(12,20,32,.72) 48%, rgba(14,25,37,.55) 100%),
    radial-gradient(120% 90% at 18% 88%, rgba(196,71,31,.34) 0%, transparent 58%),
    url("images/hero-night-industrial.jpg"),
    linear-gradient(168deg, #162434 0%, #0C1420 62%, #0A1119 100%);
}
.bg--family {
  background-color: #6B4B2A;
  background-image:
    radial-gradient(85% 75% at 74% 26%, rgba(233,183,96,.82) 0%, transparent 60%),
    radial-gradient(95% 80% at 14% 84%, rgba(150,78,40,.72) 0%, transparent 62%),
    linear-gradient(150deg, #8A5F33 0%, #5C3F22 58%, #3A2816 100%);
}
.bg--phones {
  background-color: #1F3244;
  background-image:
    radial-gradient(80% 70% at 82% 78%, rgba(196,71,31,.40) 0%, transparent 60%),
    radial-gradient(90% 75% at 16% 18%, rgba(88,124,156,.62) 0%, transparent 62%),
    linear-gradient(200deg, #2A4258 0%, #18293A 60%, #101C28 100%);
}
.bg--crew {
  background-color: #7A3B1C;
  background-image:
    linear-gradient(255deg, rgba(20,32,46,.86) 0%, rgba(62,29,14,.62) 52%, rgba(94,48,22,.55) 100%),
    radial-gradient(80% 72% at 24% 22%, rgba(232,150,64,.34) 0%, transparent 58%),
    url("images/crew-workbench.jpg"),
    linear-gradient(160deg, #94502A 0%, #642F16 60%, #3E1D0E 100%);
}
.bg--training {
  background-color: #3D4F3A;
  background-image:
    linear-gradient(100deg, rgba(16,25,34,.88) 0%, rgba(30,40,28,.68) 50%, rgba(44,62,44,.58) 100%),
    radial-gradient(85% 70% at 78% 24%, rgba(190,138,44,.26) 0%, transparent 60%),
    url("images/training-hands-tools.jpg"),
    linear-gradient(175deg, #4C6045 0%, #33422F 58%, #1E281C 100%);
}
.bg--backoffice {
  background-color: #2E3844;
  background-image:
    linear-gradient(255deg, rgba(18,24,32,.88) 0%, rgba(38,47,58,.66) 52%, rgba(59,71,86,.55) 100%),
    radial-gradient(80% 68% at 22% 26%, rgba(190,138,44,.30) 0%, transparent 58%),
    url("images/backoffice-lamp.jpg"),
    linear-gradient(190deg, #3B4756 0%, #262F3A 60%, #171D25 100%);
}
.bg--guests {
  background-color: #7E5A22;
  background-image:
    radial-gradient(84% 74% at 70% 76%, rgba(240,196,110,.74) 0%, transparent 60%),
    radial-gradient(88% 74% at 16% 22%, rgba(150,96,34,.70) 0%, transparent 60%),
    linear-gradient(155deg, #9A6E2C 0%, #6A4A1C 58%, #402C10 100%);
}
.bg--roi {
  background-color: #14202E;
  background-image:
    linear-gradient(255deg, rgba(11,19,28,.88) 0%, rgba(17,28,40,.70) 50%, rgba(27,43,61,.60) 100%),
    radial-gradient(90% 78% at 18% 84%, rgba(196,71,31,.26) 0%, transparent 62%),
    url("images/roi-desk-night.jpg"),
    linear-gradient(185deg, #1B2B3D 0%, #111C28 62%, #0B131C 100%);
}
.bg--contact {
  background-color: #23394C;
  background-image:
    radial-gradient(90% 80% at 50% 14%, rgba(190,138,44,.42) 0%, transparent 58%),
    radial-gradient(85% 75% at 16% 88%, rgba(196,71,31,.38) 0%, transparent 60%),
    linear-gradient(170deg, #2B4356 0%, #1A2C3C 60%, #101D28 100%);
}

/* ── hero ────────────────────────────────────────────────── */
.hero {
  width: min(100% - 3rem, var(--shell));
  margin-inline: auto;
  min-height: 78vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 6rem 4rem;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.028em;
  color: var(--paper);
  margin: 0 0 1.6rem;
  max-width: 16ch;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
  color: rgba(245,241,232,.80);
  max-width: 54ch; margin: 0 0 2.6rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__who {
  margin: 2.6rem 0 0; max-width: 62ch;
  font-size: 13.5px; line-height: 1.75;
  color: rgba(245,241,232,.52);
  border-top: 1px solid rgba(245,241,232,.15);
  padding-top: 1.1rem;
}
.hero__who span {
  display: block; font-family: var(--f-mono); font-size: 10.5px;
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .5rem;
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 2.2rem;
  translate: -50% 0;
}
.scroll-hint span {
  display: block; width: 1px; height: 46px;
  background: linear-gradient(to bottom, transparent, rgba(245,241,232,.7));
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
  0%, 100% { opacity: 0; transform: translateY(-10px); }
  40%, 60% { opacity: 1; transform: translateY(0); }
}

/* ── data plate ──────────────────────────────────────────── */
.plate-wrap {
  background: var(--ink);
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 4.5rem);
}
.plate {
  width: min(100%, var(--shell));
  margin-inline: auto;
  position: relative;
  border: 1px solid rgba(190,138,44,.32);
  padding: 2.4rem clamp(1.5rem, 3vw, 2.6rem);
  margin-block: 0;
  background: linear-gradient(180deg, #1B293A 0%, #16222F 100%);
  box-shadow: var(--lift);
}
.plate__corner {
  position: absolute; width: 9px; height: 9px;
  border: 1px solid var(--brass);
}
.plate__corner--tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.plate__corner--tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.plate__corner--bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.plate__corner--br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.plate__grid {
  margin: 0; display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  background: rgba(190,138,44,.18);
}
.plate__item {
  background: #18242F;
  padding: 1.1rem 1.3rem;
}
.plate__item dt {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(190,138,44,.85); margin-bottom: .5rem;
}
.plate__item dd {
  margin: 0; font-family: var(--f-display); font-size: 25px;
  font-weight: 600; color: var(--paper); line-height: 1.12;
  letter-spacing: -.01em;
}
.plate__item dd span {
  display: block; font-family: var(--f-body); font-size: 13px;
  font-weight: 400; color: rgba(245,241,232,.56);
  letter-spacing: 0; margin-top: .35rem; line-height: 1.45;
}
.plate__item--hero dd { color: var(--brass); font-size: 31px; }

@media (max-width: 700px) {
  .plate { padding-inline: 1.2rem; }
  .plate__grid { grid-template-columns: 1fr 1fr; }
  .plate__item { padding: .9rem; }
}

/* ── floating panels ─────────────────────────────────────── */
.panel {
  background: var(--paper);
  padding: clamp(2rem, 4.2vw, 3.4rem);
  max-width: var(--panel-w);
  box-shadow: var(--lift);
  position: relative;
  border-top: 3px solid var(--rust);
}
.panel--wide { max-width: 760px; margin-inline: auto; }
.panel--l { margin-right: auto; }
.panel--r { margin-left: auto; }
.panel--form { max-width: 720px; margin-inline: auto; }

.panel__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.1; letter-spacing: -.022em;
  margin: 0 0 1.5rem;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.panel__q {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.9vw, 2.05rem);
  line-height: 1.16; letter-spacing: -.018em;
  margin: 0 0 1.5rem; color: var(--ink);
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.outcome {
  margin: 1.8rem 0 0; padding-top: 1.3rem;
  border-top: 1px solid var(--paper-3);
  font-size: 15px; color: var(--ink);
  display: flex; gap: .85rem; align-items: baseline; flex-wrap: wrap;
}
.outcome span {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); flex: none;
}

/* ── bands ───────────────────────────────────────────────── */
.band { padding-block: clamp(4.5rem, 10vh, 7rem); background: var(--paper); }
.band--ink { background: var(--ink); }
.band__head { max-width: 640px; margin-bottom: 3.4rem; }
.band__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.06; letter-spacing: -.026em; margin: 0 0 1.1rem;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.band__title--light { color: var(--paper); }
.band__lede { font-size: 18px; color: var(--ink-soft); margin: 0; }

/* ── steps ───────────────────────────────────────────────── */
.steps {
  list-style: none; margin: 0 0 3.6rem; padding: 0;
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  background: rgba(190,138,44,.22);
  border: 1px solid rgba(190,138,44,.22);
}
.step { background: var(--ink); padding: 2.2rem 1.8rem; }
.step__n {
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .16em; color: var(--brass); display: block;
  margin-bottom: 1.4rem;
}
.step h3 {
  font-family: var(--f-display); font-weight: 600; font-size: 1.5rem;
  color: var(--paper); margin: 0 0 .85rem; letter-spacing: -.015em;
}
.step p { margin: 0 0 1.4rem; color: rgba(245,241,232,.66); font-size: 15.5px; }
.step__tag {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--rust);
  border: 1px solid rgba(196,71,31,.45);
  padding: .32rem .7rem; display: inline-block;
}

.services { border-top: 1px solid rgba(190,138,44,.22); padding-top: 2.2rem; }
.services__label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 1.1rem;
}
.services ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .7rem 1.8rem;
}
.services li {
  color: rgba(245,241,232,.82); font-size: 15.5px;
  display: flex; align-items: center; gap: .6rem;
}
.services li::before {
  content: ""; width: 5px; height: 5px; background: var(--rust);
  rotate: 45deg; flex: none;
}

/* ── form ────────────────────────────────────────────────── */
.form__lede { color: var(--ink-soft); margin: 0 0 2.2rem; }
.form {
  display: grid; gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft);
}
.field .opt { text-transform: none; letter-spacing: 0; opacity: .6; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 16px; color: var(--ink);
  background: var(--paper-2);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--paper-3);
  padding: .8rem .9rem; border-radius: 2px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rust); background: #fff;
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--rust-dk); background: #FBEDE9;
}
.hp { position: absolute; left: -9999px; opacity: 0; }

.form__foot {
  display: flex; align-items: center; gap: 1.3rem;
  flex-wrap: wrap; margin-top: .6rem;
}
.form__status { margin: 0; font-size: 14.5px; font-weight: 500; }
.form__status.is-ok { color: var(--sage); }
.form__status.is-err { color: var(--rust-dk); }
.form__alt {
  margin: 1.8rem 0 0; padding-top: 1.4rem;
  border-top: 1px solid var(--paper-3);
  font-size: 15px; color: var(--ink-soft);
}
.form__alt a { color: var(--rust); text-decoration: none; border-bottom: 1px solid currentColor; }
.form__alt a:hover { color: var(--rust-dk); }

@media (max-width: 620px) { .form { grid-template-columns: 1fr; } }

/* ── footer ──────────────────────────────────────────────── */
.foot { background: var(--ink); padding-block: 3.4rem; }
.foot__inner { text-align: center; }
.foot__mark {
  font-family: var(--f-display); font-size: 25px; font-weight: 600;
  color: var(--paper); margin: 0 0 .6rem; letter-spacing: -.02em;
}
.foot__line { color: rgba(245,241,232,.62); margin: 0 0 1.6rem; font-size: 15.5px; }
.foot__fine {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  color: rgba(245,241,232,.38); margin: 0; text-transform: uppercase;
}

/* ═══ TEXTURE OVERLAYS ═══════════════════════════════════════
   Blueprint grid + halftone. These carry the visual weight in
   place of photography — see images/README.md to swap in real
   photos behind them.
   ══════════════════════════════════════════════════════════ */
.grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(190,138,44,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,138,44,.10) 1px, transparent 1px),
    linear-gradient(rgba(190,138,44,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190,138,44,.05) 1px, transparent 1px);
  background-size: 160px 160px, 160px 160px, 32px 32px, 32px 32px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 25%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 50% 40%, #000 25%, transparent 78%);
}
.dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(190,138,44,.16) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 72%);
          mask-image: linear-gradient(180deg, #000, transparent 72%);
}
.band--ink { position: relative; overflow: hidden; }
.band--ink > .shell { position: relative; z-index: 1; }

/* ── centred heads ───────────────────────────────────────── */
.band__head--center { margin-inline: auto; text-align: center; }
.eyebrow--center { justify-content: center; }
.band__lede--light { color: rgba(245,241,232,.66); }

/* ── the cost ────────────────────────────────────────────── */
.costs {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.cost {
  border-top: 2px solid var(--rust);
  padding-top: 1.6rem;
}
.cost__n {
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .18em; color: var(--rust); display: block;
  margin-bottom: 1rem;
}
.cost h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 1.32rem; line-height: 1.18; letter-spacing: -.016em;
  color: var(--paper); margin: 0 0 .9rem;
}
.cost p { color: rgba(245,241,232,.64); font-size: 15.5px; margin: 0 0 1.1rem; }
.cost__math {
  font-family: var(--f-mono); font-size: 12.5px; line-height: 1.6;
  color: var(--brass) !important;
  border: 1px solid rgba(190,138,44,.3);
  padding: .8rem .9rem; margin: 0 !important;
}
.cost__math span {
  display: block; font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(245,241,232,.45);
  margin-bottom: .35rem;
}
.cost__close {
  margin: 3.2rem auto 0; max-width: 62ch; text-align: center;
  font-family: var(--f-display); font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.5; color: rgba(245,241,232,.9);
}
.cost__close em { color: var(--brass); font-style: italic; }

/* ── seals in content ────────────────────────────────────── */
.panel__seal {
  width: 78px; height: 78px; margin-bottom: 1.4rem;
  opacity: .92;
}
.foot__seal { width: 76px; height: 76px; margin: 0 auto 1.4rem; }

/* ── credentials section ─────────────────────────────────── */
.plate-wrap { padding-top: clamp(4rem, 9vh, 6rem); }
.plate-wrap .band__head { margin-bottom: 2.6rem; }

/* ── hero emphasis ───────────────────────────────────────── */
.para--hero { padding-block: 0; }
.hero__title {
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(10,16,24,.5);
}

/* ── reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease) var(--d, 0s),
              transform .8s var(--ease) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint span { animation: none; }
  .btn:hover { transform: none; }
}

/* ═══ SUBPAGES (FAQ, Privacy) ════════════════════════════════ */
.subpage { padding-top: 72px; }

.subhead {
  background: var(--ink);
  padding: clamp(3.5rem, 8vh, 5.5rem) 0 clamp(3rem, 7vh, 4.5rem);
  position: relative; overflow: hidden;
}
.subhead::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(190,138,44,.16) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 75%);
          mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.subhead > .shell { position: relative; z-index: 1; }
.subhead__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.06;
  letter-spacing: -.026em; color: var(--paper); margin: 0 0 1.1rem;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.subhead__lede {
  color: rgba(245,241,232,.68); max-width: 60ch; margin: 0; font-size: 17.5px;
}
.subhead__lede a { color: var(--brass); }

/* ── FAQ accordion (native <details>, no JS) ─────────────── */
.faq { padding-block: clamp(3rem, 7vh, 4.5rem); max-width: 820px; }
.qa { border-bottom: 1px solid var(--paper-3); }
.qa:first-child { border-top: 1px solid var(--paper-3); }
.qa summary {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.12rem, 2.2vw, 1.4rem); line-height: 1.32;
  letter-spacing: -.014em; color: var(--ink);
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer; list-style: none; position: relative;
  transition: color .2s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--rust); }
.qa summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--rust); border-bottom: 2px solid var(--rust);
  rotate: 45deg; transition: rotate .25s var(--ease);
}
.qa[open] summary::after { rotate: -135deg; margin-top: -3px; }
.qa__body { padding: 0 1rem 1.7rem 0; }
.qa__body p { margin: 0 0 1rem; color: var(--ink-soft); }
.qa__body p:last-child { margin-bottom: 0; }
.qa__body strong { color: var(--ink); font-weight: 600; }

.subcta {
  background: var(--ink); padding-block: clamp(3rem, 7vh, 4.5rem);
  text-align: center;
}
.subcta__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem); color: var(--paper);
  margin: 0 0 .7rem; letter-spacing: -.02em;
}
.subcta p { color: rgba(245,241,232,.66); margin: 0 0 1.8rem; }

/* ── legal prose ─────────────────────────────────────────── */
.legal { padding-block: clamp(3rem, 7vh, 4.5rem); max-width: 760px; }
.legal h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.28rem, 2.4vw, 1.55rem); letter-spacing: -.016em;
  margin: 2.6rem 0 .9rem; color: var(--ink);
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--rust); text-decoration: none; border-bottom: 1px solid currentColor; }
.legal a:hover { color: var(--rust-dk); }
.legal ul { margin: 0 0 1.1rem; padding-left: 0; list-style: none; }
.legal ul li {
  color: var(--ink-soft); margin-bottom: .7rem;
  padding-left: 1.5rem; position: relative;
}
.legal ul li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; background: var(--rust); rotate: 45deg;
}
.legal__summary {
  background: var(--paper-2); border-left: 3px solid var(--rust);
  padding: 1.6rem 1.8rem; margin-bottom: 2.8rem;
}
.legal__summary p:last-child { margin-bottom: 0; }
.legal__summary-label {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rust) !important; margin-bottom: .8rem !important;
}
.legal__parties { margin: 0 0 1.1rem; }
.legal__parties dt {
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink); margin-top: 1.3rem;
}
.legal__parties dd {
  margin: .5rem 0 0; color: var(--ink-soft);
  padding-left: 1.1rem; border-left: 1px solid var(--paper-3);
}

/* ── footer nav ──────────────────────────────────────────── */
.foot__nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: .6rem 1.6rem; margin-bottom: 1.5rem;
}
.foot__nav a {
  color: rgba(245,241,232,.7); text-decoration: none; font-size: 14.5px;
  transition: color .2s var(--ease);
}
.foot__nav a:hover, .foot__nav a[aria-current="page"] { color: var(--brass); }

.legal__todo {
  background: #FBEDE9; color: var(--rust-dk) !important;
  border: 1px dashed var(--rust); padding: .15rem .5rem;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .04em;
}
.legal h3 {
  font-family: var(--f-body); font-weight: 600; font-size: 16px;
  letter-spacing: .01em; color: var(--ink);
  margin: 1.9rem 0 .7rem;
}

/* ── contact: success state ──────────────────────────────── */
.sent {
  border-top: 3px solid var(--sage);
  background: var(--paper-2);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-top: .4rem;
  animation: sentIn .5s var(--ease) both;
}
@keyframes sentIn { from { opacity: 0; transform: translateY(10px); } }
.sent__seal { width: 64px; height: 64px; margin-bottom: 1.1rem; opacity: .9; }
.sent__kicker {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 .7rem;
  display: flex; align-items: center; gap: .7rem;
}
.sent__kicker::before {
  content: ""; width: 26px; height: 1px; background: var(--sage); flex: none;
}
.sent__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1.1;
  letter-spacing: -.02em; margin: 0 0 .9rem; color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.sent__body { margin: 0 0 1.6rem; color: var(--ink-soft); font-size: 17px; }
.sent__again {
  font-family: var(--f-body); font-size: 14.5px; font-weight: 600;
  background: none; border: 1px solid rgba(20,32,46,.28);
  color: var(--ink-soft); padding: .7rem 1.3rem; border-radius: 2px;
  cursor: pointer; transition: border-color .2s var(--ease), color .2s var(--ease);
}
.sent__again:hover { border-color: var(--rust); color: var(--rust); }
@media (prefers-reduced-motion: reduce) { .sent { animation: none; } }

/* The [hidden] attribute sets display:none via the UA sheet, but any author
   rule with a display value beats it. .form is display:grid, so hiding it
   needs an explicit rule. Caught in review 2026-09-15 — the DOM reported
   hidden:true while the form was still on screen. */
[hidden] { display: none !important; }
