/* =========================================================
   Anchor Renovations — site styles
   Step 1: hero section only.
   ========================================================= */

:root {
  /* Brand */
  --green:      #7CC243;
  --green-600:  #6BAE36;
  --green-100:  #EAF7DE;
  --ink:        #17222E;
  --ink-700:    #2B3947;
  --slate:      #6B7A8C;
  --paper:      #FFFFFF;
  --bone:       #F6F7F5;

  /* Type */
  --font: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-card: 0 18px 45px -12px rgba(9, 18, 28, .35);
  --shadow-nav:  0 10px 30px -14px rgba(9, 18, 28, .28);

  /* Layout */
  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 84px;

  /* HERO SCROLL DISTANCE
     How far you scroll to play the video start→finish.
     300vh = three screens of scrolling. Raise it for a slower,
     more cinematic scrub; lower it for a snappier one. */
  --hero-scroll: 320vh;
}

/* =========================================================
   CROSS-DOCUMENT VIEW TRANSITIONS
   Chrome/Edge (and Safari 18.2+) morph the clicked service card
   straight into that page's hero image. Elsewhere this rule is
   ignored and main.js runs a scripted zoom instead.
   ========================================================= */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: vtFadeOut .22s cubic-bezier(.4,0,1,1) both;
}
::view-transition-new(root) {
  animation: vtFadeIn .32s cubic-bezier(0,0,.2,1) both;
}
@keyframes vtFadeOut { to { opacity: 0; } }
@keyframes vtFadeIn  { from { opacity: 0; } }

/* the morphing card→hero pair gets a longer, softer curve */
::view-transition-group(*) {
  animation-duration: .55s;
  animation-timing-function: cubic-bezier(.2,.7,.3,1);
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1;
  padding: .95em 1.7em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .22s cubic-bezier(.2,.7,.3,1),
              background-color .22s ease,
              border-color .22s ease,
              box-shadow .22s ease,
              color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(124, 194, 67, .8);
}
.btn--primary:hover {
  background: var(--green-600);
  box-shadow: 0 16px 30px -12px rgba(124, 194, 67, .9);
}

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .8);
}

.btn--outline {
  background: transparent;
  border-color: var(--green);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px -12px rgba(124, 194, 67, .85);
}

.btn--lg { font-size: .95rem; padding: 1.1em 2.1em; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.nav__inner {
  max-width: var(--shell);
  margin-inline: auto;
  height: var(--nav-h);
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

/* logo */
.logo {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(124, 194, 67, .9);
}
.logo__mark svg { width: 19px; height: 19px; }
.logo__a   { color: var(--green); }
.logo__b   { color: #fff; transition: color .35s ease; }
.logo__dot { color: var(--green); }

/* the wordmark is long — drop the second half where space is tight */
@media (max-width: 1180px) {
  .nav .logo__b, .nav .logo__dot { display: none; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
}
.nav__links a {
  position: relative;
  font-size: .875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .88);
  padding-block: 6px;
  transition: color .25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }

/* solid state once past the hero fold */
.nav.is-solid {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: var(--shadow-nav);
}
.nav.is-solid .logo__b { color: var(--ink); }
.nav.is-solid .nav__links a { color: var(--slate); }
.nav.is-solid .nav__links a:hover { color: var(--ink); }
.nav.is-solid .nav__burger span { background: var(--ink); }

/* burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 22px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .25s ease, background-color .35s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--gutter) 26px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-nav);
}
.nav__mobile a {
  padding: 14px 2px;
  font-size: 1rem;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(23, 34, 46, .07);
}
.nav__mobile .btn { margin-top: 18px; border-bottom: 0; align-self: flex-start; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: var(--hero-scroll);   /* scroll runway */
  background: var(--ink);
}

.hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

/* ---- video layer ---- */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* nudge the browser to keep the decoded frame on the GPU */
  transform: translateZ(0);
  will-change: transform;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.hero__video.is-ready { opacity: 1; }

/* readability scrim: dark on the left where the copy sits,
   plus a soft vignette top and bottom */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(11, 19, 28, .90) 0%,
      rgba(11, 19, 28, .74) 34%,
      rgba(11, 19, 28, .34) 62%,
      rgba(11, 19, 28, .28) 100%),
    linear-gradient(to bottom,
      rgba(11, 19, 28, .58) 0%,
      rgba(11, 19, 28, .10) 26%,
      rgba(11, 19, 28, .12) 68%,
      rgba(11, 19, 28, .70) 100%);
}

/* ---- content layer ---- */
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 2vh) var(--gutter) clamp(70px, 12vh, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;

  /* driven by JS as you scroll (0 → 1) */
  --exit: 0;
  opacity: calc(1 - var(--exit));
  transform: translate3d(0, calc(var(--exit) * -60px), 0);
}

.hero__copy { max-width: 40ch; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: clamp(20px, 3vh, 30px);
}
.hero__pin {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(124, 194, 67, .25);
  flex: none;
}

.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: #fff;
  text-wrap: balance;
}
.hero__title-accent {
  background: linear-gradient(100deg, var(--green) 0%, #A6DC6E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin-top: clamp(18px, 2.6vh, 28px);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, .8);
  max-width: 46ch;
}

.hero__actions {
  margin-top: clamp(28px, 4vh, 42px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- floating stat cards ---- */
.hero__stats {
  display: grid;
  gap: 16px;
  justify-items: end;
  align-content: center;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 268px;
  padding: 18px 26px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-card);
  animation: statFloat 7s ease-in-out infinite;
}
.stat--a { transform: translateX(-34px); animation-delay: 0s; }
.stat--b { transform: translateX(6px);   animation-delay: -2.4s; }
.stat--c { transform: translateX(-20px); animation-delay: -4.6s; }

.stat__num {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: flex-start;
  min-width: 84px;
}
.stat__plus, .stat__star {
  font-size: .55em;
  line-height: 1;
  margin-left: 2px;
  color: var(--green);
}
.stat__label {
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--slate);
}

@keyframes statFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -9px; }
}

/* ---- scroll cue ---- */
.hero__cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(22px, 4vh, 40px);
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity .5s ease, translate .5s ease;
}
.hero__cue.is-hidden { opacity: 0; translate: -50% 14px; }

.hero__cue-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.hero__cue-track {
  position: relative;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: var(--r-pill);
}
.hero__cue-thumb {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
  animation: cueDrop 1.7s cubic-bezier(.5,0,.3,1) infinite;
}
@keyframes cueDrop {
  0%       { translate: -50% 0;    opacity: 0; }
  22%      { opacity: 1; }
  75%      { translate: -50% 14px; opacity: 0; }
  100%     { translate: -50% 14px; opacity: 0; }
}

/* ---- scrub progress bar ---- */
.hero__progress {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 0;
  height: 3px;
  background: rgba(255, 255, 255, .12);
}
.hero__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--green) 0%, #A6DC6E 100%);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
}

/* =========================================================
   SCROLL REVEAL  ([data-reveal])
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .85s cubic-bezier(.2,.7,.3,1),
              transform .85s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
.promise__copy[data-reveal] { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   FLOW — the shared canvas behind sections 1 + 2
   ========================================================= */
.flow {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  /* progress through the whole flow, 0→1, set by main.js */
  --fp: 0;
}

/* Both sections go transparent so the flow's artwork reads
   straight through the seam instead of being covered. */
.flow > .promise,
.flow > .live {
  position: relative;
  z-index: 1;
  background: transparent;
  overflow: visible;
}

/* Pull them together — a full pad on both sides of the seam
   reads as two separate blocks. */
.flow > .promise { padding-bottom: clamp(30px, 5vh, 64px); }
.flow > .live    { padding-top:    clamp(30px, 5vh, 64px); }

/* Let each section's blobs bleed past its own edges — .flow clips
   them instead, so colour carries across the boundary. */
.flow .promise__artifacts,
.flow .live__artifacts { overflow: visible; }

/* ONE wash for both sections.
   Sections 1 and 2 used to carry their own, which is why the colour
   visibly changed at the boundary. Positions here are percentages of
   the whole flow, so the field reads as a single continuous canvas.
   Palette is deliberately limited to green / peach / soft pink — no
   blue, which was the main thing making section 2 look different. */
.flow__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 20% at  6%  4%, rgba(124, 194, 67, .17) 0%, transparent 70%),
    radial-gradient(36% 18% at 94% 13%, rgba(255, 214, 176, .27) 0%, transparent 72%),
    radial-gradient(44% 17% at 52% 33%, rgba(124, 194, 67, .09) 0%, transparent 74%),
    radial-gradient(38% 18% at  7% 51%, rgba(238, 199, 231, .25) 0%, transparent 72%),
    radial-gradient(36% 18% at 93% 68%, rgba(124, 194, 67, .15) 0%, transparent 72%),
    radial-gradient(40% 20% at 18% 93%, rgba(255, 214, 176, .23) 0%, transparent 72%);
}

/* orbs that straddle the boundary, drifting in opposite directions */
.flow__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  will-change: transform;
}
.flow__orb--a {
  width: 420px; height: 420px;
  left: 4%; top: 50%;
  margin-top: -210px;
  background: radial-gradient(circle at 45% 45%, rgba(124,194,67,.34), rgba(124,194,67,0) 70%);
  transform: translate3d(0, calc((var(--fp) - .5) * 180px), 0);
  animation: drift 20s ease-in-out infinite;
}
.flow__orb--b {
  width: 380px; height: 380px;
  right: 3%; top: 50%;
  margin-top: -190px;
  background: radial-gradient(circle at 55% 45%, rgba(238,199,231,.40), rgba(238,199,231,0) 70%);
  transform: translate3d(0, calc((var(--fp) - .5) * -200px), 0);
  animation: drift 24s ease-in-out infinite reverse;
}

/* connector thread */
.flow__thread {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.flow__thread-line,
.flow__thread-spark {
  stroke-dasharray: var(--len, 2600);
  stroke-dashoffset: var(--len, 2600);
}
.flow__thread-spark {
  stroke-dasharray: 60 var(--len, 2600);
  opacity: .9;
  filter: drop-shadow(0 0 6px rgba(124, 194, 67, .55));
}

@media (max-width: 900px) {
  .flow__thread { display: none; }
  .flow__orb { opacity: .55; }
}

@media (prefers-reduced-motion: reduce) {
  .flow__orb { animation: none; transform: none !important; }
  .flow__thread-spark { display: none; }
}

/* =========================================================
   SECTION 1 — THE PROMISE
   ========================================================= */
.promise {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 13vh, 150px);
  background: var(--paper);
}

/* =========================================================
   SECTION 1 — DECORATIVE ARTIFACTS
   --sp = section scroll progress (0→1), set by main.js.
   Everything here is pointer-events:none and aria-hidden.
   ========================================================= */
.promise__artifacts {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.art { position: absolute; display: block; }

/* soft blurred blobs — slow drift + gentle parallax */
.art--blob-a,
.art--blob-b {
  border-radius: 50%;
  filter: blur(46px);
  opacity: .55;
  will-change: transform;
}
.art--blob-a {
  width: 340px; height: 340px;
  top: -70px; left: -90px;
  background: radial-gradient(circle at 35% 35%, rgba(124,194,67,.55), rgba(124,194,67,0) 70%);
  transform: translate3d(0, calc((var(--sp, 0) - .5) * 70px), 0);
  animation: drift 15s ease-in-out infinite;
}
.art--blob-b {
  width: 400px; height: 400px;
  right: -110px; bottom: -130px;
  background: radial-gradient(circle at 60% 40%, rgba(255,196,150,.50), rgba(255,196,150,0) 70%);
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -90px), 0);
  animation: drift 19s ease-in-out infinite reverse;
}

/* hand-drawn arrow — strokes itself in, then never fully settles */
.art--arrow {
  width: 150px; height: 86px;
  left: 45.5%; top: 8%;
  color: var(--green);
  opacity: .9;
  /* parallax on transform; bob on the individual props so the two
     don't fight over the same property */
  transform: translate3d(0, calc((var(--sp, 0) - .5) * 40px), 0);
  rotate: -6deg;
  animation: arrowBob 6s ease-in-out infinite;
}
.art__arrow-line, .art__arrow-head {
  stroke-dasharray: var(--len, 400);
  stroke-dashoffset: var(--len, 400);
}
.promise.is-drawn .art__arrow-line {
  animation: drawIn 1.15s cubic-bezier(.5,0,.2,1) forwards;
}
.promise.is-drawn .art__arrow-head {
  animation: drawIn .35s cubic-bezier(.5,0,.2,1) .95s forwards;
}

/* travelling light — starts once the arrow has drawn itself */
.art__arrow-spark {
  stroke: #C8F09B;
  stroke-width: 4.2;
  stroke-dasharray: 20 var(--len, 400);
  stroke-dashoffset: var(--len, 400);
  opacity: 0;
}
.promise.is-drawn .art__arrow-spark {
  animation: sparkTravel 3.6s cubic-bezier(.55,0,.45,1) 1.5s infinite;
}

@keyframes drawIn { to { stroke-dashoffset: 0; } }

@keyframes sparkTravel {
  0%        { stroke-dashoffset: var(--len, 400); opacity: 0; }
  12%       { opacity: .95; }
  70%       { opacity: .95; }
  80%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes arrowBob {
  0%, 100% { rotate: -6deg;   translate: 0 0; }
  50%      { rotate: -2.5deg; translate: 0 -9px; }
}

@keyframes drift {
  0%, 100% { translate: 0 0; }
  50%      { translate: 22px -26px; }
}

@media (max-width: 1080px) {
  .art--arrow { display: none; }
}

.promise__inner {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, .72fr);
  align-items: center;
  gap: clamp(30px, 3.4vw, 54px);
}

/* ---- media card ---- */
.promise__media {
  position: relative;
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 900px;   /* desktop only — capped again at the 900px breakpoint */
}

.promise__card {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--r-lg);
  background: var(--bone);
  box-shadow: 0 26px 60px -28px rgba(9, 18, 28, .32);
  /* lifts very slightly as the section scrolls past */
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -26px), 0);
  will-change: transform;
}
.promise__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(23, 34, 46, .07);
  pointer-events: none;
}

/* ---- floating chips on the card ---- */
.chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px -14px rgba(9, 18, 28, .40);
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(.94);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1),
              transform .6s cubic-bezier(.2,.7,.3,1);
}
/* generic — works for any [data-reveal] block containing chips */
[data-reveal].is-in .chip { opacity: 1; transform: none; }
[data-reveal].is-in .chip--sold {
  transition-delay: .45s;
  animation: chipFloat 6s ease-in-out .9s infinite;
}
[data-reveal].is-in .chip--offers {
  transition-delay: .68s;
  animation: chipFloat 7.5s ease-in-out -2s infinite;
}
[data-reveal].is-in .chip--keys {
  transition-delay: .45s;
  animation: chipFloat 6.8s ease-in-out -1.2s infinite;
}
[data-reveal].is-in .chip--rental {
  transition-delay: .68s;
  animation: chipFloat 8s ease-in-out -3.4s infinite;
}

.chip--sold   { top: -20px;    right: -14px; }
.chip--offers { bottom: -22px; left: -18px; }
.chip--keys   { top: -20px;    left: -18px; }
.chip--rental { bottom: -22px; right: -14px; }

.chip__tick, .chip__spark {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  flex: none;
}
.chip__tick  { background: var(--green); color: #fff; }
.chip__spark { background: var(--green-100); color: var(--green-600); }
.chip__tick svg, .chip__spark svg { width: 16px; height: 16px; }

.chip__text {
  font-size: .74rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--slate);
}
.chip__text b {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
}

@keyframes chipFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}

.promise__video {
  width: 100%;
  aspect-ratio: 16 / 10;   /* wider on desktop; squarer on mobile below */
  height: auto;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.promise__video.is-ready { opacity: 1; }

/* scrub progress along the bottom of the card */
.promise__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, #A6DC6E 100%);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  z-index: 1;
}

/* ---- copy ---- */
.promise__copy { max-width: 44ch; }

.promise__kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 18px;
}

.promise__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.032em;
  color: var(--ink);
  text-wrap: balance;
}
.promise__title-accent { color: var(--green-600); }

.promise__text {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--slate);
}

.promise__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: nowrap;   /* keep both CTAs side by side on desktop */
  align-items: center;
  gap: 12px;
}
/* trimmed so the pair fits the narrower copy column without wrapping */
.promise__actions .btn { padding: 1.02em 1.55em; font-size: .9rem; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .promise__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(32px, 6vh, 52px);
  }
  .promise__copy { max-width: none; }
  .promise__media { max-width: 560px; }
  .promise__video { aspect-ratio: 4 / 3; }   /* squarer once stacked */
}

@media (max-width: 560px) {
  .promise__media { max-width: 100%; }
  /* stack them again once there's genuinely no room */
  .promise__actions { flex-wrap: wrap; }
  .promise__actions .btn { flex: 1 1 100%; }
  /* keep the chips inside the viewport on small screens */
  .chip { padding: 10px 14px; gap: 9px; }
  .chip--sold   { top: -14px; right: -4px; }
  .chip--offers { bottom: -16px; left: -4px; }
}

/* ---- reduced motion: keep the artwork, drop the movement ---- */
@media (prefers-reduced-motion: reduce) {
  .art--blob-a, .art--blob-b, .art--arrow,
  [data-reveal].is-in .chip { animation: none; }

  .promise.is-drawn .art__arrow-line,
  .promise.is-drawn .art__arrow-head { animation: none; stroke-dashoffset: 0; }
  .art__arrow-spark { display: none; }

  .art, .promise__card { transform: none !important; }
  .art--arrow { rotate: -6deg; }
  .chip { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   SECTION 2 — LIVE IN OR RENT OUT
   Mirror of section 1. Static image kept alive with scroll
   parallax + Ken Burns + pointer tilt + a shine sweep.
   ========================================================= */
.live {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 13vh, 150px);
  background: var(--paper);
}

.live__artifacts {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.art--blob-c, .art--blob-d {
  border-radius: 50%;
  filter: blur(46px);
  opacity: .5;
  will-change: transform;
}
.art--blob-c {
  width: 360px; height: 360px;
  top: -90px; right: -100px;
  background: radial-gradient(circle at 40% 40%, rgba(124,194,67,.50), rgba(124,194,67,0) 70%);
  transform: translate3d(0, calc((var(--sp, 0) - .5) * 80px), 0);
  animation: drift 17s ease-in-out infinite;
}
.art--blob-d {
  width: 380px; height: 380px;
  left: -120px; bottom: -140px;
  /* peach, matching section 1's palette — was blue */
  background: radial-gradient(circle at 55% 45%, rgba(255,206,170,.44), rgba(255,206,170,0) 70%);
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -85px), 0);
  animation: drift 21s ease-in-out infinite reverse;
}

.live__inner {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);  /* mirror of section 1 */
  align-items: center;
  gap: clamp(30px, 3.4vw, 54px);
}

/* ---- copy (left) ---- */
.live__copy { max-width: 44ch; }

.live__kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 18px;
}

.live__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.032em;
  color: var(--ink);
  text-wrap: balance;
}
.live__title-accent { color: var(--green-600); }

.live__text {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--slate);
}

.live__actions { margin-top: 36px; display: flex; gap: 12px; }
.live__actions .btn { padding: 1.02em 1.55em; font-size: .9rem; }

/* ---- media (right) ---- */
.live__media {
  position: relative;
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 900px;
}

/* scroll lift + the 3D context the tilt needs.
   Kept on its own element so the reveal, the lift and the tilt
   never compete for the same transform. */
.live__lift {
  position: relative;
  perspective: 1200px;
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -26px), 0);
  will-change: transform;
}

.live__card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--bone);
  box-shadow: 0 26px 60px -28px rgba(9, 18, 28, .32);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.live__lift.is-tilting .live__card { transition: none; }  /* follow the pointer 1:1 */

.live__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(23, 34, 46, .07);
  pointer-events: none;
  z-index: 2;
}

.live__frame {
  overflow: hidden;
  border-radius: inherit;
}

.live__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center 42%;
  /* transform = scroll parallax; scale/translate = Ken Burns.
     Separate properties, so the two compose instead of clobbering. */
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -5%), 0);
  scale: 1.14;
  animation: kenBurns 26s ease-in-out infinite alternate;
  will-change: transform, scale, translate;
}

@keyframes kenBurns {
  from { scale: 1.11; translate: -1.6% .6%; }
  to   { scale: 1.21; translate:  1.6% -1%; }
}

/* periodic gloss sweep */
.live__shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.live__shine::before {
  content: "";
  position: absolute;
  top: -60%; left: 0;
  width: 42%; height: 220%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%, rgba(255,255,255,.38) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(18deg);
  translate: -200% 0;
  animation: shineSweep 7.5s ease-in-out 2.4s infinite;
}
@keyframes shineSweep {
  0%        { translate: -200% 0; }
  55%, 100% { translate:  460% 0; }
}

/* accent bar, matching section 1's scrub line */
.live__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  background: linear-gradient(90deg, var(--green) 0%, #A6DC6E 100%);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  z-index: 2;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .live__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(32px, 6vh, 52px);
  }
  .live__copy { max-width: none; }
  .live__media { max-width: 560px; justify-self: center; }
  .live__img { aspect-ratio: 4 / 3; }
  .live__card { transform: none; }   /* no tilt without a pointer */

  /* Stacked, section 1 ends on its copy and section 2 would start on
     its copy too — two blocks of text meeting at the seam. Lifting
     the image above the copy restores the card / text / card / text
     rhythm. Desktop order (copy left, card right) is untouched. */
  .live__media { order: -1; }
}

@media (max-width: 560px) {
  .live__media { max-width: 100%; }
  .live__actions { flex-wrap: wrap; }
  .live__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .art--blob-c, .art--blob-d, .live__img { animation: none; }
  .live__shine { display: none; }
  .live__img { scale: 1; }
  .live__lift, .live__card, .art--blob-c, .art--blob-d { transform: none !important; }
}

/* =========================================================
   SECTION 3 — SERVICES CAROUSEL
   ========================================================= */
.services {
  position: relative;
  overflow: hidden;
  background: var(--bone);   /* shows until the photo decodes */
  padding-block: clamp(72px, 11vh, 132px);
}

/* ---- photographic backdrop ---- */
.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.services__photo {
  position: absolute;
  /* overhang so the parallax shift never exposes an edge */
  top: -40px;
  bottom: -40px;
  left: 0;
  right: 0;
  background-image: url("../assets/img/bg/services-crew.jpg");
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  filter: saturate(.94);
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -30px), 0);
  will-change: transform;
}

/* Readability veil.
   Horizontal: near-clear in the outer margins, heavy across the
   content shell so the heading and cards stay legible over a busy
   photo. Vertical: white at the top to ease out of the flow above,
   bone at the bottom to meet the gallery below. */
.services__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      var(--paper) 0%,
      rgba(255, 255, 255, 0) 14%,
      rgba(255, 255, 255, 0) 86%,
      var(--bone) 100%),
    linear-gradient(90deg,
      rgba(255, 255, 255, .60) 0%,
      rgba(255, 255, 255, .84) 10%,
      rgba(255, 255, 255, .95) 22%,
      rgba(255, 255, 255, .96) 50%,
      rgba(255, 255, 255, .95) 78%,
      rgba(255, 255, 255, .84) 90%,
      rgba(255, 255, 255, .60) 100%);
}

.services__inner {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- header ---- */
.services__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(30px, 5vh, 48px);
}

.services__intro { max-width: 62ch; }

.services__kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.services__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.032em;
  color: var(--ink);
  text-wrap: balance;
}
.services__title-accent { color: var(--green-600); }

.services__text {
  margin-top: 18px;
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  max-width: 56ch;
}

/* ---- arrows ---- */
.services__nav { display: flex; gap: 12px; }

.sbtn {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(23, 34, 46, .16);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease,
              color .25s ease, transform .25s cubic-bezier(.2,.7,.3,1),
              opacity .25s ease;
}
.sbtn svg { width: 19px; height: 19px; }
.sbtn:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.sbtn--next {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(124, 194, 67, .9);
}
.sbtn:disabled {
  opacity: .32;
  cursor: default;
  background: transparent;
  border-color: rgba(23, 34, 46, .16);
  color: var(--ink);
  box-shadow: none;
}

/* ---- track: 2 rows, flowing into columns, scroll-snapped ---- */
.services__track {
  /* 3 full cards plus a peek — bigger than 4-across, and the partial
     card makes it obvious there's more to scroll */
  --cols: 3.4;
  --gap: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
  gap: var(--gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* room for the cards' hover lift and shadow */
  padding: 6px 6px 18px;
  margin: -6px -6px -18px;
  scrollbar-width: none;
}
.services__track::-webkit-scrollbar { display: none; }
.services__track:focus-visible { outline-offset: -2px; }

.scard {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  min-height: 122px;
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid rgba(23, 34, 46, .07);
  box-shadow: 0 18px 38px -20px rgba(9, 18, 28, .40);
  transition: transform .32s cubic-bezier(.2,.7,.3,1),
              box-shadow .32s ease, border-color .32s ease;
}

/* the whole card is the link */
.scard__link {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  padding: 24px 46px 24px 26px;   /* right pad leaves room for the chevron */
  color: inherit;
  text-decoration: none;
}
.scard__link:focus-visible { outline-offset: -4px; border-radius: var(--r-md); }

.scard:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 194, 67, .5);
  box-shadow: 0 32px 56px -24px rgba(9, 18, 28, .48);
}

/* green edge that wipes down on hover */
.scard::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green) 0%, #A6DC6E 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.scard:hover::before { transform: scaleY(1); }

/* chevron that slides in on hover */
.scard::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--green-600);
  border-top: 2px solid var(--green-600);
  translate: -7px -50%;
  rotate: 45deg;
  opacity: 0;
  transition: opacity .3s ease, translate .34s cubic-bezier(.2,.7,.3,1);
}
.scard:hover::after { opacity: 1; translate: 0 -50%; }

.scard__icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  flex: none;
  border-radius: 17px;
  background: var(--green-100);
  color: var(--green-600);
  transition: background-color .3s ease, color .3s ease, transform .3s cubic-bezier(.2,.7,.3,1);
}
.scard__icon svg { width: 31px; height: 31px; }
.scard:hover .scard__icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.07) rotate(-3deg);
}

.scard__label {
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.018em;
  color: var(--ink);
}

/* staggered arrival — the track itself doesn't move, only the cards */
.services__track[data-reveal] { opacity: 1; transform: none; }
.services__track .scard {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1),
              transform .6s cubic-bezier(.2,.7,.3,1),
              box-shadow .32s ease, border-color .32s ease;
}
.services__track.is-in .scard { opacity: 1; transform: none; }
.services__track.is-in .scard:nth-child(1)  { transition-delay: .05s; }
.services__track.is-in .scard:nth-child(2)  { transition-delay: .11s; }
.services__track.is-in .scard:nth-child(3)  { transition-delay: .17s; }
.services__track.is-in .scard:nth-child(4)  { transition-delay: .23s; }
.services__track.is-in .scard:nth-child(5)  { transition-delay: .29s; }
.services__track.is-in .scard:nth-child(6)  { transition-delay: .35s; }
.services__track.is-in .scard:nth-child(7)  { transition-delay: .41s; }
.services__track.is-in .scard:nth-child(8)  { transition-delay: .47s; }
.services__track.is-in .scard:nth-child(9)  { transition-delay: .53s; }
.services__track.is-in .scard:nth-child(10) { transition-delay: .59s; }

/* ---- dots ---- */
.services__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: clamp(26px, 4vh, 40px);
}
.services__dots:empty { display: none; }

.sdot {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 34, 46, .18);
  cursor: pointer;
  transition: background-color .28s ease, width .28s cubic-bezier(.2,.7,.3,1);
}
.sdot:hover { background: rgba(23, 34, 46, .34); }
.sdot.is-active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--green);
}

/* ---- responsive ---- */
@media (max-width: 1080px) { .services__track { --cols: 2.5; } }

@media (max-width: 820px) {
  .services__head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 24px;
  }
  .services__nav { order: 2; }
  .services__track { --cols: 2; --gap: 14px; }

  /* content fills the width here, so the photo has to sit further back */
  .services__veil {
    background:
      linear-gradient(180deg,
        var(--paper) 0%,
        rgba(255, 255, 255, 0) 14%,
        rgba(255, 255, 255, 0) 86%,
        var(--bone) 100%),
      linear-gradient(90deg,
        rgba(255, 255, 255, .90) 0%,
        rgba(255, 255, 255, .96) 30%,
        rgba(255, 255, 255, .96) 70%,
        rgba(255, 255, 255, .90) 100%);
  }
}

@media (max-width: 520px) {
  .services__track { --cols: 1.25; }   /* peek the next card */
  .scard { min-height: 104px; }
  .scard__link { padding: 18px 20px; gap: 15px; }
  .scard__icon { width: 50px; height: 50px; border-radius: 14px; }
  .scard__icon svg { width: 27px; height: 27px; }
  .scard__label { font-size: .96rem; }
  .scard::after { display: none; }   /* no hover on touch */
}

@media (prefers-reduced-motion: reduce) {
  .services__track { scroll-behavior: auto; }
  .scard:hover { transform: none; }
  .scard:hover .scard__icon { transform: none; }
  .services__photo { transform: none !important; }
  .services__track .scard { opacity: 1; transform: none; transition: none; }
  .scard::before { transform: scaleY(1); }
}

/* =========================================================
   SECTION 3b — RISK / PROTECTIONS
   Two overlapping photos left, headline + checklist right.
   ========================================================= */
.trust {
  position: relative;
  overflow: hidden;
  /* bone at both edges so it meets the services section above and
     the gallery below without a visible seam */
  background: linear-gradient(180deg,
    var(--bone) 0%, var(--paper) 18%, var(--paper) 82%, var(--bone) 100%);
  padding-block: clamp(76px, 12vh, 140px);
}

.trust__inner {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

/* ---- overlapping photos ---- */
.trust__media {
  position: relative;
  margin: 0 0 46px;          /* room for the inset's overhang */
  padding-right: 6%;
}

.trust__shot {
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bone);
  /* Hover growth uses `scale`, NOT `transform` — the inset already
     carries the scroll parallax on transform, and one property can't
     be driven by both. The two compose instead of fighting. */
  scale: 1;
  transition: scale .5s cubic-bezier(.2,.7,.3,1),
              box-shadow .5s ease;
}
.trust__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .7s cubic-bezier(.2,.7,.3,1);
}

.trust__shot--main {
  width: 82%;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 64px -30px rgba(9, 18, 28, .40);
}

.trust__shot--inset {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -46px;
  width: 56%;
  aspect-ratio: 4 / 3;
  border: 7px solid var(--paper);
  border-radius: 24px;
  box-shadow: 0 26px 52px -22px rgba(9, 18, 28, .44);
  /* drifts a little against the main shot as the section passes */
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -22px), 0);
  will-change: transform, scale;
}

/* ---- hover: the frame grows a little, the photo inside grows more ---- */
@media (hover: hover) and (pointer: fine) {
  .trust__shot:hover img { transform: scale(1.09); }

  .trust__shot--main:hover {
    scale: 1.015;
    box-shadow: 0 42px 84px -32px rgba(9, 18, 28, .48);
  }
  .trust__shot--inset:hover {
    scale: 1.05;
    box-shadow: 0 36px 68px -22px rgba(9, 18, 28, .52);
  }
}

/* ---- copy ---- */
.trust__copy { max-width: 52ch; }

.trust__kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.trust__title {
  font-size: clamp(1.85rem, 3.3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.032em;
  color: var(--ink);
  text-wrap: balance;
}
.trust__title-accent { color: var(--green-600); }

.trust__text {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--slate);
}

/* ---- checklist ---- */
.trust__list {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.tcheck {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-700);
  /* staggered by the parent's .is-in */
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1),
              transform .6s cubic-bezier(.2,.7,.3,1);
}
.trust__copy.is-in .tcheck { opacity: 1; transform: none; }
.trust__copy.is-in .tcheck:nth-child(1) { transition-delay: .22s; }
.trust__copy.is-in .tcheck:nth-child(2) { transition-delay: .32s; }
.trust__copy.is-in .tcheck:nth-child(3) { transition-delay: .42s; }
.trust__copy.is-in .tcheck:nth-child(4) { transition-delay: .52s; }

.tcheck__mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: .1em;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(124, 194, 67, .9);
}
.tcheck__mark svg { width: 13px; height: 13px; }

.trust__actions { margin-top: 36px; }
.trust__actions .btn { padding: 1.02em 1.55em; font-size: .9rem; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .trust__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(48px, 8vh, 72px);
  }
  .trust__copy { max-width: none; }
  .trust__media {
    max-width: 520px;
    justify-self: center;
    width: 100%;
    padding-right: 10%;
  }
}

@media (max-width: 560px) {
  .trust__media { margin-bottom: 34px; padding-right: 14%; }
  .trust__shot--main { width: 86%; }
  .trust__shot--inset { width: 58%; bottom: -34px; border-width: 5px; border-radius: 18px; }
  .trust__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .trust__shot--inset { transform: none !important; }
  .trust__shot, .trust__shot img { transition: none; }
  .trust__shot:hover { scale: 1; }
  .trust__shot:hover img { transform: none; }
  .tcheck { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   SECTION 4 — BEFORE / AFTER GALLERY
   ========================================================= */
.gallery {
  position: relative;
  overflow: hidden;
  background: var(--bone);   /* shows until the photos decode */
  padding-block: clamp(72px, 11vh, 132px);
}

/* ---- split photographic backdrop ---- */
.gallery__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.gallery__bg-half {
  position: absolute;
  /* overhang so the parallax shift never exposes an edge */
  top: -40px;
  bottom: -40px;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(.96);
  transform: translate3d(0, calc((var(--sp, 0) - .5) * -30px), 0);
  will-change: transform;
}
/* Both halves are the same room from the same camera position, so
   anchoring each to its OUTER edge lets them read as one continuous
   room — gutted on the left, finished on the right. Anchoring them
   to the seam instead would mirror the room and break the illusion. */
.gallery__bg-half--left {
  left: 0;
  background-image: url("../assets/img/bg/services-before.jpg");
  background-position: left center;
}
.gallery__bg-half--right {
  right: 0;
  background-image: url("../assets/img/bg/services-after.jpg");
  background-position: right center;
}

/* Readability veil.
   Horizontal: near-clear at the outer edges where there is only
   margin, heavier through the middle where the copy and cards sit.
   Vertical: bone top and bottom so it meets the sections either side. */
.gallery__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      var(--bone) 0%,
      rgba(255, 255, 255, 0) 14%,
      rgba(255, 255, 255, 0) 86%,
      var(--bone) 100%),
    linear-gradient(90deg,
      rgba(255, 255, 255, .18) 0%,
      rgba(255, 255, 255, .52) 15%,
      rgba(255, 255, 255, .84) 33%,
      rgba(255, 255, 255, .87) 50%,
      rgba(255, 255, 255, .84) 67%,
      rgba(255, 255, 255, .52) 85%,
      rgba(255, 255, 255, .18) 100%);
}

/* hairline where the two halves meet */
.gallery__seam {
  position: absolute;
  z-index: 2;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%, rgba(124, 194, 67, .45) 22%,
    rgba(124, 194, 67, .45) 78%, transparent 100%);
}

.gallery__inner {
  position: relative;
  z-index: 3;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- header (centred, arrows pinned right) ---- */
.gallery__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(32px, 5vh, 52px);
}

.gallery__kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.gallery__title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.032em;
  color: var(--ink);
  text-wrap: balance;
}
.gallery__title-accent { color: var(--green-600); }

.gallery__text {
  margin: 18px auto 0;
  max-width: 60ch;
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
}

.gallery__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 12px;
}

/* ---- track ---- */
.gallery__track {
  /* 2 across on desktop — the sources are landscape and each card
     shows only half its width, so fewer/wider cards means a much
     less aggressive crop on every photo. */
  --cols: 2;
  --gap: 24px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
  gap: var(--gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 6px 20px;
  margin: -6px -6px -20px;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track:focus-visible { outline-offset: -2px; }

/* ---- project card ---- */
.pcard {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid rgba(23, 34, 46, .06);
  box-shadow: 0 16px 34px -22px rgba(9, 18, 28, .38);
  transition: transform .32s cubic-bezier(.2,.7,.3,1), box-shadow .32s ease;
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 50px -26px rgba(9, 18, 28, .44);
}

/* ---- the VS split ---- */
.pcard__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--paper);
}

.pcard__half {
  position: relative;
  margin: 0;
  overflow: hidden;
  /* square rather than portrait: keeps far more of each
     landscape source visible inside the split */
  aspect-ratio: 1 / 1;
  background: var(--bone);
}
.pcard__half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.pcard:hover .pcard__half img { transform: scale(1.06); }

.pcard__tag {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 6px 14px -6px rgba(9, 18, 28, .45);
}
.pcard__tag--before {
  left: 10px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
}
.pcard__tag--after {
  right: 10px;
  background: var(--green);
  color: #fff;
}

/* the VS badge straddling the seam */
.pcard__vs {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 3px solid var(--paper);
  box-shadow: 0 8px 20px -8px rgba(9, 18, 28, .55);
  transition: transform .32s cubic-bezier(.2,.7,.3,1);
}
.pcard:hover .pcard__vs { transform: scale(1.09); }

/* ---- card body ---- */
.pcard__body { padding: 20px 22px 24px; }

.pcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(23, 34, 46, .08);
}
.pcard__meta li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 300;
  color: var(--slate);
}
.pcard__meta svg { width: 15px; height: 15px; color: var(--green-600); flex: none; }

.pcard__title {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.022em;
  color: var(--ink);
}

.pcard__text {
  margin-top: 10px;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--slate);
}

/* ---- dots + actions ---- */
.gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: clamp(24px, 4vh, 36px);
}
.gallery__dots:empty { display: none; }

.gallery__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(28px, 4.5vh, 44px);
}

/* ---- responsive ---- */
@media (max-width: 1000px) { .gallery__track { --cols: 1.6; --gap: 18px; } }

@media (max-width: 820px) {
  .gallery__head { text-align: left; }
  .gallery__text { margin-inline: 0; }
  .gallery__nav { position: static; margin-top: 24px; }

  /* content fills the width here, so the photos have to sit further
     back or the copy stops being readable */
  .gallery__veil {
    background:
      linear-gradient(180deg,
        var(--bone) 0%,
        rgba(255, 255, 255, 0) 14%,
        rgba(255, 255, 255, 0) 86%,
        var(--bone) 100%),
      linear-gradient(90deg,
        rgba(255, 255, 255, .74) 0%,
        rgba(255, 255, 255, .88) 30%,
        rgba(255, 255, 255, .88) 70%,
        rgba(255, 255, 255, .74) 100%);
  }
  .gallery__seam { opacity: .5; }
}

@media (max-width: 620px) {
  .gallery__track { --cols: 1.12; --gap: 14px; }  /* peek the next card */
  .gallery__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track { scroll-behavior: auto; }
  .pcard:hover { transform: none; }
  .pcard:hover .pcard__half img,
  .pcard:hover .pcard__vs { transform: none; }
  .gallery__bg-half { transform: none !important; }
}

/* =========================================================
   SERVICE PAGES  (/services/*.html)
   ========================================================= */
.svc-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 68vh;
  min-height: 68svh;
  padding: calc(var(--nav-h) + 6vh) 0 clamp(48px, 8vh, 88px);
  background: var(--ink);
  overflow: hidden;
}

.svc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* icon fallback where there's no photograph for the trade yet */
.svc-hero--glyph .svc-hero__media {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1B2B1A 0%, #2E4A22 48%, #4F7C31 100%);
}
.svc-hero__glyph { display: grid; place-items: center; opacity: .16; }
.svc-hero__glyph-svg { width: min(46vw, 380px); height: auto; color: #fff; stroke-width: .9; }

.svc-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(11, 19, 28, .88) 0%, rgba(11, 19, 28, .70) 42%, rgba(11, 19, 28, .40) 100%),
    linear-gradient(to bottom,
      rgba(11, 19, 28, .70) 0%, rgba(11, 19, 28, .18) 34%, rgba(11, 19, 28, .78) 100%);
}

.svc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.svc-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 22px;
}
.svc-crumb a { color: rgba(255, 255, 255, .78); transition: color .22s ease; }
.svc-crumb a:hover { color: var(--green); }
.svc-crumb [aria-current] { color: #fff; }

.svc-hero__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(124, 194, 67, .9);
}
.svc-hero__icon svg { width: 29px; height: 29px; }

.svc-hero__title {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
  color: #fff;
  text-wrap: balance;
  max-width: 20ch;
}

.svc-hero__blurb {
  margin-top: 18px;
  max-width: 56ch;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 300;
  line-height: 1.66;
  color: rgba(255, 255, 255, .8);
}

.svc-hero__actions {
  margin-top: clamp(26px, 4vh, 38px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- shared type ---- */
.svc-kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 15px;
}
.svc-h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.032em;
  color: var(--ink);
  text-wrap: balance;
}
.svc-text {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--slate);
}

/* ---- at a glance strip ---- */
.svc-glance {
  background: var(--ink-700);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.svc-glance__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.svc-glance__item {
  padding: 24px 0 26px;
  border-left: 1px solid rgba(255, 255, 255, .1);
  padding-left: clamp(18px, 3vw, 38px);
}
.svc-glance__item:first-child { border-left: 0; padding-left: 0; }
.svc-glance dt {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 7px;
}
.svc-glance dd {
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.12rem);
  font-weight: 500;
  letter-spacing: -.018em;
  color: #fff;
}

/* ---- price drivers ---- */
.svc-drivers {
  background: var(--paper);
  padding-block: clamp(66px, 10vh, 118px);
}
.svc-drivers__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.svc-drivers__head { max-width: 60ch; margin-bottom: clamp(30px, 5vh, 46px); }
.svc-drivers__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}
.svc-driver {
  position: relative;
  padding: 30px 26px 30px;
  border-radius: var(--r-md);
  background: var(--bone);
  border: 1px solid rgba(23, 34, 46, .07);
}
.svc-driver__n {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
.svc-driver__t {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.32;
  color: var(--ink);
}
.svc-driver__d {
  margin-top: 10px;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.68;
  color: var(--slate);
}

/* ---- timeline ---- */
.svc-timeline {
  background: var(--bone);
  padding-block: clamp(66px, 10vh, 118px);
}
.svc-timeline__inner {
  max-width: 940px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.svc-timeline__head { margin-bottom: clamp(28px, 4vh, 44px); }
.svc-timeline__list { list-style: none; margin: 0; padding: 0; }

.svc-phase {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 30px;
}
.svc-phase:last-child { padding-bottom: 0; }

/* connector line down the markers */
.svc-phase::before {
  content: "";
  position: absolute;
  left: 9px; top: 26px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(124,194,67,.5), rgba(124,194,67,.12));
}
.svc-phase:last-child::before { display: none; }

.svc-phase__marker {
  width: 20px; height: 20px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--green);
  box-shadow: 0 0 0 4px rgba(124, 194, 67, .16);
}
.svc-phase__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}
.svc-phase__top h3 {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.022em;
  color: var(--ink);
}
.svc-phase__dur {
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: var(--green-100);
  font-size: .74rem;
  font-weight: 500;
  color: #38621B;
  white-space: nowrap;
}
.svc-phase__body p {
  margin-top: 9px;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
}

/* ---- pitfalls (dark) ---- */
.svc-pitfalls {
  background: var(--ink);
  padding-block: clamp(66px, 10vh, 118px);
}
.svc-pitfalls__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.svc-kicker--light { color: var(--green); }
.svc-h2--light { color: #fff; }
.svc-pitfalls__head { max-width: 62ch; margin-bottom: clamp(30px, 5vh, 46px); }
.svc-pitfalls__lede {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, .66);
}
.svc-pitfalls__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}
.svc-pitfall {
  padding: 28px 26px 30px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
}
.svc-pitfall__icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  margin-bottom: 16px;
  border-radius: 11px;
  background: rgba(232, 151, 63, .16);
  color: #E8973F;
}
.svc-pitfall__icon svg { width: 20px; height: 20px; }
.svc-pitfall h3 {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.34;
  color: #fff;
}
.svc-pitfall p {
  margin-top: 10px;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.68;
  color: rgba(255, 255, 255, .62);
}

/* ---- service faq ---- */
.svc-faq {
  background: var(--paper);
  padding-block: clamp(66px, 10vh, 118px);
}
.svc-faq__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.svc-faq__head { margin-bottom: clamp(22px, 3vh, 34px); }
.svc-faq__list { display: grid; }

/* ---- what's included ---- */
.svc-body {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 70%, var(--bone) 100%);
  padding-block: clamp(70px, 11vh, 128px);
}
.svc-body__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(38px, 5vw, 76px);
}
.svc-lead { max-width: 46ch; }

.svc-list { display: grid; gap: 14px; }
.svc-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-sm);
  background: var(--paper);
  border: 1px solid rgba(23, 34, 46, .07);
  box-shadow: 0 10px 24px -18px rgba(9, 18, 28, .34);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-700);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease;
}
.svc-item:hover { transform: translateX(4px); box-shadow: 0 16px 30px -18px rgba(9, 18, 28, .42); }
.svc-item__mark {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  margin-top: .05em;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  flex: none;
}
.svc-item__mark svg { width: 12px; height: 12px; }

/* ---- process ---- */
.svc-steps {
  background: var(--bone);
  padding-block: clamp(70px, 11vh, 128px);
}
.svc-steps__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.svc-steps__head { margin-bottom: clamp(30px, 5vh, 48px); }
.svc-steps__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}
.svc-step {
  position: relative;
  padding: 28px 24px 30px;
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid rgba(23, 34, 46, .07);
  box-shadow: 0 16px 34px -22px rgba(9, 18, 28, .36);
}
.svc-step__n {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 12px;
}
.svc-step__t {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
.svc-step__d {
  margin-top: 9px;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--slate);
}

/* ---- other services ---- */
.svc-more {
  background: var(--bone);
  padding-block: clamp(56px, 8vh, 96px);
}
.svc-more__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.svc-more__list {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  list-style: none;
  padding: 0;
}
.svc-more__list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 14px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px solid rgba(23, 34, 46, .09);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: transform .25s cubic-bezier(.2,.7,.3,1),
              border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.svc-more__list a:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 194, 67, .6);
  color: var(--ink);
  box-shadow: 0 14px 26px -16px rgba(9, 18, 28, .4);
}
.svc-more__icon { width: 19px; height: 19px; color: var(--green-600); flex: none; }

/* ---- cta band ---- */
.svc-cta {
  background: var(--ink);
  padding-block: clamp(64px, 10vh, 116px);
}
.svc-cta__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.svc-cta__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.032em;
  color: #fff;
  text-wrap: balance;
}
.svc-cta__text {
  margin: 16px auto 0;
  max-width: 52ch;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.66;
  color: rgba(255, 255, 255, .72);
}
.svc-cta__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.svc-cta .btn--outline { color: #fff; }
.svc-cta .btn--outline:hover { color: #fff; }

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .svc-steps__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-drivers__list,
  .svc-pitfalls__list { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .svc-body__inner { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .svc-lead { max-width: none; }
}
@media (max-width: 620px) {
  .svc-glance__inner { grid-template-columns: minmax(0, 1fr); }
  .svc-glance__item {
    border-left: 0;
    padding-left: 0;
    padding-block: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
  .svc-glance__item:first-child { border-top: 0; padding-top: 22px; }
  .svc-glance__item:last-child { padding-bottom: 24px; }
}
@media (max-width: 560px) {
  .svc-hero { min-height: 78vh; min-height: 78svh; }
  .svc-steps__list { grid-template-columns: minmax(0, 1fr); }
  .svc-hero__actions .btn,
  .svc-cta__actions .btn { flex: 1 1 100%; }
  .svc-phase { gap: 16px; }
}

/* =========================================================
   SECTION 6 — CONTACT
   ========================================================= */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding-block: clamp(72px, 11vh, 132px);
}

.contact__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 44% at 8% 4%,   rgba(124, 194, 67, .22) 0%, transparent 68%),
    radial-gradient(42% 40% at 96% 96%, rgba(124, 194, 67, .13) 0%, transparent 70%),
    radial-gradient(38% 34% at 88% 6%,  rgba(238, 199, 231, .10) 0%, transparent 72%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(40px, 5vw, 80px);
}

/* ---- left column ---- */
.contact__kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.contact__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.032em;
  color: #fff;
  text-wrap: balance;
}
.contact__title-accent {
  background: linear-gradient(100deg, var(--green) 0%, #A6DC6E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact__text {
  margin-top: 18px;
  max-width: 44ch;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
}

.contact__meta {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}
.contact__meta li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}
.contact__meta-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 13px;
  background: rgba(124, 194, 67, .14);
  border: 1px solid rgba(124, 194, 67, .3);
  color: var(--green);
}
.contact__meta-icon svg { width: 20px; height: 20px; }

.contact__meta-body {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
}
.contact__meta-body b {
  display: block;
  margin-bottom: 2px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.contact__meta-body a { color: #fff; transition: color .22s ease; }
.contact__meta-body a:hover { color: var(--green); }

.contact__note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
}

/* ---- form panel ---- */
.contact__panel {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .7);
}

.cform { display: grid; gap: 18px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: grid; gap: 7px; }

.field__label {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink);
}
.field__req { color: var(--green-600); }
.field__hint {
  display: block;
  margin-top: 2px;
  font-size: .76rem;
  font-weight: 300;
  color: var(--slate);
}

.field__input {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid rgba(23, 34, 46, .16);
  border-radius: var(--r-sm);
  background: var(--paper);
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
  appearance: none;
}
.field__input::placeholder { color: rgba(107, 122, 140, .68); }
.field__input:hover { border-color: rgba(23, 34, 46, .28); }
.field__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(124, 194, 67, .18);
}
.field__input--area { resize: vertical; min-height: 118px; }

/* select needs its own chevron once appearance is stripped */
.field__select { position: relative; }
.field__select .field__input { padding-right: 44px; cursor: pointer; }
.field__chev {
  position: absolute;
  right: 14px; top: 50%;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: var(--slate);
}
.field__chev svg { width: 17px; height: 17px; }
.field__select .field__input:invalid { color: rgba(107, 122, 140, .78); }

/* error state */
.field__error {
  font-size: .78rem;
  font-weight: 400;
  color: #C4362F;
}
.field.is-invalid .field__input {
  border-color: #D6483F;
  background: #FEF6F5;
}
.field.is-invalid .field__input:focus {
  box-shadow: 0 0 0 4px rgba(214, 72, 63, .16);
}

/* ---- photo dropzone ---- */
.drop {
  position: relative;
  border: 1.5px dashed rgba(23, 34, 46, .22);
  border-radius: var(--r-sm);
  background: var(--bone);
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.drop:hover { border-color: rgba(124, 194, 67, .6); background: #FBFDF8; }

/* the real input sits invisibly over the whole zone: click, keyboard
   focus and native drag-drop all keep working without extra plumbing */
.drop__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.drop:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(124, 194, 67, .18);
}
.drop.is-over {
  border-color: var(--green);
  background: var(--green-100);
  border-style: solid;
}

.drop__inner {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 26px 20px;
  text-align: center;
  pointer-events: none;
}
.drop__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--green-100);
  color: var(--green-600);
  margin-bottom: 3px;
}
.drop__icon svg { width: 23px; height: 23px; }

.drop__lead {
  font-size: .92rem;
  font-weight: 300;
  color: var(--slate);
}
.drop__lead b { font-weight: 600; color: var(--ink); }
.drop__browse { color: var(--green-600); font-weight: 500; text-decoration: underline; }

.drop__hint {
  font-size: .75rem;
  font-weight: 300;
  color: var(--slate);
}

/* ---- thumbnails ---- */
.drop__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.drop__list:empty { display: none; }

.thumb {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  background: var(--bone);
  border: 1px solid rgba(23, 34, 46, .09);
  aspect-ratio: 1 / 1;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.thumb__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 6px 5px;
  font-size: .62rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(9, 18, 28, .82));
}

.thumb__x {
  position: absolute;
  top: 5px; right: 5px;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 18, 28, .68);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.thumb__x:hover { background: #D6483F; transform: scale(1.08); }
.thumb__x svg { width: 11px; height: 11px; }

.drop__count {
  font-size: .76rem;
  font-weight: 300;
  color: var(--slate);
}

/* honeypot — off-screen, never focusable */
.cform__trap {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* status banner */
.cform__status {
  margin: 0;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.5;
}
.cform__status--ok {
  background: var(--green-100);
  border: 1px solid rgba(124, 194, 67, .5);
  color: #38621B;
}
.cform__status--err {
  background: #FEF6F5;
  border: 1px solid rgba(214, 72, 63, .4);
  color: #96302A;
}

.cform__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 4px;
}
.cform__submit { position: relative; }
.cform__privacy {
  flex: 1 1 220px;
  font-size: .76rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--slate);
}

/* busy state */
.cform__spinner { display: none; }
.cform.is-busy .cform__submit { pointer-events: none; opacity: .72; }
.cform.is-busy .cform__spinner {
  display: block;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  animation: cSpin .7s linear infinite;
}
@keyframes cSpin { to { transform: rotate(360deg); } }

/* sent state — form is replaced by the confirmation */
.cform.is-sent > *:not(.cform__status) { display: none; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .contact__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .contact__text { max-width: none; }
}
@media (max-width: 520px) {
  .cform__row { grid-template-columns: minmax(0, 1fr); }
  .cform__submit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .cform.is-busy .cform__spinner { animation: none; }
  .svc-item:hover { transform: none; }
  .svc-more__list a:hover { transform: none; }
}

/* =========================================================
   SECTION 6 — FAQ
   <details>/<summary> so the answers are in the DOM and
   crawlable even while collapsed.
   ========================================================= */
.faq {
  position: relative;
  background: var(--paper);
  padding-block: clamp(76px, 12vh, 140px);
}

.faq__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(40px, 5vw, 84px);
}

/* ---- left column ---- */
.faq__aside { position: sticky; top: calc(var(--nav-h) + 28px); }

.faq__kicker {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}
.faq__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.032em;
  color: var(--ink);
  text-wrap: balance;
}
.faq__title-accent { color: var(--green-600); }
.faq__text {
  margin-top: 18px;
  max-width: 42ch;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--slate);
}

.faq__cta {
  margin-top: 32px;
  padding: 24px 26px 26px;
  border-radius: var(--r-md);
  background: var(--bone);
  border: 1px solid rgba(23, 34, 46, .07);
}
.faq__cta-title {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
.faq__cta-text {
  margin-top: 6px;
  margin-bottom: 18px;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--slate);
}

/* ---- accordion ---- */
.faq__list { display: grid; }

.faq__item {
  border-bottom: 1px solid rgba(23, 34, 46, .1);
}
.faq__item:first-child { border-top: 1px solid rgba(23, 34, 46, .1); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 2px;
  cursor: pointer;
  list-style: none;
  transition: color .22s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q h3 {
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.018em;
  color: var(--ink);
  transition: color .22s ease;
}
.faq__q:hover h3 { color: var(--green-600); }
.faq__q:focus-visible { outline-offset: -3px; border-radius: 6px; }

/* the +/− marker */
.faq__icon {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-100);
  transition: background-color .28s ease, rotate .32s cubic-bezier(.2,.7,.3,1);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  background: var(--green-600);
  border-radius: 2px;
  transition: opacity .28s ease, background-color .28s ease;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after  { width: 2px;  height: 12px; }

.faq__item[open] .faq__icon { background: var(--green); rotate: 90deg; }
.faq__item[open] .faq__icon::before { background: #fff; }
.faq__item[open] .faq__icon::after  { opacity: 0; }

.faq__a {
  padding: 0 56px 26px 2px;
  opacity: 0;
  translate: 0 -6px;
  transition: opacity .38s ease, translate .38s cubic-bezier(.2,.7,.3,1);
}
.faq__item[open] .faq__a { opacity: 1; translate: 0 0; }
.faq__a p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--slate);
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .faq__inner { grid-template-columns: minmax(0, 1fr); gap: 38px; }
  .faq__aside { position: static; }
  .faq__text { max-width: none; }
  .faq__a { padding-right: 40px; }
}
@media (max-width: 560px) {
  .faq__q { gap: 14px; padding: 19px 2px; }
  .faq__q h3 { font-size: .97rem; }
  .faq__a { padding-right: 8px; }
  .faq__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .faq__icon, .faq__a { transition: none; }
  .faq__item[open] .faq__a { translate: 0 0; }
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
}

/* ---- cta strip ---- */
.site-footer__cta {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(60% 180% at 50% 0%, rgba(124, 194, 67, .16) 0%, transparent 70%);
}
.site-footer__cta-inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(34px, 5vh, 54px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}
.site-footer__cta-title {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -.026em;
  line-height: 1.25;
  color: #fff;
  text-wrap: balance;
}

/* ---- main columns ---- */
.site-footer__main {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(46px, 7vh, 76px) var(--gutter) clamp(38px, 5vh, 56px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: clamp(30px, 4vw, 60px);
}

.site-footer__brand .logo { font-size: 1.32rem; }
.site-footer__brand .logo__b { color: #fff; }

.site-footer__blurb {
  margin-top: 18px;
  max-width: 36ch;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.68;
  color: rgba(255, 255, 255, .6);
}

.site-footer__h {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.site-footer__col ul { display: grid; gap: 11px; }
.site-footer__col a {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .62);
  transition: color .22s ease, padding-left .22s ease;
}
.site-footer__col a:hover { color: var(--green); padding-left: 4px; }

.site-footer__contact { gap: 15px !important; }
.site-footer__contact li {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, .62);
}
.site-footer__label {
  display: block;
  margin-bottom: 3px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}
.site-footer__contact a { color: #fff; }
.site-footer__contact a:hover { color: var(--green); padding-left: 0; }

/* ---- bottom bar ---- */
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__bar > * { margin: 0; }
.site-footer__bar {
  max-width: none;
}
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 26px;
  max-width: var(--shell);
  margin-inline: auto;
  padding: 22px var(--gutter) 30px;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer__legal a {
  color: rgba(255, 255, 255, .6);
  transition: color .22s ease;
}
.site-footer__legal a:hover { color: var(--green); }

@media (max-width: 900px) {
  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__blurb { max-width: none; }
}
@media (max-width: 560px) {
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__cta-inner { flex-direction: column; align-items: flex-start; }
  .site-footer__cta-inner .btn { width: 100%; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   LEGAL PAGES  (privacy.html / terms.html)
   ========================================================= */
.legal {
  background: var(--paper);
  padding-block: calc(var(--nav-h) + clamp(40px, 7vh, 76px)) clamp(70px, 11vh, 120px);
}
.legal__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.legal__head { padding-bottom: clamp(28px, 4vh, 40px); border-bottom: 1px solid rgba(23, 34, 46, .1); }
.svc-crumb--dark { color: var(--slate); }
.svc-crumb--dark a { color: var(--slate); }
.svc-crumb--dark a:hover { color: var(--green-600); }
.svc-crumb--dark [aria-current] { color: var(--ink); }

.legal__title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--ink);
}
.legal__lede {
  margin-top: 18px;
  max-width: 66ch;
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
}
.legal__updated {
  margin-top: 18px;
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--green-100);
  font-size: .78rem;
  font-weight: 500;
  color: #38621B;
}

/* table of contents */
.legal__toc {
  margin-top: clamp(30px, 4vh, 44px);
  padding: 24px 28px 26px;
  border-radius: var(--r-md);
  background: var(--bone);
  border: 1px solid rgba(23, 34, 46, .07);
}
.legal__toc-h {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}
.legal__toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}
.legal__toc li { counter-increment: toc; }
.legal__toc a {
  font-size: .9rem;
  font-weight: 300;
  color: var(--ink-700);
  transition: color .2s ease;
}
.legal__toc a::before {
  content: counter(toc) ". ";
  color: var(--green-600);
  font-weight: 500;
}
.legal__toc a:hover { color: var(--green-600); }

/* body */
.legal__body { margin-top: clamp(34px, 5vh, 54px); }
.legal__block { scroll-margin-top: calc(var(--nav-h) + 20px); }
.legal__block + .legal__block { margin-top: clamp(30px, 4vh, 46px); }
.legal__block h2 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -.026em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal__block p {
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--slate);
}
.legal__block p + p { margin-top: 13px; }
.legal__block strong { font-weight: 600; color: var(--ink-700); }
.legal__block a {
  color: var(--green-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__block a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .legal__toc ol { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .stat { min-width: 232px; padding: 15px 20px; }
  .stat__num { font-size: 1.75rem; min-width: 70px; }
  .stat--a, .stat--b, .stat--c { transform: none; }
}

@media (max-width: 900px) {
  :root { --nav-h: 72px; --hero-scroll: 260vh; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open { background: rgba(255,255,255,.97); box-shadow: var(--shadow-nav); }
  .nav.is-open .logo__b { color: var(--ink); }
  .nav.is-open .nav__burger span { background: var(--ink); }
  .nav__mobile { display: flex; }
  .nav__mobile[hidden] { display: none; }

  .hero__content {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: clamp(26px, 5vh, 48px);
  }
  .hero__copy { max-width: none; }
  .hero__stats {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-items: start;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .hero__stats::-webkit-scrollbar { display: none; }
  .hero__scrim {
    background:
      linear-gradient(to bottom,
        rgba(11,19,28,.80) 0%,
        rgba(11,19,28,.62) 40%,
        rgba(11,19,28,.72) 78%,
        rgba(11,19,28,.92) 100%);
  }
  .hero__cue { display: none; }
}

@media (max-width: 560px) {
  .hero__actions .btn { flex: 1 1 100%; }
  .stat { min-width: 200px; }
  .stat__num { font-size: 1.5rem; min-width: 60px; }
  .stat__label { font-size: .76rem; }
  .stat--c { display: none; }
}

/* =========================================================
   REDUCED MOTION — no scrub, no float, static frame
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  :root { --hero-scroll: 100vh; }
  .stat, .hero__cue-thumb { animation: none; }
  .hero__content { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}
