:root {
  color-scheme: dark;
  --home-page: #0d0e10;
  --home-card: #141518;
  --home-soft: #111214;
  --home-navy: #f5f3ee;
  --home-navy-raised: #e5e1d8;
  --home-body: #aaa8a2;
  --home-muted: #76746f;
  --home-line: rgba(255, 255, 255, .12);
  --home-line-strong: rgba(255, 255, 255, .28);
  --home-orange: #c85d35;
  --home-orange-hover: #df6a40;
  --home-orange-soft: rgba(200, 93, 53, .12);
  --home-sage: #c85d35;
  --home-sage-soft: rgba(200, 93, 53, .12);
  --home-radius-sm: 2px;
  --home-radius-md: 2px;
  --home-radius-lg: 4px;
  --home-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  --home-shadow-lift: 0 28px 72px rgba(0, 0, 0, .3);
  --home-container: 1380px;
  --home-gutter: clamp(20px, 3vw, 32px);
  --home-header-h: 76px;
  --home-font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --home-display: "Outfit", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--home-navy);
  background: var(--home-page);
  font: 16px/1.6 var(--home-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--home-orange); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  transform: translateY(-80px);
  border-radius: var(--home-radius-sm);
  background: #fff;
  color: #111214;
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 160ms ease-out;
}
.skip-link:focus { transform: none; }

.site-container {
  width: min(100%, var(--home-container));
  margin-inline: auto;
  padding-left: max(var(--home-gutter), env(safe-area-inset-left));
  padding-right: max(var(--home-gutter), env(safe-area-inset-right));
}

h1, h2, h3, p, blockquote { margin-block-start: 0; }
h1, h2, h3, blockquote {
  font-family: var(--home-display);
  text-wrap: balance;
  letter-spacing: -.035em;
}
h1 { margin-bottom: 0; font-size: clamp(48px, 6.2vw, 76px); line-height: .99; font-weight: 780; }
h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 48px); line-height: 1.09; font-weight: 740; }
h3 { margin-bottom: 0; font-size: 23px; line-height: 1.2; font-weight: 720; }
p { color: var(--home-body); text-wrap: pretty; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(to bottom, rgba(3, 5, 8, .54), transparent);
}
.header-inner {
  min-height: var(--home-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  min-height: 48px;
  display: inline-flex;
  flex: none;
  align-items: center;
}
.logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.home-button) {
  position: relative;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease-out;
}
.nav > a:not(.home-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--home-orange);
  transition: transform 180ms ease-out;
}
.nav > a:not(.home-button):hover,
.nav > a:not(.home-button)[aria-current="page"] { color: #fff; }
.nav > a:not(.home-button):hover::after,
.nav > a:not(.home-button)[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  min-width: 72px;
  min-height: 44px;
  border: 1px solid var(--home-line);
  border-radius: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font: 700 13px var(--home-font);
  cursor: pointer;
}
.nav-toggle i { display: none; }

.home-button {
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}
.home-button:hover { transform: translateY(-2px); }
.home-button:active { transform: scale(.98); }
.home-button-small { min-height: 42px; padding-inline: 19px; font-size: 14px; }
.home-button-primary {
  background: var(--home-orange);
  color: #fff;
  box-shadow: none;
}
.home-button-primary:hover { background: var(--home-orange-hover); box-shadow: none; }
.home-button-secondary { border-color: var(--home-line-strong); background: transparent; color: var(--home-navy); box-shadow: none; }
.home-button-secondary:hover { border-color: #fff; background: #fff; color: #111214; }
.home-button-light { background: #fff; color: #111214; box-shadow: none; }
.home-text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.home-text-link span { transition: transform 180ms ease-out; }
.home-text-link:hover { color: var(--home-orange); }
.home-text-link:hover span { transform: translateX(4px); }

.home-actions { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.home-hero-cinematic {
  height: clamp(640px, 56.25vw, 920px);
  min-height: min(100svh, 640px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
  background: #08090b;
  color: #fff;
}
.cinematic-stage,
.cinematic-video,
.cinematic-shade,
.cinematic-grain { position: absolute; inset: 0; }
.cinematic-stage {
  inset: -5% -3%;
  overflow: hidden;
  background: #08090b url("../img/cinematic-hero-poster.jpg") center / cover no-repeat;
  transform: translate3d(0, 0, 0);
  transition: transform 120ms linear;
}
.cinematic-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cinematic-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, .7) 0%, rgba(3, 5, 8, .12) 58%, rgba(3, 5, 8, .28) 100%),
    linear-gradient(0deg, rgba(3, 5, 8, .92) 0%, rgba(3, 5, 8, .1) 56%, rgba(3, 5, 8, .3) 100%);
}
.cinematic-grain {
  z-index: 3;
  opacity: .13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}
.cinematic-layout {
  height: 100%;
  min-height: inherit;
  position: relative;
  z-index: 4;
  padding-top: calc(var(--home-header-h) + 84px);
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 28px;
}
.cinematic-heading {
  width: 100%;
  max-width: none;
  align-self: end;
  padding-bottom: 102px;
}
.cinematic-heading h1 {
  max-width: 10ch;
  margin-top: 0;
  color: #fff;
  font-size: clamp(76px, 9.7vw, 154px);
  line-height: .8;
  letter-spacing: -.07em;
}
.cinematic-heading h1 span {
  display: block;
  color: rgba(255, 255, 255, .34);
}
.cinematic-heading > p {
  max-width: 42ch;
  margin: -58px 3vw 0 auto;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.65;
}
.cinematic-rail {
  grid-row: 2;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 0;
  background: rgba(8, 9, 11, .58);
  padding: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}
.cinematic-rail p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.45;
}
.cinematic-rail .home-button { min-height: 52px; padding-inline: 20px; border-radius: 2px; font-size: 12px; white-space: nowrap; }
.cinematic-button-primary { background: #fff; color: #111214; }
.cinematic-button-primary:hover { background: var(--home-orange); color: #fff; }
.cinematic-button-secondary { border-color: rgba(255, 255, 255, .24); color: #fff; }
.cinematic-button-secondary:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); }
.home-hero-cinematic.is-cinematic-active .cinematic-stage { will-change: transform; }

.home-section,
.movement-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
  background: var(--home-page);
  color: var(--home-navy);
}
.home-section {
  padding-block: clamp(112px, 10vw, 168px);
  scroll-margin-top: 80px;
}
.home-section-soft { background: var(--home-soft); }
.home-section::before,
.movement-band::before {
  position: absolute;
  top: -.08em;
  right: -.03em;
  color: rgba(255, 255, 255, .025);
  content: attr(data-watermark);
  font: 700 clamp(130px, 20vw, 310px)/1 var(--home-display);
  letter-spacing: -.075em;
  pointer-events: none;
  white-space: nowrap;
}
.home-section > .site-container,
.movement-band > .site-container { position: relative; z-index: 1; }
.section-heading { max-width: 720px; }
.home-kicker { margin: 0 0 11px; color: var(--home-orange); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.home-kicker-sage { color: var(--home-orange); }
.home-kicker-sage-dark { color: var(--home-sage); }

.question-grid { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: clamp(60px, 9vw, 150px); }
.question-grid .section-heading { max-width: 880px; }
.question-grid h2 { font-size: clamp(48px, 6.5vw, 94px); line-height: .96; letter-spacing: -.055em; }
.question-copy { border-top: 1px solid var(--home-line-strong); padding-top: 24px; }
.question-copy p { margin: 0; color: var(--home-body); font-size: 15px; line-height: 1.75; }
.question-copy p + p { margin-top: 16px; }
.question-copy .home-text-link { margin-top: 25px; }

.journey-heading,
.experiences-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 64px; }
.journey-heading > div,
.experiences-heading > div { max-width: 700px; }
.journey-heading h2,
.experiences-heading h2 { font-size: clamp(46px, 5.6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.journey-heading > p,
.experiences-heading > p { max-width: 42ch; margin: 0 0 5px; font-size: 15px; line-height: 1.7; }
.journey-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--home-line); border-bottom: 1px solid var(--home-line); }
.journey-card {
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-right: 1px solid var(--home-line);
  border-radius: 0;
  background: transparent;
  padding: 34px 34px 38px;
  transition: background-color 220ms ease-out, color 220ms ease-out;
}
.journey-card:last-child { border-right: 0; }
.journey-card:hover,
.journey-card-featured { background: #17181b; }
.journey-number { position: absolute; top: 28px; right: 30px; color: rgba(255, 255, 255, .08); font: 700 58px/1 var(--home-display); }
.journey-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--home-line-strong); border-radius: 50%; background: transparent; color: var(--home-orange); font-size: 19px; box-shadow: none; }
.journey-card h3 { font-size: clamp(28px, 2.7vw, 40px); letter-spacing: -.045em; }
.journey-card p { max-width: 34ch; margin: 14px 0 0; color: var(--home-body); font-size: 13px; line-height: 1.72; }
.journey-line { margin: 42px 0 0; color: var(--home-navy); font: 600 clamp(17px, 2vw, 24px)/1.4 var(--home-display); text-align: right; letter-spacing: -.02em; }
.journey-line span { color: var(--home-orange); }

.movement-band { padding-block: clamp(112px, 10vw, 168px); }
.movement-band-grid { display: grid; grid-template-columns: 1.28fr .72fr; align-items: center; gap: clamp(50px, 8vw, 130px); }
.movement-band-image { overflow: hidden; border: 1px solid var(--home-line); border-radius: 0; box-shadow: none; }
.movement-band-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; opacity: .82; filter: saturate(.72) contrast(1.04); }
.movement-band-copy h2 { max-width: 10ch; font-size: clamp(58px, 6.5vw, 92px); line-height: .88; letter-spacing: -.06em; }
.movement-band-copy > p:not(.home-kicker) { max-width: 52ch; margin: 22px 0 0; color: rgba(255, 255, 255, .66); font-size: 17px; line-height: 1.7; }
.movement-principles { margin-top: 36px; display: grid; grid-template-columns: 1fr; border-block: 1px solid var(--home-line); }
.movement-principles span { padding: 15px 0; border-bottom: 1px solid var(--home-line); color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 650; }
.movement-principles span:last-child { border-bottom: 0; }
.movement-principles b { display: inline-block; width: 42px; color: var(--home-orange); font-size: 10px; letter-spacing: .08em; }
.movement-band-copy .home-button { margin-top: 34px; }

.experience-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--home-line); border-left: 1px solid var(--home-line); }
.experience-card {
  grid-column: auto;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  border-radius: 0;
  background: transparent;
  padding: 34px 36px 38px;
  transition: background-color 220ms ease-out;
}
.experience-card-wide { grid-column: auto; }
.experience-card:hover { transform: none; border-color: var(--home-line); background: #17181b; box-shadow: none; }
.experience-card-top { display: flex; align-items: center; justify-content: space-between; }
.experience-card-top span { color: var(--home-muted); font-size: 11px; font-weight: 750; letter-spacing: .13em; }
.experience-card-top i { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--home-line-strong); border-radius: 50%; background: transparent; color: var(--home-orange); font-style: normal; transition: background-color 180ms ease-out, color 180ms ease-out; }
.experience-card:hover .experience-card-top i { background: var(--home-orange); color: #fff; }
.experience-card > div:last-child > p:first-child { margin: 0 0 6px; color: var(--home-orange); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.experience-card h3 { font-size: clamp(34px, 4.2vw, 60px); line-height: .94; letter-spacing: -.055em; }
.experience-card h3 + p { max-width: 42ch; margin: 15px 0 0; color: var(--home-body); font-size: 13px; line-height: 1.65; }
.section-action { margin-top: 40px; display: flex; justify-content: flex-end; }

.family-grid { display: grid; grid-template-columns: 1.16fr .84fr; align-items: center; gap: clamp(50px, 8vw, 130px); }
.family-media { position: relative; padding: 0; }
.family-photo { overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--home-line); border-radius: 0; background: var(--home-card); box-shadow: none; }
.family-photo img { width: 100%; height: 100%; object-fit: cover; }
.family-media-label {
  position: absolute;
  right: -1px;
  bottom: 0;
  min-width: 220px;
  border-radius: 0;
  background: var(--home-orange);
  color: #fff;
  padding: 19px 21px;
  box-shadow: none;
}
.family-media-label span { display: block; color: rgba(255, 255, 255, .68); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.family-media-label strong { display: block; margin-top: 4px; font: 700 17px var(--home-display); }
.family-copy h2 { max-width: 12ch; font-size: clamp(50px, 5.8vw, 82px); line-height: .93; letter-spacing: -.055em; }
.family-copy > p:not(.home-kicker) { max-width: 48ch; margin: 24px 0 0; color: var(--home-body); font-size: 15px; line-height: 1.75; }
.family-details { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; border-bottom: 1px solid var(--home-line); }
.family-details li { display: flex; align-items: flex-start; gap: 13px; border-top: 1px solid var(--home-line); padding-block: 16px; }
.family-details li > span { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border: 1px solid var(--home-line-strong); border-radius: 50%; background: transparent; color: var(--home-orange); font-size: 13px; font-weight: 800; }
.family-details strong, .family-details small { display: block; }
.family-details strong { font-size: 14px; }
.family-details small { margin-top: 2px; color: var(--home-muted); font-size: 12px; line-height: 1.45; }

.founder-section { background: #111214; }
.founder-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(60px, 9vw, 150px); }
.founder-copy blockquote { max-width: 14ch; margin: 24px 0 0; font-size: clamp(48px, 6.3vw, 90px); line-height: .96; font-weight: 600; letter-spacing: -.055em; }
.founder-signature { margin-top: 30px; display: flex; align-items: center; gap: 15px; }
.founder-signature > span { width: 58px; height: 1px; background: var(--home-orange); }
.founder-signature strong, .founder-signature small { display: block; }
.founder-signature strong { font-size: 14px; }
.founder-signature small { color: var(--home-muted); font-size: 12px; }
.founder-story { display: grid; grid-template-columns: minmax(170px, .7fr) 1fr; align-items: end; gap: 34px; }
.founder-image { overflow: hidden; aspect-ratio: .75; border: 1px solid var(--home-line); border-radius: 0; background: var(--home-page); }
.founder-image img { width: 100%; height: 100%; object-fit: cover; }
.founder-story p { margin: 0; color: var(--home-body); font-size: 13px; line-height: 1.75; }
.founder-story p + p { margin-top: 15px; }
.founder-story .home-text-link { margin-top: 23px; }

.home-footer {
  position: relative;
  overflow: hidden;
  background: #0d0e10;
  color: #fff;
}
.footer-shell { position: relative; }
.footer-topbar {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.footer-primary-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 23px; }
.footer-primary-nav a,
.footer-contact,
.footer-legal a {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .035em;
  text-decoration: none;
  transition: color 180ms ease-out;
}
.footer-primary-nav a:hover,
.footer-contact:hover,
.footer-legal a:hover { color: #fff; }
.footer-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
}
.footer-mark img { width: 27px; height: 27px; object-fit: contain; }
.footer-contact { justify-self: end; }
.footer-ready {
  position: relative;
  min-height: clamp(500px, 56vw, 690px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  padding: 96px 0 90px;
  text-align: center;
}
.footer-ready::before,
.footer-ready::after {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  filter: blur(130px);
  opacity: .14;
}
.footer-ready::before { top: 10%; left: 5%; background: var(--home-orange); }
.footer-ready::after { right: 5%; bottom: 4%; background: var(--home-sage); }
.footer-ready-ghost {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .055);
  font: 750 clamp(142px, 19vw, 286px)/.72 var(--home-display);
  letter-spacing: -.07em;
  transform: translate(-50%, -54%);
  user-select: none;
  white-space: nowrap;
}
.footer-ready-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-ready-kicker::before { width: 28px; height: 1px; background: var(--home-orange); content: ""; }
.footer-ready h2 {
  max-width: 10ch;
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(62px, 8.6vw, 126px);
  line-height: .84;
  letter-spacing: -.065em;
}
.footer-ready h2 span { color: rgba(255, 255, 255, .34); }
.footer-ready > p:not(.footer-ready-ghost) {
  max-width: 48ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 15px;
  line-height: 1.65;
}
.footer-ready-button {
  min-height: 52px;
  margin-top: 31px;
  border-color: #fff;
  border-radius: 0;
  background: #fff;
  color: #101113;
}
.footer-ready-button:hover { border-color: var(--home-orange); background: var(--home-orange); color: #fff; }
.footer-action-band {
  display: grid;
  grid-template-columns: .8fr 1fr 1.65fr;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.footer-action-intro {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 25px 28px 25px 0;
}
.footer-action-intro strong { font: 700 17px var(--home-display); }
.footer-action-intro span { max-width: 31ch; color: rgba(255, 255, 255, .49); font-size: 10px; line-height: 1.55; }
.footer-action-band > p {
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, .13);
  padding: 26px 28px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.55;
}
.footer-action-links { display: grid; grid-template-columns: .85fr 1.15fr; }
.footer-action-links a {
  min-height: 98px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  padding: 20px 26px;
  text-decoration: none;
  transition: background-color 200ms ease-out, color 200ms ease-out;
}
.footer-action-links a:first-child { background: #25272a; }
.footer-action-links a:last-child { background: #fff; color: #101113; }
.footer-action-links a:first-child:hover { background: #303236; }
.footer-action-links a:last-child:hover { background: var(--home-orange); color: #fff; }
.footer-action-links span { font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; opacity: .62; }
.footer-action-links strong { font: 700 13px var(--home-display); }
.footer-action-links b { margin-left: 7px; font-weight: 500; }
.footer-disclaimer {
  margin: 0;
  padding-block: 25px;
  color: rgba(255, 255, 255, .34);
  font-size: 9px;
  line-height: 1.7;
}
.footer-bottom {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, .42); font-size: 9px; line-height: 1.5; }
.footer-bottom > p:last-child { justify-self: end; }
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-legal a { font-size: 9px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease-out, transform 700ms ease-out; transition-delay: var(--reveal-delay, 0ms); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="60"] { --reveal-delay: 60ms; }
.reveal[data-delay="80"] { --reveal-delay: 80ms; }
.reveal[data-delay="100"] { --reveal-delay: 100ms; }
.reveal[data-delay="120"] { --reveal-delay: 120ms; }
.reveal[data-delay="160"] { --reveal-delay: 160ms; }
.reveal[data-delay="180"] { --reveal-delay: 180ms; }

/* Each parallax image is clipped by its own frame. JS updates only transform
   from IntersectionObserver geometry; no scroll handlers or layout polling. */
.parallax-frame {
  contain: paint;
  isolation: isolate;
}

.home-parallax-media {
  transform: scale(1.12);
  transform-origin: center;
  transition: transform 120ms linear;
}

.home-parallax-media-landscape { transform: scale(1.14); }
.home-parallax-media-portrait { transform: scale(1.1); }
.home-parallax-media.is-parallax-active { will-change: transform; }

@media (max-width: 1080px) {
  .nav { gap: 20px; }
  .nav > a:not(.home-button) { font-size: 13px; }
  .question-grid, .family-grid, .founder-grid { gap: 60px; }
  .movement-band-grid { gap: 56px; }
  .cinematic-rail { grid-template-columns: 1fr auto; }
  .cinematic-rail .cinematic-button-secondary { display: none; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed;
    z-index: 49;
    top: var(--home-header-h);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--home-header-h));
    overflow: auto;
    display: none;
    align-items: stretch;
    border-top: 1px solid var(--home-line);
    background: rgba(13, 14, 16, .98);
    padding: 18px var(--home-gutter) max(26px, env(safe-area-inset-bottom));
    box-shadow: 0 22px 54px rgba(0, 0, 0, .32);
  }
  .nav.open { display: grid; gap: 2px; }
  .nav > a:not(.home-button) { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--home-line); color: rgba(255, 255, 255, .76); font-size: 15px; }
  .nav > a:not(.home-button):hover,
  .nav > a:not(.home-button)[aria-current="page"] { color: var(--home-orange); }
  .nav > a:not(.home-button)::after { display: none; }
  .nav .home-button { margin-top: 12px; }
  .movement-band-grid, .family-grid, .founder-grid { grid-template-columns: 1fr; }
  .home-hero-cinematic { height: 100svh; min-height: 720px; }
  .cinematic-layout {
    padding-top: calc(var(--home-header-h) + 66px);
    gap: 28px;
  }
  .cinematic-heading { justify-self: stretch; padding-bottom: 72px; }
  .cinematic-heading h1 { font-size: clamp(58px, 12vw, 92px); }
  .cinematic-heading > p { max-width: 42ch; margin: 24px 0 0; }
  .cinematic-rail { grid-row: 2; }
  .question-grid { grid-template-columns: 1fr; gap: 26px; }
  .question-copy { max-width: 700px; margin-left: auto; padding-top: 24px; }
  .journey-heading, .experiences-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--home-line); }
  .journey-card:last-child { border-bottom: 0; }
  .movement-band-image img { aspect-ratio: 16 / 10; }
  .movement-band-copy { max-width: 740px; }
  .experience-card, .experience-card-wide { grid-column: auto; }
  .family-media { max-width: 680px; }
  .family-copy { max-width: 760px; }
  .founder-story { max-width: 720px; }
}

@media (max-width: 680px) {
  .home-section,
  .movement-band { padding-block: 88px; }
  .home-section::before,
  .movement-band::before { top: .04em; font-size: 35vw; }
  .header-inner { gap: 16px; }
  .logo img { height: 36px; }
  .home-hero-cinematic { min-height: 700px; }
  .cinematic-layout { padding-top: calc(var(--home-header-h) + 60px); padding-bottom: 18px; }
  .cinematic-heading { padding-bottom: 28px; }
  .cinematic-heading h1 { font-size: clamp(56px, 16vw, 78px); line-height: .84; }
  .cinematic-heading > p { max-width: 38ch; font-size: 14px; }
  .cinematic-rail {
    grid-row: 2;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .cinematic-rail p { display: none; }
  .cinematic-rail .home-button { width: 100%; }
  .cinematic-video { object-position: center; }
  .home-actions { align-items: stretch; flex-direction: column; }
  .home-actions .home-button { width: 100%; }
  .family-copy .home-actions .home-text-link { min-height: 44px; align-self: center; }
  .journey-card { min-height: 280px; }
  .movement-principles { grid-template-columns: 1fr; padding-block: 7px; }
  .movement-principles span { padding-block: 11px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card, .experience-card-wide { grid-column: 1; min-height: 250px; }
  .family-media { padding: 0; }
  .family-media-label { min-width: 190px; }
  .family-details { grid-template-columns: 1fr; }
  .founder-story { grid-template-columns: 120px 1fr; gap: 22px; }
  .footer-topbar {
    grid-template-columns: 1fr auto;
    padding-block: 20px;
  }
  .footer-primary-nav { order: 3; grid-column: 1 / -1; }
  .footer-mark { grid-column: 1; grid-row: 1; justify-self: start; }
  .footer-contact { grid-column: 2; grid-row: 1; }
  .footer-ready { min-height: 540px; padding-block: 88px; }
  .footer-ready h2 { font-size: clamp(54px, 15vw, 86px); }
  .footer-action-band { grid-template-columns: 1fr; }
  .footer-action-intro { padding: 25px 0; }
  .footer-action-band > p { border-top: 1px solid rgba(255, 255, 255, .13); border-left: 0; padding-inline: 0; }
  .footer-action-links { border-top: 1px solid rgba(255, 255, 255, .13); }
  .footer-action-links a:first-child { border-left: 0; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; padding-block: 22px max(22px, env(safe-area-inset-bottom)); }
  .footer-bottom > p:last-child { justify-self: start; }
  .footer-legal { justify-content: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(44px, 14vw, 60px); }
  .founder-story { grid-template-columns: 1fr; }
  .founder-image { width: 62%; max-width: 220px; }
  .footer-primary-nav { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; gap: 0; }
  .footer-primary-nav a { min-height: 42px; display: flex; align-items: center; border-top: 1px solid rgba(255, 255, 255, .08); }
  .footer-contact { max-width: 200px; overflow: hidden; text-overflow: ellipsis; }
  .footer-ready { min-height: 510px; }
  .footer-ready-ghost { font-size: 39vw; }
  .footer-ready h2 { font-size: 16vw; }
  .footer-ready > p:not(.footer-ready-ghost) { max-width: 33ch; font-size: 13px; }
  .footer-action-links { grid-template-columns: 1fr; }
  .footer-action-links a { min-height: 88px; border-top: 1px solid rgba(255, 255, 255, .13); border-left: 0; padding-inline: 20px; }
  .footer-action-links a:first-child { border-top: 0; }
  .footer-legal { gap: 8px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .home-parallax-media { transform: none !important; transition: none; }
  .cinematic-video { display: none; }
  .cinematic-stage { inset: 0; transform: none !important; transition: none; }
}
