/* Wild Leadership — independent organizational design system */
:root {
  --night: #183229;
  --night-soft: #29483b;
  --slate: #59675e;
  --porcelain: #efeee5;
  --paper: #fbfaf4;
  --mist: #dfe7dc;
  --lichen: #d4ddae;
  --clay: #b96243;
  --clay-dark: #8f4934;
  --bark: #624a3b;
  --fern: #718a66;
  --river: #547774;
  --ember: #d5653e;
  --white: #ffffff;
  --line: rgba(24, 50, 41, 0.15);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(24, 50, 41, 0.1);
  --font-display: "Literata", "Iowan Old Style", "Baskerville", serif;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --container: min(1280px, calc(100vw - 64px));
  --reading: 710px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--night);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.018em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.9rem, 7.4vw, 8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 4.9vw, 5.35rem);
  line-height: 1;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  line-height: 1.08;
}

h4 {
  margin-bottom: 9px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

::selection {
  background: var(--lichen);
  color: var(--night);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--night);
  color: var(--white);
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.reading {
  width: min(var(--reading), 100%);
}

.section {
  padding-block: clamp(92px, 11vw, 170px);
}

.section-compact {
  padding-block: clamp(70px, 8vw, 116px);
}

.surface {
  background: var(--porcelain);
}

.surface-mist {
  background: var(--mist);
}

.surface-dark {
  background: var(--night);
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--clay-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.surface-dark .eyebrow,
.image-copy .eyebrow {
  color: var(--lichen);
}

.lead {
  margin-bottom: 0;
  color: var(--slate);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.65;
}

.surface-dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

.micro {
  color: var(--slate);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 14px;
  padding-block: 5px;
  padding-inline: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link::after {
  content: "↗";
}

.text-link:hover {
  gap: 20px;
  color: var(--clay);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--clay);
  color: var(--white);
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--night);
}

.button-secondary:hover {
  border-color: var(--night);
  background: var(--night);
  color: var(--white);
}

.surface-dark .button-secondary {
  border-color: var(--line-light);
  color: var(--white);
}

.surface-dark .button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 251, 247, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 251, 247, 0.94);
  box-shadow: 0 10px 40px rgba(24, 50, 41, 0.05);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 31px;
  height: 36px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-master {
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand-branch {
  margin-top: 0;
  color: var(--slate);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav > a,
.nav-group-toggle {
  padding: 11px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-group-toggle:hover,
.nav-group-toggle[aria-expanded="true"] {
  background: var(--mist);
  color: var(--night);
}

.site-nav > .nav-contact {
  margin-left: 6px;
  padding-inline: 18px;
  background: var(--night);
  color: var(--white);
}

.site-nav > .nav-contact:hover {
  background: var(--clay);
  color: var(--white);
}

.nav-group {
  position: relative;
}

.nav-group-toggle::after {
  margin-left: 7px;
  content: "⌄";
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 310px;
  padding: 12px;
  transform: translate(-50%, -8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-group.is-open .nav-dropdown {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown a {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-radius: 10px;
  line-height: 1.35;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background: var(--porcelain);
}

.nav-dropdown strong {
  font-size: 0.86rem;
}

.nav-dropdown span {
  color: var(--slate);
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin-inline: auto;
  background: var(--night);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  margin-block: 5px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Home hero */
.home-hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 42px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 61%, #e4e8dc 61%, #e4e8dc 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.62fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.home-hero-copy {
  padding-block: 70px;
}

.home-hero-copy h1 {
  max-width: 9.2ch;
}

.home-hero-copy .lead {
  max-width: 580px;
}

.home-hero-aside {
  position: relative;
  min-height: min(72svh, 760px);
  overflow: hidden;
  border-radius: 28px;
}

.home-hero-aside img,
.home-hero-aside video {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.02);
  pointer-events: none;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.home-hero-aside:hover img,
.home-hero-aside:hover video {
  transform: scale(1.025);
}

.home-hero-aside::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24, 50, 41, 0.62));
  content: "";
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.hero-note strong {
  max-width: 210px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-note span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.problem-intro {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.problem-copy p {
  max-width: 660px;
  color: var(--slate);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.55;
}

.problem-words {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-word {
  min-height: 155px;
  padding: 27px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-word span:first-child {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.018em;
  line-height: 1;
}

.problem-word span:last-child {
  color: var(--slate);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.statement-band {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.statement-band img,
.statement-band video {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: saturate(0.6) contrast(1.04);
}

.statement-band::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 50, 41, 0.92), rgba(24, 50, 41, 0.36)),
    linear-gradient(180deg, rgba(24, 50, 41, 0.06), rgba(24, 50, 41, 0.55));
  content: "";
}

.statement-copy {
  position: relative;
  z-index: 1;
  width: min(900px, 80%);
  padding-block: 120px;
}

.statement-copy h2 {
  max-width: 10ch;
}

.statement-copy p {
  width: min(540px, 100%);
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.16rem;
}

/* Offerings */
.section-heading {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 105px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .lead {
  max-width: 600px;
  justify-self: end;
}

.offering-list {
  display: grid;
  gap: 22px;
}

.offering-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) 1.18fr;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.offering-image {
  min-height: 330px;
  overflow: hidden;
}

.offering-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.offering-card:hover .offering-image img {
  transform: scale(1.03);
}

.offering-body {
  padding: clamp(34px, 5vw, 68px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-content: center;
}

.offering-number {
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.offering-body p {
  max-width: 600px;
  color: var(--slate);
}

.offering-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 30px;
}

.offering-meta span,
.tag {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credibility-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.credibility-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.credibility-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68);
}

.credibility-copy {
  max-width: 600px;
}

.credibility-copy > p {
  color: var(--slate);
  font-size: 1.1rem;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-block: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.credibility-button {
  min-height: 112px;
  padding: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.credibility-button:hover {
  background: var(--night);
  color: var(--white);
}

.credibility-button span:first-child {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.credibility-button span:last-child {
  color: var(--clay);
  font-size: 1.1rem;
}

.stewardship-section {
  position: relative;
  overflow: hidden;
}

.stewardship-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 90px);
}

.stewardship-heading h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.stewardship-heading-copy {
  max-width: 650px;
  justify-self: end;
}

.stewardship-heading-copy p {
  color: var(--slate);
  font-size: 1.08rem;
}

.stewardship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stewardship-card {
  min-width: 0;
  min-height: 320px;
  padding: clamp(24px, 3.5vw, 38px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 244, 0.32);
  color: var(--night);
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.stewardship-card:hover {
  z-index: 1;
  background: var(--night);
  color: var(--white);
  transform: translateY(-4px);
}

.stewardship-card-index,
.stewardship-card-role {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.stewardship-card-index {
  margin-bottom: 56px;
  color: var(--clay-dark);
}

.stewardship-card:hover .stewardship-card-index,
.stewardship-card:hover .stewardship-card-role {
  color: var(--lichen);
}

.stewardship-card-role {
  margin-bottom: 12px;
  color: var(--slate);
}

.stewardship-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.6vw, 2.75rem);
}

.stewardship-card p {
  margin-bottom: 26px;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.65;
}

.stewardship-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.stewardship-open {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.stewardship-footnote {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--slate);
  font-size: 0.78rem;
}

.principles-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.principle {
  min-height: 260px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle span {
  color: var(--lichen);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.principle h3 {
  max-width: 7ch;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-copy h2 {
  max-width: 8ch;
}

.contact-copy p {
  max-width: 470px;
  color: var(--slate);
}

.contact-form {
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--porcelain);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 50, 41, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--night);
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--clay);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(89, 103, 94, 0.65);
}

.form-note {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 0.74rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

/* Offering pages */
.page-hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 40px);
  display: flex;
  align-items: center;
  background: var(--porcelain);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.76fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.page-hero h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.page-hero .lead {
  max-width: 600px;
}

.page-hero-media {
  position: relative;
  min-height: min(74svh, 790px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.page-hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(24, 50, 41, 0.55));
  content: "";
}

.page-hero-index {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.programme-bar {
  background: var(--night);
  color: var(--white);
}

.programme-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-light);
}

.programme-fact {
  min-height: 150px;
  padding: 27px;
  border-right: 1px solid var(--line-light);
}

.programme-fact span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.programme-fact strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
}

.editorial-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 10vw, 150px);
}

.editorial-split .sticky-label {
  position: sticky;
  top: calc(var(--header-height) + 45px);
  align-self: start;
}

.editorial-main {
  max-width: 820px;
}

.editorial-main > p {
  color: var(--slate);
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
}

.editorial-main blockquote {
  margin: 70px 0;
  padding-left: 30px;
  border-left: 3px solid var(--clay);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contrast-card {
  min-height: 270px;
  padding: clamp(25px, 4vw, 42px);
  background: var(--paper);
}

.contrast-card p {
  color: var(--slate);
}

.contrast-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contrast-card li {
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
}

.sequence {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.sequence-step {
  display: grid;
  grid-template-columns: 0.24fr 0.68fr 1.08fr;
  gap: clamp(20px, 4vw, 60px);
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.sequence-step .step-number {
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sequence-step h3 {
  margin-bottom: 0;
}

.sequence-step p {
  margin-bottom: 0;
  color: var(--slate);
}

.full-image {
  position: relative;
  min-height: min(82svh, 880px);
  overflow: hidden;
}

.full-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.full-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 50, 41, 0.8), rgba(24, 50, 41, 0.1));
  content: "";
}

.image-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: clamp(110px, 15vw, 210px);
  color: var(--white);
}

.image-copy h2 {
  max-width: 9ch;
}

.image-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.method-card {
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.method-card:nth-child(2) {
  background: var(--mist);
}

.method-card:nth-child(3) {
  background: var(--lichen);
}

.method-card span {
  color: var(--clay-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.method-card p {
  margin: 20px 0 0;
  color: var(--slate);
}

.fit-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fit-card {
  min-height: 430px;
  padding: clamp(32px, 5vw, 65px);
  border-radius: var(--radius-lg);
}

.fit-card:first-child {
  background: var(--night);
  color: var(--white);
}

.fit-card:last-child {
  background: var(--mist);
}

.fit-card ul {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(255, 255, 255, 0.16);
  position: relative;
}

.fit-card:last-child li {
  border-color: var(--line);
}

.fit-card li::before {
  position: absolute;
  left: 0;
  color: var(--clay);
  content: "—";
}

.investment-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  padding: clamp(36px, 7vw, 84px);
  align-items: end;
  border-radius: var(--radius-lg);
  background: var(--night);
  color: var(--white);
}

.investment-panel h2 {
  max-width: 8ch;
}

.investment-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
}

.investment-figure {
  min-width: 260px;
  text-align: right;
}

.investment-figure span {
  display: block;
  margin-bottom: 12px;
  color: var(--lichen);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.investment-figure strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.next-offering {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: end;
}

.next-offering h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.next-offering-copy {
  max-width: 620px;
  justify-self: end;
}

.next-offering-copy p {
  color: var(--slate);
}

.stewardship-compact {
  background: var(--mist);
}

.page-journey .stewardship-compact {
  background: #eadfd2;
}

.page-immersion .stewardship-compact {
  background: #d9e4d6;
}

.page-response .stewardship-compact {
  background: #101f19;
  color: var(--white);
}

.stewardship-compact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
}

.stewardship-compact h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.stewardship-compact-copy {
  max-width: 680px;
  justify-self: end;
}

.stewardship-compact-copy > p {
  color: var(--slate);
}

.page-response .stewardship-compact .eyebrow {
  color: var(--ember);
}

.page-response .stewardship-compact-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.stewardship-names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.stewardship-names span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-response .stewardship-names span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
}

/* Footer */
.site-footer {
  padding: 74px 0 32px;
  background: #101c22;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.6fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand .brand-branch {
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand p {
  max-width: 450px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: var(--lichen);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 32px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 19, 23, 0.76);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(820px, calc(100svh - 48px));
  overflow: auto;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.3);
}

.modal-wide .modal-dialog {
  width: min(1000px, 100%);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 46px;
  height: 46px;
  margin: -18px -18px 12px 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal h2 {
  max-width: 10ch;
}

.modal-intro {
  max-width: 640px;
  color: var(--slate);
  font-size: 1.1rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.modal-section {
  min-height: 190px;
  padding: 28px;
  background: var(--paper);
}

.modal-section h3 {
  margin-bottom: 9px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.modal-section p {
  margin-bottom: 0;
  color: var(--slate);
}

.people-modal .modal-dialog {
  width: min(1080px, 100%);
}

.people-modal .modal-intro {
  max-width: 760px;
}

.people-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.person-profile {
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
}

.person-profile--founder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
}

.person-profile-role {
  display: block;
  margin-bottom: 18px;
  color: var(--clay-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.person-profile h3 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.person-profile p {
  color: var(--slate);
}

.credential-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  line-height: 1.5;
}

.credential-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.people-modal-note {
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 0.78rem;
}

.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 35px 22px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--clay);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 650px;
  padding-bottom: 22px;
  color: var(--slate);
}

/* Motion */
.reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 700ms ease;
}

.reveal.is-visible {
  transform: none;
  opacity: 1;
}

.reveal-delay {
  transition-delay: 120ms;
}

/* Offering identities */
.page-journey {
  --clay: #a85d42;
  --clay-dark: #824431;
  --mist: #e8dfd1;
  --porcelain: #f3eee5;
}

.page-immersion {
  --clay: #718a66;
  --clay-dark: #486443;
  --mist: #dce7d7;
  --porcelain: #eef2e8;
}

.page-response {
  --clay: #d5653e;
  --clay-dark: #a7442b;
  --mist: #e5ddd2;
  --porcelain: #f1ede5;
}

.offering-card--journey {
  background: #f8f1e8;
}

.offering-card--journey .offering-image {
  margin: 18px 0 18px 18px;
  border-radius: 16px;
}

.offering-card--immersion {
  grid-template-columns: 1.13fr 0.87fr;
  background: #e4ebdf;
}

.offering-card--immersion .offering-image {
  order: 2;
  min-height: 470px;
}

.offering-card--immersion .offering-body {
  order: 1;
}

.offering-card--response {
  grid-template-columns: 0.72fr 1.28fr;
  border-color: rgba(255, 255, 255, 0.13);
  background: #172820;
  color: var(--white);
}

.offering-card--response .offering-image img {
  filter: saturate(0.88) contrast(1.05);
}

.offering-card--response .offering-body p,
.offering-card--response .micro {
  color: rgba(255, 255, 255, 0.66);
}

.offering-card--response .offering-meta span {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
}

.offering-card--response .offering-number,
.offering-card--response .text-link {
  color: #f08a61;
}

/* Leadership Journey — warm, developmental, editorial */
.page-journey .page-hero {
  background:
    radial-gradient(circle at 15% 18%, rgba(168, 93, 66, 0.09), transparent 30%),
    #f3eee5;
}

.page-journey .page-hero-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.06fr);
  gap: clamp(44px, 7vw, 104px);
}

.page-journey .page-hero h1 {
  max-width: 10.5ch;
}

.page-journey .page-hero-media {
  min-height: min(77svh, 820px);
  border-radius: 28px;
}

.page-journey .page-hero-media img {
  filter: saturate(0.82) sepia(0.04);
}

.page-journey .programme-bar {
  border-block: 1px solid var(--line);
  background: #fbf7f0;
  color: var(--night);
}

.page-journey .programme-facts {
  border-left-color: var(--line);
}

.page-journey .programme-fact {
  border-right-color: var(--line);
}

.page-journey .programme-fact span {
  color: var(--clay-dark);
}

.page-journey .journey-rhythm {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-top: 0;
}

.page-journey .journey-rhythm .sequence-step {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.page-journey .journey-rhythm .sequence-step:nth-child(2),
.page-journey .journey-rhythm .sequence-step:nth-child(3) {
  background: var(--mist);
}

.page-journey .journey-rhythm .sequence-step h3 {
  margin-top: auto;
}

.page-journey .journey-cohort {
  width: var(--container);
  min-height: min(70svh, 720px);
  margin: 0 auto;
  border-radius: 36px;
}

.page-journey .method-card {
  border-radius: 20px;
}

/* Leadership Immersions — cinematic, open and landscape-led */
.immersion-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.immersion-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
}

.immersion-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 37, 28, 0.14), rgba(14, 37, 28, 0.84)),
    linear-gradient(90deg, rgba(14, 37, 28, 0.64), transparent 68%);
  content: "";
}

.immersion-hero-copy {
  position: relative;
  z-index: 1;
  width: min(880px, 88%);
  padding: calc(var(--header-height) + 150px) 0 74px;
}

.immersion-hero h1 {
  max-width: 10ch;
  font-size: clamp(4.1rem, 8.3vw, 8.8rem);
}

.immersion-hero .lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.8);
}

.immersion-hero .eyebrow {
  color: var(--lichen);
}

.immersion-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.immersion-hero .button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}

.page-immersion .programme-bar {
  background: #31503f;
}

.page-immersion .editorial-split {
  grid-template-columns: 0.48fr 1.52fr;
}

.page-immersion .editorial-main {
  max-width: 920px;
}

.page-immersion .immersion-trail {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 0;
}

.page-immersion .immersion-trail .sequence-step {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 0;
  border-radius: 28px 28px 18px 18px;
  background: #dde7d7;
}

.page-immersion .immersion-trail .sequence-step:nth-child(even) {
  margin-top: 70px;
  background: #cbdac6;
}

.page-immersion .immersion-trail .sequence-step h3 {
  margin-top: auto;
}

.page-immersion .method-grid {
  gap: 0;
  border-top: 1px solid var(--line);
}

.page-immersion .method-card,
.page-immersion .method-card:nth-child(2),
.page-immersion .method-card:nth-child(3) {
  min-height: 300px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.page-immersion .method-card:last-child {
  border-right: 0;
}

/* Leadership Response — a focused supervision unit under pressure */
.response-hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #14251e;
  color: var(--white);
}

.response-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr);
  min-height: calc(100svh - var(--header-height));
}

.response-hero-copy {
  padding: clamp(80px, 10vw, 145px) clamp(40px, 7vw, 100px) 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.response-hero h1 {
  max-width: 10.7ch;
  font-size: clamp(3.8rem, 7vw, 7.7rem);
}

.response-hero .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.response-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.response-hero .button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}

.response-pulse {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #f29a75;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.response-pulse::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 7px rgba(213, 101, 62, 0.13);
  content: "";
}

.response-hero-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.response-hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}

.response-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #14251e 0%, transparent 30%, rgba(20, 37, 30, 0.08));
  content: "";
}

.response-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.response-statusbar {
  border-bottom: 1px solid var(--line);
  background: #f4efe7;
}

.response-statusgrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
}

.response-status {
  min-height: 145px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.response-status:first-child {
  border-left: 1px solid var(--line);
}

.response-status span {
  display: block;
  margin-bottom: 22px;
  color: var(--clay-dark);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.response-status strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}

.response-intro {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 9vw, 140px);
}

.response-intro-copy {
  max-width: 800px;
}

.response-intro-copy > p {
  color: var(--slate);
  font-size: clamp(1.13rem, 1.8vw, 1.47rem);
}

.response-intro-copy blockquote {
  margin: 54px 0 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
  color: var(--night);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  line-height: 1.04;
}

.response-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--line);
  border: 1px solid var(--line);
}

.response-signal {
  min-height: 245px;
  padding: 28px;
  background: var(--paper);
}

.response-signal span {
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.response-signal h3 {
  margin-top: 64px;
}

.response-signal p {
  margin-bottom: 0;
  color: var(--slate);
}

.response-protocol {
  background: #14251e;
  color: var(--white);
}

.response-protocol .eyebrow {
  color: #f29a75;
}

.response-protocol .button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.response-protocol .button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}

.response-protocol-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.response-protocol-heading p {
  max-width: 600px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.66);
}

.response-stage-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.response-stage {
  display: grid;
  grid-template-columns: 0.22fr 0.7fr 1.08fr;
  gap: 35px;
  padding: 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.response-stage > span {
  color: #f08a61;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.response-stage h3,
.response-stage p {
  margin: 0;
}

.response-stage p {
  color: rgba(255, 255, 255, 0.64);
}

.response-boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 30px;
  background: #e8e0d4;
}

.response-boundary-copy {
  padding: clamp(42px, 7vw, 90px);
}

.response-boundary-copy p {
  color: var(--slate);
}

.response-boundary-media {
  min-height: 620px;
}

.response-boundary-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
}

.page-response .investment-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(115deg, rgba(213, 101, 62, 0.18), transparent 40%),
    #14251e;
}

.page-response .contact-form {
  background: #f1ece3;
}

@media (max-width: 1080px) {
  :root {
    --container: min(100% - 44px, 980px);
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100svh - var(--header-height));
    padding: 18px 22px 30px;
    display: grid;
    align-items: stretch;
    gap: 4px;
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav > a,
  .nav-group-toggle {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    text-align: left;
  }

  .site-nav > .nav-contact {
    margin: 8px 0 0;
    text-align: center;
  }

  .nav-group {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    display: none;
    padding: 5px 0 5px 14px;
    transform: none;
    border: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-group.is-open .nav-dropdown {
    display: grid;
    transform: none;
  }

  .home-hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 40px;
  }

  .home-hero-aside,
  .page-hero-media {
    min-height: 640px;
  }

  .problem-intro,
  .section-heading,
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .section-heading .lead {
    justify-self: start;
  }

  .editorial-split .sticky-label {
    position: static;
  }

  .credibility-wrap {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }

  .stewardship-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles-strip,
  .programme-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 250px;
  }
}

@media (max-width: 780px) {
  .brand-master {
    font-size: 1.05rem;
  }

  .brand-branch {
    font-size: 0.52rem;
  }

  :root {
    --container: min(100% - 32px, 680px);
    --header-height: 76px;
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  h2 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .brand-mark {
    width: 26px;
    height: 31px;
  }

  .brand-master {
    font-size: 0.64rem;
  }

  .brand-branch {
    font-size: 0.92rem;
  }

  .home-hero {
    padding-top: calc(var(--header-height) + 25px);
    background: var(--paper);
  }

  .home-hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    padding: 55px 0 15px;
  }

  .home-hero-aside {
    min-height: 590px;
    border-radius: 22px;
  }

  .problem-words {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-word {
    min-height: 125px;
    min-width: 0;
    padding-inline: 20px;
    gap: 12px;
  }

  .problem-word span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .statement-band {
    min-height: 650px;
  }

  .statement-copy {
    width: 100%;
  }

  .offering-card {
    grid-template-columns: 1fr;
  }

  .offering-image {
    min-height: 360px;
  }

  .offering-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .credibility-wrap,
  .stewardship-heading,
  .stewardship-compact-inner,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .stewardship-heading-copy,
  .stewardship-compact-copy {
    justify-self: start;
  }

  .credibility-image {
    min-height: 580px;
  }

  .contact-copy {
    position: static;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 38px);
  }

  .page-hero h1 {
    font-size: clamp(3.5rem, 15vw, 6.2rem);
  }

  .page-hero-media {
    min-height: 610px;
  }

  .sequence-step {
    grid-template-columns: 0.18fr 0.82fr;
  }

  .sequence-step p {
    grid-column: 2;
  }

  .full-image {
    min-height: 700px;
  }

  .fit-wrap,
  .next-offering,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .investment-panel {
    grid-template-columns: 1fr;
  }

  .investment-figure {
    text-align: left;
  }

  .next-offering-copy {
    justify-self: start;
  }

  .footer-top {
    gap: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: 86px;
  }

  .section-compact {
    padding-block: 68px;
  }

  .hero-note {
    align-items: start;
    flex-direction: column;
  }

  .home-hero-aside,
  .page-hero-media {
    min-height: 500px;
  }

  .credibility-grid,
  .stewardship-grid,
  .principles-strip,
  .programme-facts,
  .contrast-grid,
  .fit-wrap,
  .form-grid,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .stewardship-card {
    min-height: 245px;
  }

  .stewardship-card-index {
    margin-bottom: 34px;
  }

  .people-modal-grid,
  .person-profile--founder {
    grid-template-columns: 1fr;
  }

  .person-profile--founder {
    grid-column: auto;
  }

  .credibility-image {
    min-height: 470px;
  }

  .principle {
    min-height: 200px;
  }

  .programme-fact {
    min-height: 125px;
  }

  .full-image {
    min-height: 660px;
  }

  .image-copy {
    padding-block: 100px;
  }

  .investment-panel {
    padding: 34px 26px;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .modal {
    padding: 10px;
  }

  .modal-dialog {
    max-height: calc(100svh - 20px);
    padding: 32px 22px;
    border-radius: 18px;
  }

  .modal-close {
    margin: -18px -8px 12px 15px;
  }
}

@media (max-width: 1080px) {
  .page-journey .page-hero-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
    gap: 36px;
  }

  .page-immersion .immersion-trail {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-immersion .immersion-trail .sequence-step:nth-child(even) {
    margin-top: 35px;
  }

  .response-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .response-statusgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .response-signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .offering-card--journey,
  .offering-card--immersion,
  .offering-card--response {
    grid-template-columns: 1fr;
  }

  .offering-card--journey .offering-image {
    margin: 14px 14px 0;
  }

  .offering-card--immersion .offering-image {
    order: 1;
    min-height: 430px;
  }

  .offering-card--immersion .offering-body {
    order: 2;
  }

  .page-journey .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-journey .page-hero-media {
    min-height: 620px;
  }

  .page-journey .journey-rhythm {
    grid-template-columns: 1fr;
  }

  .page-journey .journey-cohort {
    min-height: 650px;
    border-radius: 24px;
  }

  .immersion-hero-copy {
    width: 100%;
    padding-bottom: 50px;
  }

  .immersion-hero h1 {
    font-size: clamp(3.5rem, 15vw, 6.5rem);
  }

  .page-immersion .editorial-split {
    grid-template-columns: 1fr;
  }

  .page-immersion .immersion-trail {
    grid-template-columns: 1fr;
  }

  .page-immersion .immersion-trail .sequence-step,
  .page-immersion .immersion-trail .sequence-step:nth-child(even) {
    min-height: 300px;
    margin-top: 0;
  }

  .page-immersion .method-card,
  .page-immersion .method-card:nth-child(2),
  .page-immersion .method-card:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .response-hero-grid {
    grid-template-columns: 1fr;
  }

  .response-hero-copy {
    min-height: 75svh;
    padding: 90px 0 60px;
  }

  .response-hero-media {
    min-height: 580px;
  }

  .response-hero-media::after {
    background: linear-gradient(180deg, #14251e 0%, transparent 25%);
  }

  .response-intro,
  .response-protocol-heading,
  .response-boundary {
    grid-template-columns: 1fr;
  }

  .response-protocol-heading p {
    justify-self: start;
  }

  .response-stage {
    grid-template-columns: 0.16fr 0.84fr;
  }

  .response-stage p {
    grid-column: 2;
  }

  .response-boundary-media {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .brand-master {
    font-size: 0.98rem;
  }

  .brand-branch {
    font-size: 0.49rem;
  }

  .page-journey .journey-rhythm .sequence-step {
    min-height: 260px;
  }

  .page-journey .page-hero-media {
    min-height: 500px;
  }

  .response-hero-copy {
    min-height: auto;
    padding: 72px 0 48px;
  }

  .response-hero h1 {
    max-width: 11.5ch;
    font-size: clamp(3.25rem, 13.5vw, 4.5rem);
    line-height: 0.98;
  }

  .response-hero .button-row {
    margin-top: 26px;
  }

  .response-statusgrid,
  .response-signal-grid {
    grid-template-columns: 1fr;
  }

  .response-status {
    min-height: 120px;
    border-left: 1px solid var(--line);
  }

  .response-signal {
    min-height: 220px;
  }
}

@media (min-width: 1081px) and (max-height: 960px) {
  .page-journey .page-hero h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 6vw, 5.55rem);
  }
}

@media (min-width: 781px) and (max-height: 960px) {
  .page-journey .page-hero {
    padding-top: 110px;
  }

  .response-hero-copy {
    padding: 46px clamp(32px, 5vw, 72px) 38px 0;
  }

  .response-hero h1 {
    max-width: 12ch;
    font-size: clamp(3.5rem, 6vw, 5.4rem);
  }

  .response-hero .button-row {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}
