/* ============================================================
   SKORTA — v3.0 "THE GRAND TOUR"
   Gallery-grade layout · graphite / platinum / bottle green
   ============================================================ */

:root {
  --bg: #0a0a09;
  --bg-1: #161917;
  --bg-2: #1c211d;
  --plat: #eceae4;
  --mid: #a8a69e;
  --low: #7e7c74;
  --green: #2f5c46;
  --green-hi: #7fb094;
  --line: rgba(236, 234, 228, 0.10);
  --line-soft: rgba(236, 234, 228, 0.075);

  --serif: "Newsreader", Georgia, serif;
  --ui: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;

  --pad: clamp(1.25rem, 4.5vw, 5rem);
  --wrap: 86rem;
  --sect: clamp(7rem, 16vh, 12rem);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);

  --z-nav: 100;
  --z-sheet: 200;
  --z-loader: 300;
}

@supports (color: color-mix(in srgb, red, blue)) {
  :root {
    --bg-1: color-mix(in srgb, var(--plat) 4%, color-mix(in srgb, var(--green) 8%, var(--bg)));
    --bg-2: color-mix(in srgb, var(--plat) 6%, color-mix(in srgb, var(--green) 12%, var(--bg)));
  }
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--mid);
  font-family: var(--ui);
  font-size: clamp(1rem, 0.3vw + 0.9rem, 1.08rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (pointer: fine) {
  body::after {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 96;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
}

h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
em { font-style: normal; }
button { font: inherit; }

::selection { background: var(--green); color: var(--plat); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(236, 234, 228, 0.18); border: 4px solid var(--bg); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-hi); }
@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-width: thin; scrollbar-color: rgba(236, 234, 228, 0.22) var(--bg); }
}
:focus-visible { outline: 1.5px solid var(--plat); outline-offset: 3px; }

.skip-link {
  position: fixed; top: -100%; left: 1rem;
  z-index: calc(var(--z-loader) + 1);
  background: var(--plat); color: var(--bg);
  padding: 0.6rem 1rem;
  font-family: var(--mono); font-size: 0.72rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.mono { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; }
.dim { color: var(--low); }

.kicker {
  color: var(--green-hi);
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.kicker::before { content: ""; width: 2.2rem; height: 1px; background: var(--green-hi); }

.h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--plat);
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--mid); }
.lede { font-size: clamp(1.02rem, 0.4vw + 0.92rem, 1.24rem); max-width: 36em; color: var(--mid); }

/* ---------- hairline grid ---------- */

.gridlines {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: space-evenly;
}
.gridlines i { width: 1px; background: var(--plat); opacity: 0.05; }

/* ---------- loader ---------- */

.loader {
  position: fixed; inset: 0;
  z-index: var(--z-loader);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.ld-word { color: var(--plat); letter-spacing: 0.5em; font-size: 0.8rem; }
.ld-line { width: min(300px, 60vw); height: 1px; background: var(--line); position: relative; overflow: hidden; display: block; }
.ld-line span { position: absolute; inset: 0; background: var(--green-hi); transform: scaleX(0); transform-origin: left; display: block; }

/* ---------- nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.1rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
.nav.solid {
  background: rgba(10, 10, 9, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
.nav.over-sheet { z-index: calc(var(--z-sheet) + 1); background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }

.wordmark {
  font-family: var(--ui);
  font-stretch: 122%;
  font-weight: 640;
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  color: var(--plat);
  display: inline-flex;
  align-items: baseline;
}
.wm-dot { width: 0.32em; height: 0.32em; border-radius: 50%; background: var(--green-hi); margin-left: 0.18em; transform: translateY(-0.06em); }
.wm-lg { font-size: clamp(1.5rem, 3vw, 2.1rem); }
#navMark { opacity: 0; }
#navMark.shown { opacity: 1; transition: opacity 0.4s; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--green-hi);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--plat); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.btn-solid, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  letter-spacing: 0.16em;
  cursor: pointer;
  border: none;
  transition: background 0.3s, border-color 0.3s;
  will-change: transform;
  white-space: nowrap;
}
.btn-solid { background: var(--plat); color: var(--bg); }
.btn-solid:hover { background: #fff; }
.btn-ghost { border: 1px solid var(--line); color: var(--plat); background: rgba(10,10,9,0.3); padding: 0.7rem 1.3rem; }
.btn-ghost:hover { border-color: var(--green-hi); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  padding: 11px;
  background: rgba(10,10,9,0.4);
  border: 1px solid var(--line);
  cursor: pointer;
}
.burger span { display: block; height: 1.5px; background: var(--plat); transition: transform 0.4s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.sheet {
  position: fixed; inset: 0;
  z-index: var(--z-sheet);
  background: rgba(10, 10, 9, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--pad) 3rem;
  visibility: hidden; opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}
.sheet.open { visibility: visible; opacity: 1; }
.sheet-links a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 5.5vw, 2.8rem);
  color: var(--plat);
  padding: 0.4em 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 1.3rem;
}
.sheet-links .mono { color: var(--green-hi); }
.s-cta { color: var(--green-hi); }
.sheet-meta { margin-top: 2.4rem; color: var(--low); }

/* ============ HERO — giant mark ============ */

.hero { position: relative; z-index: 2; }
.hero-pin {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.18) 45%, rgba(10,10,9,0.82) 100%);
}

.giant {
  position: relative;
  z-index: 2;
  text-align: center;
  will-change: transform, opacity;
}
.giant-mark {
  font-family: var(--ui);
  font-stretch: 124%;
  font-weight: 660;
  font-size: clamp(4rem, 15.5vw, 15rem);
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--plat);
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.55);
}
.gm-word { white-space: nowrap; }
.g-dot { width: 0.14em; height: 0.14em; border-radius: 50%; background: var(--green-hi); margin-left: 0.1em; }
.giant-sub { margin-top: 1.4rem; color: var(--mid); letter-spacing: 0.34em; }

.hero-state {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
  opacity: 0;
  pointer-events: none;
}
.hero-state a { pointer-events: auto; }
.hs-line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1.1;
  color: var(--plat);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.7);
}
.hs-line em { font-style: italic; color: var(--mid); }
.hs-ctas { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.cue {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: var(--low);
  font-size: 0.58rem; letter-spacing: 0.3em;
}
.cue i { width: 1px; height: 42px; background: var(--line); position: relative; overflow: hidden; display: block; }
.cue b { position: absolute; top: 0; left: 0; width: 100%; height: 12px; background: var(--green-hi); display: block; animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-14px); } 70%, 100% { transform: translateY(44px); } }

.media-note {
  position: absolute;
  right: var(--pad); bottom: 1.2rem;
  z-index: 3;
  color: var(--mid); opacity: 0.8;
  text-shadow: 0 1px 10px rgba(10, 10, 9, 0.9);
  font-size: 0.56rem; letter-spacing: 0.18em;
}

/* ============ MANIFESTO — statement + movement-specification plate ============ */

.manifesto { background: radial-gradient(120% 90% at 78% 8%, rgba(47, 92, 70, 0.13), transparent 55%), var(--bg); position: relative; z-index: 2; padding-block: var(--sect) clamp(5rem, 11vh, 8rem); border-bottom: 1px solid var(--line-soft); overflow: hidden; }

.stmt {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.9rem, 6.6vw, 6.2rem);
  line-height: 1.03;
  letter-spacing: -0.014em;
  color: var(--plat);
  margin: 0;
}
.stmt .s-line { display: block; overflow: hidden; padding-bottom: 0.06em; /* keeps the y-descender of "only" inside the mask */ }
.stmt .s-in { display: inline-block; transform: translateY(112%); will-change: transform; }
.s-stop { color: var(--green-hi); display: inline-block; opacity: 0; transform: scale(0.4); transform-origin: 30% 80%; }

/* ============ TOUR — VIDEO EXPLAINER (scroll-driven film) ============ */

.tour { position: relative; z-index: 2; background: var(--bg); border-block: 1px solid var(--line-soft); }
.vex-stage { position: relative; height: 100svh; overflow: hidden; background: var(--bg); }

.vex-clip { position: absolute; inset: 0; opacity: 0; will-change: opacity; }
.vex-clip[data-i="0"] { opacity: 1; }
.vex-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* legibility scrim over the footage — text sits above it */
.vex-tint {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.12) 30%, rgba(10,10,9,0.14) 48%, rgba(10,10,9,0.6) 78%, rgba(10,10,9,0.93) 100%);
}

/* caption as a defined frosted card — reads clearly over ANY footage */
.vex-cap {
  position: absolute; left: var(--pad); bottom: clamp(6rem, 13vh, 8.5rem); z-index: 3;
  max-width: 40rem; display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.05rem 1.6rem 1.15rem; border-radius: 2px;
  background: rgba(9, 11, 9, 0.5); -webkit-backdrop-filter: blur(16px) saturate(1.15); backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(236, 234, 228, 0.12); border-left: 2px solid var(--green-hi);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.vex-cap .mono { color: var(--green-hi); font-size: 0.62rem; letter-spacing: 0.24em; font-weight: 600; }
.vex-cap span:last-child {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.3rem, 1.9vw, 2rem); line-height: 1.32; color: #fff;
}

.vex-index {
  position: absolute; top: clamp(1rem, 3vh, 1.8rem); right: var(--pad); z-index: 4;
  color: var(--plat); background: rgba(10, 10, 9, 0.55);
  padding: 0.4rem 0.75rem; letter-spacing: 0.24em; font-size: 0.6rem;
}

/* door-to-door route progress bar — sweeps + lights waypoints as you scroll */
.vex-rail {
  position: absolute; left: var(--pad); right: var(--pad); bottom: clamp(2.6rem, 6vh, 3.4rem); z-index: 4;
  height: 2px; background: rgba(236, 234, 228, 0.16);
}
.vex-rail-fill { position: absolute; left: 0; top: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left; display: block; background: linear-gradient(90deg, var(--green), var(--green-hi)); box-shadow: 0 0 12px rgba(127, 176, 148, 0.5); }
/* the marker rides the leading edge of the fill (driven by scroll progress) */
.vex-marker { position: absolute; top: 1px; left: 0; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border-radius: 50%; background: var(--green-hi); box-shadow: 0 0 0 4px rgba(127, 176, 148, 0.16), 0 0 16px 3px rgba(127, 176, 148, 0.6); }
.vex-node { position: absolute; top: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: rgba(236, 234, 228, 0.32); transition: background 0.4s, box-shadow 0.4s, transform 0.4s; }
.vex-node[data-n="0"] { left: 0; }
.vex-node[data-n="1"] { left: 33.33%; }
.vex-node[data-n="2"] { left: 66.66%; }
.vex-node[data-n="3"] { left: 100%; }
.vex-node.on { background: var(--green-hi); box-shadow: 0 0 12px rgba(127, 176, 148, 0.75); transform: scale(1.4); }

/* ============ GALLERY — what we move (horizontal) ============ */

.gallery { padding-top: clamp(4.5rem, 10vh, 7rem); position: relative; z-index: 2; background: var(--bg); }
.gal-head { padding-bottom: clamp(2rem, 5vh, 3.5rem); }
.gal-pin { position: relative; overflow: hidden; padding-block: 2rem clamp(3rem, 8vh, 5rem); }
.gal-track {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  padding-inline: var(--pad);
  width: max-content;
  will-change: transform;
}
.gal-card {
  position: relative;
  width: min(30vw, 420px);
  height: min(74vh, 640px);
  flex: none;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: block;
}
.gal-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gc-media {
  position: absolute; inset: 0;
  overflow: hidden; display: block;
  transition: transform 1.3s var(--ease);
  will-change: transform;
}
.gal-card:hover .gc-media { transform: scale(1.05); }
.gal-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,9,0.35) 0%, rgba(10,10,9,0) 35%, rgba(10,10,9,0.05) 55%, rgba(10,10,9,0.86) 100%);
  pointer-events: none;
}
.gc-num {
  position: absolute;
  top: 1.1rem; left: 1.2rem;
  z-index: 2;
  color: var(--green-hi);
}
.gc-body {
  position: absolute;
  left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gc-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.9vw, 1.9rem);
  line-height: 1.12;
  color: var(--plat);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.8);
}
.gc-note { color: var(--mid); font-size: 0.58rem; }
.gal-progress {
  position: absolute;
  right: var(--pad); bottom: 1.4rem;
  color: var(--low);
  letter-spacing: 0.24em;
}

/* ============ TRAILERS — outline fill ============ */

/* ============ TRAILERS — THE DECK ============ */
.trailers { padding-block: clamp(2.5rem, 6vh, 4rem); position: relative; z-index: 2; background: var(--bg); border-block: 1px solid var(--line-soft); overflow-x: clip; }
.tw-deck { position: relative; }
.tw-panel { position: sticky; top: 0; height: 100svh; padding: clamp(0.6rem, 1.5vh, 1.1rem) clamp(0.75rem, 1.5vw, 1.75rem); }
.tw-panel:nth-child(1) { z-index: 1; }
.tw-panel:nth-child(2) { z-index: 2; }
.tw-panel:nth-child(3) { z-index: 3; }
.twp-in { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(236, 234, 228, 0.06); will-change: transform; }
#twEnclosed .twp-in { background: var(--bg-2); }
#twOpen .twp-in { background: var(--bg-1); }
#twMethod .twp-in { background: var(--bg); }
.twp-tag { position: absolute; top: clamp(1rem, 2.5vh, 1.6rem); left: clamp(1.2rem, 2.5vw, 2.2rem); color: var(--low); font-size: 0.58rem; letter-spacing: 0.22em; z-index: 2; }
.twp-veil { position: absolute; inset: 0; background: #0a0a09; opacity: 0; pointer-events: none; z-index: 5; }

/* one-viewport compression so each card fits 100svh on 13" laptops */
.tw-panel .tw-word { font-size: clamp(3.4rem, 10.5vw, 9.5rem); }
.tw-panel .tw-info { padding-top: clamp(1.2rem, 3vh, 2rem); align-items: center; }
.tw-panel .tw-media { max-height: 42svh; aspect-ratio: 16 / 9; }
.tw-panel .tw-media img { height: 100%; }
.tw-panel .tw-table { margin-top: 1.1rem; }

/* card 3 — THE METHOD */
.twp-method .method-row { padding-top: 0; align-items: center; }
.twp-method .method-media { max-height: 52svh; overflow: hidden; border: 1px solid var(--line-soft); }
.twp-method .method-media img { width: 100%; height: 100%; object-fit: cover; }
.twp-method .tw-note { padding-block: 0.4rem 0.9rem; }
.tw-word {
  position: relative;
  font-family: var(--ui);
  font-stretch: 124%;
  font-weight: 680;
  font-size: clamp(4rem, 13.5vw, 13rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}
.tw-out {
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 234, 228, 0.28);
}
.tw-fill {
  position: absolute;
  inset: 0;
  color: var(--plat);
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.tw-info {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(1.8rem, 4vh, 3rem);
}
.tw-media { overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 16 / 9; transition: transform 1.4s var(--ease); will-change: transform; }
.tw-media img { width: 100%; height: 100%; object-fit: cover; }
.tw:hover .tw-media { transform: scale(1.02); }
.tw-copy h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2.2vw, 2.2rem); color: var(--plat); margin-bottom: 0.7rem; }
.tw-copy > p { max-width: 34em; }
.tw-spec { margin-top: 1.1rem; color: var(--low); font-size: 0.62rem; letter-spacing: 0.18em; }
.tw-note { padding-block: clamp(2rem, 5vh, 3.5rem) 0; color: var(--mid); max-width: 44em; }

/* ============ ASSURANCE ============ */

.assurance { padding-block: clamp(4.5rem, 10vh, 7rem) var(--sect); position: relative; z-index: 2; background: radial-gradient(90% 70% at 16% 18%, rgba(47, 92, 70, 0.11), transparent 60%); }
.asr-q {
  font-family: var(--serif);
  font-weight: 450;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.32;
  color: var(--plat);
  max-width: 26em;
}
.asr-q strong { color: var(--green-hi); font-style: italic; font-weight: 500; white-space: nowrap; }
.asr-q em { font-style: italic; color: var(--mid); }
.asr-a { margin-top: 1.6rem; max-width: 44em; }

/* ============ FOOTER ============ */

.foot { border-top: 1px solid var(--line-soft); position: relative; z-index: 2; background: var(--bg); }
.foot-in { padding-block: clamp(3.5rem, 8vh, 5.5rem) 2rem; }
.foot-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-block: clamp(2rem, 5vh, 3.5rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
  border-bottom: 1px solid var(--line-soft);
}
.f-note-col { max-width: 34em; align-self: start; }
.f-col { display: flex; flex-direction: column; gap: 0.75rem; }
.f-col a { color: var(--mid); transition: color 0.3s; width: fit-content; }
.f-col a:hover { color: var(--plat); }
.f-contact p { color: var(--mid); font-size: 0.68rem; letter-spacing: 0.08em; }
.f-btm {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  color: var(--low); font-size: 0.58rem;
}
.f-legal { display: flex; gap: 1.6rem; align-items: baseline; }
.f-legal a:hover { color: var(--plat); }
.f-motion {
  background: none;
  border: none;
  padding: 0;
  color: var(--green-hi);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  cursor: pointer;
}
.f-motion:hover { color: var(--plat); }

/* ---------- reveals & fallbacks ---------- */

.rv { opacity: 0; transform: translateY(26px); }
html.no-motion .rv, html.no-js .rv { opacity: 1; transform: none; }

html.no-motion .loader, html.no-js .loader { display: none; }
html.no-motion #navMark, html.no-js #navMark { opacity: 1; }
html.no-motion .hero-state, html.no-js .hero-state { display: none; }
html.no-motion .cue { display: none; }
html.no-motion .tw-fill, html.no-js .tw-fill { clip-path: none; }
/* video explainer → static storyboard when motion/js off */
html.no-motion .vex-stage, html.no-js .vex-stage { height: auto; overflow: visible; padding: 2rem 0; }
html.no-motion .vex-clip, html.no-js .vex-clip { position: static; opacity: 1; margin-bottom: 3.6rem; }
html.no-motion .vex-video, html.no-js .vex-video { height: 56svh; width: auto; max-width: calc(100% - 2 * var(--pad)); margin-inline: var(--pad); border: 1px solid var(--line-soft); }
html.no-motion .vex-cap, html.no-js .vex-cap { position: static; padding: 1rem var(--pad) 0; max-width: none; text-shadow: none; background: none; border: none; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
html.no-motion .vex-cap span:last-child, html.no-js .vex-cap span:last-child { font-size: 1.15rem; }
html.no-motion .vex-tint, html.no-motion .vex-index, html.no-motion .vex-rail, html.no-js .vex-tint, html.no-js .vex-index, html.no-js .vex-rail { display: none; }
html.no-motion .gal-pin, html.no-js .gal-pin { overflow-x: auto; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-right .btn-ghost { display: inline-flex; min-height: 44px; padding: 0 0.95rem; font-size: 0.62rem; letter-spacing: 0.14em; }
  .cta-long { display: none; }
  .cta-short { display: inline; font-size: 0.64rem; }

  .giant-mark { font-size: clamp(2.6rem, 13.5vw, 5rem); letter-spacing: 0.05em; }
  .giant-sub { letter-spacing: 0.18em; margin-top: clamp(1rem, 4vw, 1.4rem); }
  .hs-ctas .btn-solid, .hs-ctas .btn-ghost { flex: 1 1 100%; min-height: 46px; }

  /* mobile: statement + CTAs shown statically under the mark */
  .hero-pin { flex-direction: column; gap: 2.2rem; padding: 6rem var(--pad) 4rem; height: auto; min-height: 100svh; }
  .hero-state { position: static; opacity: 1; pointer-events: auto; padding: 0; }
  .hs-line { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cue { display: none; }

  .stmt { font-size: clamp(2.3rem, 9.5vw, 3.2rem); }

  /* the journey becomes a stacked storyboard (no scroll-driven film) on mobile */
  .vex-stage { height: auto; overflow: visible; padding: 1.5rem 0 2.5rem; }
  .vex-clip { position: static; opacity: 1; margin-bottom: 3rem; }
  .vex-video { width: calc(100% - 2 * var(--pad)); height: auto; aspect-ratio: 16 / 9; object-fit: cover; margin-inline: var(--pad); border: 1px solid var(--line-soft); }
  .vex-cap { position: static; padding: 0.9rem var(--pad) 0; max-width: none; text-shadow: none; background: none; border: none; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .vex-cap span:last-child { font-size: 1.1rem; }
  .vex-cap .mono { font-size: 0.68rem; }
  .vex-tint, .vex-index, .vex-rail { display: none; }

  .gal-pin { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gal-pin::-webkit-scrollbar { display: none; }
  .gal-card { width: 78vw; height: clamp(340px, 52svh, 460px); scroll-snap-align: center; }
  .gal-card img { object-position: center 55%; }
  .gal-progress { display: none; }

  .tw-info { grid-template-columns: 1fr; }
  .tw-word { white-space: normal; }
  .tw-panel .tw-word { font-size: clamp(2.4rem, 11vw, 4.2rem); letter-spacing: 0.02em; }
  .tw-panel { position: static; height: auto; padding: 0; }
  .twp-in { border-inline: none; box-shadow: none; padding-block: clamp(2.5rem, 7vh, 4rem); overflow: hidden; }
  .twp-veil { display: none; }
  .twp-tag { position: static; padding: 0 var(--pad) 1.2rem; }
  .tw-panel .tw-media { max-height: none; }
  .twp-method .method-media { max-height: none; }

  .qform { flex-direction: column; }
  .qf { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .qform .btn-solid { padding-block: 1.05rem; }

  .media-note { display: none; }
}

/* ============================================================
   v4.1 "ONE AT A TIME" — conversion & richness pass
   ============================================================ */

/* kicker numerals + inline links */
.inline-cta { color: var(--plat); border-bottom: 1px solid var(--green-hi); padding-bottom: 1px; transition: color 0.3s, border-color 0.3s; }
.inline-cta:hover { color: var(--green-hi); }

/* ---------- the vow ---------- */
.vow {
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-top: clamp(2rem, 5vh, 3rem);
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.25;
  color: var(--plat);
  max-width: 30em;
}
.vow .s-line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.vow em { font-style: italic; color: var(--green-hi); }

/* ---------- journey header + progress ticks ---------- */

/* ---------- bridge ---------- */

/* ---------- gallery: enquire affordance, end panel, shade ---------- */
.gc-cta { color: var(--plat); font-size: 0.58rem; display: inline-flex; gap: 0.5rem; align-items: baseline; opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.gc-cta i { font-style: normal; display: inline-block; transition: transform 0.4s var(--ease); }
.gal-card { transition: border-color 0.5s; }
.gal-card:hover .gc-cta, .gal-card:focus-visible .gc-cta { opacity: 1; transform: translateY(0); }
.gal-card:hover .gc-cta i, .gal-card:focus-visible .gc-cta i { transform: translateX(4px); }
.gal-card:hover, .gal-card:focus-visible { border-color: rgba(127, 176, 148, 0.45); }
.gc-num { transition: color 0.4s; }
.gal-card:hover .gc-num, .gal-card:focus-visible .gc-num { color: var(--plat); }

.gal-end { background: var(--bg-1); border: 1px solid var(--line); display: flex; align-items: flex-end; }
.gal-end::after { display: none; }
.ge-body { padding: 1.2rem; display: flex; flex-direction: column; gap: 1.1rem; position: relative; z-index: 2; }
.ge-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.6rem); line-height: 1.1; color: var(--plat); }
.ge-title em { font-style: italic; color: var(--mid); }
.ge-cta { color: var(--low); display: inline-flex; gap: 0.6rem; transition: color 0.35s; }
.ge-cta i { font-style: normal; display: inline-block; transition: transform 0.35s var(--ease); }
.gal-end:hover { border-color: var(--green-hi); }
.gal-end:hover .ge-cta { color: var(--green-hi); }
.gal-end:hover .ge-cta i { transform: translateX(6px); }

.gal-shade { position: absolute; inset: 0; background: var(--bg); opacity: 0; pointer-events: none; z-index: 3; }

/* ---------- trailers: spec tables, method, choose ---------- */
.tw-table { margin-top: 1.4rem; max-width: 34em; }
.tw-table > div { position: relative; display: grid; grid-template-columns: minmax(6.5rem, 8.5rem) 1fr; gap: 0.35rem 1.6rem; align-items: baseline; padding: 0.72rem 0; border-bottom: 1px solid var(--line-soft); }
.tw-table > div:first-child { border-top: 1px solid var(--line-soft); }
/* the row hairline draws across in green as the spec staggers in */
.tw-table > div::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; background: var(--green-hi); opacity: 0.5; transform: scaleX(0); transform-origin: left; transition: transform 0.9s var(--ease); }
.tw-table > div.in::after { transform: scaleX(1); }
html.no-motion .tw-table > div::after, html.no-js .tw-table > div::after { display: none; }
.tw-table dt { color: var(--low); font-size: 0.56rem; letter-spacing: 0.22em; white-space: nowrap; flex: none; }
.tw-table dd { color: var(--mid); font-size: 0.62rem; letter-spacing: 0.12em; text-align: left; line-height: 1.65; }
.tw-copy > p + p { margin-top: 0.8rem; }

.method { padding-top: clamp(1.6rem, 4vh, 2.6rem); font-size: 0.62rem; letter-spacing: 0.18em; line-height: 2.1; max-width: 52em; }
.tn-big { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2.4rem); line-height: 1.15; color: var(--plat); margin-bottom: 0.7rem; }

.choose { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-soft); max-width: 44rem; margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.choose > div { padding: 1.2rem 1.4rem; }
.choose > div:first-child { border-right: 1px solid var(--line-soft); }
.choose dt { color: var(--green-hi); font-size: 0.58rem; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.choose dd { color: var(--mid); font-size: 0.62rem; line-height: 1.9; margin: 0; }

/* ---------- assurance ---------- */
.asr-q strong { background-image: linear-gradient(var(--green-hi), var(--green-hi)); background-repeat: no-repeat; background-position: left 96%; background-size: 0% 1px; display: inline-block; transform-origin: 50% 78%; }
.asr-cta { margin-top: 2rem; display: inline-flex; }
.asr-note { margin-top: 2rem; max-width: 46em; line-height: 2; font-size: 0.62rem; letter-spacing: 0.18em; }

/* ---------- considerations (faq) ---------- */
.faq { position: relative; z-index: 2; background: var(--bg-1); border-top: 1px solid var(--line-soft); padding-block: clamp(4.5rem, 10vh, 7rem) var(--sect); }
.faq-list { margin-top: clamp(2rem, 5vh, 3rem); border-top: 1px solid var(--line-soft); max-width: 58rem; }
.fq { border-bottom: 1px solid var(--line-soft); }
.fq summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; gap: 1.4rem; padding: 1.35rem 0; }
.fq summary::-webkit-details-marker { display: none; }
.fq-n { color: var(--green-hi); }
.fq-q { flex: 1; font-family: var(--serif); font-weight: 500; font-size: clamp(1.15rem, 1.8vw, 1.6rem); color: var(--plat); }
.fq-x { position: relative; width: 12px; height: 12px; flex: none; align-self: center; }
.fq-x::before, .fq-x::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--plat); transition: transform 0.35s var(--ease); }
.fq-x::before { transform: rotate(90deg); }
.fq[open] .fq-x::before { transform: rotate(0deg); }
.fq > p { padding: 0 2.5rem 1.6rem 0; max-width: 60ch; color: var(--mid); }

/* ---------- quote form ---------- */
.qf { position: relative; }
.qf::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--green-hi); transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease); }
.qf:focus-within::after { transform: scaleX(1); transform-origin: left; }
.qf label { transition: color 0.35s, letter-spacing 0.35s var(--ease); }
.qf:focus-within label { color: var(--green-hi); letter-spacing: 0.3em; }
.qf.has-value label { color: var(--mid); }
.qf input { caret-color: var(--green-hi); }
.qf-miss { box-shadow: inset 0 0 0 1px rgba(236, 234, 228, 0.6); }
.qf-miss label { color: var(--plat); }
.qf-note { flex: 1 1 100%; padding: 0.8rem 1.3rem; color: var(--low); font-size: 0.56rem; letter-spacing: 0.2em; border-top: 1px solid var(--line-soft); }
.qf-hint { color: var(--green-hi); margin-top: 0.9rem; letter-spacing: 0.2em; }
.qf-hint[hidden] { display: none; }
.q-interim { margin-top: clamp(2rem, 5vh, 3rem); display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.q-interim[hidden] { display: none; }
.q-summary { border: 1px solid var(--line); background: rgba(16, 17, 16, 0.9); padding: 1.2rem 1.4rem; color: var(--plat); white-space: pre-wrap; margin: 0; font-size: 0.8rem; letter-spacing: 0.12em; line-height: 2; }
.q-big em { display: inline-block; }

/* ---------- buttons ---------- */
.m-label { display: inline-block; will-change: transform; }
.btn-solid:active .m-label { transform: scale(0.97); transition: transform 0.12s; }
.btn-ghost:active { transform: scale(0.985); transition: transform 0.12s; }
.btn-ghost .bg-arr { display: inline-block; max-width: 0; opacity: 0; overflow: hidden; transform: translateX(-6px); margin-left: 0; transition: max-width 0.35s var(--ease), opacity 0.3s, transform 0.35s var(--ease), margin-left 0.35s var(--ease); }
.btn-ghost:hover .bg-arr, .btn-ghost:focus-visible .bg-arr { max-width: 1.2em; opacity: 1; transform: translateX(0); margin-left: 0.6em; }
.cta-short { display: none; }

/* ---------- wordmark dots ---------- */
@keyframes wmBreathe { 0%, 100% { opacity: 0.75; transform: translateY(-0.06em) scale(1); } 50% { opacity: 1; transform: translateY(-0.06em) scale(1.18); } }
@keyframes gBreathe { 0%, 100% { opacity: 0.75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.18); } }
@keyframes wmPulse { 0% { transform: translateY(-0.06em) scale(1); } 50% { transform: translateY(-0.06em) scale(1.5); } 100% { transform: translateY(-0.06em) scale(1); } }
.wm-dot { animation: wmBreathe 5s ease-in-out infinite; }
.g-dot { animation: gBreathe 5s ease-in-out infinite; }
.wordmark:hover .wm-dot { animation: wmPulse 0.6s var(--ease), wmBreathe 5s ease-in-out 0.6s infinite; }

/* ---------- footer ---------- */
.f-cta { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-top: 2.2rem; }
.f-line { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 2.4rem); line-height: 1.2; color: var(--plat); }
.f-line em { font-style: italic; color: var(--mid); }
[data-clock] { color: var(--green-hi); }
.foot-mark { position: relative; display: block; text-align: center; font-family: var(--ui); font-stretch: 124%; font-weight: 680; font-size: clamp(3.4rem, 13vw, 13rem); line-height: 1; letter-spacing: 0.1em; white-space: nowrap; user-select: none; padding-block: clamp(1.5rem, 4vh, 3rem); }
.fm-out { color: transparent; -webkit-text-stroke: 1px rgba(236, 234, 228, 0.22); }
.fm-fill { position: absolute; inset: 0; padding-block: inherit; clip-path: inset(0 100% 0 0); will-change: clip-path;
  color: transparent; background-color: var(--plat);
  background-image: linear-gradient(100deg, transparent 42%, var(--green-hi) 50%, transparent 58%);
  background-repeat: no-repeat; background-size: 250% 100%; background-position: 200% 0;
  -webkit-background-clip: text; background-clip: text; }
@keyframes fmGlint { from { background-position: 200% 0; } to { background-position: -100% 0; } }
.foot-mark:hover .fm-fill { animation: fmGlint 0.9s ease-out; }
.foot-mark { transition: transform 0.4s var(--ease); }
.foot-mark:hover { transform: translateY(-4px); }
.f-note { margin-bottom: 1.6rem; font-size: 0.58rem; letter-spacing: 0.18em; line-height: 2; max-width: 56em; }
.f-col a, .f-legal a { position: relative; padding-bottom: 2px; }
.f-col a::after, .f-legal a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--green-hi); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.f-col a:hover::after, .f-col a:focus-visible::after, .f-legal a:hover::after, .f-legal a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* ---------- utility layers ---------- */
.m-cta { display: none; }
.nav-peek { position: fixed; top: 4.4rem; left: 50%; width: 220px; aspect-ratio: 3 / 2; z-index: 99; border: 1px solid var(--line-soft); background: var(--bg-1); overflow: hidden; opacity: 0; pointer-events: none; }
.nav-peek img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: saturate(0.85) brightness(0.9); }
.nav-peek img.on { opacity: 1; }
.veil { position: fixed; inset: 0; background: var(--bg); opacity: 0; pointer-events: none; z-index: 95; }

/* ---------- unified image grade + hover exposure ---------- */
.gal-card img { filter: saturate(0.88) contrast(1.04) brightness(0.95); }
.tw-media img { filter: saturate(0.88) contrast(1.03) brightness(0.95); }
@media (pointer: fine) {
  .gal-card img { transition: filter 0.9s var(--ease); }
  .gal-card:hover img, .gal-card:focus-visible img { filter: saturate(1) contrast(1.02) brightness(1); }
  .tw-media img { transition: filter 1.4s var(--ease); }
  .tw:hover .tw-media img { filter: saturate(1) contrast(1.01) brightness(1); }
}

/* ---------- v4.1 no-motion / no-js fallbacks ---------- */
html.no-motion .s-in, html.no-js .s-in { transform: none; }
html.no-motion .s-stop, html.no-js .s-stop { opacity: 1; transform: none; }
html.no-motion .tw-panel, html.no-js .tw-panel { position: static; height: auto; padding-block: 0.75rem; }
html.no-motion .twp-in, html.no-js .twp-in { box-shadow: none; transform: none !important; justify-content: flex-start; padding-block: clamp(2.5rem, 6vh, 4rem); }
html.no-motion .twp-veil, html.no-js .twp-veil { display: none; }
html.no-motion .gc-cta, html.no-js .gc-cta { opacity: 1; transform: none; transition: none; }
html.no-motion .gal-card { transition: none; }
html.no-motion .asr-q strong, html.no-js .asr-q strong { background-size: 100% 1px; }
html.no-motion .fm-fill, html.no-js .fm-fill { clip-path: none; }
html.no-motion .q-big em, html.no-js .q-big em { opacity: 1; transform: none; }
html.no-motion .btn-ghost .bg-arr { transition: none; }
html.no-motion .wm-dot, html.no-motion .g-dot { animation: none; }
html.no-motion .wordmark:hover .wm-dot { animation: none; }
html.no-motion .qf::after, html.no-motion .qf label { transition: none; }
html.no-motion .gal-shade, html.no-js .gal-shade { opacity: 0; }
html.no-motion .nav-peek, html.no-js .nav-peek { display: none; }
html.no-motion .veil, html.no-js .veil { display: none; }

/* ---------- v4.1 touch & mobile ---------- */
@media (max-width: 980px), (pointer: coarse) {
  .gc-cta { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  /* must live after the base .cta-short/.cta-long rules to win the cascade */
  .cta-long { display: none; }
  .cta-short { display: inline; }

  .vow { font-size: clamp(1.35rem, 6vw, 1.8rem); }

  .fq summary { gap: 0.9rem; }

  .choose { grid-template-columns: 1fr; }
  .choose > div:first-child { border-right: none; border-bottom: 1px solid var(--line-soft); }

  .m-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; text-align: center; padding: 1.05rem var(--pad) calc(1.05rem + env(safe-area-inset-bottom)); background: rgba(10, 10, 9, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line-soft); color: var(--plat); transform: translateY(100%); transition: transform 0.45s var(--ease); }
  .m-cta.on { transform: none; }

  .nav-peek { display: none; }
}

/* ============================================================
   v4.4 "POLISH" — legibility, hooks, footer grid mobile
   ============================================================ */

/* tiny mono legibility */
.qf-note, .asr-note, .f-note { color: rgba(236, 234, 228, 0.55); }
.f-btm { color: rgba(236, 234, 228, 0.45); }

/* animation hooks */
.gm-l { display: inline-block; will-change: transform; }
.nav { will-change: transform; }
.gp-m { display: inline-block; overflow: hidden; vertical-align: bottom; }
.gp-m > span { display: inline-block; will-change: transform; }
.qb-m { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.qb-l { display: inline-block; will-change: transform; }

/* v4.4 no-motion */
html.no-motion .foot-mark:hover .fm-fill { animation: none; background-position: 50% 0; }
html.no-motion .foot-mark { transition: none; }
html.no-motion .foot-mark:hover { transform: none; }

/* v4.4 mobile */
@media (max-width: 980px) {
  .foot-cols { grid-template-columns: 1fr; }
}

/* ---------- v4.4 imagery hooks ---------- */

/* method row: strap macro beside the how-it's-held line */
.method-row { display: grid; grid-template-columns: minmax(0, 400px) 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; padding-top: clamp(1.6rem, 4vh, 2.6rem); }
.method-row .method { padding-top: 0; }
.method-media { overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 4 / 3; }
.method-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
html.no-motion .method-media img, html.no-js .method-media img { transform: none; }

/* assurance: the condition-report ritual, docked beside the argument */
.asr-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: clamp(2.5rem, 5vw, 5.5rem); align-items: start; }
.asr-media { position: sticky; top: 14vh; }
.asr-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--line-soft); }
.asr-media figcaption { padding: 0.8rem 0 0; font-size: 0.58rem; letter-spacing: 0.18em; }

/* vow: the trailer flank glimmers faintly behind the promise */
.vow-wrap { position: relative; }
.vow-bg { position: absolute; inset: -12vh -30vw -12vh 30%; overflow: hidden; opacity: 0.38; pointer-events: none; z-index: -1; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%); mask-image: linear-gradient(90deg, transparent 0%, #000 45%); }
.vow-bg img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) {
  .method-row { grid-template-columns: 1fr; }
  .asr-row { grid-template-columns: 1fr; }
  .asr-media { position: static; max-width: 420px; }
  .vow-bg { display: none; }
}

/* faq: the keys, waiting quietly beside the questions */
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 320px); gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.faq-media { position: sticky; top: 16vh; overflow: hidden; }
.faq-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border: 1px solid var(--line-soft); }
@media (max-width: 980px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-media { display: none; }
}

/* ---------- v4.5 ink-in ---------- */
.ink-w { display: inline-block; will-change: opacity; }
/* no opacity rule on .ink/.ink-w in CSS — the 0.4 start state comes only from
   gsap.fromTo, so no-js / no-motion text renders untouched */

/* ---------- v4.5 MOMENTS — multi-speed collage ---------- */
.moments { position: relative; z-index: 2; background: var(--bg); padding-block: clamp(3rem, 8vh, 6rem); overflow: clip; }
.mo-stage { position: relative; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); height: clamp(560px, 118vh, 1050px); }
.mo-fig { position: absolute; margin: 0; overflow: hidden; border: 1px solid var(--line-soft); will-change: transform; }
.mo-fig img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.04) brightness(0.95); }
.mo-a { left: 4%;  top: 6%;  width: 46%; aspect-ratio: 16 / 10; z-index: 1; }
.mo-b { left: 58%; top: 0;   width: 23%; aspect-ratio: 3 / 4;  z-index: 2; }
.mo-c { left: 44%; top: 40%; width: 17%; aspect-ratio: 1 / 1;  z-index: 3; }
.mo-d { left: 12%; top: 56%; width: 21%; aspect-ratio: 3 / 4;  z-index: 2; }
.mo-e { left: 62%; top: 55%; width: 32%; aspect-ratio: 3 / 2;  z-index: 1; }
.mo-chip { position: absolute; left: 4%; bottom: 2%; color: var(--low); font-size: 0.6rem; letter-spacing: 0.2em; }

@media (max-width: 980px) {
  .mo-stage { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .mo-fig { position: static; width: auto; z-index: auto; }
  .mo-a, .mo-d, .mo-e { grid-column: 1 / -1; }
  .mo-d { aspect-ratio: 16 / 10; }
  .mo-chip { position: static; grid-column: 1 / -1; padding-top: 0.4rem; }
}
html.no-motion .mo-stage, html.no-js .mo-stage { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; max-width: 64rem; }
html.no-motion .mo-fig, html.no-js .mo-fig { position: static; width: auto; }
html.no-motion .mo-a, html.no-motion .mo-d, html.no-motion .mo-e, html.no-js .mo-a, html.no-js .mo-d, html.no-js .mo-e { grid-column: 1 / -1; }
html.no-motion .mo-d, html.no-js .mo-d { aspect-ratio: 16 / 10; }
html.no-motion .mo-chip, html.no-js .mo-chip { position: static; grid-column: 1 / -1; padding-top: 0.4rem; }

/* ---------- v4.6 gallery head as in-pin overlay ---------- */
.gal-overlay { position: absolute; top: clamp(3rem, 9vh, 6rem); left: 0; right: 0; z-index: 4; pointer-events: none; will-change: transform; }
.gal-track::before { content: ""; flex: none; width: min(44vw, 640px); }
@media (max-width: 980px) {
  .gal-overlay { position: sticky; left: 0; width: 100%; padding-bottom: clamp(2rem, 5vh, 3.5rem); }
  .gal-track::before { display: none; }
}
html.no-motion .gal-overlay, html.no-js .gal-overlay { position: sticky; left: 0; width: 100%; padding-bottom: 2.5rem; }
html.no-motion .gal-track::before, html.no-js .gal-track::before { display: none; }

/* ---------- v4.7 footer reach line (contact target) ---------- */
.f-reach { color: rgba(236, 234, 228, 0.55); align-self: flex-end; letter-spacing: 0.18em; max-width: 22em; text-align: right; }
@media (max-width: 980px) { .f-reach { align-self: flex-start; text-align: left; } }

/* ============================================================
   v5.1 — QUOTATION calculator — premium concierge docket
   ============================================================ */
.quote { position: relative; z-index: 2; background: var(--bg-1); border-top: 1px solid var(--line-soft); padding-block: clamp(4.5rem, 10vh, 7rem) var(--sect); }
.quote .h2 { margin-bottom: clamp(2.2rem, 5vh, 3.4rem); }

.qc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px); gap: clamp(1.8rem, 4vw, 4rem); align-items: start; }

/* ---------- intake ---------- */
.qc-form { display: flex; flex-direction: column; gap: clamp(1.8rem, 3.4vw, 2.6rem); min-width: 0; }
.qc-field { display: flex; flex-direction: column; gap: 0.7rem; min-width: 0; }
.qc-lab { color: var(--low); font-size: 0.58rem; letter-spacing: 0.24em; display: flex; align-items: center; gap: 0.7em; transition: color 0.3s var(--ease); }
.qc-idx { color: var(--green); font-family: var(--mono); transition: color 0.3s var(--ease); }
.qc-field input[type="text"], .qc-field input[type="date"] {
  background: transparent; border: none; border-bottom: 1px solid var(--line); outline: none; color: var(--plat);
  font-family: var(--mono); font-size: 1.05rem; letter-spacing: 0.04em; padding: 0 0 0.7rem; min-width: 0;
  width: 100%; color-scheme: dark; transition: border-color 0.35s var(--ease);
}
.qc-field input::placeholder { color: var(--low); opacity: 0.55; }
.qc-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7) sepia(0.4) saturate(4) hue-rotate(90deg); cursor: pointer; opacity: 0.75; }
.qc-field:focus-within .qc-lab { color: var(--plat); }
.qc-field:focus-within .qc-idx { color: var(--green-hi); }
/* focus draws a green underline in from the left */
.qc-field-loc, .qc-field-date { position: relative; }
.qc-field-loc::after, .qc-field-date::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--green-hi); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); pointer-events: none; }
.qc-field-loc:focus-within::after, .qc-field-date:focus-within::after { transform: scaleX(1); }

/* itinerary rail linking collection → delivery */
.qc-route-fields { position: relative; display: flex; flex-direction: column; gap: 1.8rem; padding-left: 2rem; }
.qc-rail { position: absolute; left: 0; top: 0.55rem; bottom: 0.9rem; width: 11px; }
.qc-line { position: absolute; left: 5px; top: 7px; bottom: 7px; width: 1px; background: linear-gradient(var(--green-hi), var(--green) 55%, var(--line)); opacity: 0.55; }
.qc-node { position: absolute; left: 0; width: 11px; height: 11px; border-radius: 50%; box-sizing: border-box; }
.qc-node-a { top: 0; background: var(--green-hi); box-shadow: 0 0 0 3px rgba(127, 176, 148, 0.12); }
.qc-node-b { bottom: 0; border: 1px solid var(--green-hi); background: var(--bg-1); }

.qc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; }

/* trailer segmented control */
.qc-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.qc-opt { position: relative; cursor: pointer; }
.qc-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.qc-opt-in { position: relative; display: flex; flex-direction: column; gap: 0.3rem; padding: 0.8rem 0.9rem; border: 1px solid var(--line); background: var(--bg); overflow: hidden; transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease); }
.qc-opt-t { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--plat); }
.qc-opt-n { color: var(--low); font-size: 0.5rem; letter-spacing: 0.16em; }
.qc-opt:hover .qc-opt-in { border-color: rgba(127, 176, 148, 0.45); transform: translateY(-2px); }
.qc-opt input:checked + .qc-opt-in { border-color: var(--green-hi); background: rgba(127, 176, 148, 0.07); }
.qc-opt-in::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--green-hi); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.qc-opt input:checked + .qc-opt-in::before { transform: scaleX(1); }
.qc-opt input:focus-visible + .qc-opt-in { outline: 1.5px solid var(--plat); outline-offset: 2px; }

/* ---------- issued estimate docket ---------- */
.qc-out { position: sticky; top: 11vh; border: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); padding: clamp(1.6rem, 2.6vw, 2.2rem); }
.qc-out::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, var(--green-hi), transparent 65%); opacity: 0.6; }
.qc-out-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.qc-tag { color: var(--green-hi); font-size: 0.58rem; letter-spacing: 0.26em; }
.qc-seal { color: var(--low); font-size: 0.56rem; letter-spacing: 0.3em; opacity: 0.5; }
.qc-amount { font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 5.4vw, 4.1rem); line-height: 1; color: var(--plat); margin: 0.75rem 0 0.5rem; letter-spacing: -0.015em; font-variant-numeric: tabular-nums; }
.qc-route { color: var(--mid); font-size: 0.6rem; letter-spacing: 0.13em; min-height: 0.9rem; }
.qc-meter { height: 2px; background: var(--line-soft); margin: 1.1rem 0 0.2rem; overflow: hidden; }
.qc-meter-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--green-hi)); transition: width 0.7s var(--ease); }
.qc-breakdown { margin-top: 1.3rem; border-top: 1px solid var(--line); }
.qb-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.62rem 0; border-bottom: 1px solid var(--line-soft); font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.05em; }
.qb-row span:first-child { color: var(--mid); }
.qb-row span:last-child { color: var(--plat); font-variant-numeric: tabular-nums; white-space: nowrap; }
.qc-note { line-height: 1.85; font-size: 0.58rem; letter-spacing: 0.13em; margin-top: 1.2rem; }
.qc-cta { margin-top: 1.3rem; width: 100%; }

/* first / empty state */
.qc-out:not(.on) .qc-amount { color: var(--low); }
.qc-out:not(.on) .qc-route { color: var(--low); }
.qc-out:not(.on) .qc-meter { display: none; }

.qc-hint { grid-column: 1; margin-top: 1rem; font-size: 0.6rem; letter-spacing: 0.13em; }
.qc-out.on ~ .qc-hint { display: none; }

/* breakdown stagger — motion on by default; static when no-motion */
html:not(.no-motion) .qc-out.on .qb-row { animation: qbIn 0.5s var(--ease) both; }
.qc-out.on .qb-row:nth-child(1) { animation-delay: 0.02s; }
.qc-out.on .qb-row:nth-child(2) { animation-delay: 0.07s; }
.qc-out.on .qb-row:nth-child(3) { animation-delay: 0.12s; }
.qc-out.on .qb-row:nth-child(4) { animation-delay: 0.17s; }
.qc-out.on .qb-row:nth-child(5) { animation-delay: 0.22s; }
.qc-out.on .qb-row:nth-child(6) { animation-delay: 0.27s; }
.qc-out.on .qb-row:nth-child(7) { animation-delay: 0.32s; }
@keyframes qbIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- living details — ambient motion (fully static under .no-motion) ---------- */
/* a signal travels the route: collection → delivery */
.qc-pulse { position: absolute; left: 5px; top: 0; width: 1px; height: 16px; margin-left: -0.5px; border-radius: 2px; background: linear-gradient(var(--green-hi), rgba(127, 176, 148, 0)); box-shadow: 0 0 7px 1px rgba(127, 176, 148, 0.45); opacity: 0; }
/* a soft light sweeps the docket when a new estimate is issued */
.qc-out::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 42%, rgba(127, 176, 148, 0.07) 50%, transparent 58%); transform: translateX(-100%); opacity: 0; }
html:not(.no-motion) .qc-pulse { animation: railPulse 4.2s var(--ease) infinite; }
html:not(.no-motion) .qc-node-a { animation: nodeBreathe 4.2s ease-in-out infinite; }
html:not(.no-motion) .qc-out:not(.on)::before { animation: rulePulse 3.6s ease-in-out infinite; }
html:not(.no-motion) .qc-out.on::after { animation: docketSweep 1.15s var(--ease) 1; }
@keyframes railPulse { 0% { top: 0%; transform: translateY(0); opacity: 0; } 12% { opacity: 0.85; } 80% { opacity: 0.85; } 100% { top: 100%; transform: translateY(-100%); opacity: 0; } }
@keyframes nodeBreathe { 0%, 100% { box-shadow: 0 0 0 3px rgba(127, 176, 148, 0.12); } 50% { box-shadow: 0 0 0 6px rgba(127, 176, 148, 0.03); } }
@keyframes rulePulse { 0%, 100% { opacity: 0.32; } 50% { opacity: 0.7; } }
@keyframes docketSweep { 0% { transform: translateX(-100%); opacity: 1; } 100% { transform: translateX(100%); opacity: 1; } }

@media (max-width: 980px) {
  .qc { grid-template-columns: 1fr; }
  .qc-out { position: relative; top: auto; }
}
@media (max-width: 560px) {
  .qc-row2 { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ============================================================
   INSIDE THE TRAILER — feature deck (our own words, our own design)
   ============================================================ */
.feat { position: relative; z-index: 2; background: var(--bg); border-block: 1px solid var(--line-soft); padding-block: clamp(4.5rem, 11vh, 8rem); }
.feat .h2 { margin-bottom: clamp(1.1rem, 2.5vh, 1.6rem); }
.feat-lede { margin-bottom: clamp(2.4rem, 6vh, 3.6rem); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); gap: 0.8rem; }
.feat-card {
  position: relative; display: flex; flex-direction: column; gap: 0.5rem;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  background: var(--bg-1); border: 1px solid var(--line);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.feat-card::before { content: ""; position: absolute; top: -1px; left: -1px; width: 100%; height: 2px; background: var(--green-hi); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.feat-card:hover { background: var(--bg-2); border-color: rgba(127, 176, 148, 0.38); transform: translateY(-3px); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-n { color: var(--green-hi); font-size: 0.62rem; letter-spacing: 0.26em; }
.feat-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.15rem, 1.5vw, 1.42rem); line-height: 1.2; color: var(--plat); }
.feat-card p { font-size: 0.95rem; line-height: 1.62; color: var(--mid); }
@media (max-width: 560px) {
  .feat-card p { font-size: 1rem; }
  .feat-card { padding: 1.3rem 1.25rem; }
}

/* ============================================================
   v5.2 — MOBILE-FRIENDLINESS PASS
   Legible text (off the 8–10px floor), real ~44px tap targets,
   contained layouts. All scoped to phone/tablet queries, so the
   desktop (>=981px) design is untouched.
   ============================================================ */
@media (max-width: 980px) {
  /* — lift small mono labels to a readable size (>=~10.5px floor) — */
  .mono { font-size: 0.72rem; }
  .cta-short { font-size: 0.68rem; }
  .qc-opt-n { font-size: 0.66rem; letter-spacing: 0.1em; }
  .qc-lab { font-size: 0.66rem; }
  .qc-tag { font-size: 0.66rem; }
  .qc-route { font-size: 0.7rem; }
  .qb-row { font-size: 0.74rem; }
  .qc-note { font-size: 0.68rem; }
  .qc-seal { font-size: 0.66rem; }
  .qc-hint { font-size: 0.68rem; }
  .gc-note, .gc-cta { font-size: 0.68rem; letter-spacing: 0.1em; }
  .twp-tag { font-size: 0.66rem; }
  .mo-chip { font-size: 0.68rem; }

  /* — trailers spec: stack label over a full-width, left-aligned value — */
  .tw-table > div { grid-template-columns: 1fr; gap: 0.2rem; }
  .tw-table dt { font-size: 0.66rem; }
  .tw-table dd { font-size: 0.7rem; text-align: left; }

  /* — footer: readable text + genuine tap targets — */
  .f-note { font-size: 0.66rem; letter-spacing: 0.1em; color: var(--mid); line-height: 1.9; }
  .f-contact p { font-size: 0.74rem; }
  .f-btm { font-size: 0.66rem; }
  .f-motion { font-size: 0.66rem; }
  .f-col { gap: 0.2rem; }
  .f-col a { padding-block: 0.55rem; }
  .f-legal { flex-wrap: wrap; gap: 0.3rem 1.3rem; align-items: center; }
  .f-legal a, .f-motion { min-height: 44px; display: inline-flex; align-items: center; }
}
@media (max-width: 560px) {
  /* quote inputs: ~44px touch height (font stays >=16px so iOS won't zoom) */
  .qc-field input[type="text"], .qc-field input[type="date"] { padding: 0.6rem 0 0.95rem; }
  /* footer giant mark: no edge-clipping on the narrowest phones */
  .foot-mark { font-size: clamp(2.7rem, 13.5vw, 3.4rem); letter-spacing: 0.04em; }
}
