/* LandLab redesign — Pass 1: design and motion foundation */
@property --hero-progress {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

@property --approach-progress {
  syntax: '<number>';
  inherits: true;
  initial-value: 0;
}

:root {
  /* Brand color system */
  --ll-canvas: #faf9f7;
  --ll-surface: #f3f0eb;
  --ll-paper: #ffffff;
  --ll-ink: #151815;
  --ll-ink-soft: #292d2a;
  --ll-copy: #555b57;
  --ll-muted: #818783;
  --ll-line: #dcded9;
  --ll-green: #1a5c42;
  --ll-green-deep: #123f2e;
  --ll-green-light: #a3d9c0;
  --ll-green-wash: #eef7f2;
  --ll-night: #101713;
  --ll-night-soft: #18231d;

  /* Typography */
  --ll-font-sans: 'Inter', Arial, sans-serif;
  --ll-font-display: 'Playfair Display', Georgia, serif;
  --ll-step--1: clamp(0.78rem, 0.73rem + 0.18vw, 0.9rem);
  --ll-step-0: clamp(1rem, 0.95rem + 0.22vw, 1.12rem);
  --ll-step-1: clamp(1.18rem, 1.03rem + 0.55vw, 1.55rem);
  --ll-step-2: clamp(1.65rem, 1.25rem + 1.35vw, 2.55rem);
  --ll-step-3: clamp(2.45rem, 1.55rem + 3.4vw, 5.25rem);
  --ll-step-display: clamp(6.5rem, 18vw, 18rem);

  /* Layout */
  --ll-gutter: clamp(1.25rem, 3.2vw, 4.5rem);
  --ll-container: 90rem;
  --ll-grid-gap: clamp(1rem, 2vw, 2.25rem);
  --ll-section: clamp(5rem, 10vw, 10rem);

  /* Shape and depth */
  --ll-radius-sm: 0.35rem;
  --ll-radius-md: 0.75rem;
  --ll-radius-lg: 1.5rem;
  --ll-radius-pill: 999px;
  --ll-header-safe: clamp(5.5rem, 11svh, 7.25rem);
  --ll-shadow-nav: 0 1rem 4rem rgba(12, 32, 23, 0.12);
  --ll-shadow-lift: 0 1.5rem 5rem rgba(12, 32, 23, 0.14);

  /* Motion */
  --ll-fast: 180ms;
  --ll-medium: 420ms;
  --ll-slow: 900ms;
  --ll-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ll-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --hero-progress: 0;
  --approach-progress: 0;
}

html {
  background: var(--ll-night);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--ll-canvas);
  color: var(--ll-ink);
  padding-top: 0 !important;
  overflow-x: clip;
}

body.is-intro-active {
  overflow: hidden;
}

.ll-skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ll-paper);
  background: var(--ll-green);
  border-radius: var(--ll-radius-sm);
  transform: translateY(-160%);
  transition: transform var(--ll-fast) var(--ll-ease-out);
}

.ll-skip-link:focus {
  transform: translateY(0);
}

.ll-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Short branded intro */
.ll-intro {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  color: var(--ll-paper);
  background: var(--ll-green-deep);
  isolation: isolate;
  transition: visibility 0s linear 0.78s;
}

.ll-intro::before,
.ll-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform-origin: bottom;
  transition: transform 0.68s var(--ll-ease-in-out);
}

.ll-intro::before { background: var(--ll-night-soft); }
.ll-intro::after {
  background: var(--ll-night);
  transform: scaleY(0);
  transform-origin: top;
}

.ll-intro__inner {
  width: min(84vw, 72rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.ll-intro__brand {
  font: 600 clamp(3.2rem, 11vw, 9.5rem)/0.78 var(--ll-font-display);
  letter-spacing: -0.065em;
  overflow: hidden;
}

.ll-intro__brand span {
  display: inline-block;
  transform: translateY(115%);
  animation: ll-intro-word 0.65s 0.08s var(--ll-ease-out) forwards;
}

.ll-intro__count {
  min-width: 4.6ch;
  font: 500 clamp(1.15rem, 2vw, 1.7rem)/1 var(--ll-font-sans);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.ll-intro__line {
  position: absolute;
  right: 8vw;
  bottom: 2.5rem;
  left: 8vw;
  height: 1px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}

.ll-intro__line::after {
  content: '';
  display: block;
  width: calc(var(--intro-progress, 0) * 100%);
  height: 100%;
  background: var(--ll-green-light);
}

.ll-intro.is-complete {
  visibility: hidden;
}

.ll-intro.is-complete::before { transform: translateY(-100%); }
.ll-intro.is-complete::after { transform: scaleY(1); }
.ll-intro.is-complete .ll-intro__inner {
  transform: translateY(-2rem);
  opacity: 0;
  transition: transform 0.5s var(--ll-ease-out), opacity 0.3s linear;
}

@keyframes ll-intro-word { to { transform: translateY(0); } }

/* Floating navigation */
.ll-nav {
  position: fixed;
  z-index: 300;
  top: 1rem;
  left: 50%;
  width: min(calc(100% - 2rem), 86rem);
  min-height: 3.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.55rem 0.65rem 0.55rem 1.15rem;
  color: var(--ll-paper);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--ll-radius-pill);
  background: rgba(16, 23, 19, 0.52);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transform: translate(-50%, -140%);
  transition: transform 0.75s var(--ll-ease-out), background var(--ll-medium) ease,
    color var(--ll-medium) ease, border-color var(--ll-medium) ease,
    box-shadow var(--ll-medium) ease;
}

body.is-ready .ll-nav { transform: translate(-50%, 0); }

.ll-nav[data-scrolled='true'] {
  color: var(--ll-ink);
  border-color: rgba(26,92,66,0.17);
  background: rgba(250,249,247,0.9);
  box-shadow: var(--ll-shadow-nav);
}

.ll-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.ll-brand__mark {
  width: 1.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ll-paper);
  background: var(--ll-green);
  font-size: 0.62rem;
  letter-spacing: -0.08em;
}

.ll-nav__links {
  justify-self: center;
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 2.5rem);
}

.ll-nav__links a,
.ll-menu__links a {
  position: relative;
  color: inherit;
  font-size: var(--ll-step--1);
  font-weight: 500;
  text-decoration: none;
}

.ll-nav__links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -0.32rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ll-medium) var(--ll-ease-out);
}

.ll-nav__links a:hover::after,
.ll-nav__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ll-nav__cta,
.ll-hero__cta {
  --magnet-x: 0px;
  --magnet-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 2.7rem;
  padding: 0 1.25rem;
  color: var(--ll-paper);
  background: var(--ll-green);
  border: 1px solid var(--ll-green);
  border-radius: var(--ll-radius-pill);
  font-size: var(--ll-step--1);
  font-weight: 600;
  text-decoration: none;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition: background var(--ll-fast) ease, color var(--ll-fast) ease,
    transform var(--ll-medium) var(--ll-ease-out);
}

.ll-nav__cta:hover,
.ll-hero__cta:hover { background: var(--ll-green-deep); }

.ll-nav__toggle {
  display: none;
  width: 2.75rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(128,128,128,0.12);
  cursor: pointer;
}

.ll-nav__toggle span,
.ll-nav__toggle::before,
.ll-nav__toggle::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.25rem auto;
  background: currentColor;
  transition: transform var(--ll-medium) var(--ll-ease-out), opacity var(--ll-fast) ease;
}

.ll-nav__toggle[aria-expanded='true'] span { opacity: 0; }
.ll-nav__toggle[aria-expanded='true']::before { transform: translateY(5px) rotate(45deg); }
.ll-nav__toggle[aria-expanded='true']::after { transform: translateY(-5px) rotate(-45deg); }

.ll-menu {
  position: fixed;
  z-index: 280;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 7rem var(--ll-gutter) 3rem;
  color: var(--ll-paper);
  background: var(--ll-green-deep);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.65s var(--ll-ease-in-out), visibility 0s linear 0.65s;
}

.ll-menu.is-open {
  clip-path: inset(0);
  visibility: visible;
  transition-delay: 0s;
}

.ll-menu__links { display: grid; }
.ll-menu__links a {
  padding: 0.55rem 0;
  font-family: var(--ll-font-display);
  font-size: clamp(2.6rem, 12vw, 5.5rem);
  line-height: 0.95;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

/* Hero: sticky scroll composition */
.ll-hero {
  position: relative;
  height: 190svh;
  color: var(--ll-paper);
  background: var(--ll-night);
}

.ll-hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 42rem;
  overflow: hidden;
  isolation: isolate;
}

.ll-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 100% 25%, 16.666% 100%;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  transform: translateY(calc(var(--hero-progress) * -4rem));
}

.ll-hero__wash {
  position: absolute;
  z-index: -1;
  width: 42vw;
  aspect-ratio: 1;
  top: 18%;
  left: 29%;
  border-radius: 50%;
  background: var(--ll-green-deep);
  filter: blur(1px);
  transform: translate3d(calc((var(--hero-progress) - 0.5) * 11vw), calc(var(--hero-progress) * 7vh), 0)
    scale(calc(0.72 + var(--hero-progress) * 0.55));
  opacity: calc(0.45 + var(--hero-progress) * 0.45);
}

.ll-hero__eyebrow {
  position: absolute;
  z-index: 4;
  top: clamp(6.7rem, 13vh, 8.5rem);
  left: var(--ll-gutter);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-size: var(--ll-step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ll-hero__eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--ll-green-light);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s 1.05s var(--ll-ease-out);
}

body.is-ready .ll-hero__eyebrow::before { transform: scaleX(1); }

.ll-hero__word {
  position: absolute;
  z-index: 1;
  top: 18%;
  right: var(--ll-gutter);
  left: var(--ll-gutter);
  font: 600 var(--ll-step-display)/0.69 var(--ll-font-display);
  font-size: clamp(7rem, min(17.5vw, 26svh), 17rem);
  letter-spacing: -0.085em;
  pointer-events: none;
}

.ll-hero__word-line {
  display: block;
  width: max-content;
  overflow: hidden;
}

.ll-hero__word-line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s var(--ll-ease-out);
  will-change: transform;
}

.ll-hero__word-line:first-child {
  margin-left: 0;
  transform: translate3d(calc(var(--hero-progress) * -2.5vw), calc(var(--hero-progress) * -4vh), 0)
    scale(calc(1 + var(--hero-progress) * 0.05));
  transform-origin: left center;
}

.ll-hero__word-line:last-child {
  margin-left: auto;
  padding-right: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.88);
  transform: translate3d(calc(var(--hero-progress) * 2.5vw), calc(var(--hero-progress) * 3vh), 0)
    scale(calc(1 + var(--hero-progress) * 0.07));
  transform-origin: right center;
}

body.is-ready .ll-hero__word-line:first-child > span { transform: translateY(0); transition-delay: 0.12s; }
body.is-ready .ll-hero__word-line:last-child > span { transform: translateY(0); transition-delay: 0.24s; }

.ll-hero__content {
  position: absolute;
  z-index: 5;
  right: var(--ll-gutter);
  bottom: clamp(5rem, 9vh, 7rem);
  width: min(35rem, 42vw);
  padding-left: clamp(1rem, 2vw, 2rem);
  border-left: 1px solid rgba(255,255,255,0.28);
  transform: translate3d(0, calc(var(--hero-progress) * -8vh), 0);
}

.ll-hero__title {
  margin: 0 0 1.25rem;
  color: var(--ll-paper);
  font: 500 var(--ll-step-2)/1.08 var(--ll-font-sans);
  letter-spacing: -0.04em;
}

.ll-hero__title span,
.ll-hero__lead,
.ll-hero__actions {
  display: block;
  clip-path: inset(0 0 100% 0);
  transform: translateY(2rem);
  transition: clip-path 0.9s var(--ll-ease-out), transform 0.9s var(--ll-ease-out);
}

body.is-ready .ll-hero__title span,
body.is-ready .ll-hero__lead,
body.is-ready .ll-hero__actions {
  clip-path: inset(0);
  transform: translateY(0);
}

body.is-ready .ll-hero__title span { transition-delay: 0.38s; }
body.is-ready .ll-hero__lead { transition-delay: 0.5s; }
body.is-ready .ll-hero__actions { transition-delay: 0.6s; }

.ll-hero__lead {
  max-width: 32rem;
  margin-bottom: 1.7rem;
  color: rgba(255,255,255,0.68);
  font-size: var(--ll-step-0);
  line-height: 1.62;
}

.ll-hero__actions { display: flex; align-items: center; gap: 1.2rem; }
.ll-hero__cta { min-height: 3.5rem; padding: 0 1.65rem; font-size: 0.98rem; }
.ll-hero__work-link {
  color: var(--ll-paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.36);
  transition: border-color var(--ll-fast) ease;
}
.ll-hero__work-link:hover { border-color: var(--ll-paper); }

.ll-hero__rail {
  position: absolute;
  z-index: 3;
  bottom: clamp(2rem, 5vh, 3.5rem);
  left: var(--ll-gutter);
  display: flex;
  gap: 1.5rem;
  color: rgba(255,255,255,0.52);
  font-size: var(--ll-step--1);
}

.ll-hero__rail span { white-space: nowrap; }
.ll-hero__rail span::before { content: '•'; margin-right: 0.55rem; color: var(--ll-green-light); }

.ll-hero__scroll {
  position: absolute;
  z-index: 4;
  right: var(--ll-gutter);
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.ll-hero__scroll::after {
  content: '';
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--ll-green-light) 50%, rgba(255,255,255,0.2) 50%);
  background-size: 100% 200%;
  animation: ll-scroll-cue 1.8s var(--ll-ease-in-out) infinite;
}

@keyframes ll-scroll-cue { to { background-position: 0 100%; } }

/* First post-hero scene */
.ll-approach {
  position: relative;
  z-index: 10;
  height: 175svh;
  margin-top: -1px;
  background: var(--ll-night);
}

.ll-approach__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 42rem;
  overflow: hidden;
  color: var(--ll-ink);
  background: var(--ll-canvas);
  clip-path: inset(var(--approach-inset-y, 8%) var(--approach-inset-x, 3%) 0 round var(--approach-radius, 2.2rem));
}

.ll-approach__inner {
  width: min(100%, var(--ll-container));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(9rem, 0.7fr) minmax(0, 3fr) minmax(15rem, 1fr);
  gap: var(--ll-grid-gap);
  align-items: center;
  padding: clamp(6.5rem, 12vh, 9rem) var(--ll-gutter) clamp(3rem, 7vh, 5rem);
}

.ll-approach__index {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ll-green);
  font-size: var(--ll-step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ll-approach__index::before { content: ''; width: 2rem; height: 1px; background: currentColor; }

.ll-approach__statement {
  align-self: center;
  max-width: 65rem;
}

.ll-approach__title {
  margin: 0;
  font: 500 var(--ll-step-3)/0.98 var(--ll-font-display);
  letter-spacing: -0.045em;
}

.ll-mask-line { display: block; overflow: hidden; padding-bottom: 0.09em; }
.ll-mask-line > span {
  display: block;
  transform: translateY(calc((1 - var(--line-progress, 0)) * 112%));
  will-change: transform;
}
.ll-mask-line:nth-child(2) > span { color: var(--ll-green); }

.ll-approach__note {
  align-self: end;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ll-line);
  color: var(--ll-copy);
  font-size: var(--ll-step-0);
  line-height: 1.65;
  transform: translateY(calc((1 - var(--note-progress, 0)) * 2.5rem));
  opacity: var(--note-progress, 0);
}

.ll-approach__path {
  position: absolute;
  right: var(--ll-gutter);
  bottom: 2.3rem;
  left: var(--ll-gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ll-line);
  border-top: 1px solid var(--ll-line);
}

.ll-approach__step {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  background: var(--ll-canvas);
  color: var(--ll-muted);
  font-size: var(--ll-step--1);
}

.ll-approach__step b { color: var(--ll-green); font-variant-numeric: tabular-nums; }

/* Legacy top is kept in source for safe Pass 1 rollback, but removed from UI. */
#legacy-hdr,
#legacy-hero,
#legacy-approach,
.ll-legacy-divider,
#mob-fab,
#mob-overlay { display: none !important; }

/* Refresh the inherited lower-page system without redesigning its structure. */
.wrap { max-width: var(--ll-container); padding-inline: var(--ll-gutter); }
.sec-h { font-size: clamp(2.25rem, 4vw, 4.6rem); line-height: 1; letter-spacing: -0.045em; }
.sec-label { color: var(--ll-green); }
.btn { border-radius: var(--ll-radius-pill); }
.product-card,
.scenario-card,
.value-grid { border-radius: var(--ll-radius-md); }

:focus-visible {
  outline: 2px solid var(--ll-green-light);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .ll-nav { grid-template-columns: auto 1fr auto; }
  .ll-nav__links,
  .ll-nav__cta { display: none; }
  .ll-nav__toggle { display: block; justify-self: end; }

  .ll-hero { height: 165svh; }
  .ll-hero__sticky { min-height: 38rem; }
  .ll-hero__word { top: 21%; font-size: clamp(6.2rem, min(20vw, 22svh), 10.5rem); }
  .ll-hero__content { right: var(--ll-gutter); bottom: 12vh; width: min(34rem, 65vw); }
  .ll-hero__rail { gap: 0.85rem; flex-wrap: wrap; max-width: 55vw; }

  .ll-approach { height: 155svh; }
  .ll-approach__sticky { min-height: 42rem; }
  .ll-approach__inner {
    grid-template-columns: 7rem 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: start;
  }
  .ll-approach__statement { grid-column: 2; align-self: center; }
  .ll-approach__note { grid-column: 2; align-self: end; max-width: 30rem; }
}

@media (max-width: 600px) {
  :root { --ll-gutter: 1.25rem; }
  .ll-intro__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .ll-intro__count { text-align: left; }
  .ll-nav { top: 0.75rem; width: calc(100% - 1rem); min-height: 3.4rem; padding-left: 0.9rem; }

  .ll-hero { height: 148svh; }
  .ll-hero__sticky { min-height: 39rem; }
  .ll-hero__eyebrow { top: 6rem; letter-spacing: 0.045em; text-transform: none; }
  .ll-hero__word { top: 20%; font-size: clamp(5.9rem, 26vw, 7.3rem); line-height: 0.72; }
  .ll-hero__word-line:first-child {
    transform: translate3d(calc(var(--hero-progress) * -1.6vw), calc(var(--hero-progress) * -2vh), 0)
      scale(calc(1 + var(--hero-progress) * 0.04));
  }
  .ll-hero__word-line:last-child {
    transform: translate3d(calc(var(--hero-progress) * 1.6vw), calc(var(--hero-progress) * 2vh), 0)
      scale(calc(1 + var(--hero-progress) * 0.05));
  }
  .ll-hero__wash { width: 85vw; top: 25%; left: 8%; }
  .ll-hero__content {
    right: var(--ll-gutter);
    bottom: 10vh;
    left: var(--ll-gutter);
    width: auto;
    padding-left: 1rem;
    transform: translate3d(0, calc(var(--hero-progress) * -3vh), 0);
  }
  .ll-hero__title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .ll-hero__lead { font-size: 0.98rem; margin-bottom: 1.25rem; }
  .ll-hero__actions { align-items: flex-start; flex-direction: column; gap: 0.9rem; }
  .ll-hero__cta { min-height: 3.2rem; }
  .ll-hero__rail { bottom: 1.2rem; max-width: calc(100% - 5rem); gap: 0.45rem 0.8rem; font-size: 0.7rem; }
  .ll-hero__scroll { display: none; }

  .ll-approach { height: 138svh; }
  .ll-approach__sticky { min-height: 43rem; }
  .ll-approach__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 1rem;
    padding-top: 6.5rem;
    padding-bottom: 8.5rem;
  }
  .ll-approach__statement,
  .ll-approach__note { grid-column: 1; }
  .ll-approach__statement { align-self: center; }
  .ll-approach__title { font-size: clamp(2.45rem, 11.5vw, 4rem); line-height: 1.02; }
  .ll-approach__note { font-size: 0.96rem; }
  .ll-approach__path { right: var(--ll-gutter); bottom: 1.2rem; left: var(--ll-gutter); }
  .ll-approach__step { display: grid; gap: 0.15rem; padding: 0.7rem 0.3rem; font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ll-intro { display: none; }
  .ll-nav { transform: translate(-50%, 0); transition: none; }
  .ll-hero,
  .ll-approach { height: auto; }
  .ll-hero__sticky,
  .ll-approach__sticky { position: relative; min-height: 100svh; }
  .ll-hero__word-line,
  .ll-hero__content,
  .ll-hero__grid,
  .ll-hero__wash { transform: none !important; }
  .ll-hero__word-line > span,
  .ll-hero__title span,
  .ll-hero__lead,
  .ll-hero__actions,
  .ll-mask-line > span,
  .ll-approach__note {
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .ll-approach__sticky { clip-path: none; }
  .ll-hero__scroll::after { animation: none; }
  *, *::before, *::after { scroll-behavior: auto !important; }
}

/* `?motion=reduce` mirrors the OS preference for deterministic QA. */
html[data-motion='reduced'] { scroll-behavior: auto; }
html[data-motion='reduced'] .ll-intro { display: none; }
html[data-motion='reduced'] .ll-nav { transform: translate(-50%, 0); transition: none; }
html[data-motion='reduced'] .ll-hero,
html[data-motion='reduced'] .ll-approach { height: auto; }
html[data-motion='reduced'] .ll-hero__sticky,
html[data-motion='reduced'] .ll-approach__sticky { position: relative; min-height: 100svh; }
html[data-motion='reduced'] .ll-hero__word-line,
html[data-motion='reduced'] .ll-hero__content,
html[data-motion='reduced'] .ll-hero__grid,
html[data-motion='reduced'] .ll-hero__wash { transform: none !important; }
html[data-motion='reduced'] .ll-hero__word-line > span,
html[data-motion='reduced'] .ll-hero__title span,
html[data-motion='reduced'] .ll-hero__lead,
html[data-motion='reduced'] .ll-hero__actions,
html[data-motion='reduced'] .ll-mask-line > span,
html[data-motion='reduced'] .ll-approach__note {
  transform: none !important;
  clip-path: none !important;
  opacity: 1 !important;
  transition: none !important;
}
html[data-motion='reduced'] .ll-approach__sticky { clip-path: none; }
html[data-motion='reduced'] .ll-hero__scroll::after { animation: none; }
