/* ─── Design tokens ─── */
:root {
  --cream: #f7f3ec;
  --cream-dark: #ede8df;
  --forest: #1b4332;
  --forest-mid: #2d6a4f;
  --forest-light: #40916c;
  --terra: #e07a5f;
  --terra-deep: #c45d42;
  --terra-soft: #f4a990;
  --ink: #1a1814;
  --ink-muted: #5c574f;
  --ink-faint: #8a847a;
  --white: #fffdf9;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 4.5rem;
  --container: min(72rem, 92vw);
  --radius: 1rem;
  --radius-lg: 1.75rem;
}

/* ─── Reset & base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  .btn,
  .footer__reveal,
  .nav__toggle {
    cursor: none;
  }
}

/* ─── Custom cursor ─── */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s, width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}

body.is-cursor-ready .cursor,
body.is-cursor-ready .cursor-dot {
  opacity: 1;
}

.cursor {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.cursor.is-hovering {
  width: 56px;
  height: 56px;
  border-color: var(--forest);
  background: rgba(27, 67, 50, 0.06);
}

.cursor.is-clicking {
  width: 32px;
  height: 32px;
  background: rgba(224, 122, 95, 0.15);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--forest);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot.is-hovering {
  background: var(--terra);
  width: 8px;
  height: 8px;
}

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

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

ul {
  list-style: none;
}

strong {
  font-weight: 600;
  color: var(--forest);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--white);
  border-radius: 0.5rem;
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

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

/* ─── Grain overlay ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── Navigation ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: var(--container);
  margin-inline: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.nav__mark {
  border-radius: 0.5rem;
  transition: transform 0.3s var(--ease-spring);
}

.nav__brand:hover .nav__mark {
  transform: rotate(-4deg) scale(1.05);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s;
  position: relative;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terra);
  transition: width 0.3s var(--ease-out);
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--forest);
}

.nav__menu a:hover::after,
.nav__menu a:focus-visible::after {
  width: 100%;
}

.nav__cta {
  padding: 0.55rem 1.25rem !important;
  background: var(--forest);
  color: var(--white) !important;
  border-radius: 2rem;
  transition: background 0.25s, transform 0.25s var(--ease-spring) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: transform 0.3s, opacity 0.3s;
}

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

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn--primary:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: var(--container);
  margin-inline: auto;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--terra);
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 420px;
  margin-left: auto;
}

.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}

/* ─── Hero slideshow ─── */
.hero__slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(26, 24, 20, 0.06),
    0 24px 60px rgba(27, 67, 50, 0.14);
  background: var(--forest);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 6s linear;
}

.hero__slide[data-pos="top"] img {
  object-position: center 18%;
}

.hero__slide[data-pos="upper"] img {
  object-position: center 22%;
}

.hero__slide[data-pos="center"] img {
  object-position: center 35%;
}

.hero__slide[data-pos="full"] img {
  object-position: center 55%;
}

.hero__slide.is-active img {
  animation: kenBurns 6s linear forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__slideshow-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 3px;
  background: rgba(255, 253, 249, 0.2);
}

.hero__slideshow-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--terra);
  transition: width 0.1s linear;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.hero__orb--green {
  width: 200px;
  height: 200px;
  background: rgba(45, 106, 79, 0.2);
  top: 10%;
  left: -10%;
}

.hero__orb--terra {
  width: 160px;
  height: 160px;
  background: rgba(224, 122, 95, 0.25);
  top: 55%;
  right: -5%;
  animation-delay: -4s;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero__card {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow:
    0 2px 4px rgba(26, 24, 20, 0.04),
    0 12px 32px rgba(27, 67, 50, 0.1);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.hero__visual:hover .hero__card {
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(26, 24, 20, 0.06),
    0 16px 40px rgba(27, 67, 50, 0.12);
}

.hero__card-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terra);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.hero__card-role {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
}

.hero__card-org {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.hero__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__card-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.8rem;
  background: var(--cream);
  border-radius: 2rem;
  color: var(--forest-mid);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background: var(--forest);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.2);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.75rem;
  border-right: 1px solid rgba(255, 253, 249, 0.15);
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.65);
  margin-top: 0.2rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero__scroll-dot {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ─── Intro ─── */
.intro {
  padding: 6rem 0;
  border-top: 1px solid rgba(27, 67, 50, 0.08);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
}

.intro__text p + p {
  margin-top: 1.25rem;
  color: var(--ink-muted);
}

/* ─── Section headers ─── */
.section-header {
  margin-bottom: 3.5rem;
  max-width: 36rem;
}

.section-header__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.section-header__desc {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ─── Timeline ─── */
.impact {
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--forest-light) 0%,
    var(--terra) 50%,
    var(--forest) 100%
  );
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 2.5rem;
}

.timeline__marker {
  position: absolute;
  left: -2rem;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 3px solid var(--forest);
  transform: translateX(-6px);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  z-index: 1;
}

.timeline__item:hover .timeline__marker {
  transform: translateX(-6px) scale(1.3);
  box-shadow: 0 0 0 6px rgba(27, 67, 50, 0.12);
}

.timeline__item[data-category="community"] .timeline__marker {
  border-color: var(--terra);
}

.timeline__item[data-category="community"]:hover .timeline__marker {
  box-shadow: 0 0 0 6px rgba(224, 122, 95, 0.15);
}

.timeline__item[data-category="care"] .timeline__marker {
  border-color: var(--forest-mid);
}

.timeline__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(27, 67, 50, 0.07);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.timeline__item:hover .timeline__card {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(26, 24, 20, 0.07);
}

.timeline__card time {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.timeline__card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0.4rem 0 0.2rem;
}

.timeline__org {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.timeline__item[data-category="admin"] .timeline__org {
  color: var(--forest-mid);
}

.timeline__card p:last-child {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27, 67, 50, 0.08);
}

.legend__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.legend__item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend__item--community::before {
  background: var(--terra);
}

.legend__item--care::before {
  background: var(--forest-mid);
}

.legend__item--admin::before {
  background: var(--forest);
}

/* ─── Case study ─── */
.case-study {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.case-study__bg {
  position: absolute;
  inset: 0;
  background: var(--terra);
}

.case-study__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 50%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}

.case-study__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.case-study__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.7);
  margin-bottom: 0.75rem;
}

.case-study__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.case-study__period {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 253, 249, 0.65);
  margin-bottom: 1.5rem;
}

.case-study__lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.case-study__content p {
  color: rgba(255, 253, 249, 0.85);
  margin-bottom: 1.5rem;
}

.case-study__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.case-study__highlights li {
  padding-left: 1.25rem;
  border-left: 3px solid rgba(255, 253, 249, 0.35);
}

.case-study__highlights strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.case-study__highlights span {
  font-size: 0.92rem;
  color: rgba(255, 253, 249, 0.75);
}

.case-study__quote {
  background: rgba(255, 253, 249, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 253, 249, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
}

.case-study__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
}

.case-study__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 249, 0.8);
}

.case-study__badge svg {
  color: var(--white);
  flex-shrink: 0;
}

/* ─── Education ─── */
.education {
  padding: 7rem 0;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.edu-card {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.edu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 24, 20, 0.08);
}

.edu-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--forest) 0%, #163828 100%);
  border-color: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.edu-card--featured::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(64, 145, 108, 0.15);
}

.edu-card--featured > * {
  position: relative;
}

.edu-card--featured .edu-card__time {
  color: rgba(255, 253, 249, 0.9);
  font-weight: 600;
}

.edu-card--featured .edu-card__title {
  color: #fffdf9;
  font-size: clamp(1.6rem, 3vw, 2rem);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.edu-card--featured .edu-card__org {
  color: #f8c4b0;
  font-weight: 600;
}

.edu-card--featured .edu-card__desc {
  color: rgba(255, 253, 249, 0.92);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 52rem;
}

.edu-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.edu-card time {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.edu-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0.5rem 0 0.25rem;
}

.edu-card__org {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.edu-card p:last-child {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.cert {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px dashed rgba(27, 67, 50, 0.15);
}

.cert__icon {
  flex-shrink: 0;
  color: var(--forest);
  opacity: 0.7;
}

.cert h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.cert__org {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.cert__body p:last-child {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--forest);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 3rem;
}

.footer__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__intro p {
  color: rgba(255, 253, 249, 0.65);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(255, 253, 249, 0.2);
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 253, 249, 0.85);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}

.footer__social-link:hover {
  background: rgba(255, 253, 249, 0.1);
  border-color: var(--terra-soft);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social-link svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.footer__link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 253, 249, 0.1);
  transition: padding-left 0.3s var(--ease-out);
}

.footer__reveal {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 253, 249, 0.1);
  background: none;
  font-family: inherit;
  color: inherit;
  transition: padding-left 0.3s var(--ease-out);
}

.footer__reveal:hover,
.footer__link:hover {
  padding-left: 0.5rem;
}

.footer__reveal.is-revealed .footer__link-value--hidden {
  display: none;
}

.footer__link-value--hidden {
  font-style: italic;
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.95rem;
}

.footer__reveal.is-revealed {
  cursor: pointer;
}

.footer__reveal.is-revealed:hover {
  padding-left: 0.5rem;
}

.footer__link-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.45);
  margin-bottom: 0.2rem;
}

.footer__link-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
}

.footer__location {
  padding: 1rem 0;
}

.footer__lang-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.45);
  margin-bottom: 1rem;
}

.lang-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lang-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 253, 249, 0.08);
}

.lang-list__name {
  font-weight: 500;
}

.lang-list__level {
  font-size: 0.82rem;
  color: var(--terra-soft);
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 253, 249, 0.45);
}

.footer__top {
  color: rgba(255, 253, 249, 0.65);
  transition: color 0.25s;
}

.footer__top:hover {
  color: var(--terra-soft);
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    max-width: 360px;
    margin-inline: auto;
  }

  .hero__frame {
    max-width: none;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-study__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(247, 243, 236, 0.97);
    backdrop-filter: blur(14px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    pointer-events: none;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__menu a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(27, 67, 50, 0.06);
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .timeline {
    padding-left: 1.25rem;
  }

  .timeline__item {
    padding-left: 1.75rem;
  }

  .cert {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-dot {
    display: none !important;
  }

  body,
  a,
  button {
    cursor: auto;
  }
}

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

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

  .hero__orb,
  .hero__scroll-dot {
    animation: none;
  }

  .hero__slide.is-active img {
    animation: none;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }

  body {
    cursor: auto;
  }
}
