:root {
  --ink: oklch(0.115 0.012 164);
  --ink-soft: oklch(0.17 0.022 164);
  --forest: oklch(0.25 0.052 164);
  --green: oklch(0.78 0.17 153);
  --green-dark: oklch(0.49 0.13 153);
  --ivory: oklch(0.965 0.012 94);
  --paper: oklch(0.925 0.018 92);
  --paper-deep: oklch(0.87 0.025 92);
  --muted-dark: oklch(0.72 0.018 164);
  --muted-light: oklch(0.46 0.025 164);
  --line-dark: oklch(0.32 0.025 164 / 0.7);
  --line-light: oklch(0.76 0.025 94 / 0.65);
  --display: "Schibsted Grotesk", sans-serif;
  --body: "Source Sans 3", sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.5rem;
  --space-2xl: 2rem;
  --space-3xl: 3rem;
  --space-4xl: 4rem;
  --space-6xl: 6rem;
  --section: clamp(5.5rem, 10vw, 10rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--display); }

.shell { width: min(100% - 3rem, 88rem); margin-inline: auto; }
.section { padding-block: var(--section); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.skip-link {
  position: fixed;
  inset: 0 auto auto 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--green);
  transform: translateY(-120%);
  transition: transform 180ms var(--ease);
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--ivory);
}

.header-inner {
  min-height: 6.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-2xl);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2.15rem;
  height: 2.15rem;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark i { position: absolute; display: block; background: currentColor; }
.brand-mark i:first-child { width: 0.75rem; height: 1px; left: 0.38rem; top: 0.72rem; transform: rotate(-28deg); }
.brand-mark i:last-child { width: 0.9rem; height: 1px; right: 0.3rem; bottom: 0.68rem; transform: rotate(-28deg); }

.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.2vw, 2.5rem); }
.site-nav a, .footer-links a {
  color: inherit;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a { color: var(--muted-dark); transition: color 180ms ease; }
.site-nav a:hover { color: var(--ivory); }

.header-cta { justify-self: end; }
.menu-toggle { display: none; }
.nav-cta { display: none; }

.button {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--green);
  border-radius: 0;
  color: var(--ink);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.button span { font-size: 0.98rem; line-height: 1; transition: transform 220ms var(--ease); }
.button:hover { color: var(--green); background: transparent; }
.button:hover span { transform: translate(0.18rem, -0.18rem); }
.button:active { transform: translateY(1px); }
.button-small { min-height: 2.65rem; padding: 0.6rem 1.1rem; gap: 0.7rem; font-size: 0.73rem; }
.button-small span { font-size: 0.88rem; }
.button-dark { border-color: var(--ink); color: var(--ivory); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span { color: var(--green); transition: transform 220ms var(--ease); }
.text-link:hover span { transform: translateY(0.2rem); }
.dark-link { color: var(--ink); }
.dark-link:hover span { transform: translate(0.18rem, -0.18rem); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span { width: 1.8rem; height: 1px; display: block; background: var(--green); }
.eyebrow.dark { color: var(--muted-light); }

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.hero-orbit {
  position: absolute;
  width: 54rem;
  aspect-ratio: 1;
  right: -22rem;
  top: -20rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 8rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.hero-grid {
  min-height: calc(100dvh - 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding-top: 8.5rem;
  padding-bottom: 4rem;
}

.hero-copy { position: relative; z-index: 2; padding-top: 1rem; }

.hero h1 {
  max-width: 9.3ch;
  margin-top: 1.75rem;
  color: var(--ivory);
  font-size: clamp(3.8rem, 7.2vw, 8.2rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero h1 em, .process h2 em, .standards h2 em, .corridors h2 em, .request h2 em {
  color: var(--green);
  font-style: normal;
  font-weight: inherit;
}

.hero-intro {
  max-width: 35rem;
  margin-top: 2.2rem;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }
.signature { margin-top: 4rem; color: var(--ivory); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }

.hero-visual { position: relative; z-index: 2; width: 100%; max-width: 35rem; justify-self: end; }
.slider { position: relative; aspect-ratio: 0.79; overflow: hidden; border-radius: 48% 48% 1.5rem 1.5rem / 24% 24% 1.5rem 1.5rem; background: var(--forest); }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 700ms var(--ease), transform 1200ms var(--ease);
  isolation: isolate;
}

.slide::before, .slide::after { content: ""; position: absolute; z-index: -1; }
.slide::before { inset: 0; background: linear-gradient(180deg, transparent 20%, oklch(0.1 0.02 164 / 0.75) 100%); }
.slide::after { width: 72%; aspect-ratio: 1; border: 1px solid oklch(0.9 0.04 153 / 0.25); border-radius: 50%; top: 8%; right: -30%; }
.slide img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-one { background: linear-gradient(145deg, oklch(0.27 0.05 162), oklch(0.54 0.105 153)); }
.slide-two { background: linear-gradient(145deg, oklch(0.24 0.045 40), oklch(0.68 0.11 76)); }
.slide-three { background: linear-gradient(145deg, oklch(0.19 0.045 238), oklch(0.59 0.11 204)); }
.slide.is-active { opacity: 1; transform: scale(1); }
.photo-label { max-width: 14rem; color: var(--ivory); font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 2.35rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.02; }
.photo-brief { position: absolute; right: 2rem; bottom: 2.4rem; color: oklch(0.9 0.02 153 / 0.72); font-size: 0.7rem; letter-spacing: 0.08em; writing-mode: vertical-rl; text-transform: uppercase; }

.slider-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; }
.slider-dots { display: flex; align-items: center; gap: 0.5rem; }
.dot { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 0; padding: 0; background: transparent; cursor: pointer; }
.dot::before { content: ""; width: 1.75rem; height: 2px; background: var(--line-dark); transition: width 250ms var(--ease), background 250ms ease; }
.dot.is-active::before { width: 2.35rem; background: var(--green); }
.slider-status { color: var(--muted-dark); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

.proof-strip {
  min-height: 7.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.proof-strip p { display: flex; align-items: center; gap: 0.8rem; color: var(--muted-dark); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.proof-strip p::before { content: ""; flex: none; width: 0.34rem; height: 0.34rem; background: var(--green); }

.manifesto {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--green);
}

.manifesto::after {
  content: "";
  position: absolute;
  width: min(44vw, 40rem);
  aspect-ratio: 1;
  right: -12%;
  bottom: -72%;
  border: 1px solid oklch(0.14 0.025 164 / 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem oklch(0.14 0.025 164 / 0.035), 0 0 0 14rem oklch(0.14 0.025 164 / 0.025);
  pointer-events: none;
}

.manifesto-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.42fr 1.35fr 0.55fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.manifesto-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 0.55rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto h2 {
  max-width: 18ch;
  font-size: clamp(3.4rem, 5.8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.manifesto-top > p:last-child {
  max-width: 19rem;
  padding-bottom: 0.45rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.promises {
  position: relative;
  z-index: 1;
  margin: clamp(3.25rem, 6.5vw, 5.75rem) 0 0;
  padding: 0;
  border-top: 1px solid oklch(0.14 0.025 164 / 0.24);
  list-style: none;
}

.promises li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  padding-block: clamp(1.15rem, 2vw, 1.7rem);
  border-bottom: 1px solid oklch(0.14 0.025 164 / 0.24);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.05vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.14;
}

/* Ink check on green, drawn rather than typeset, so it matches the display weight. */
.promises li::before {
  content: "";
  width: 0.66em;
  height: 0.36em;
  margin-top: 0.36em;
  border-left: 0.135em solid var(--ink);
  border-bottom: 0.135em solid var(--ink);
  transform: rotate(-45deg);
  transition: transform 260ms var(--ease);
}

@media (hover: hover) {
  .promises li:hover::before { transform: rotate(-45deg) translate(0.06em, 0.06em) scale(1.1); }
}

.standards h2, .corridors h2, .request h2 {
  color: var(--ink);
  font-size: clamp(3.35rem, 7vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.process { color: var(--ivory); background: var(--forest); }
.process-top { display: grid; grid-template-columns: 0.55fr 1fr 0.55fr; align-items: end; gap: 3rem; }
.process h2 { color: var(--ivory); font-size: clamp(3rem, 6vw, 6.8rem); font-weight: 700; letter-spacing: -0.07em; line-height: 0.9; }
.process-top > p:last-child { max-width: 18rem; padding-bottom: 0.35rem; color: var(--muted-dark); }
/* One line connects the route; it deliberately avoids the feeling of four cards. */
.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3.4vw, 4.5rem);
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 2.5rem 0 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
}

.process-list li {
  position: relative;
  min-height: 14rem;
  padding-top: 1.1rem;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: -2.85rem;
  left: 0;
  width: 0.72rem;
  aspect-ratio: 1;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.4rem var(--forest);
}

.process-list h3 { color: var(--ivory); font-size: clamp(1.55rem, 2.2vw, 2.3rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1; }
.process-list p { color: var(--muted-dark); }
.step-what { margin-top: 0.8rem; font-size: 0.95rem; }
.step-arrow { display: none; }

.step-gets {
  max-width: 15ch;
  margin-top: 3.5rem;
  color: var(--green) !important;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.scope-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-block: 1px solid var(--line-dark);
}

.scope-compact article { min-height: 11rem; padding: 1.5rem 2.5rem 1.5rem 0; }
.scope-compact article + article { padding-left: 2.5rem; border-inline-start: 1px solid var(--line-dark); }
.scope-compact span { color: var(--green); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.scope-compact h3 { margin-top: 1.2rem; color: var(--ivory); font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 600; letter-spacing: -0.035em; }
.scope-compact p { max-width: 30rem; margin-top: 0.65rem; color: var(--muted-dark); }

.standards { background: var(--paper); }
.standards-grid { display: grid; grid-template-columns: 0.82fr 1fr; align-items: center; gap: clamp(4rem, 10vw, 10rem); }
.standards-copy > p:not(.eyebrow) { max-width: 30rem; margin-top: 2rem; color: var(--muted-light); font-size: 1.15rem; }
.standards-copy .eyebrow { margin-bottom: 2.4rem; }
.standards-copy .text-link { margin-top: 2rem; }

.evidence { padding: clamp(1.5rem, 3vw, 2.6rem); color: var(--ivory); background: var(--ink); }
.evidence-head, .evidence-foot { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.evidence-head { padding-bottom: 2rem; border-bottom: 1px solid var(--line-dark); }
.evidence-head div { display: flex; flex-direction: column; gap: 0.25rem; }
.evidence-head span, .evidence-foot { color: var(--muted-dark); font-size: 0.65rem; letter-spacing: 0.09em; text-transform: uppercase; }
.evidence-head strong { font-family: var(--display); font-size: 1.2rem; font-weight: 600; }
.live-pill { display: inline-flex; align-items: center; gap: 0.5rem; }
.live-pill i { width: 0.45rem; height: 0.45rem; display: block; border-radius: 50%; background: var(--green); animation: breathe 2.6s ease-in-out infinite; }
.checkpoints { margin: 0; padding: 0; list-style: none; }
.checkpoints li { min-height: 5.4rem; display: grid; grid-template-columns: 1fr 0.8fr auto; align-items: center; gap: 1rem; border-bottom: 1px solid var(--line-dark); }
.checkpoints li > span { font-family: var(--display); font-size: 1.05rem; font-weight: 600; }
.checkpoints small { color: var(--muted-dark); }
.checkpoints b { min-width: 4.5rem; color: var(--muted-dark); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-align: right; text-transform: uppercase; }
.checkpoints .is-done b { color: var(--green); }
.checkpoints .is-current { background: oklch(0.78 0.17 153 / 0.06); }
.checkpoints .is-current b { color: var(--paper); }
.evidence-foot { padding-top: 1.5rem; }

.corridors { overflow: hidden; color: var(--ivory); background: var(--ink); }
.corridors h2 { font-size: clamp(2.4rem, 3.9vw, 3.9rem); letter-spacing: -0.045em; line-height: 1; }
.corridor-grid { display: grid; grid-template-columns: 0.72fr 1.15fr; align-items: center; gap: clamp(4rem, 9vw, 9rem); }
.corridors h2 { color: var(--ivory); }
.corridor-copy > p:last-child { max-width: 25rem; margin-top: 2rem; color: var(--muted-dark); font-size: 1.1rem; }
.corridor-copy .eyebrow { margin-bottom: 2.4rem; }
.route-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(3.5rem, 7vw, 5.5rem);
  border-block: 1px solid var(--line-dark);
}

.route-head { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); color: var(--muted-dark); font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; }
.route-destination .route-head { text-align: right; }
.route-col ul { display: grid; gap: clamp(1.5rem, 3.5vw, 2.75rem); margin: 0; padding: 0; list-style: none; }
.route-col li { display: flex; align-items: center; gap: 0.9rem; }
.route-col li::before { content: ""; order: 1; flex: 1 1 1.5rem; height: 1px; background: var(--line-dark); }
.route-col span { font-family: var(--display); font-size: clamp(0.92rem, 1.2vw, 1.12rem); font-weight: 600; letter-spacing: -0.02em; }
.route-col i { flex: none; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0.28rem oklch(0.78 0.17 153 / 0.16); }
.route-source i { order: 2; }
.route-destination span { order: 2; text-align: right; }
.route-hub { position: relative; width: clamp(5rem, 9vw, 7.5rem); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; }
.route-hub::before { content: ""; position: absolute; inset: -1.35rem; border: 1px solid var(--line-dark); border-radius: 50%; opacity: 0.45; }
.route-hub span { color: var(--green); font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.map-label { position: absolute; right: 0; bottom: 1.1rem; color: var(--muted-dark); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }

.founders {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest);
}

/* Supporting section, not a brand moment: the founders establish accountability and then get out
   of the way. Kept deliberately tighter than the surrounding sections — at full editorial scale the
   portraits rendered as large as the campaign photography, which put the founders' faces on the
   same visual footing as the hospitality workers the page is actually about. */
.founders { padding-block: clamp(4.5rem, 7vw, 7rem); }

/* Corner detail, not a centrepiece. Centred it would now cut straight through the copy, and its
   accent dot collided with the second founder's role label. */
.founders-orbit {
  position: absolute;
  width: min(26rem, 34vw);
  aspect-ratio: 1;
  right: -7rem;
  bottom: -30%;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  pointer-events: none;
}

.founders .shell { position: relative; }
.founders-heading .eyebrow { margin-bottom: 1.5rem; }
.founders h2 { color: var(--ivory); font-size: clamp(2.2rem, 3.6vw, 3.4rem); font-weight: 700; letter-spacing: -0.05em; line-height: 1.02; text-wrap: balance; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.25rem, 4.5vw, 4rem); margin-top: clamp(2.75rem, 4.5vw, 4rem); }

.founder {
  min-width: 0;
  display: grid;
  grid-template-columns: clamp(7rem, 10vw, 9.5rem) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.15rem, 2vw, 1.75rem);
}

.founder-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  border-radius: 50% 50% 0 0;
  background: var(--paper-deep);
}

.founder-portrait img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 22%; filter: saturate(0.86) contrast(1.02); }
.founder-copy { max-width: 30rem; }
.founder-copy h3 { color: var(--ivory); font-size: clamp(1.3rem, 1.85vw, 1.7rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.08; }
.founder-role { margin-top: 0.45rem; color: var(--green); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.founder-lead { margin-top: 0.95rem; color: var(--ivory); font-family: var(--display); font-size: clamp(0.98rem, 1.1vw, 1.1rem); font-style: italic; line-height: 1.35; }
.founder-copy > p:last-child { margin-top: 0.6rem; color: var(--muted-dark); font-size: 0.9rem; line-height: 1.6; }

/* Fixed label column: a fractional one leaves a ~300px void beside a 10px label now that the
   statement is set at section scale rather than display scale. */
.founders-statement { display: grid; grid-template-columns: clamp(5.5rem, 8vw, 8rem) minmax(0, 1fr); gap: clamp(1.25rem, 2.2vw, 2.25rem); align-items: start; margin-top: clamp(2.75rem, 5vw, 4.5rem); padding-top: clamp(1.75rem, 3vw, 2.75rem); border-top: 1px solid var(--line-dark); }
.founders-statement > span { padding-top: 0.3rem; color: var(--green); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.founders-statement p { max-width: 46ch; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.85rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.2; }
.founders-statement strong { color: var(--green); font-weight: inherit; }

.request { color: var(--ink); background: var(--green); }
.request-grid { display: grid; grid-template-columns: 0.8fr 1fr; align-items: start; gap: clamp(4rem, 10vw, 10rem); }
.request h2 em { color: var(--ink); opacity: 0.46; }
.request-copy .eyebrow { margin-bottom: 2.4rem; color: var(--ink); }
.request-copy .eyebrow span { background: var(--ink); }
.request-copy > p:nth-of-type(2) { max-width: 24rem; margin-top: 2rem; font-size: 1.1rem; }

.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-wide { grid-column: 1 / -1; }
label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
input, select, textarea { width: 100%; min-height: 3.6rem; border: 0; border-bottom: 1px solid oklch(0.18 0.02 164 / 0.55); border-radius: 0; padding: 0.75rem 0; color: var(--ink); background: transparent; font-size: 1rem; }
textarea { min-height: 6.5rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: oklch(0.31 0.04 153 / 0.55); opacity: 1; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 0.8rem) 50%, calc(100% - 0.45rem) 50%; background-size: 0.35rem 0.35rem; background-repeat: no-repeat; }
input:focus, select:focus, textarea:focus { outline: 0; border-bottom-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
.was-validated :invalid { border-bottom-color: oklch(0.45 0.18 30); }
.form-action { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.form-action p { max-width: 19rem; font-size: 0.82rem; }
.form-action p span { display: block; margin-top: 0.2rem; font-weight: 600; }

.site-footer { padding-top: 5rem; color: var(--ivory); background: var(--ink); }
.footer-main { min-height: 13rem; display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: 5rem; }
.footer-brand { margin-bottom: 1.2rem; }
.footer-main > div:first-child p { color: var(--muted-dark); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 1rem 3rem; }
.footer-links a { color: var(--muted-dark); }
.footer-links a:hover { color: var(--ivory); }
.footer-location { color: var(--muted-dark); font-size: 0.86rem; text-align: right; }

.footer-legal { min-height: 5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem 2rem; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: 0.72rem; }

.reveal { opacity: 0; transform: translateY(1.4rem); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes breathe { 0%, 100% { opacity: 0.45; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.15); } }

@media (max-width: 1240px) {
  .site-nav { gap: 1.15rem; }
  .header-cta { padding-inline: 0.9rem; gap: 0.8rem; }
}

@media (max-width: 1060px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr); gap: 2.5rem; }
  .process-top { grid-template-columns: 1fr 1.4fr; }
  .process-top > p:last-child { grid-column: 2; }
  .process-list { gap: 1.5rem; }
  .standards-grid, .corridor-grid, .request-grid { gap: 4rem; }
}

@media (max-width: 760px) {
  :root { --section: 5.5rem; }
  .shell { width: min(100% - 2rem, 88rem); }
  .site-header { position: absolute; }
  .header-inner { min-height: 5.25rem; grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { width: 2.75rem; height: 2.75rem; display: grid; place-content: center; gap: 0.35rem; border: 0; padding: 0; color: var(--ivory); background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { width: 1.45rem; height: 1px; display: block; background: currentColor; transition: transform 250ms var(--ease); }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(0.2rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-0.2rem) rotate(-45deg); }
  .site-nav { position: fixed; inset: 5.25rem 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 3rem 1rem; color: var(--ivory); background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-0.75rem); transition: opacity 250ms var(--ease), transform 250ms var(--ease), visibility 250ms; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { width: 100%; padding: 1.2rem 0; border-bottom: 1px solid var(--line-dark); color: var(--ivory); font-family: var(--display); font-size: 1.7rem; letter-spacing: -0.03em; text-transform: none; }
  .site-nav .nav-cta {
    display: block;
    margin-top: 2rem;
    padding: 1.05rem 1.25rem;
    border: 1px solid var(--green);
    color: var(--ink);
    background: var(--green);
    font-family: var(--body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 2rem; padding-top: 7.25rem; padding-bottom: 2.5rem; }
  .hero h1 { font-size: clamp(3.15rem, 14.5vw, 4.5rem); }
  .hero-intro { max-width: 31rem; margin-top: 1.6rem; line-height: 1.45; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 0.85rem; margin-top: 1.75rem; }
  .signature { margin-top: 1.75rem; }
  .hero-visual { max-width: 26rem; justify-self: center; }
  .proof-strip { grid-template-columns: 1fr 1fr; padding-block: 1rem; }
  .proof-strip p { min-height: 3.3rem; }
  .manifesto-top { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto h2 { font-size: clamp(3.25rem, 15.5vw, 5.2rem); }
  .manifesto-top > p:last-child { max-width: 31rem; }
  .promises { margin-top: 2.75rem; }
  .promises li { padding-block: 1.15rem; }
  .manifesto::after { width: 32rem; right: -70%; bottom: -25%; }
  .standards-grid, .corridor-grid, .request-grid { grid-template-columns: 1fr; }
  .process-top { grid-template-columns: 1fr; }
  .process-top > p:last-child { grid-column: auto; margin-top: 1.5rem; }
  .process-list { display: block; margin-top: 3rem; padding: 0 0 0 2rem; }
  .process-list::before { top: 0.25rem; bottom: 1.6rem; left: 0.34rem; right: auto; width: 1px; height: auto; }
  .process-list li { min-height: 0; padding: 0 0 2.8rem 1rem; }
  .process-list li::before { top: 0.02rem; left: -2rem; width: 0.72rem; box-shadow: 0 0 0 0.35rem var(--forest); }
  .process-list li:last-child { padding-bottom: 0; }
  .step-what { margin-top: 0.65rem; font-size: 0.9rem; }
  .step-gets { max-width: 21ch; margin-top: 1rem; font-size: 1.16rem; }
  .scope-compact { grid-template-columns: 1fr; }
  .scope-compact article { min-height: 9.5rem; padding: 1.4rem 0; }
  .scope-compact article + article { padding-left: 0; border-top: 1px solid var(--line-dark); border-inline-start: 0; }
  .standards-grid, .corridor-grid, .request-grid { gap: 4.5rem; }
  .evidence { margin-inline: -0.25rem; }
  .checkpoints li { grid-template-columns: 1fr auto; }
  .checkpoints small { grid-row: 2; }
  .checkpoints b { grid-column: 2; grid-row: 1 / 3; }
  .route-map { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3.5rem; }
  .route-destination .route-head { text-align: left; }
  .route-col li::before { flex: 0 0 1.25rem; }
  .route-source i { order: 0; }
  .route-source span { order: 2; }
  .route-destination span { order: 2; text-align: left; }
  .route-hub { justify-self: center; transform: rotate(90deg); }
  .founders-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .founder { grid-template-columns: 5.75rem minmax(0, 1fr); gap: 1.1rem; }
  .founder-copy { max-width: 31rem; }
  .founders-statement { grid-template-columns: 1fr; gap: 0.9rem; }
  .request-form { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-action { grid-template-columns: 1fr; }
  .form-action .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-location { text-align: left; }
  .footer-legal { min-height: auto; align-items: flex-start; flex-direction: column; padding-block: 1.5rem; }
}

@media (max-width: 430px) {
  .standards h2, .corridors h2, .request h2 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .corridors h2 { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .founders h2 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .founder { grid-template-columns: 5rem minmax(0, 1fr); gap: 0.95rem; }
  .founder-copy h3 { font-size: clamp(1.2rem, 5.5vw, 1.45rem); }
  .founder-copy > p:last-child { font-size: 0.86rem; }
  .founders-statement p { font-size: clamp(1.15rem, 5.5vw, 1.5rem); }
  .route-col span { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
