/* =========================================================================
   TechVan — mobile repair lab, Limerick
   Homepage stylesheet. Vanilla CSS, no frameworks, no build step.
   ---------------------------------------------------------------------
   1. Tokens          6. Hero
   2. Reset           7. Sections S.02 – S.14
   3. Type            8. Footer
   4. Bits & pieces   9. Motion / reveal
   5. Masthead       10. Responsive
   ========================================================================= */

/* ============================== 1. TOKENS ============================== */
:root {
  /* Ink side — the workshop at night */
  --ink:        #0a0c0d;
  --ink-2:      #0f1315;
  --panel:      #161b1e;
  --panel-2:    #1d2327;
  --steel:      #8d979b;
  --steel-dim:  #5f686c;

  /* Paper side — the docket */
  --bone:       #efece4;
  --bone-2:     #e3dfd3;
  --bone-ink:   #14181a;

  /* Signal */
  --flare:      #099dd7;
  --volt:       #d8ff3e;

  --hair:       rgba(239, 236, 228, .14);
  --hair-ink:   rgba(20, 24, 26, .16);

  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Martian Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --gutter: clamp(1.15rem, 4vw, 4.5rem);
  --maxw: 82.5rem;
  --pad-y: clamp(4.5rem, 9vw, 9.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ============================== 2. RESET =============================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(1rem, .3vw + .94rem, 1.075rem);
  line-height: 1.68;
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain over the whole page — keeps the flat colours from going plasticky */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  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='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--flare); color: var(--bone); }

.skip-link {
  position: fixed;
  top: .5rem; left: .5rem;
  z-index: 1000;
  padding: .6rem 1rem;
  background: var(--volt);
  color: var(--ink);
  font: 600 .8rem/1 var(--mono);
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: none; }

/* =============================== 3. TYPE =============================== */
.h2, .h3, .hero__title, .final__h, .card__h, .cover__h {
  font-weight: 800;
  letter-spacing: -.022em;
  text-wrap: balance;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.55rem, 7.1vw, 6.1rem);
  font-stretch: 112%;
  line-height: .96;
  letter-spacing: -.035em;
}
.hero__title .line { display: block; }
.hero__title .line--alt {
  color: var(--flare);
  font-style: italic;
  font-stretch: 100%;
}

.h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.95rem, 4.1vw, 3.5rem);
  font-stretch: 108%;
  line-height: 1.02;
}
.h2 em { font-style: italic; color: var(--flare); }
.sec--flare .h2 em { color: var(--ink); text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .12em; }

.h3 {
  margin: 0 0 .5rem;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.2;
  font-weight: 700;
}

.lede {
  font-size: clamp(1.09rem, .55vw + .95rem, 1.32rem);
  line-height: 1.55;
  font-weight: 400;
  color: color-mix(in srgb, var(--bone) 88%, transparent);
  max-width: 46ch;
  text-wrap: pretty;
}
.sec--bone .lede, .sec--flare .lede { color: color-mix(in srgb, var(--bone-ink) 85%, transparent); }

.small { font-size: .92rem; color: var(--steel); max-width: 52ch; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.5rem;
  font-family: var(--mono);
  font-size: clamp(.62rem, .22vw + .58rem, .72rem);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--flare);
  flex-shrink: 0;
}
/* On the flare-filled section a blue rule would vanish into the background. */
.sec--flare .eyebrow::before { background: var(--ink); }

.sec--bone .eyebrow { color: color-mix(in srgb, var(--bone-ink) 55%, transparent); }
.sec--flare .eyebrow { color: color-mix(in srgb, var(--ink) 62%, transparent); }

.pull {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.22;
  font-weight: 700;
  font-stretch: 104%;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.pull--sm { font-size: clamp(1.15rem, 1.4vw, 1.45rem); }

/* ========================== 4. BITS & PIECES =========================== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sec {
  position: relative;
  padding-block: var(--pad-y);
  border-top: 1px solid var(--hair);
}
.sec--bone {
  background: var(--bone);
  color: var(--bone-ink);
  border-top-color: transparent;
}
.sec--flare {
  background: var(--flare);
  color: var(--ink);
  border-top-color: transparent;
}

.sec__head { margin-bottom: clamp(2.5rem, 4vw, 4rem); max-width: 46rem; }
.sec__head .h2 { max-width: 22ch; }
.sec__head .lede { margin-top: 1.1rem; max-width: 44ch; }

/* Hazard tape — the one graphic motif that repeats */
.hazard {
  height: 5px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--flare) 0 8px,
    transparent 8px 16px
  );
  background-color: var(--ink-2);
}

/* Buttons */
.btn {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.35rem;
  border-radius: .375rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .22s var(--ease), color .22s var(--ease),
              transform .22s var(--ease), border-color .22s var(--ease);
}
.btn--lg { padding: 1.05rem 1.75rem; font-size: .8rem; }

.btn--flare {
  --btn-bg: var(--flare);
  --btn-fg: var(--ink);
  border-color: var(--flare);
}
.btn--flare:hover, .btn--flare:focus-visible {
  --btn-bg: var(--volt);
  border-color: var(--volt);
  transform: translateY(-2px);
}

.btn--ghost { border-color: color-mix(in srgb, currentColor 40%, transparent); }
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: currentColor;
  background: color-mix(in srgb, currentColor 10%, transparent);
  transform: translateY(-2px);
}

.btn--ink {
  --btn-bg: var(--ink);
  --btn-fg: var(--bone);
  border-color: var(--ink);
}
.btn--ink:hover, .btn--ink:focus-visible {
  --btn-bg: var(--bone);
  --btn-fg: var(--ink);
  transform: translateY(-2px);
}

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--flare);
  padding-bottom: .28rem;
  border-bottom: 1px solid color-mix(in srgb, var(--flare) 45%, transparent);
  transition: border-color .2s var(--ease), gap .2s var(--ease);
}
.arrow-link:hover { border-bottom-color: var(--flare); gap: .85rem; }
.sec--bone .arrow-link { color: color-mix(in srgb, var(--flare) 88%, var(--bone-ink)); }

/* Phone number */
.tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.tel:hover { color: var(--volt); }
.tel--lg { font-size: 1.05rem; letter-spacing: .02em; }
.tel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--volt) 60%, transparent);
  animation: ping 2.6s var(--ease) infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--volt) 55%, transparent); }
  70%  { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ============================= 5. MASTHEAD ============================= */
.masthead {
  position: sticky;
  top: 0;
  z-index: 800;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.masthead.is-stuck {
  border-bottom-color: var(--hair);
  background: color-mix(in srgb, var(--ink) 95%, transparent);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: .8rem var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}
/* One supplied lockup, sized by height so its own proportions are kept. */
.logo__img {
  height: 2.9rem;
  width: auto;
  max-width: 100%;
}
.logo__img--foot { height: 3.6rem; margin-bottom: 1.1rem; }

.nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.1rem);
}
.nav > ul a {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: color-mix(in srgb, var(--bone) 78%, transparent);
  padding-block: .3rem;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav > ul a:hover { color: var(--bone); border-bottom-color: var(--flare); }
.nav__foot { display: none; }

.masthead__actions { display: flex; align-items: center; gap: 1rem; }
.masthead__actions .btn { padding: .7rem 1.1rem; }

.burger {
  display: none;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--hair);
  place-items: center;
}
.burger span {
  display: block;
  width: 1.05rem; height: 1.5px;
  background: var(--bone);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* =============================== 6. HERO =============================== */
.hero {
  position: relative;
  padding-top: clamp(3.5rem, 7vw, 7rem);
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--hair) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hair) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: radial-gradient(120% 85% at 18% 0%, #000 0%, transparent 72%);
  opacity: .8;
}
.hero::before {
  content: "";
  position: absolute;
  top: -18%; right: -12%;
  width: 55rem; aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--flare) 22%, transparent) 0%, transparent 62%);
  pointer-events: none;
}
.hero__inner { position: relative; }

.hero__lede { margin: clamp(1.5rem, 2.5vw, 2.25rem) 0 clamp(1.75rem, 2.6vw, 2.4rem); max-width: 54ch; }

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem clamp(1rem, 2.4vw, 2.4rem);
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  padding-block: 1rem;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: clamp(.62rem, .22vw + .58rem, .73rem);
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bone) 82%, transparent);
}
.trust li { display: flex; align-items: center; gap: .55rem; }
.trust li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--flare);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* The van, lettered live */
.van {
  position: relative;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
}
.van__frame {
  position: relative;
  container-type: inline-size;
  overflow: hidden;
  background: var(--panel);
}
.van__frame img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: 50% 46%;
  filter: grayscale(1) contrast(1.12) brightness(.82);
  transform: scale(1.01);
}
.van__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink) 0%, transparent 42%),
    linear-gradient(to right, color-mix(in srgb, var(--ink) 55%, transparent), transparent 40%);
  pointer-events: none;
}

.van__livery {
  position: absolute;
  z-index: 2;
  left: 53%;
  top: 30%;
  width: 32%;
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
  transform: skewY(-.6deg);
}
.van__livery-word {
  font-size: 7.4cqw;
  font-weight: 800;
  font-stretch: 108%;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: #191b1c;
}
.van__livery-word em { font-style: normal; color: var(--flare); }
.van__livery-rule {
  height: .55cqw;
  margin: 1.1cqw 0 1.2cqw;
  background: var(--flare);
  width: 86%;
}
.van__livery-line {
  font-family: var(--mono);
  font-size: 1.2cqw;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #2a2d2e;
}
.van__livery-line--tel { margin-top: .7cqw; color: #4a4e4f; }

.van__corner {
  position: absolute;
  z-index: 3;
  width: 1.6rem; height: 1.6rem;
  border: 2px solid color-mix(in srgb, var(--volt) 70%, transparent);
}
.van__corner--tl { top: .9rem; left: .9rem; border-right: 0; border-bottom: 0; }
.van__corner--tr { top: .9rem; right: .9rem; border-left: 0; border-bottom: 0; }
.van__corner--bl { bottom: .9rem; left: .9rem; border-right: 0; border-top: 0; }
.van__corner--br { bottom: .9rem; right: .9rem; border-left: 0; border-top: 0; }


/* ======================= 7. SECTIONS S.02 – S.14 ======================= */

/* --- S.02a Price checker, compact layout --- */
/* One narrow band: heading and live count on a row, the four dropdowns on a
   second, and the answer in a single strip underneath. */
.pcx__wrap { max-width: 64rem; }

.pcx__card {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: .75rem;
}

.pcx__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.pcx__h {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.024em;
  text-wrap: balance;
}
.pcx__live {
  margin: 0;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--flare) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--flare) 40%, transparent);
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--flare);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Four across on desktop, two-up on tablets, stacked on phones. */
.pcx__row {
  display: grid;
  gap: .7rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.1rem;
}

/* The answer strip. */
.pcx__band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: .5rem;
}
.pcx__band[hidden] { display: none; }

.pcx__figure { min-width: 0; }

.pcx__k {
  margin: 0 0 .3rem;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}
.pcx__price {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  font-stretch: 106%;
  line-height: 1;
  letter-spacing: -.03em;
}
.pcx__price span { color: inherit; }
.pcx__sub { margin: .45rem 0 0; font-size: .9rem; color: var(--steel); }
.pcx__sub--note { font-size: .84rem; color: var(--steel-dim); }
.pcx__band .btn { flex-shrink: 0; }

/* Quote state: the strip opens out into the enquiry. */
.pcx__band--quote { display: block; }
.pcx__band--quote[hidden] { display: none; }
.pcx__quote-head { max-width: 52ch; }
.pcx__quote-h {
  margin: 0 0 .5rem;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.022em;
}
.pcx__quote-h:focus-visible { outline: 2px solid var(--volt); outline-offset: 4px; }

.pcx__form {
  display: grid;
  gap: .9rem;
  grid-template-columns: 1fr;
  margin-top: 1.2rem;
}
.pcx__field { display: grid; gap: .4rem; margin: 0; align-content: start; }
.pcx__submit { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: 0; }
.pcx__pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.pcx__foot {
  margin: 1.1rem 0 0;
  font-size: .84rem;
  line-height: 1.6;
  color: var(--steel-dim);
}
.pcx__ask { color: var(--flare); text-underline-offset: .2em; }
.pcx__ask:hover { color: var(--bone); }

/* --- S.02 Repairs & pricing --- */
.pc__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.no-js .pc__grid { display: none; }

/* Left: the four dropdowns */
.pc__controls { display: grid; gap: 1.1rem; align-content: start; }

.pc__field { display: grid; gap: .5rem; }

.pc__label {
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}
.pc__req { color: var(--flare); margin-left: .25em; }

.pc__select { position: relative; display: block; }
.pc__select::after {
  content: "";
  position: absolute;
  right: 1.05rem; top: 50%;
  width: .45rem; height: .45rem;
  border-right: 2px solid var(--steel);
  border-bottom: 2px solid var(--steel);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.pc__select select,
.pc__input {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--panel);
  color: var(--bone);
  border: 1px solid var(--hair);
  border-radius: .375rem;
  font-family: var(--sans);
  font-size: .95rem;
  line-height: 1.4;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pc__select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .02em;
}
.pc__select select:hover:not(:disabled),
.pc__input:hover { border-color: color-mix(in srgb, var(--bone) 32%, transparent); }
.pc__select select:focus-visible,
.pc__input:focus-visible { border-color: var(--flare); outline-offset: 1px; }

.pc__select select:disabled { color: var(--steel-dim); cursor: not-allowed; background: var(--ink-2); }
.pc__select:has(select:disabled)::after { opacity: .4; }
.pc__select select option { background: var(--panel); color: var(--bone); }

.pc__input::placeholder { color: var(--steel-dim); }
textarea.pc__input { resize: vertical; min-height: 6rem; }

.pc__hint { margin: .4rem 0 0; font-size: .9rem; color: var(--steel); }
.pc__hint .arrow-link { font-size: .72rem; }

/* Right: the answer */
.pc__result {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: .375rem;
}
.pc__result::before {
  content: "";
  display: block;
  height: 3px;
  width: 2.6rem;
  margin-bottom: 1.4rem;
  background: var(--flare);
}

.pc__status {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.pc__panel { display: grid; gap: 1rem; justify-items: start; }
.pc__panel[hidden] { display: none; }

.pc__k, .pc__idle-k {
  margin: 0;
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--volt);
}
.pc__idle-k { color: var(--steel); }
.pc__idle-p { margin: 0; color: var(--steel); max-width: 42ch; }

.pc__price {
  margin: 0;
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 800;
  font-stretch: 108%;
  line-height: .9;
  letter-spacing: -.03em;
}
.pc__price span { color: var(--bone); }   /* the currency mark, not accented */

.pc__device { margin: 0; font-size: 1.05rem; font-weight: 600; max-width: 30ch; }
.pc__note { margin: 0; font-size: .92rem; color: var(--steel); max-width: 44ch; }

.pc__incl { display: grid; gap: .45rem; font-size: .88rem; color: var(--steel); }
.pc__incl li { display: flex; gap: .6rem; align-items: baseline; }
.pc__incl li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--flare);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.pc__panel .cta-row { margin-top: .35rem; }

/* Quote form — the no-price path, not an error state */
.pc__quote-h {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.022em;
  max-width: 20ch;
}
.pc__quote-h:focus-visible { outline: 2px solid var(--volt); outline-offset: 4px; }

.pc__form { display: grid; gap: 1rem; width: 100%; margin-top: .5rem; }
.pc__form .btn { justify-self: start; }
.pc__form-row { display: grid; gap: .45rem; margin: 0; }
.pc__form-pair { display: grid; gap: 1rem; grid-template-columns: 1fr; }

.pc__aside { margin: 0; font-size: .82rem; color: var(--steel-dim); }
.pc__aside--pair { margin-top: -.5rem; }

.pc__pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.pc__error {
  margin: 0;
  padding: .7rem .9rem;
  border-radius: .375rem;
  background: color-mix(in srgb, var(--flare) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--flare) 45%, transparent);
  font-size: .88rem;
  color: var(--bone);
}
.pc__error[hidden] { display: none; }

.pc__input.is-bad { border-color: var(--flare); }

.pc__done {
  margin: 0;
  padding: 1.1rem 1.25rem;
  border-radius: .375rem;
  background: color-mix(in srgb, var(--volt) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--volt) 40%, transparent);
  font-size: .95rem;
}
.pc__done[hidden] { display: none; }
.pc__done a { text-decoration-color: var(--volt); text-underline-offset: .2em; }

.pc__noscript {
  padding: 1.2rem 1.35rem;
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: .375rem;
  color: var(--steel);
}

/* --- S.03 The problem --- */
.problem__h2 { max-width: 24ch; font-size: clamp(2.1rem, 5vw, 4.2rem); }
.problem__body {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-top: clamp(2.5rem, 4vw, 4rem);
  grid-template-columns: 1fr;
}
.struck {
  counter-reset: pain;
  border-top: 1px solid var(--hair-ink);
}
.struck li {
  counter-increment: pain;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--hair-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -.015em;
}
.struck li::before {
  content: counter(pain, decimal-leading-zero);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: color-mix(in srgb, var(--bone-ink) 45%, transparent);
  flex-shrink: 0;
}
.struck li > span { position: relative; color: color-mix(in srgb, var(--bone-ink) 62%, transparent); }
.struck li > span::after {
  content: "";
  position: absolute;
  left: -.1em; top: 55%;
  width: 0;
  height: 2px;
  background: var(--flare);
  transition: width .55s var(--ease-out);
}
.struck.is-in li > span::after { width: calc(100% + .2em); }
.struck.is-in li:nth-child(1) > span::after { transition-delay: .15s; }
.struck.is-in li:nth-child(2) > span::after { transition-delay: .27s; }
.struck.is-in li:nth-child(3) > span::after { transition-delay: .39s; }
.struck.is-in li:nth-child(4) > span::after { transition-delay: .51s; }
.struck.is-in li:nth-child(5) > span::after { transition-delay: .63s; }
.struck.is-in li:nth-child(6) > span::after { transition-delay: .75s; }

.problem__aside .pull { margin-bottom: 1.1rem; }
.problem__aside {
  align-self: center;
  padding-left: clamp(0rem, 2vw, 2rem);
  border-left: 2px solid var(--flare);
  padding-inline-start: 1.5rem;
}

/* --- S.04 Why a van --- */
.why__head { max-width: 42rem; }
.why__h2 { max-width: 30ch; }

.why__list { border-top: 1px solid var(--hair); }

/* Label left, the point itself right. Stacks on narrow screens. */
.why__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--hair);
}

.why__k {
  margin: 0;
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--steel);
  text-wrap: balance;
}
.sec--bone .why__k { color: color-mix(in srgb, var(--bone-ink) 55%, transparent); }

.why__h {
  margin: 0 0 .55rem;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.022em;
  text-wrap: balance;
}
.why__body p { margin: 0; color: var(--steel); max-width: 62ch; }
.sec--bone .why__body p { color: color-mix(in srgb, var(--bone-ink) 78%, transparent); }

/* --- S.05 How it works --- */
.steps__track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.steps__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--flare), color-mix(in srgb, var(--flare) 10%, transparent));
}
.steps__stamp {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--flare);
  border: 1px solid color-mix(in srgb, var(--flare) 45%, transparent);
  padding: .3rem .6rem;
}
.steps__list {
  display: grid;
  gap: clamp(2rem, 3.5vw, 3rem);
  grid-template-columns: 1fr;
}
.step {
  position: relative;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hair);
}
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 2.2rem; height: 3px;
  background: var(--flare);
}
.step__num {
  display: block;
  margin-bottom: .9rem;
  font-family: var(--mono);
  font-size: 2.1rem;
  font-weight: 200;
  letter-spacing: -.04em;
  color: color-mix(in srgb, var(--bone) 28%, transparent);
}
.step p { color: var(--steel); max-width: 38ch; }

/* --- S.06 Why it's easier --- */
.easier__grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--hair-ink);
  border-block: 1px solid var(--hair-ink);
}
.card {
  position: relative;
  padding: clamp(1.75rem, 2.6vw, 2.6rem) clamp(1.25rem, 2vw, 2.1rem);
  background: var(--bone);
  transition: background .3s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--flare);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.card:hover { background: var(--bone-2); }
.card:hover::after { transform: scaleX(1); }
.card__h {
  margin: 0 0 .7rem;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.15;
}
.card p { color: color-mix(in srgb, var(--bone-ink) 72%, transparent); font-size: .98rem; }

/* --- S.07 Parts & warranty --- */
.parts__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
.parts__copy p:not(.lede) { color: var(--steel); max-width: 48ch; }
.parts__media { position: relative; }
.parts__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.55) contrast(1.08) brightness(.9);
}
.parts__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hair);
  pointer-events: none;
}
.seal {
  position: absolute;
  right: clamp(-1rem, -1vw, 0rem);
  bottom: -1.6rem;
  width: clamp(7.5rem, 11vw, 10rem);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: .1rem;
  text-align: center;
  background: var(--volt);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 1.5rem 3rem color-mix(in srgb, var(--ink) 60%, transparent);
  animation: seal-spin 26s linear infinite;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
.seal__big {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 800;
  font-stretch: 110%;
  line-height: .85;
  letter-spacing: -.05em;
}
.seal__small {
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* --- S.08 Filmed --- */
.filmed { background: #07090a; }
.filmed__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  grid-template-columns: 1fr;
}
.filmed__copy p:not(.lede):not(.small) { color: var(--steel); max-width: 50ch; }
.note {
  margin: 1.75rem 0;
  padding: 1.15rem 1.3rem;
  background: color-mix(in srgb, var(--panel) 80%, transparent);
  border-left: 2px solid var(--volt);
  font-size: .96rem;
}
.note strong { color: var(--volt); font-weight: 700; }
.note p { color: var(--steel); }

.rec { position: relative; margin: 0; }
.rec img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: contrast(1.1) saturate(.7);
}
.rec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 50% 45%, transparent, color-mix(in srgb, var(--ink) 72%, transparent));
  pointer-events: none;
}
.rec__hud {
  position: absolute;
  z-index: 2;
  top: 1rem; left: 1rem; right: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--bone);
}
.rec__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--flare);
  animation: blink 1.4s steps(1, end) infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .15; } }
.rec__tc { margin-left: auto; font-weight: 400; letter-spacing: .08em; }
.rec__bracket {
  position: absolute;
  z-index: 2;
  width: 1.35rem; height: 1.35rem;
  border: 1.5px solid color-mix(in srgb, var(--bone) 55%, transparent);
}
.rec__bracket--tl { top: 2.75rem; left: 1rem; border-right: 0; border-bottom: 0; }
.rec__bracket--tr { top: 2.75rem; right: 1rem; border-left: 0; border-bottom: 0; }
.rec__bracket--bl { bottom: 1rem; left: 1rem; border-right: 0; border-top: 0; }
.rec__bracket--br { bottom: 1rem; right: 1rem; border-left: 0; border-top: 0; }

/* --- S.09 The lab --- */
.lab__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
.lab__media { position: relative; }
.lab__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: grayscale(.35) contrast(1.06);
}
.lab__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hair-ink);
  pointer-events: none;
}
.lab__copy p:not(.lede) { color: color-mix(in srgb, var(--bone-ink) 72%, transparent); max-width: 50ch; }

.spec {
  margin: 1.75rem 0;
  border-top: 1px solid var(--hair-ink);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;
}
.spec li {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--hair-ink);
}
.spec__k { font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.spec li::after {
  content: "";
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted color-mix(in srgb, var(--bone-ink) 35%, transparent);
  order: 2;
}
.spec__v {
  order: 3;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .66rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--flare) 90%, var(--bone-ink));
}

/* --- S.10 What we repair --- */
.repair__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.acc { border-top: 1px solid var(--hair); }
.acc__item { border-bottom: 1px solid var(--hair); }
.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: clamp(1rem, 1.6vw, 1.5rem) 0;
  text-align: left;
  transition: color .2s var(--ease);
}
.acc__k {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 700;
  font-stretch: 104%;
  letter-spacing: -.03em;
  line-height: 1;
  transition: color .25s var(--ease), transform .35s var(--ease-out);
}
.acc__btn:hover .acc__k { color: var(--flare); transform: translateX(.4rem); }
.acc__btn[aria-expanded="true"] .acc__k { color: var(--flare); }
.acc__i {
  position: relative;
  width: 1.1rem; height: 1.1rem;
  flex-shrink: 0;
}
.acc__i::before, .acc__i::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--steel);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.acc__i::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__i::before,
.acc__btn[aria-expanded="true"] .acc__i::after { background: var(--flare); }
.acc__btn[aria-expanded="true"] .acc__i::after { transform: rotate(0deg); }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease-out);
}
.acc__inner {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s .42s;
}
.acc__inner p {
  margin: 0;
  padding-bottom: 1.4rem;
  max-width: 46ch;
  color: var(--steel);
}
.acc__btn[aria-expanded="true"] + .acc__panel { grid-template-rows: 1fr; }
.acc__btn[aria-expanded="true"] + .acc__panel .acc__inner { visibility: visible; transition-delay: 0s; }

/* No JS: every panel stays open and readable */
.no-js .acc__panel { grid-template-rows: 1fr; }
.no-js .acc__inner { visibility: visible; }
.no-js .acc__i { display: none; }

.repair__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.repair__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(.7) contrast(1.1) brightness(.85);
  transition: filter .35s var(--ease), transform .35s var(--ease);
}
.repair__thumbs img:hover { filter: none; transform: scale(1.03); }

.postit {
  margin-top: 1.75rem;
  padding: 1.2rem 1.35rem;
  background: var(--panel);
  border: 1px solid var(--hair);
  font-size: .96rem;
  color: var(--steel);
}
.postit__k {
  margin-bottom: .45rem;
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--volt);
}
.postit a { color: var(--bone); text-decoration-color: var(--flare); text-underline-offset: .2em; }
.postit a:hover { color: var(--flare); }

/* --- S.11 Experience --- */
.exp__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.exp__copy p:not(.lede) { color: color-mix(in srgb, var(--bone-ink) 72%, transparent); max-width: 50ch; }
.exp__stats { display: grid; gap: 1.5rem; }
.stat { border-top: 2px solid var(--bone-ink); padding-top: .75rem; }
.stat__n {
  display: block;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  font-stretch: 115%;
  line-height: .85;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}
.stat__l {
  display: block;
  margin-top: .6rem;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.6;
  color: color-mix(in srgb, var(--bone-ink) 60%, transparent);
  max-width: 26ch;
}
.exp__shot { margin: 0; }
.exp__shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

/* --- S.12 Business --- */
.biz::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, color-mix(in srgb, var(--ink) 7%, transparent) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.biz__inner {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.biz .h2 { font-size: clamp(2rem, 4.6vw, 3.8rem); }
.biz__copy p:not(.lede) { color: color-mix(in srgb, var(--ink) 78%, transparent); max-width: 46ch; }
.biz__copy .btn { margin-top: .5rem; }

/* --- S.13 Coverage --- */
.marquee {
  position: relative;
  padding-block: clamp(1rem, 2vw, 1.75rem);
  border-block: 1px solid var(--hair);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__row {
  display: flex;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee__row--rev { animation-duration: 56s; animation-direction: reverse; }
.marquee__set { display: flex; }
.marquee__set span {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 700;
  font-stretch: 96%;
  letter-spacing: -.02em;
  color: color-mix(in srgb, var(--bone) 22%, transparent);
  white-space: nowrap;
}
.marquee__set span::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--flare);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.marquee__row--rev .marquee__set span { color: color-mix(in srgb, var(--bone) 45%, transparent); }
@keyframes slide { to { transform: translateX(-50%); } }

.cover__inner {
  display: grid;
  gap: clamp(2.5rem, 4vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.cover__lists { display: grid; gap: clamp(1.75rem, 3vw, 2.5rem); }
.cover__h {
  margin: 0 0 .5rem;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--flare);
}
.cover__col p { color: var(--steel); font-size: .98rem; }
.cover__col .cover__h + p { margin-bottom: 1.25rem; }
.cover__col--ask .pull { color: var(--bone); margin-bottom: .6rem; }

.cover__map { margin: 0; }
.cover__map img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: grayscale(.8) contrast(1.05) brightness(.8);
}
.cover__map figcaption {
  display: flex;
  gap: .75rem;
  margin-top: .8rem;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-dim);
}

/* --- S.14 Final CTA --- */
.final { padding-block: 0; border-top: 0; }
.final .hazard { height: 6px; }
.final__inner {
  padding-block: clamp(4.5rem, 9vw, 9rem);
  text-align: center;
  display: grid;
  justify-items: center;
}
.final .eyebrow { justify-content: center; }
.final__h {
  margin: 0 0 1.5rem;
  max-width: 26ch;
  font-size: clamp(2.1rem, 5.2vw, 4.4rem);
  font-stretch: 106%;
  line-height: 1.02;
  letter-spacing: -.032em;
}
.final__h em { display: block; font-style: italic; color: var(--flare); font-stretch: 100%; }
.final .lede { margin-bottom: 2rem; max-width: 34ch; }

/* ============================== 8. FOOTER ============================== */
/* ---------------------- Footer, new layout ---------------------- */
.nfoot {
  background: var(--ink-2);
  border-top: 1px solid var(--hair);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}
.nfoot__inner {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.nfoot__note {
  margin: 1rem 0 1.4rem;
  font-size: .96rem;
  color: var(--steel);
  max-width: 34ch;
}

/* The two channels the business actually sells from. */
.watch { display: grid; gap: .6rem; max-width: 20rem; }
.watch__card {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .85rem;
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: .5rem;
  text-decoration: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.watch__card:hover,
.watch__card:focus-visible {
  border-color: color-mix(in srgb, var(--flare) 55%, transparent);
  background: color-mix(in srgb, var(--flare) 10%, var(--panel));
  transform: translateY(-1px);
}
.watch__icon { width: 1.4rem; height: 1.4rem; fill: var(--flare); flex-shrink: 0; }
.watch__text { display: grid; gap: .1rem; min-width: 0; }
.watch__k {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bone);
}
.watch__sub { font-size: .8rem; color: var(--steel-dim); }

/* Everything else stays a plain icon row, deliberately quieter. */
.nfoot__social { display: flex; gap: .5rem; margin-top: 1.2rem; }
.nfoot__social a {
  display: grid;
  place-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--hair);
  border-radius: 50%;
  color: var(--steel);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nfoot__social svg { width: 1rem; height: 1rem; fill: currentColor; }
.nfoot__social a:hover,
.nfoot__social a:focus-visible { color: var(--flare); border-color: color-mix(in srgb, var(--flare) 55%, transparent); }

.nfoot__h {
  margin: 0 0 .9rem;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel-dim);
}
.nfoot__h--gap { margin-top: 1.6rem; }

.nfoot__col li + li { margin-top: .5rem; }
.nfoot__col a {
  font-size: .95rem;
  text-decoration: none;
  color: color-mix(in srgb, var(--bone) 82%, transparent);
  transition: color .2s var(--ease);
}
.nfoot__col a:hover { color: var(--flare); }
.nfoot__col p { margin: 0; font-size: .92rem; color: var(--steel); max-width: 32ch; }

.nfoot__legal { font-size: .86rem; line-height: 1.7; }
/* Obvious on the page until someone fills them in. */
.nfoot__todo {
  padding: 0 .3em;
  border-radius: .2em;
  background: color-mix(in srgb, var(--volt) 18%, transparent);
  color: var(--volt);
  font-family: var(--mono);
  font-size: .82em;
}

.nfoot__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel-dim);
}
.nfoot__base p { margin: 0; }
.nfoot__credit a { color: var(--steel); }
.nfoot__credit a:hover { color: var(--flare); }

.foot {
  background: var(--ink-2);
  border-top: 1px solid var(--hair);
  padding-top: clamp(3rem, 5vw, 4.5rem);
}
.foot__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.foot__brand p { color: var(--steel); font-size: .96rem; max-width: 34ch; margin-bottom: 1.2rem; }

.foot__nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 2rem; }
.foot__nav h4 {
  margin: 0 0 .9rem;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel-dim);
}
.foot__nav li + li { margin-top: .5rem; }
.foot__nav a {
  font-size: .95rem;
  text-decoration: none;
  color: color-mix(in srgb, var(--bone) 82%, transparent);
  transition: color .2s var(--ease);
}
.foot__nav a:hover { color: var(--flare); }

.foot__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel-dim);
}
.foot__base p { margin: 0; }
.foot__credit { max-width: 48ch; }
.foot__credit a { color: var(--steel); }
.foot__credit a:hover { color: var(--flare); }

/* ========================= 9. MOTION / REVEAL ========================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .4s; }
[data-delay="6"] { transition-delay: .48s; }

/* No JS: never leave the page blank */
.no-js [data-reveal] { opacity: 1; transform: none; }
.no-js .struck li > span::after { width: calc(100% + .2em); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__row { animation: none; }
  .struck li > span::after { width: calc(100% + .2em); }
}

/* ============================ 10. RESPONSIVE =========================== */
@media (min-width: 40rem) {
  .problem__body { grid-template-columns: 1.15fr .85fr; }
  .steps__list { grid-template-columns: repeat(3, 1fr); }
  .easier__grid { grid-template-columns: repeat(2, 1fr); }
  .cover__lists { grid-template-columns: repeat(2, 1fr); }
  .cover__col--ask { grid-column: span 2; }
  .pc__form-pair { grid-template-columns: 1fr 1fr; }
  .pcx__row { grid-template-columns: 1fr 1fr; }
  .pcx__form { grid-template-columns: 1fr 1fr; }
  .pcx__field--wide { grid-column: 1 / -1; }
  .foot__inner { grid-template-columns: 1fr 1.25fr; }
  .nfoot__inner { grid-template-columns: 1.5fr 1fr; }
}

@media (min-width: 62rem) {
  .parts__inner { grid-template-columns: 1fr 1fr; }
  .filmed__inner { grid-template-columns: 1.1fr .9fr; }
  .lab__inner { grid-template-columns: .95fr 1.05fr; }
  .pc__grid { grid-template-columns: .9fr 1.1fr; }
  .pcx__row { grid-template-columns: repeat(4, 1fr); }
  .pcx__form { grid-template-columns: repeat(3, 1fr); }
  .why__row { grid-template-columns: minmax(0, 15rem) 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
  .repair__grid { grid-template-columns: 1.15fr .85fr; }
  .exp__inner { grid-template-columns: 1.1fr .9fr; }
  .biz__inner { grid-template-columns: 1fr 1fr; }
  .cover__inner { grid-template-columns: 1.05fr .95fr; }
  .easier__grid { grid-template-columns: repeat(4, 1fr); }
  .cover__lists { grid-template-columns: repeat(2, 1fr); }
  .cover__col--ask { grid-column: auto; }
  .exp__stats { grid-template-columns: 1fr; }
  .nfoot__inner { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
}

/* Mobile nav */
@media (max-width: 61.99rem) {
  .burger { display: grid; }
  .masthead__actions .tel,
  .masthead__actions > .btn { display: none; }

  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem var(--gutter) 2rem;
    background: var(--ink-2);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 1.5rem 3rem color-mix(in srgb, var(--ink) 70%, transparent);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path .4s var(--ease-out), opacity .25s var(--ease);
  }
  .nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul li { border-bottom: 1px solid var(--hair); }
  .nav > ul a { display: block; padding: .95rem 0; font-size: .85rem; border-bottom: 0; }
  /* Two stacked, full-width actions rather than a row — the estimate label
     is too long to sit beside anything on a phone. */
  .nav__foot { display: grid; gap: .75rem; }
  .nav__foot .btn { justify-content: center; }
}

@media (max-width: 40rem) {
  .logo__img { height: 2.4rem; }
  .van__frame img { aspect-ratio: 16 / 11; object-position: 62% 46%; }
  .van__livery { left: 46%; top: 26%; width: 46%; }
  .van__corner { width: 1.1rem; height: 1.1rem; }
  .seal { width: 6.5rem; right: .75rem; bottom: -1.25rem; }
  .repair__thumbs { grid-template-columns: repeat(3, 1fr); gap: .35rem; }
  .final__h em { display: inline; }
}

/* ===================== 11. KADENCE WRAPPER NEUTRALISATION ===============
   Kadence renders the page inside <main id="inner-wrap" class="wrap kt-clear">.
   Two problems on the landing template: it caps the page at the theme's
   1320px content width, and its `wrap` class collides with our own content
   container, so every full-bleed section was being inset by ~110px.
   Reset it here rather than dropping Kadence's markup, so the admin bar and
   any Kadence Blocks content placed in the page still behave normally.
   ===================================================================== */
body.techvan-landing #inner-wrap.wrap {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Kadence Blocks sections dropped into the page from the editor sit inside
   this shell, so they inherit the TechVan container rather than fighting it. */
body.techvan-landing .techvan-blocks { padding-block: var(--pad-y); }

/* ---------------------- Kadence heading-colour leak ----------------------
   Kadence prints an inline <style> with `h1..h6 { color: var(--global-palette3) }`.
   It arrives as an inline block rather than an enqueued sheet, so no dequeue
   reaches it, and at (0,0,1) it beats plain inheritance. TechVan headings are
   meant to take their colour from the section they sit in (bone sections flip
   to ink, ink sections to bone), so restore inheritance on the landing body.
   Scoped to .techvan-landing so the rest of the site keeps Kadence's own
   heading colours. */
body.techvan-landing :where(h1, h2, h3, h4, h5, h6) { color: inherit; }

/* The override above sits at (0,1,1). These three rules deliberately colour a
   heading and were written at (0,1,0) or (0,1,1), so they need lifting to keep
   winning. .hero__title .line--alt is already (0,2,0) and is unaffected. */
body.techvan-landing .cover__h { color: var(--flare); }
body.techvan-landing .nfoot__h { color: var(--steel-dim); }
body.techvan-landing .foot__nav h4 { color: var(--steel-dim); }

/* ================= 12. KADENCE BLOCK SECTIONS (hybrid seam) ==============
   Sections authored in the block editor come through as kadence/rowlayout.
   Two geometry corrections so they sit flush with the coded sections:

   1. alignfull computes its width from 100vw, which includes the scrollbar,
      so it overhangs by a few px each side. The template's wrapper is already
      full width, so the negative margins are not needed at all.
   2. Kadence's inherited content width resolves to 1290px; the coded sections
      use .wrap at 82.5rem (1320px) with the fluid gutter. Match it exactly so
      block and coded sections share one left edge.
   ===================================================================== */
body.techvan-landing .alignfull {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}

body.techvan-landing .kb-row-layout-wrap.sec > .kt-row-column-wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
