:root {
  --forest: #8b2b0d;
  --forest-dark: #5e1d0c;
  --forest-soft: #ad3d10;
  --clay: #f06a0a;
  --clay-dark: #b94008;
  --sun: #f6a21a;
  --cream: #fff7ec;
  --paper: #fffdf9;
  --sage: #ffe4c5;
  --sage-light: #fff3e4;
  --ink: #562515;
  --muted: #786057;
  --line: rgba(139, 43, 13, 0.15);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(94, 29, 12, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--forest);
  color: white;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 12px clamp(24px, 5vw, 78px);
  border-bottom: 1px solid rgba(139, 43, 13, 0.08);
  background: rgba(255, 252, 246, 0.91);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1.1;
}

.brand img {
  width: 82px;
  height: 66px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

#site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

#site-nav a {
  position: relative;
  color: #6b493d;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

#site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--clay);
  transition: right 0.2s ease;
}

#site-nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(94, 29, 12, 0.17);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--forest-soft);
  box-shadow: 0 14px 30px rgba(94, 29, 12, 0.22);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 43px;
  padding: 9px 19px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(35px, 6vw, 95px);
  padding: clamp(66px, 8vw, 120px) clamp(24px, 8vw, 132px) 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 25%, rgba(246, 162, 26, 0.18) 0 8%, transparent 8.2%),
    linear-gradient(135deg, var(--paper) 0%, #fff3e2 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -115px;
  top: 16%;
  border: 2px solid rgba(240, 106, 10, 0.26);
  border-radius: 50%;
}

.hero-copy,
.hero-visual,
.hero-footer {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(50px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: var(--clay);
  font-weight: 500;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 30px;
  color: #73594e;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  color: var(--forest);
  font-size: 15px;
  font-weight: 760;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.text-link span {
  margin-left: 6px;
  color: var(--clay);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 25px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  color: #6f5144;
  font-size: 13px;
  font-weight: 680;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--sage);
  fill: none;
  stroke: var(--forest);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  min-height: 580px;
  display: grid;
  place-items: center;
}

.sun-shape {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50% 50% 44% 56%;
  background: var(--sun);
  opacity: 0.83;
  transform: rotate(-7deg);
}

.illustration-card {
  position: relative;
  width: min(92%, 570px);
  min-height: 510px;
  display: grid;
  place-items: end center;
  border: 1px solid rgba(139, 43, 13, 0.12);
  border-radius: 48% 48% 30px 30px;
  background: #fff0db;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.illustration-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(240, 106, 10, 0.28);
}

.people-illustration {
  position: relative;
  z-index: 1;
  width: 95%;
  max-height: 500px;
}

.people-illustration * {
  vector-effect: non-scaling-stroke;
}

.arch {
  fill: rgba(255, 252, 246, 0.38);
  stroke: rgba(139, 43, 13, 0.16);
  stroke-width: 2;
}

.head {
  fill: #9d3a18;
  stroke: var(--forest-dark);
  stroke-width: 2.4;
}

.head-two {
  fill: #cf5d20;
}

.hair {
  fill: var(--forest-dark);
}

.body-one {
  fill: var(--clay);
  stroke: var(--forest-dark);
  stroke-width: 2.5;
}

.body-two {
  fill: var(--forest-soft);
  stroke: var(--forest-dark);
  stroke-width: 2.5;
}

.shirt-line,
.connection,
.ground,
.leaf-line {
  fill: none;
  stroke: var(--cream);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.connection {
  stroke: var(--sun);
  stroke-width: 3.2;
}

.ground,
.leaf-line {
  stroke: var(--forest);
}

.leaf {
  fill: var(--sun);
  stroke: var(--forest);
  stroke-width: 2;
}

.spark {
  fill: var(--clay);
}

.spark-two {
  fill: var(--forest);
}

.conversation-note {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  border: 1px solid rgba(139, 43, 13, 0.11);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest);
  font-size: 12px;
  font-weight: 720;
  box-shadow: 0 10px 24px rgba(94, 29, 12, 0.12);
}

.conversation-note span {
  color: var(--clay-dark);
}

.note-one {
  top: 30%;
  left: 5%;
  transform: rotate(-4deg);
}

.note-two {
  right: 4%;
  top: 51%;
  transform: rotate(3deg);
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  width: 104px;
  height: 104px;
  right: -14px;
  bottom: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 14px 35px rgba(94, 29, 12, 0.25);
}

.hero-stamp svg {
  width: 94%;
  height: 94%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-stamp text {
  fill: currentColor;
  stroke: none;
  font-size: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-footer {
  position: absolute;
  left: clamp(24px, 8vw, 132px);
  right: clamp(24px, 8vw, 132px);
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.hero-footer p {
  margin: 0;
  color: var(--muted);
}

.hero-footer strong {
  color: var(--forest);
}

.hero-footer a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.hero-footer a span {
  color: var(--clay-dark);
}

.support-section {
  padding: 110px clamp(24px, 8vw, 132px);
  background: var(--white);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: end;
  column-gap: clamp(35px, 9vw, 160px);
  margin-bottom: 55px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.finder-copy h2 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(42px, 4.6vw, 70px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-intro > p:last-child {
  max-width: 640px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pathway-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(22px, 2.3vw, 38px) 32px;
  border-right: 1px solid var(--line);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pathway-card:nth-child(3n) {
  border-right: 0;
}

.pathway-card:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line);
}

.pathway-card:hover {
  z-index: 2;
  background: var(--sage-light);
  box-shadow: 0 20px 45px rgba(94, 29, 12, 0.08);
  transform: translateY(-8px);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(139, 43, 13, 0.34);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
}

.featured .card-icon {
  background: #ffe0bf;
  color: var(--clay-dark);
}

.mentorship .card-icon {
  background: #ffedbd;
  color: #a33906;
}

.unkosikazi .card-icon {
  background: #f7d5c3;
  color: var(--forest-dark);
}

.card-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pathway-card h3 {
  margin: 0 0 15px;
  color: var(--forest-dark);
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.15;
}

.pathway-card > p:not(.card-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pathway-card ul {
  padding: 18px 0 20px;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pathway-card li {
  position: relative;
  padding-left: 17px;
  color: #6e4b3f;
  font-size: 13px;
  font-weight: 620;
}

.pathway-card li + li {
  margin-top: 7px;
}

.pathway-card li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 8px;
  border-radius: 50%;
  background: var(--sun);
}

.pathway-card > a {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.pathway-card > a span {
  color: var(--clay-dark);
  transition: transform 0.2s ease;
}

.pathway-card > a:hover span {
  transform: translateX(4px);
}

.topics-band {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 30px;
  padding: 31px 0 0;
}

.topics-band p {
  margin: 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topics-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topics-band span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #73594e;
  background: var(--paper);
  font-size: 12px;
  font-weight: 650;
}

.finder-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(45px, 8vw, 130px);
  padding: 115px clamp(24px, 8vw, 132px) 100px;
  color: var(--cream);
  background:
    radial-gradient(circle at 13% 91%, rgba(246, 162, 26, 0.14) 0 10%, transparent 10.2%),
    var(--forest-dark);
  overflow: hidden;
}

.finder-section::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -190px;
  top: -170px;
  border: 1px solid rgba(255, 247, 236, 0.12);
  border-radius: 50%;
}

.finder-copy,
.finder-card,
.contact-band,
.finder-footer {
  position: relative;
  z-index: 1;
}

.eyebrow.light {
  color: var(--sun);
}

.finder-copy h2 {
  color: var(--cream);
}

.finder-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0;
  color: rgba(255, 247, 236, 0.73);
  font-size: 16px;
}

.privacy-card {
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 247, 236, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.privacy-card svg {
  width: 31px;
  flex: 0 0 31px;
  fill: none;
  stroke: var(--sun);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-card strong,
.privacy-card span {
  display: block;
}

.privacy-card strong {
  font-size: 13px;
}

.privacy-card span {
  color: rgba(255, 247, 236, 0.65);
  font-size: 12px;
}

.finder-copy blockquote {
  max-width: 410px;
  margin: 55px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--clay);
  color: rgba(255, 247, 236, 0.82);
  font-size: 23px;
  font-style: italic;
  line-height: 1.45;
}

.finder-card {
  min-height: 570px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.23);
}

.finder-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.finder-progress > div {
  height: 5px;
  flex: 1;
  border-radius: 999px;
  background: var(--sage);
  overflow: hidden;
}

#progress-bar {
  width: 33.333%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--clay);
  transition: width 0.35s ease;
}

.finder-progress p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.finder-step {
  display: none;
  padding: 0;
  margin: 0;
  border: 0;
}

.finder-step.active {
  display: block;
  animation: slide-in 0.32s ease both;
}

.finder-step legend {
  width: 100%;
  padding: 0;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.17;
  letter-spacing: -0.025em;
}

.question-help {
  margin: 7px 0 23px;
  color: var(--muted);
  font-size: 13px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-grid.single-column {
  grid-template-columns: 1fr;
}

.choice-card {
  position: relative;
  min-height: 94px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice-card:hover {
  border-color: rgba(240, 106, 10, 0.6);
  transform: translateY(-2px);
}

.choice-card:has(input:checked) {
  border-color: var(--clay);
  background: #fff3e6;
  box-shadow: inset 0 0 0 1px var(--clay);
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card:has(input:focus-visible) {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.choice-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--forest-dark);
  font-size: 14px;
  line-height: 1.25;
}

.choice-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.choice-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: transparent;
  font-size: 12px;
}

.choice-card:has(input:checked) .choice-check {
  border-color: var(--clay);
  background: var(--clay);
  color: white;
}

.finder-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}

.back-button,
.text-button {
  min-height: 44px;
  padding: 8px 15px;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.finder-result {
  padding-top: 15px;
  animation: slide-in 0.38s ease both;
}

.result-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-size: 24px;
  font-weight: 900;
}

.result-kicker {
  margin: 0 0 7px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.finder-result h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

#result-copy {
  margin: 16px 0 25px;
  color: var(--muted);
  font-size: 15px;
}

.result-format {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 19px;
  border-radius: 14px;
  background: var(--sage-light);
}

.result-format span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.result-format strong {
  color: var(--forest);
  font-size: 13px;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.contact-band {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(35px, 6vw, 90px);
  padding: clamp(30px, 4vw, 50px);
  margin-top: 10px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(246, 162, 26, 0.23), transparent 32%),
    var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.contact-intro .eyebrow {
  margin-bottom: 15px;
}

.contact-intro h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(30px, 3.3vw, 49px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.contact-intro > p:last-child {
  max-width: 450px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.72);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-item:hover {
  border-color: rgba(240, 106, 10, 0.55);
  background: var(--white);
  transform: translateY(-2px);
}

.contact-item.whatsapp {
  border-color: rgba(139, 43, 13, 0.28);
  background: #fff0db;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.contact-icon-text {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 850;
}

.contact-item small,
.contact-item strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-item small {
  color: var(--clay-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item strong {
  margin-top: 2px;
  color: var(--forest-dark);
  font-size: 12px;
}

.contact-arrow {
  color: var(--clay-dark);
  font-weight: 850;
}

.finder-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 55px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 247, 236, 0.12);
}

.finder-footer strong,
.finder-footer span {
  display: block;
}

.finder-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.finder-footer span {
  margin-top: 4px;
  color: rgba(255, 247, 236, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-footer a {
  color: var(--sun);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 23px clamp(24px, 8vw, 132px);
  background: #46180b;
  color: rgba(255, 247, 236, 0.55);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sun);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  #site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .hero-footer {
    left: 6vw;
    right: 6vw;
  }

  .hero-visual {
    min-height: 480px;
  }

  .illustration-card {
    min-height: 440px;
  }

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

  .pathway-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .pathway-card:nth-child(2n) {
    border-right: 0;
  }

  .pathway-card:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 10px 20px;
  }

  .brand img {
    width: 70px;
    height: 54px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--sage-light);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--forest);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #site-nav.open {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 25px;
    background: var(--paper);
  }

  #site-nav.open a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 65px 22px 130px;
  }

  h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .illustration-card {
    min-height: 430px;
  }

  .hero-stamp {
    right: -3px;
    bottom: -18px;
  }

  .hero-footer {
    left: 22px;
    right: 22px;
    bottom: 25px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .support-section {
    padding: 85px 22px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-intro .eyebrow {
    grid-column: auto;
  }

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

  .pathway-card,
  .pathway-card:nth-child(2n),
  .pathway-card:nth-child(3n) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pathway-card:last-child {
    border-bottom: 0;
  }

  .pathway-card ul {
    margin-top: 28px;
  }

  .topics-band {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .finder-section {
    grid-template-columns: 1fr;
    padding: 85px 22px 55px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .finder-copy blockquote {
    margin-top: 35px;
  }

  .finder-card {
    min-height: 630px;
    padding: 27px 20px;
  }

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

  .finder-actions,
  .result-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .finder-actions .button,
  .result-actions .button {
    width: 100%;
  }

  .finder-footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
