:root {
  --bg: #ffffff;
  --cream: #f7f4ec;
  --ink: #16232b;
  --text-muted: #4a5a60;
  --text-faint: #205080;
  --blue: #205080;
  --blue-deep: #0e4060;
  --scroll-hint: #8a908f;
  --green: #5aa632;
  --green-light: #7ec455;
  --green-tint: #eaf5df;
  --orange: #f4a52c;
  --orange-ink: #4a3a14;
  --card-cream-body: #3a4a50;

  --font-display: 'Spectral', Georgia, serif;
  --font-body: 'Libre Franklin', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;

  --nav-height: 76px;
  --reveal-distance: 28px;
  --reveal-duration: 700ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}

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

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 24px;
}

.eyebrow--orange {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-light);
}

.btn--ghost {
  color: var(--ink);
  border: 1px solid rgba(22, 35, 43, 0.35);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22, 35, 43, 0.1);
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 44px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__mark {
  display: inline-flex;
  background: var(--cream);
  border-radius: 999px;
  padding: 5px;
  line-height: 0;
}

.nav__mark img {
  height: 26px;
  width: 26px;
}

.nav__name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav__links a:not(.btn) {
  text-decoration: none;
  color: inherit;
}

.nav__links a:not(.btn):hover {
  color: var(--ink);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.nav__dropdown-btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(22, 35, 43, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(20, 35, 43, 0.14);
  padding: 10px;
  min-width: 220px;
  display: none;
  z-index: 30;
}

.nav__dropdown.is-open .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--ink);
}

.nav__dropdown-menu a:hover {
  background: var(--cream);
}

.nav__dropdown-menu .nav__dd-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scroll-hint);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(24px, 6vw, 60px) 40px;
  overflow: hidden;
}

.hero__mark {
  position: absolute;
  top: 70px;
  right: 64px;
  font-size: clamp(60px, 9vw, 120px);
  color: var(--green);
  line-height: 1;
  animation: fsf-spin 14s linear infinite;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
  max-width: 980px;
}

.hero h1 em {
  color: var(--green);
  font-style: italic;
}

.hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* photo-backed hero variant */

.hero--photo .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--photo .hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 36, 49, 0.3) 0%, rgba(14, 36, 49, 0.45) 55%, rgba(14, 36, 49, 0.8) 100%);
}

.hero--photo .hero__inner,
.hero--photo .hero__mark {
  position: relative;
  z-index: 2;
}

.hero--photo .hero__mark {
  position: absolute;
}

.hero--photo h1 {
  color: var(--cream);
}

.hero--photo h1 em {
  color: var(--green-light);
}

.hero--photo .eyebrow {
  color: #cfe0e6;
}

.hero--photo .hero__lede {
  color: #e8e4da;
}

.hero--photo .btn--ghost {
  color: var(--cream);
  border-color: rgba(247, 244, 236, 0.5);
}

.hero--photo .btn--ghost:hover {
  border-color: var(--cream);
}

/* ---------- photo strip ---------- */

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding: 20px clamp(24px, 6vw, 44px) 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.photo-strip img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
}

/* ---------- impact ---------- */

.impact {
  padding: 40px clamp(24px, 6vw, 60px) 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.impact__list {
  border-top: 1px solid rgba(22, 35, 43, 0.16);
  margin: 0;
}

.impact__row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px 30px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid rgba(22, 35, 43, 0.16);
}

.impact__row dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}

.impact__unit {
  font-size: 32px;
  font-weight: 500;
}

.impact__unit--green {
  color: var(--green);
}

.impact__unit--orange {
  color: var(--orange);
}

.impact__row dd {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- cities ---------- */

.cities {
  padding: 20px clamp(24px, 6vw, 60px) 90px;
  max-width: 1400px;
  margin: 0 auto;
}

.cities__list {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 74px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}

.cities__list a {
  text-decoration: none;
  transition: color 200ms ease;
}

.cities__list a:hover {
  color: var(--green);
}

.arrow--green {
  color: var(--green);
}

.arrow--orange {
  color: var(--orange);
}

/* ---------- what we do ---------- */

.what-we-do {
  padding: 0 clamp(20px, 4vw, 44px) 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.what-we-do__eyebrow {
  margin: 0 16px 26px;
}

.wwd-card {
  position: sticky;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  margin-bottom: 26px;
  box-shadow: 0 -18px 40px rgba(20, 35, 43, 0.12);
}

.wwd-card:nth-of-type(1) { top: 80px; }
.wwd-card:nth-of-type(2) { top: 104px; }
.wwd-card:nth-of-type(3) { top: 128px; margin-bottom: 0; }

.wwd-card--cream {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid #e4ddcd;
}

.wwd-card--cream p {
  color: var(--card-cream-body);
}

.wwd-card--green {
  background: var(--green);
  color: var(--cream);
}

.wwd-card--green p {
  color: var(--green-tint);
}

.wwd-card--orange {
  background: var(--orange);
  color: var(--ink);
}

.wwd-card--orange p {
  color: var(--orange-ink);
}

.wwd-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.wwd-card--cream .wwd-card__label {
  color: var(--green);
}

.wwd-card--green .wwd-card__label {
  color: var(--green-tint);
}

.wwd-card--orange .wwd-card__label {
  color: var(--orange-ink);
}

.wwd-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.wwd-card p {
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0;
}

.wwd-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
}

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: 110px clamp(24px, 6vw, 60px) 60px;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.page-hero__mark {
  position: absolute;
  top: 60px;
  right: 64px;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--green);
  line-height: 1;
  animation: fsf-spin 14s linear infinite;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}

.page-hero h1 em {
  color: var(--green);
  font-style: italic;
}

.page-hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0;
}

/* ---------- initiatives timeline ---------- */

.init-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 60px) 40px;
}

.init-row {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid rgba(22, 35, 43, 0.16);
}

.init-row--flip {
  grid-template-columns: 460px 1fr;
}

.init-row--flip .init-row__text {
  order: 2;
}

.init-row--flip img {
  order: 1;
}

.init-row__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}

.init-row h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.init-row p:not(.init-row__date) {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.init-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.init-row img[src="images/bc-cancer.jpg"] {
  object-position: center 15%;
}

/* ---------- services (initiatives page) ---------- */

.services {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 44px) 60px;
}

.wwd-card--static {
  position: static;
  margin-bottom: 26px;
}

/* ---------- executives ---------- */

.exec-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 60px) 50px;
}

.exec-section > h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.exec-section > .exec-section__note {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 30px;
  max-width: 560px;
}

.exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.exec-card {
  border: 1px solid rgba(22, 35, 43, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.exec-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(-45deg, rgba(32, 80, 128, 0.06) 0 14px, rgba(32, 80, 128, 0.12) 14px 28px),
    #eef3f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.exec-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exec-card__init {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px;
  color: var(--blue);
  opacity: 0.45;
}

.exec-card__hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(32, 80, 128, 0.55);
  padding: 0 12px;
  text-align: center;
  word-break: break-all;
}

.exec-card__body {
  padding: 20px 22px 24px;
}

.exec-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.exec-card p {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}

.exec-group-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 34px 0 16px;
}

/* ---------- foundation story ---------- */

.story {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 60px) 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.story__text p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 22px;
}

.story__text p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 29px);
  line-height: 1.4;
  color: var(--ink);
}

.story img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
}

.quote-band {
  background: var(--blue-deep);
  padding: 80px clamp(24px, 6vw, 60px);
  margin: 40px 0 60px;
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.quote-band em {
  color: var(--green-light);
  font-style: inherit;
}

/* ---------- branch pages ---------- */

.branch-initiatives {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 60px) 60px;
}

.branch-initiatives h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}

.init-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(22, 35, 43, 0.16);
}

.init-compact li {
  border-bottom: 1px solid rgba(22, 35, 43, 0.16);
}

.init-compact a {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 4px;
  text-decoration: none;
}

.init-compact a:hover h3 {
  color: var(--green);
}

.init-compact .init-compact__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--scroll-hint);
}

.init-compact h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 25px);
  letter-spacing: -0.01em;
  margin: 0;
}

.init-compact .init-compact__arrow {
  color: var(--green);
  font-size: 20px;
}

.branch-empty {
  border: 1px dashed rgba(22, 35, 43, 0.3);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}

.branch-empty h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.branch-empty p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 24px;
}

/* ---------- contact page ---------- */

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 60px) 70px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.contact-grid--single .contact-aside {
  border-left: none;
  padding-left: 0;
}

.contact-aside {
  border-left: 1px solid rgba(22, 35, 43, 0.16);
  padding-left: clamp(24px, 3vw, 40px);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

.contact-aside .eyebrow {
  margin-bottom: 8px;
}

.contact-aside > div {
  margin-bottom: 28px;
}

.contact-aside a {
  text-decoration: none;
  color: var(--ink);
}

.contact-aside a:hover {
  color: var(--green);
}

/* ---------- book drive ---------- */

.book-drive {
  padding: 40px clamp(24px, 6vw, 60px) 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.book-drive__frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 420px;
}

.book-drive__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-drive__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 36, 49, 0.88) 0%, rgba(14, 36, 49, 0.4) 70%, rgba(14, 36, 49, 0.1) 100%);
}

.book-drive__copy {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
}

.book-drive__copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 58px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--cream);
}

.book-drive__copy p {
  font-size: 16px;
  line-height: 1.55;
  color: #d9e2e0;
  margin: 0 0 22px;
}

/* ---------- cta / footer ---------- */

.cta {
  padding: 20px clamp(24px, 6vw, 60px) 70px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 7vw, 70px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 20px;
  color: var(--ink);
}

.cta h2 em {
  color: var(--green);
  font-style: italic;
}

.cta p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(22, 35, 43, 0.14);
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px clamp(24px, 6vw, 60px) 40px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--scroll-hint);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

/* ---------- reveal animation ---------- */

[data-reveal] {
  opacity: 0;
  transition: opacity var(--reveal-duration) ease, transform var(--reveal-duration) ease, clip-path var(--reveal-duration) ease;
}

[data-reveal="up"] {
  transform: translateY(var(--reveal-distance));
}

[data-reveal="left"] {
  transform: translateX(calc(var(--reveal-distance) * -1));
}

[data-reveal="right"] {
  transform: translateX(var(--reveal-distance));
}

[data-reveal="rotate"] {
  transform: rotate(-4deg) scale(0.96);
}

[data-reveal="scale"] {
  transform: scale(0.94);
}

[data-reveal="clip"] {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0% 0);
}

@keyframes fsf-spin {
  to { transform: rotate(360deg); }
}

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

  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero__mark {
    animation: none;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--bg);
    padding: 12px clamp(20px, 4vw, 44px) 20px;
    border-bottom: 1px solid rgba(22, 35, 43, 0.1);
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    width: 100%;
    padding: 10px 0;
  }

  .nav__links a.btn {
    width: auto;
    margin-top: 8px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip img {
    height: 260px;
  }

  .impact__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .wwd-card img {
    height: 220px;
  }

  .wwd-card:nth-of-type(1) { top: 12px; }
  .wwd-card:nth-of-type(2) { top: 28px; }
  .wwd-card:nth-of-type(3) { top: 44px; }

  .book-drive__frame {
    height: auto;
    min-height: 480px;
  }

  .book-drive__copy {
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .site-footer {
    justify-content: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .page-hero {
    padding-top: 70px;
  }

  .init-row,
  .init-row--flip {
    grid-template-columns: 1fr;
  }

  .init-row--flip .init-row__text {
    order: 1;
  }

  .init-row--flip img {
    order: 2;
  }

  .init-row img {
    height: 240px;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-btn {
    padding: 10px 0;
    width: 100%;
    justify-content: flex-start;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 0 0 4px 16px;
    min-width: 0;
  }

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

  .story img {
    height: 300px;
  }

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

  .contact-aside {
    border-left: none;
    border-top: 1px solid rgba(22, 35, 43, 0.16);
    padding-left: 0;
    padding-top: 28px;
  }

  .init-compact a {
    grid-template-columns: 1fr auto;
  }

  .init-compact .init-compact__date {
    grid-column: 1 / -1;
  }
}
