:root {
  color-scheme: only light;
  --ink: #171815;
  --ink-soft: #4d5148;
  --muted: #727669;
  --paper: #fbf7e9;
  --paper-warm: #fffaf0;
  --paper-deep: #efe7d2;
  --white: #ffffff;
  --forest: #244331;
  --leaf: #6d843b;
  --lake: #6faeb5;
  --gold: #c9801b;
  --gold-soft: #e4b257;
  --line: rgba(23, 24, 21, 0.13);
  --line-strong: rgba(23, 24, 21, 0.22);
  --shadow: 0 24px 70px rgba(38, 34, 24, 0.12);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

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

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

.intro-pending {
  overflow: hidden;
}

.site-header,
.hero-content {
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-pending .site-header,
.intro-pending .hero-content {
  opacity: 0;
}

.intro-pending .hero-content {
  transform: translateY(12px);
}

.origin-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  opacity: 1;
  visibility: visible;
}

.origin-stage {
  width: min(91vw, calc(82svh * 1.7015625), 1089px);
  aspect-ratio: 1089 / 640;
  transform-origin: center;
}

.origin-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(38, 34, 24, 0.09);
  box-shadow: 0 18px 54px rgba(38, 34, 24, 0);
}

.origin-layer,
.origin-card-complete {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
}

.origin-layer {
  opacity: 0;
  mix-blend-mode: multiply;
  will-change: opacity, transform, clip-path;
}

.origin-layer-top {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 24%, transparent 32%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 24%, transparent 32%);
  transform: translateY(-7%) scale(1.012);
}

.origin-layer-left {
  -webkit-mask-image: radial-gradient(ellipse 29% 34% at 4% 54%, #000 0%, #000 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 29% 34% at 4% 54%, #000 0%, #000 70%, transparent 100%);
  transform: translateX(-7%) scale(1.012);
}

.origin-layer-right {
  -webkit-mask-image: radial-gradient(ellipse 29% 43% at 96% 55%, #000 0%, #000 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 29% 43% at 96% 55%, #000 0%, #000 70%, transparent 100%);
  transform: translateX(7%) scale(1.012);
}

.origin-layer-bottom {
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 18%, transparent 30%);
  mask-image: linear-gradient(to top, #000 0%, #000 18%, transparent 30%);
  transform: translateY(7%) scale(1.012);
}

.origin-title-shield {
  position: absolute;
  inset: 25% 11% 17% 22%;
  background: #ffffff;
  border-radius: 50%;
  filter: blur(12px);
  transform: scale(1.02);
}

.origin-card-complete {
  opacity: 0;
}

.origin-intro.is-running .origin-layer-top {
  animation: originLeafTop 820ms 100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.origin-intro.is-running .origin-layer-left {
  animation: originLeafLeft 820ms 280ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.origin-intro.is-running .origin-layer-right {
  animation: originLeafRight 820ms 460ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.origin-intro.is-running .origin-layer-bottom {
  animation: originLeafBottom 860ms 660ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.origin-intro.is-running .origin-card-complete {
  animation: originCardComplete 900ms 1320ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.origin-intro.is-running .origin-stage {
  animation: originCardSettle 720ms 2350ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.origin-intro.is-running {
  animation: originIntroLeave 560ms 3000ms ease-in-out forwards;
}

.origin-intro.is-skipped {
  animation: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.origin-skip {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 34px);
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(23, 24, 21, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(23, 24, 21, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.origin-skip:hover,
.origin-skip:focus-visible {
  color: var(--ink);
  border-color: rgba(23, 24, 21, 0.35);
  background: #ffffff;
  outline: none;
}

.origin-skip:focus-visible {
  box-shadow: 0 0 0 4px rgba(201, 128, 27, 0.2);
}

@keyframes originLeafTop {
  0% {
    opacity: 0;
    transform: translateY(-7%) scale(1.012);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes originLeafLeft {
  0% {
    opacity: 0;
    transform: translateX(-7%) scale(1.012);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes originLeafRight {
  0% {
    opacity: 0;
    transform: translateX(7%) scale(1.012);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes originLeafBottom {
  0% {
    opacity: 0;
    transform: translateY(7%) scale(1.012);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes originCardComplete {
  to {
    opacity: 1;
  }
}

@keyframes originCardSettle {
  to {
    transform: scale(0.985);
  }
}

@keyframes originIntroLeave {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.site-header {
  position: fixed;
  inset: 28px 0 auto;
  z-index: 50;
  color: var(--white);
  pointer-events: none;
}

.header-shell {
  width: fit-content;
  max-width: calc(100% - 32px);
  min-height: 48px;
  margin: 0 auto;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(22, 23, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 46px rgba(23, 24, 21, 0.24);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: transform 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell {
  background: rgba(22, 23, 20, 0.96);
  transform: translateY(-4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--paper-warm);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy span {
  font-weight: 700;
  font-size: 0.84rem;
}

.brand-copy small {
  display: none;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  font-size: 0.78rem;
  padding: 8px 11px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--paper-warm);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 9px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1.5px;
  width: 100%;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper-warm);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 251, 238, 0.42) 0%, rgba(255, 251, 238, 0.22) 22%, rgba(255, 251, 238, 0.04) 48%, rgba(255, 251, 238, 0) 100%),
    linear-gradient(90deg, rgba(255, 251, 238, 0.08), rgba(255, 251, 238, 0) 48%, rgba(255, 251, 238, 0.08));
}

.hero-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 136px 0 54px;
  color: var(--ink);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 6.2rem);
  line-height: 0.86;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(23, 24, 21, 0.78);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(201, 128, 27, 0.22);
  outline-offset: 3px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(23, 24, 21, 0.18);
}

.button-primary:hover {
  background: #000000;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: rgba(23, 24, 21, 0.12);
}

.button-secondary:hover {
  background: var(--white);
  border-color: rgba(23, 24, 21, 0.2);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  margin: 28px auto 0;
  padding: 0;
  border: 1px solid rgba(23, 24, 21, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(38, 34, 24, 0.1);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  padding: 15px 18px;
}

.hero-proof div + div {
  border-left: 1px solid rgba(23, 24, 21, 0.1);
}

.hero-proof dt {
  font-family: var(--serif);
  font-size: 1.52rem;
  line-height: 1;
  font-weight: 600;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  padding: 104px 0 76px;
  background: var(--paper);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 62px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.contact-copy h2,
.founder-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-copy p,
.section-heading p,
.contact-copy p {
  margin: 0;
  color: rgba(23, 24, 21, 0.68);
  font-size: 1rem;
}

.intro-copy p + p {
  margin-top: 18px;
}

.values-section {
  padding: 0 0 96px;
  background: var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.value-panel {
  min-height: 188px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(38, 34, 24, 0.06);
}

.value-panel span,
.program-card span,
.leadership-grid span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.value-panel p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.impact-section {
  padding: 108px 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 174, 181, 0.18), transparent 32%),
    var(--forest);
  color: var(--white);
}

.impact-section .section-kicker {
  color: var(--gold-soft);
}

.impact-section .section-heading h2,
.impact-section .section-heading p {
  color: var(--white);
}

.impact-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-metrics div {
  padding: 28px 22px 28px 0;
}

.impact-metrics div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-metrics dt {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
  font-weight: 600;
  color: var(--paper-warm);
}

.impact-metrics dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
}

.impact-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 16px;
  margin-top: 32px;
}

.difference-panel,
.global-panel,
.recognition-block {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(10, 23, 16, 0.16);
}

.difference-panel {
  padding: 28px;
}

.difference-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.difference-list li {
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.difference-list li::marker {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 600;
}

.difference-list strong {
  color: var(--white);
}

.global-panel {
  display: grid;
  align-content: start;
  overflow: hidden;
}

.global-panel img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 24px;
  background: var(--white);
}

.global-panel div {
  padding: 28px;
}

.global-panel h3,
.recognition-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 0.95;
  font-weight: 600;
}

.global-panel p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.recognition-block {
  margin-top: 16px;
  padding: 28px;
}

.recognition-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.recognition-grid article {
  min-height: 210px;
  padding: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.recognition-grid span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.recognition-grid h4 {
  margin: 28px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.05;
  font-weight: 600;
}

.recognition-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.programs-section,
.leadership-section {
  padding: 104px 0;
  background: var(--paper-warm);
}

.section-heading {
  max-width: 760px;
}

.wide-heading {
  max-width: 910px;
}

.section-heading h2 {
  color: var(--ink);
}

.section-heading p {
  margin-top: 18px;
}

.program-tabs {
  margin-top: 38px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 40px rgba(38, 34, 24, 0.06);
}

.tab-button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink-soft);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.tab-button:hover,
.tab-button:focus-visible {
  outline: none;
  background: rgba(109, 132, 59, 0.12);
  color: var(--forest);
}

.tab-button.is-active {
  background: var(--ink);
  color: var(--white);
}

.tab-panel {
  margin-top: 20px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-card {
  padding: 22px;
  min-height: 164px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(38, 34, 24, 0.05);
}

.program-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 650;
}

.detail-grid .program-card h3 {
  margin-top: 0;
}

.program-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pill-list li {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 12px 34px rgba(38, 34, 24, 0.04);
}

.compact-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-section {
  padding: 108px 0;
  background:
    linear-gradient(180deg, rgba(251, 247, 233, 0.78), rgba(251, 247, 233, 0.86)),
    url("assets/hero-growth-landscape.png") center / cover;
  color: var(--ink);
}

.method-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.method-content {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 128, 27, 0.38), transparent);
}

.process-list article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(38, 34, 24, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease, box-shadow 220ms ease;
}

.process-list article:hover {
  box-shadow: 0 24px 62px rgba(38, 34, 24, 0.12);
  transform: translateY(-2px);
}

.process-list article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-list article:nth-child(2) {
  transition-delay: 100ms;
}

.process-list article:nth-child(3) {
  transition-delay: 200ms;
}

.process-list article:nth-child(4) {
  transition-delay: 300ms;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-warm);
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1;
}

.process-list h3,
.delivery-band h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 600;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.method-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 14px;
}

.delivery-band,
.technology-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 24px;
  box-shadow: 0 14px 42px rgba(38, 34, 24, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.delivery-band.is-visible,
.technology-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.technology-panel {
  transition-delay: 100ms;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.delivery-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(239, 231, 210, 0.7);
  border: 1px solid rgba(23, 24, 21, 0.09);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.technology-panel .section-kicker {
  margin-bottom: 10px;
}

.technology-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.technology-panel li + li {
  margin-top: 8px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.leadership-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(38, 34, 24, 0.06);
}

.leadership-grid article:nth-child(4) {
  background: rgba(228, 178, 87, 0.24);
}

.leadership-grid h3 {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 600;
}

.leadership-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.founder-section {
  padding: 108px 0;
  background: var(--paper-warm);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
}

.founder-portraits {
  position: relative;
  min-height: 460px;
}

.founder-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 8px solid var(--paper-warm);
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-primary {
  inset: 0 auto auto 0;
  width: min(440px, 100%);
  aspect-ratio: 1;
}

.founder-caption {
  position: absolute;
  left: 30px;
  bottom: 16px;
  display: grid;
  padding: 14px 18px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(23, 24, 21, 0.22);
}

.founder-caption span {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.founder-caption strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 600;
}

.founder-copy h2 {
  color: var(--ink);
}

.founder-lead {
  margin: 22px 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.28;
  font-weight: 600;
}

.founder-copy > p:not(.founder-lead, .section-kicker) {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.founder-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.founder-credentials li {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 18px 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.founder-credentials li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.contact-section {
  padding: 108px 0;
  background: linear-gradient(180deg, var(--paper), var(--paper-warm));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: 70px;
  align-items: start;
}

.contact-copy p {
  margin-top: 18px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  font-style: normal;
  color: var(--ink-soft);
}

.contact-details strong {
  color: var(--ink);
  font-size: 1.06rem;
}

.contact-details a {
  width: fit-content;
  color: var(--forest);
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 24, 21, 0.16);
  border-radius: 6px;
  background: var(--paper-warm);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 128, 27, 0.14);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-footer {
  padding: 54px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.footer-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact,
.footer-legal {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.footer-contact span:first-child,
.footer-legal span:first-child {
  color: var(--white);
  font-weight: 700;
}

.footer-contact a {
  width: fit-content;
  color: var(--paper-warm);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--gold-soft);
}

@media (max-width: 1020px) {
  .intro-grid,
  .contact-layout,
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid,
  .program-grid,
  .detail-grid,
  .leadership-grid,
  .process-list,
  .impact-metrics,
  .recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-metrics div:nth-child(3) {
    border-left: 0;
  }

  .impact-metrics div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .impact-story-grid,
  .recognition-heading {
    grid-template-columns: 1fr;
  }

  .founder-portraits {
    width: min(620px, 100%);
  }

  .process-list::before {
    display: none;
  }

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

  .pill-list,
  .compact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 14px 0 auto;
  }

  .header-shell {
    width: min(100% - 28px, 1180px);
    min-height: 54px;
    justify-content: space-between;
    padding: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(22, 23, 20, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 251, 238, 0.46) 0%, rgba(255, 251, 238, 0.22) 32%, rgba(255, 251, 238, 0.04) 64%, rgba(255, 251, 238, 0) 100%),
      linear-gradient(90deg, rgba(255, 251, 238, 0.08), rgba(255, 251, 238, 0));
  }

  .hero-content {
    width: min(100% - 28px, 900px);
    padding-top: 122px;
    padding-bottom: 32px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(2.45rem, 10vw, 3.2rem);
    line-height: 0.92;
  }

  .hero .eyebrow {
    max-width: 320px;
    margin-inline: auto;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .button {
    width: 100%;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .intro-band,
  .programs-section,
  .impact-section,
  .method-section,
  .leadership-section,
  .founder-section,
  .contact-section {
    padding: 76px 0;
  }

  .values-section {
    padding-bottom: 76px;
  }

  .intro-grid h2,
  .section-heading h2,
  .contact-copy h2,
  .founder-copy h2 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .values-grid,
  .program-grid,
  .detail-grid,
  .pill-list,
  .compact-list,
  .leadership-grid,
  .process-list,
  .delivery-grid,
  .recognition-grid,
  .founder-credentials {
    grid-template-columns: 1fr;
  }

  .impact-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-metrics div {
    padding: 22px 16px;
  }

  .impact-metrics div + div {
    padding-left: 16px;
  }

  .difference-panel,
  .global-panel div,
  .recognition-block {
    padding: 20px;
  }

  .recognition-grid article {
    min-height: auto;
  }

  .founder-portraits {
    min-height: 430px;
  }

  .founder-photo-primary {
    width: min(400px, 100%);
  }

  .founder-caption {
    left: 14px;
  }

  .hero-proof div {
    padding: 12px 8px;
  }

  .hero-proof dt {
    font-size: 1.26rem;
  }

  .hero-proof dd {
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .program-card,
  .leadership-grid article,
  .value-panel,
  .process-list article {
    min-height: auto;
  }

  .tab-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .tab-button {
    min-height: 44px;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .brand-copy span {
    font-size: 0.78rem;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }
}

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

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .origin-intro.is-reduced,
  .origin-intro.is-reduced .origin-stage,
  .origin-intro.is-reduced .origin-card-complete {
    animation: none !important;
  }

  .origin-intro.is-reduced .origin-layer {
    display: none;
  }

  .origin-intro.is-reduced .origin-card-complete {
    opacity: 1;
  }
}
