/* ============================================================
   SlabFresh — v2
   Design language: the floor is the hero. Full-bleed surfaces,
   asymmetric type, product-derived texture (vinyl flake chips,
   the hex mark, a wet coating edge). No card grids.
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin.woff2') format('woff2-variations');
  font-weight: 400 900;
  font-stretch: 100% 125%;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/figtree-latin.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: 'Caveat';
  src: url('../fonts/caveat-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F;
}

/* ---------- tokens ---------- */
:root {
  /* brand */
  --teal:       #00B5B0;
  --teal-deep:  #00726F;
  --teal-lift:  #45E0DB;

  /* warm neutrals — concrete, not blue-grey */
  --ink:        #17140F;
  --ink-soft:   #2B251C;
  --ink-mute:   #6B6255;
  --sand:       #E4DBCC;
  --sand-pale:  #F2ECE1;
  --paper:      #FBF8F2;
  --copper:     #C4753C;

  --line:       color-mix(in oklab, var(--ink) 14%, transparent);
  --line-dark:  color-mix(in oklab, #fff 14%, transparent);

  /* type */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --hand:    'Caveat', cursive;

  /* fluid scale */
  --t-mega:  clamp(2.9rem, 9.2vw, 8.8rem);
  --t-xxl:   clamp(2.6rem, 6.4vw,  6.2rem);
  --t-xl:    clamp(2.1rem, 4.4vw,  3.9rem);
  --t-lg:    clamp(1.5rem, 2.4vw,  2.1rem);
  --t-md:    clamp(1.06rem, 1.15vw, 1.22rem);
  --t-sm:    0.95rem;
  --t-xs:    0.78rem;

  /* rhythm */
  --gut:     clamp(1.25rem, 4.5vw, 4.5rem);
  --vspace:  clamp(4.5rem, 11vh, 9.5rem);
  --maxw:    1560px;

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

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--body);
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal); color: #fff; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: var(--gut); top: -100px; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.4rem; border-radius: 999px;
  transition: top .2s var(--ease);
}
.skip:focus { top: 1rem; }

/* ---------- type primitives ---------- */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 108%;
  line-height: .92;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lede { font-size: clamp(1.12rem, 1.6vw, 1.42rem); line-height: 1.5; text-wrap: pretty; }
.hand {
  font-family: var(--hand);
  font-weight: 600;
  line-height: 1;
  color: var(--teal);
}

/* ---------- layout ---------- */
.wrap { width: min(100% - (var(--gut) * 2), var(--maxw)); margin-inline: auto; }
.wrap-narrow { width: min(100% - (var(--gut) * 2), 1080px); margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #04211F;
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 1.9rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--display);
  font-weight: 700; font-stretch: 105%; font-size: 1.02rem;
  letter-spacing: -.01em;
  border-radius: 999px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  will-change: transform;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: #fff; opacity: 0;
  transition: opacity .3s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px color-mix(in oklab, var(--teal) 70%, transparent); }
.btn:hover::after { opacity: .16; }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover::after { opacity: .05; }

.btn--onDark { --btn-fg: #04211F; }
.btn--ghostDark {
  --btn-bg: transparent; --btn-fg: #fff;
  box-shadow: inset 0 0 0 1.5px var(--line-dark);
}
.btn--ghostDark:hover { box-shadow: inset 0 0 0 1.5px #fff; }

.btn__arrow { transition: transform .35s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* phone link — the trades CTA that actually converts */
.tel {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 700; font-stretch: 104%;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.tel svg { width: 1.05em; height: 1.05em; flex: none; }
.tel:hover { color: var(--teal); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: clamp(.85rem, 1.6vh, 1.3rem);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__in { display: flex; align-items: center; gap: clamp(1rem, 3vw, 3rem); }
.nav__logo { flex: none; margin-right: auto; display: block; }
.nav__logo svg { height: clamp(26px, 2.4vw, 32px); width: auto; }
.nav__logo .lg-word { fill: #fff; transition: fill .4s var(--ease); }
.nav__links { display: flex; gap: clamp(1.1rem, 2vw, 2.1rem); align-items: center; }
.nav__links a {
  font-weight: 600; font-size: .96rem; color: #fff;
  position: relative; padding-block: .3rem;
  transition: color .4s var(--ease), opacity .25s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--teal); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__tel { color: #fff; transition: color .4s var(--ease); }
.nav__cta { padding: .8rem 1.5rem; font-size: .95rem; }

/* solid state after scroll */
.nav.is-stuck {
  background: color-mix(in oklab, var(--ink) 97%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(255,255,255,.10), 0 10px 34px -22px rgba(0,0,0,.6);
}



.nav__burger { display: none; flex: none; width: 44px; height: 44px; place-items: center; }
.nav__burger span {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .4s var(--ease-out), opacity .25s var(--ease), background .4s var(--ease);
}
.nav__burger span + span { margin-top: 6px; }


@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; }
  .nav__tel { font-size: .95rem; }
}
@media (max-width: 520px) {
  .nav__tel { width: 44px; height: 44px; flex: none; justify-content: center; }
  .nav__tel span { display: none; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: grid; align-content: center; gap: .4rem;
  padding: var(--gut);
  clip-path: circle(0% at calc(100% - 44px) 40px);
  transition: clip-path .6s var(--ease-out);
  visibility: hidden;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 44px) 40px); visibility: visible; }
.drawer a {
  font-family: var(--display); font-weight: 800; font-stretch: 106%;
  font-size: clamp(2rem, 9vw, 3.2rem); letter-spacing: -.035em; color: #fff;
  line-height: 1.12;
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .5s var(--ease-out), color .2s;
}
.drawer.is-open a { opacity: 1; transform: none; }
.drawer.is-open a:nth-child(1) { transition-delay: .12s; }
.drawer.is-open a:nth-child(2) { transition-delay: .17s; }
.drawer.is-open a:nth-child(3) { transition-delay: .22s; }
.drawer.is-open a:nth-child(4) { transition-delay: .27s; }
.drawer.is-open a:nth-child(5) { transition-delay: .32s; }
.drawer a:hover { color: var(--teal); }
.drawer__foot {
  margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  opacity: 0; transition: opacity .4s var(--ease) .38s;
}
.drawer.is-open .drawer__foot { opacity: 1; }
.drawer__foot .tel { color: #fff; font-size: 1.3rem; }

/* ============================================================
   HERO — full bleed, type on photo, no split, no floating card
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; transform: none; } }

/* legibility scrim — heavier at the bottom where the type sits */
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  /* Directional scrim. The type all lives in the lower-left, so that corner gets
     buried while the subject (right, mid-height) stays bright. Measured: white
     display type clears 4.5:1 against the worst backdrop under it. */
  background:
    linear-gradient(to top right,
      rgba(10,9,7,.95) 0%, rgba(10,9,7,.88) 26%, rgba(10,9,7,.55) 48%,
      rgba(10,9,7,.18) 66%, transparent 82%),
    linear-gradient(to top,
      rgba(10,9,7,.82) 0%, rgba(10,9,7,.44) 34%, rgba(10,9,7,.10) 60%, rgba(10,9,7,.60) 100%);
}

.hero__body {
  align-self: end;
  padding-bottom: clamp(2rem, 5vh, 3.4rem);
  padding-top: clamp(7rem, 16vh, 11rem);
}
.hero__eyebrow {
  color: var(--teal-lift);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: clamp(1rem, 2.4vh, 1.7rem);
}
.hero__eyebrow::before {
  content: ''; width: clamp(28px, 4vw, 54px); height: 2px; background: currentColor; flex: none;
}
.hero__h1 {
  color: #fff;
  font-size: var(--t-mega);
  max-width: 15ch;
}
.hero__h1 em { font-style: normal; color: var(--teal-lift); }

.hero__row {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: clamp(1.4rem, 4vw, 4rem);
  margin-top: clamp(1.5rem, 3.4vh, 2.6rem);
}
.hero__sub { color: rgba(255,255,255,.86); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.hero__actions .tel { color: #fff; padding-inline: .4rem; }

/* trust strip — a thin rule of facts, not three little boxes */
.hero__trust {
  border-top: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(to top, rgba(12,10,8,.55), transparent);
}
.hero__trust ul {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3.4rem);
  padding-block: clamp(.9rem, 2vh, 1.35rem);
}
.hero__trust li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 600;
  letter-spacing: .01em;
}
.hero__trust svg { width: 17px; height: 17px; color: var(--teal-lift); flex: none; }

/* scroll cue */
.hero__cue {
  position: absolute; right: var(--gut); bottom: clamp(5rem, 12vh, 7.5rem);
  writing-mode: vertical-rl;
  font-size: var(--t-xs); letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 700;
  display: flex; align-items: center; gap: .8rem;
}
.hero__cue::after {
  content: ''; width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: cueSlide 2.4s var(--ease) infinite;
}
@keyframes cueSlide { 0%,100% { transform: translateY(0); opacity: .3 } 50% { transform: translateY(9px); opacity: 1 } }
@media (max-width: 1100px) { .hero__cue { display: none; } }

/* ============================================================
   TRANSFORM — full-bleed before/after drag
   ============================================================ */
.transform { position: relative; background: var(--ink); color: #fff; padding-block: 0; }
.transform__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem 2rem;
  padding-block: clamp(3.2rem, 8vh, 5.4rem) clamp(1.6rem, 4vh, 2.6rem);
}
.transform__head h2 { font-size: var(--t-xl); max-width: 18ch; flex: 1 1 24ch; }
.transform__head p { color: rgba(255,255,255,.68); max-width: 34ch; }
.transform__note {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin: 0 auto 1rem;
  color: rgba(255,255,255,.62);
  font-size: .86rem;
}

.ba {
  position: relative; width: 100%;
  aspect-ratio: 21 / 10;
  min-height: 340px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
  background: var(--ink-soft);
}
@media (max-width: 760px) { .ba { aspect-ratio: 4 / 3; } }
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba__after { clip-path: inset(0 0 0 var(--pos, 52%)); }
.ba__tag {
  position: absolute; bottom: clamp(1rem, 3vw, 2rem); z-index: 3;
  font-family: var(--display); font-weight: 800; font-stretch: 108%;
  font-size: clamp(1.5rem, 3.6vw, 3rem); letter-spacing: -.04em;
  color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.7);
  pointer-events: none;
}
.ba__tag--b { left: clamp(1rem, 3vw, 2.4rem); }
.ba__tag--a { right: clamp(1rem, 3vw, 2.4rem); color: var(--teal-lift); }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 52%);
  width: 2px; background: #fff; z-index: 4;
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(0,0,0,.22), 0 0 26px rgba(0,0,0,.4);
  pointer-events: none;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: clamp(52px, 6vw, 66px); aspect-ratio: 1;
  display: grid; place-items: center;
  background: #fff; color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(0,0,0,.45);
  transition: scale .3s var(--ease-out);
}
.ba:hover .ba__knob { scale: 1.08; }
.ba__knob svg { width: 46%; height: 46%; }
.ba__hint {
  position: absolute; top: 50%; left: var(--pos, 52%);
  translate: -50% calc(-50% + 54px); z-index: 5;
  font-family: var(--hand); font-size: 1.5rem; color: #fff;
  white-space: nowrap; pointer-events: none;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
  transition: opacity .4s var(--ease);
}
.ba.is-touched .ba__hint { opacity: 0; }

.transform__foot {
  display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center;
  padding-block: clamp(1.6rem, 4vh, 2.4rem) clamp(3.2rem, 8vh, 5.4rem);
  color: rgba(255,255,255,.6); font-size: .95rem;
}
.transform__foot b { color: #fff; font-weight: 700; }

/* ============================================================
   STEPS — 1-2-3. Staggered, chalk-line connector, giant numerals.
   Deliberately not three equal cards.
   ============================================================ */
.steps {
  position: relative;
  background: var(--paper);
  padding-block: var(--vspace);
  overflow: hidden;
}
.steps::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/flake-light.svg') repeat;
  background-size: 300px;
  opacity: .5; pointer-events: none;
}
.steps__head { position: relative; margin-bottom: clamp(2.6rem, 7vh, 5rem); }
.steps__head h2 { max-width: 13ch; }   /* ch must sit on the heading, not the wrapper */
.steps__head .eyebrow { color: var(--teal-deep); display: block; margin-bottom: .9rem; }
.steps__head h2 { font-size: var(--t-xxl); }

.steps__list {
  position: relative;
  padding-top: clamp(1.8rem, 4vw, 3.2rem);
  display: grid;
  gap: clamp(3rem, 7vw, 2.2rem);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .steps__list { grid-template-columns: 1fr; gap: 3.4rem; } }

/* the vertical stagger is what breaks the grid feel */
.step:nth-child(2) { margin-top: clamp(0rem, 9vw, 6.5rem); }
.step:nth-child(3) { margin-top: clamp(0rem, 4.5vw, 3.2rem); }
@media (max-width: 880px) { .step { margin-top: 0 !important; } }

.step { position: relative; }
.step__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  /* asymmetric cut corner — a saw-cut, not a rounded card */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
  background: var(--sand);
}
.step:nth-child(even) .step__figure {
  clip-path: polygon(46px 0, 100% 0, 100% 100%, 0 100%, 0 46px);
}
.step__figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: scale 1.1s var(--ease-out);
}
.step:hover .step__figure img { scale: 1.05; }

.step__num {
  position: absolute; z-index: 3;
  top: 0; left: 0;
  transform: translate(-.07em, -.44em);
  font-family: var(--display); font-weight: 900; font-stretch: 118%;
  font-size: clamp(5.5rem, 11vw, 10rem); line-height: 1;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  opacity: .9;
  pointer-events: none;
}
.step:nth-child(2) .step__num { -webkit-text-stroke-color: var(--teal); }

.step__body { padding-top: 1.6rem; max-width: 34ch; }
.step__body h3 {
  font-family: var(--display); font-weight: 800; font-stretch: 106%;
  font-size: var(--t-lg); letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: .55rem;
}
.step__body p { color: var(--ink-mute); font-size: 1rem; }


.steps__cta {
  position: relative;
  margin-top: clamp(3rem, 8vh, 5rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
}
.steps__cta .hand { font-size: 1.55rem; transform: rotate(-3deg); }

/* ============================================================
   FINISHES — horizontal rail of tall frames at varied heights
   ============================================================ */
.finishes { background: var(--sand-pale); padding-block: var(--vspace); overflow: hidden; }
.finishes__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.4rem 2rem; margin-bottom: clamp(2rem, 5vh, 3.2rem);
}
.finishes__head .eyebrow { color: var(--teal-deep); display: block; margin-bottom: .9rem; }
.finishes__head h2 { font-size: var(--t-xl); max-width: 20ch; }
.finishes__head p { color: var(--ink-mute); max-width: 30ch; }

.rail {
  display: flex; gap: clamp(1rem, 2vw, 1.7rem);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gut);
  padding-inline: var(--gut);
  padding-bottom: 1.6rem;
  margin-inline: calc(var(--gut) * -1);
  scrollbar-width: none;
  align-items: flex-start;
}
.rail::-webkit-scrollbar { display: none; }
.rail::after { content: ''; flex: none; width: 1px; }

.finish {
  flex: none;
  width: clamp(230px, 25vw, 350px);
  scroll-snap-align: start;
  position: relative;
  display: block;
}
/* varied heights = rhythm, not a row of equal tiles */
.finish:nth-child(1) { --h: 480px; }
.finish:nth-child(2) { --h: 400px; margin-top: 52px; }
.finish:nth-child(3) { --h: 545px; }
.finish:nth-child(4) { --h: 430px; margin-top: 28px; }
@media (max-width: 640px) { .finish { margin-top: 0 !important; --h: 400px !important; } }

.finish__media {
  position: relative;
  height: var(--h);
  overflow: hidden;
  background: var(--sand);
  /* soft arch top — reads as a doorway/portal, not a card */
  border-radius: 190px 190px 6px 6px;
}
.finish__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: scale 1s var(--ease-out), filter .6s var(--ease);
}
.finish:hover .finish__media img { scale: 1.06; }
.finish__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,10,8,.72), rgba(12,10,8,.06) 46%);
  opacity: .9;
}
.finish__label {
  position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.2rem; z-index: 2;
  color: #fff;
}
.finish__label h3 {
  font-family: var(--display); font-weight: 800; font-stretch: 106%;
  font-size: 1.28rem; letter-spacing: -.03em; line-height: 1.1;
}
.finish__label span {
  display: block; font-size: .88rem; color: rgba(255,255,255,.75); margin-top: .2rem;
}
.finish__go {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
  width: 42px; aspect-ratio: 1; border-radius: 999px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: #fff;
  opacity: 0; transform: scale(.7);
  transition: opacity .35s var(--ease), transform .45s var(--ease-out), background .3s;
}
.finish:hover .finish__go { opacity: 1; transform: none; background: var(--teal); color: #04211F; }
.finish__go svg { width: 17px; height: 17px; }

.rail__nav { display: flex; gap: .6rem; margin-top: .4rem; }
.rail__nav button {
  width: 46px; aspect-ratio: 1; border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1.5px var(--line);
  transition: background .3s var(--ease), color .3s, box-shadow .3s, opacity .3s;
}
.rail__nav button:hover { background: var(--ink); color: var(--paper); box-shadow: none; }
.rail__nav button[disabled] { opacity: .3; pointer-events: none; }
.rail__nav svg { width: 17px; height: 17px; }
@media (max-width: 640px) { .rail__nav { display: none; } }

/* ============================================================
   PROOF — dark band, flake texture, inline stats (no boxes)
   ============================================================ */
.proof {
  position: relative;
  background: var(--ink); color: #fff;
  padding-block: var(--vspace);
  overflow: hidden;
}
.proof::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/flake-dark.svg') repeat;
  background-size: 300px; opacity: .55; pointer-events: none;
}
.proof__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.4rem, 6vw, 6rem); align-items: center;
}
@media (max-width: 900px) { .proof__grid { grid-template-columns: 1fr; } }

.proof__copy h2 { font-size: var(--t-xxl); max-width: 15ch; margin-bottom: 1.2rem; }
.proof__copy .eyebrow { color: var(--teal-lift); display: block; margin-bottom: .9rem; }
.proof__copy p { color: rgba(255,255,255,.72); max-width: 44ch; }

.proof__stats {
  list-style: none; padding: 0; margin-top: clamp(2rem, 5vh, 3rem);
  display: grid; grid-template-columns: repeat(3, auto); gap: 1.4rem clamp(1.4rem, 4vw, 3.4rem);
  justify-content: start;
}
@media (max-width: 520px) { .proof__stats { grid-template-columns: repeat(2, auto); } }
.proof__stats li { position: relative; }
.proof__stats li + li { padding-left: clamp(1.4rem, 4vw, 3.4rem); }
.proof__stats li + li::before {
  content: ''; position: absolute; left: 0; top: .35em; bottom: .35em; width: 1px;
  background: rgba(255,255,255,.2);
}
@media (max-width: 520px) {
  .proof__stats li:nth-child(3) { padding-left: 0; }
  .proof__stats li:nth-child(3)::before { display: none; }
}
.proof__stats b {
  display: block;
  font-family: var(--display); font-weight: 800; font-stretch: 110%;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem); line-height: 1; letter-spacing: -.045em;
  color: var(--teal-lift);
}
.proof__stats span { display: block; font-size: .87rem; color: rgba(255,255,255,.6); margin-top: .45rem; }

/* the owner note — hexagon portrait, brand-derived mask */
.proof__note { position: relative; }
.hexframe {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.09;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--ink-soft);
  overflow: hidden;
}
.hexframe img { width: 100%; height: 100%; object-fit: cover; }
.proof__quote {
  margin-top: 1.7rem;
  font-family: var(--display); font-weight: 700; font-stretch: 104%;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.32; letter-spacing: -.025em;
  max-width: 30ch;
}
.proof__by { margin-top: .8rem; font-size: .9rem; color: rgba(255,255,255,.55); }
.proof__by b { color: #fff; font-weight: 700; }

/* ============================================================
   AREA — big friendly type, no map widget, no city chips grid
   ============================================================ */
.area { background: var(--paper); padding-block: var(--vspace); position: relative; overflow: hidden; }
.area__in { position: relative; }
.area .eyebrow { color: var(--teal-deep); display: block; margin-bottom: 1rem; }
.area__in {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .area__in { grid-template-columns: 1fr; gap: 2rem; } }
.area h2 { font-size: var(--t-lg); max-width: 16ch; margin-bottom: 1.1rem; }
.area__note { color: var(--ink-mute); font-size: 1rem; max-width: 34ch; margin-bottom: 1.6rem; }
.area__cities {
  font-family: var(--display); font-weight: 800; font-stretch: 104%;
  font-size: clamp(1.6rem, 3.5vw, 3.1rem);
  line-height: 1.28; letter-spacing: -.035em;
  color: var(--sand);
  max-width: 20ch;
  text-wrap: pretty;
}
.area__cities span { color: var(--ink); transition: color .3s var(--ease); }
.area__cities span:hover { color: var(--teal-deep); }


/* ============================================================
   QUOTE — full-bleed photo + compact form. Three fields. That's it.
   ============================================================ */
.quote { position: relative; isolation: isolate; padding-block: var(--vspace); color: #fff; }
.quote__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--ink); }
.quote__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.quote__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,10,8,.94) 0%, rgba(12,10,8,.86) 40%, rgba(12,10,8,.42) 100%);
}
.quote__grid {
  display: grid; grid-template-columns: 1fr minmax(340px, 480px);
  gap: clamp(2.4rem, 6vw, 5.5rem); align-items: center;
}
@media (max-width: 940px) { .quote__grid { grid-template-columns: 1fr; } }
.quote__copy .eyebrow { color: var(--teal-lift); display: block; margin-bottom: 1rem; }
.quote__copy h2 { font-size: var(--t-xxl); max-width: 13ch; }
.quote__copy p { color: rgba(255,255,255,.75); max-width: 38ch; margin-top: 1.1rem; }
.quote__reassure {
  list-style: none; padding: 0; margin-top: clamp(1.6rem, 4vh, 2.2rem);
  display: grid; gap: .7rem;
}
.quote__reassure li { display: flex; gap: .7rem; align-items: flex-start; font-size: .97rem; color: rgba(255,255,255,.82); }
.quote__reassure svg { width: 18px; height: 18px; flex: none; color: var(--teal-lift); margin-top: .18rem; }

.form {
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 30px 70px -34px rgba(0,0,0,.9);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  display: grid; gap: 1rem;
  /* one cut corner ties it to the step figures */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}
.form__row { display: grid; gap: .42rem; }
.form__names { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: end; }
.form__names .form__row { min-width: 0; }
.form label { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.form input, .form select, .form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  padding: .92rem 1rem;
  font-size: 1rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form input::placeholder { color: rgba(255,255,255,.36); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--teal); background: rgba(255,255,255,.1);
}
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23ffffff' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.6rem; }
.form select option { background: var(--ink); color: #fff; }
.form .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.form__fine { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.45; }
.form__fine a { text-decoration: underline; text-underline-offset: 2px; }
.form__hp { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink); color: rgba(255,255,255,.62); padding-block: clamp(3rem, 7vh, 4.5rem) 2rem; }
.foot__top {
  display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, .8fr));
  gap: 2.4rem clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.2rem, 5vh, 3.2rem);
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 780px) { .foot__top { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }
.foot__brand > svg { height: 30px; width: auto; margin-bottom: 1.1rem; }
.foot__brand .lg-word { fill: #fff; }
.foot__brand p { max-width: 30ch; font-size: .96rem; }
.foot__brand .tel { color: #fff; font-size: 1.2rem; margin-top: 1.2rem; }
.foot h4 {
  font-family: var(--display); font-weight: 700; font-stretch: 104%;
  color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.foot ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.foot ul a { font-size: .96rem; transition: color .25s var(--ease); }
.foot ul a:hover { color: var(--teal-lift); }
.foot__bottom {
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.4);
}
.foot__bottom a:hover { color: #fff; }
.foot__disclosure {
  display: grid;
  gap: .35rem;
  margin-top: 1.15rem;
  max-width: 100ch;
  color: rgba(255,255,255,.38);
  font-size: .76rem;
  line-height: 1.5;
}
.foot__disclosure a { text-decoration: underline; text-underline-offset: 2px; }
.foot__disclosure a:hover { color: rgba(255,255,255,.72); }

/* ============================================================
   REVEAL — CSS + IntersectionObserver (never a JS ticker)
   ============================================================ */
.rv { opacity: 0; transform: translateY(26px); }
.js .rv { transition: opacity .85s var(--ease), transform 1s var(--ease-out); }
.rv.is-in, .no-js .rv, .rv-failsafe .rv { opacity: 1; transform: none; }
.rv-2 { transition-delay: .09s; }
.rv-3 { transition-delay: .18s; }
.rv-4 { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   LOGO — themeable via inherited custom properties.
   (Plain selectors can't cross the <use> shadow boundary; vars can.)
   ============================================================ */
.nav__logo   { --lg-word: #fff; --lg-mark: #fff; --lg-teal: var(--teal); }

.foot__brand { --lg-word: #fff; --lg-mark: #fff; --lg-teal: var(--teal); }
.nav__logo svg, .foot__brand svg { transition: none; }

/* anchored sections must clear the fixed nav */
#how, #finishes, #why, #area, #quote { scroll-margin-top: clamp(4.5rem, 9vh, 6.5rem); }

/* ============================================================
   NARROW SCREENS — hero has to survive a 390px phone
   ============================================================ */
@media (max-width: 620px) {
  /* the eyebrow was wrapping and stranding its rule on a second line */
  .hero__eyebrow { font-size: .75rem; letter-spacing: .1em; gap: .55rem; }
  .hero__eyebrow::before { width: 22px; }

  .hero__body { padding-top: clamp(5.5rem, 13vh, 8rem); }
  .hero__row { gap: 1.15rem; }
  .hero__actions { width: 100%; gap: .6rem 1.2rem; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  /* four stacked facts ate the fold — pack them two-up and shrink the type */
  .hero__trust ul {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .5rem .9rem; padding-block: .8rem;
  }
  .hero__trust li { font-size: .78rem; line-height: 1.25; align-items: flex-start; }
  .hero__trust svg { width: 14px; height: 14px; margin-top: .12rem; }

  .transform__head { padding-block: 3rem 1.4rem; }
  .transform__note { font-size: .78rem; }
  .ba__tag { font-size: 1.35rem; }
  .proof__stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .area__cities { max-width: none; }
}

/* CC BY attribution for the one placeholder that requires it — goes away with real photos */
.foot__credit { display: inline-block; margin-top: .35rem; font-size: .78rem; color: rgba(255,255,255,.32); }
.foot__credit a { text-decoration: underline; text-underline-offset: 2px; }
.foot__credit a:hover { color: rgba(255,255,255,.6); }
