@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --green: #0e5a47;
  --green-dark: #0a3d31;
  --green-deep: #0f3128;
  --green-soft: #e7f1ec;
  --red: #d94141;
  --gold: #c89b52;
  --ink: #13211c;
  --muted: #66756f;
  --cream: #f6f3ed;
  --surface: #fbfcfa;
  --line: #dce4df;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(25, 46, 37, 0.10);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,.95);
  font-size: 13px;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar__links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a { text-decoration: none; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e8eeea;
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  background: var(--green);
  color: var(--white);
  font: 800 17px/1 'Manrope', sans-serif;
  box-shadow: 0 9px 26px rgba(14,90,71,.18);
}
.brand__copy strong {
  display: block;
  font: 800 16px/1.15 'Manrope', sans-serif;
  letter-spacing: .025em;
}
.brand__copy span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #2f3c37;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.btn {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(14,90,71,.18);
}
.btn--light {
  background: var(--white);
  color: var(--green);
  border: 1px solid rgba(14,90,71,.16);
}
.btn--red { background: var(--red); color: var(--white); }
.btn--ghost-dark { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.18); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: .2s ease;
}
.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 120px 14px auto 14px;
  z-index: 60;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 12px;
  border-bottom: 1px solid #edf1ee;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu__cta { margin-top: 10px; width: 100%; }

.eyebrow {
  margin-bottom: 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow--line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow--line::before {
  content: '';
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  margin: 0 0 18px;
  font: 800 clamp(34px,4vw,50px)/1.1 'Manrope', sans-serif;
  letter-spacing: -.035em;
}
.lead {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.section { padding: 105px 0; }
.section--cream { background: var(--cream); }
.section--surface { background: var(--surface); }

/* ABOUT */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 86% 12%, rgba(200,155,82,.16), transparent 29%),
    linear-gradient(180deg, #fbfcfa 0%, #f6f3ed 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(14,90,71,.12);
  border-radius: 50%;
  right: -120px;
  bottom: -190px;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
}
.page-hero h1 {
  max-width: 720px;
  margin: 0 0 23px;
  font: 800 clamp(46px,5.2vw,72px)/1.02 'Manrope', sans-serif;
  letter-spacing: -.045em;
}
.page-hero h1 em { color: var(--green); font-style: normal; }
.page-hero__copy {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero__visual {
  position: relative;
  min-height: 515px;
}
.page-hero__photo {
  position: absolute;
  inset: 0 34px 28px 18px;
  border-radius: 30px;
  overflow: hidden;
  background: #dfe6e2;
  box-shadow: 0 30px 70px rgba(30,54,44,.17);
}
.page-hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.page-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8,34,25,.42) 100%);
}
.page-hero__note {
  position: absolute;
  left: -5px;
  bottom: 0;
  z-index: 2;
  width: 250px;
  padding: 18px;
  border: 1px solid #ebf0ed;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(33,51,44,.16);
}
.page-hero__note small { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.page-hero__note strong { display: block; margin-top: 6px; font: 800 17px/1.35 'Manrope', sans-serif; }
.page-hero__tag {
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 3;
  width: 190px;
  padding: 17px;
  border-radius: 17px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(14,90,71,.22);
}
.page-hero__tag span { display: block; opacity: .72; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.page-hero__tag strong { display: block; margin-top: 5px; font: 800 15px/1.35 'Manrope', sans-serif; }

.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 74px;
  align-items: center;
}
.story-media { position: relative; }
.story-photo {
  overflow: hidden;
  aspect-ratio: 4/4.55;
  border-radius: 28px;
  background: #e4e8e5;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-card {
  position: absolute;
  right: -22px;
  bottom: 26px;
  width: 218px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e9eeeb;
  background: var(--white);
  box-shadow: var(--shadow);
}
.story-card strong { display: block; font: 800 17px/1.25 'Manrope', sans-serif; }
.story-card span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.story-copy p { margin: 0 0 17px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.story-signature {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 27px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.story-signature__mark { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-weight: 800; }
.story-signature strong { display: block; font: 800 14px/1.2 'Manrope', sans-serif; }
.story-signature span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mission-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid #e8eeea;
  background: var(--white);
}
.mission-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -78px;
  top: -78px;
  border: 1px solid rgba(14,90,71,.12);
}
.mission-card__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 16px; background: var(--green-soft); color: var(--green); margin-bottom: 40px;
}
.mission-card__icon svg { width: 25px; height: 25px; }
.mission-card h3 { margin: 0 0 13px; font: 800 25px/1.2 'Manrope', sans-serif; }
.mission-card p { margin: 0; max-width: 480px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.values-intro { max-width: 760px; margin-bottom: 42px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card {
  min-height: 235px;
  padding: 25px;
  border: 1px solid #e6ebe8;
  border-radius: 20px;
  background: var(--white);
}
.value-card__number { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 11px; background: var(--green-soft); color: var(--green); font: 800 12px/1 'Manrope', sans-serif; }
.value-card h3 { margin: 27px 0 10px; font: 800 18px/1.25 'Manrope', sans-serif; }
.value-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.approach {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}
.approach::before {
  content: '';
  position: absolute;
  width: 430px; height: 430px; border-radius: 50%;
  right: -190px; top: -190px; border: 1px solid rgba(255,255,255,.1);
}
.approach-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: start; }
.approach .eyebrow { color: #a9d7c3; }
.approach .section-title { color: var(--white); }
.approach .lead { color: #c5d5ce; }
.steps { display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
}
.step__num { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #bfe2d2; font: 800 12px/1 'Manrope', sans-serif; }
.step h3 { margin: 1px 0 6px; font: 800 16px/1.25 'Manrope', sans-serif; }
.step p { margin: 0; color: #b7c9c1; font-size: 13px; line-height: 1.65; }

.leadership-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 44px; align-items: stretch; }
.leadership-panel { padding: 36px; border: 1px solid #e5eae7; border-radius: 25px; background: #f7f8f6; }
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px; border: 1px solid #e6ebe8; border-radius: 16px; background: var(--white);
}
.contact-row span { color: var(--muted); font-size: 12px; letter-spacing: .075em; text-transform: uppercase; }
.contact-row a { text-decoration: none; font: 800 16px/1.2 'Manrope', sans-serif; }
.connect-card {
  min-height: 100%;
  padding: 38px;
  border-radius: 25px;
  background: #e7f5ee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.connect-card h3 { margin: 0 0 13px; font: 800 31px/1.13 'Manrope', sans-serif; letter-spacing: -.025em; }
.connect-card p { margin: 0 0 28px; color: #4e665c; font-size: 15px; line-height: 1.7; }
.connect-card__links { display: flex; flex-wrap: wrap; gap: 10px; }

.cta-strip { padding: 74px 0; background: var(--cream); }
.cta-strip__inner {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 48px;
  border-radius: 28px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-strip__inner::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px; border-radius: 50%; right: -120px; bottom: -190px;
  border: 1px solid rgba(255,255,255,.16);
}
.cta-strip h2 { position: relative; z-index: 2; max-width: 650px; margin: 0; font: 800 clamp(31px,4vw,46px)/1.12 'Manrope', sans-serif; letter-spacing: -.035em; }
.cta-strip__actions { position: relative; z-index: 2; display: flex; gap: 11px; flex-wrap: wrap; }

.site-footer { background: #0b211a; color: #dce7e1; padding: 48px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .8fr .9fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand__mark { background: var(--white); color: var(--green); box-shadow: none; }
.footer-brand .brand__copy strong { color: var(--white); }
.footer-brand .brand__copy span { color: #8fa39a; }
.site-footer p, .site-footer a { color: #aabbb3; text-decoration: none; font-size: 13px; line-height: 1.75; }
.site-footer h4 { margin: 0 0 14px; color: var(--white); font: 800 14px/1.2 'Manrope', sans-serif; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: #7f928a; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .nav__links, .nav > .btn { display: none; }
  .menu-toggle { display: block; }
  .page-hero__grid, .story-grid, .approach-grid, .leadership-grid { grid-template-columns: 1fr; }
  .page-hero__visual { min-height: 500px; max-width: 660px; }
  .story-grid { gap: 48px; }
  .story-media { max-width: 660px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr; gap: 30px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar__inner { padding: 8px 0; align-items: flex-start; flex-direction: column; gap: 4px; }
  .topbar__links { gap: 10px; }
  .nav { min-height: 72px; }
  .brand__copy span { display: none; }
  .mobile-menu { inset: 118px 14px auto 14px; }
  .page-hero { padding: 58px 0 62px; }
  .page-hero h1 { font-size: 43px; }
  .page-hero__copy { font-size: 16px; }
  .page-hero__visual { min-height: 430px; margin-top: 5px; }
  .page-hero__photo { inset: 0 10px 34px 0; border-radius: 24px; }
  .page-hero__tag { right: 0; top: 22px; width: 168px; padding: 14px; }
  .page-hero__note { left: 8px; width: 215px; padding: 15px; }
  .section { padding: 74px 0; }
  .section-title { font-size: 35px; }
  .story-card { right: 10px; bottom: 18px; }
  .mission-grid, .values-grid { grid-template-columns: 1fr; }
  .mission-card { min-height: auto; padding: 28px; }
  .mission-card__icon { margin-bottom: 28px; }
  .contact-row { align-items: flex-start; flex-direction: column; gap: 6px; }
  .leadership-panel, .connect-card { padding: 27px; }
  .cta-strip { padding: 56px 0; }
  .cta-strip__inner { padding: 34px 27px; align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* OUR WORK */
.work-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 86px;
  background:
    radial-gradient(circle at 8% 80%, rgba(14,90,71,.08), transparent 26%),
    linear-gradient(180deg, #fbfcfa 0%, #f6f3ed 100%);
}
.work-hero::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -130px;
  top: -185px;
  border: 1px solid rgba(200,155,82,.22);
  border-radius: 50%;
}
.work-hero__grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
}
.work-hero h1 {
  max-width: 760px;
  margin: 0 0 23px;
  font: 800 clamp(46px,5.2vw,72px)/1.02 'Manrope', sans-serif;
  letter-spacing: -.045em;
}
.work-hero h1 em { color: var(--green); font-style: normal; }
.work-hero__copy {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.work-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}
.work-hero__meta > div {
  min-width: 190px;
  padding: 13px 15px;
  border: 1px solid rgba(14,90,71,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.72);
}
.work-hero__meta span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.work-hero__meta strong,
.work-hero__meta a { display: block; margin-top: 4px; color: var(--ink); text-decoration: none; font: 800 13px/1.3 'Manrope', sans-serif; }
.work-hero__visual { position: relative; min-height: 535px; }
.work-hero__image {
  position: absolute;
  inset: 0 22px 26px 34px;
  overflow: hidden;
  border-radius: 31px;
  box-shadow: 0 30px 70px rgba(30,54,44,.17);
  background: #e0e7e3;
}
.work-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.work-hero__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(8,34,25,.42)); }
.work-hero__label {
  position: absolute;
  z-index: 3;
  right: -2px;
  top: 42px;
  width: 205px;
  padding: 18px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(14,90,71,.25);
}
.work-hero__label small { display: block; opacity: .72; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.work-hero__label strong { display: block; margin-top: 7px; font: 800 16px/1.35 'Manrope', sans-serif; }
.work-hero__badge {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 235px;
  padding: 16px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e8eeea;
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.work-hero__badge-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(217,65,65,.1); }
.work-hero__badge small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.work-hero__badge strong { display: block; margin-top: 3px; font: 800 14px/1.3 'Manrope', sans-serif; }

.work-intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.work-intro .section-title { margin-bottom: 0; }
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.program-card {
  min-height: 345px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e5ebe7;
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(26,48,39,.045);
}
.program-card--featured { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.program-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 42px; }
.program-card__number { color: var(--muted); font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .08em; }
.program-card--featured .program-card__number { color: #9db6aa; }
.program-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green);
}
.program-card--featured .program-card__icon { background: rgba(255,255,255,.09); color: #bde1d1; }
.program-card__icon svg { width: 24px; height: 24px; }
.program-card__status { display: inline-flex; width: max-content; margin-bottom: 12px; padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.09); color: #c3ded2; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.program-card h3 { margin: 0 0 12px; font: 800 24px/1.18 'Manrope', sans-serif; letter-spacing: -.02em; }
.program-card p { margin: 0; max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.program-card--featured p { color: #b8cbc3; }
.program-card__link { margin-top: 24px; padding-top: 20px; border-top: 1px solid #edf1ee; display: flex; justify-content: space-between; align-items: center; color: var(--green); text-decoration: none; font-size: 13px; font-weight: 800; }
.program-card--featured .program-card__link { border-top-color: rgba(255,255,255,.12); color: #d8ece3; }

.work-feature { background: var(--white); }
.work-feature__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 76px; align-items: center; }
.work-feature__media { position: relative; }
.work-feature__photo { aspect-ratio: 4/4.5; overflow: hidden; border-radius: 28px; background: #e5e9e6; }
.work-feature__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.work-feature__callout {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: 215px;
  padding: 17px 18px;
  border: 1px solid #e7ece9;
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.work-feature__callout span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.work-feature__callout a { display: block; margin-top: 5px; color: var(--ink); text-decoration: none; font: 800 17px/1.3 'Manrope', sans-serif; }
.work-feature__points { display: grid; gap: 11px; margin: 29px 0 30px; }
.work-feature__points > div { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.work-feature__points > div:last-child { border-bottom: 0; }
.work-feature__points span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--green-soft); color: var(--green); font: 800 11px/1 'Manrope', sans-serif; }
.work-feature__points p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.work-feature__points strong { color: var(--ink); }

.work-process { position: relative; overflow: hidden; background: var(--cream); }
.work-process::after { content: ''; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(14,90,71,.09); border-radius: 50%; left: -240px; bottom: -250px; }
.work-process__head { max-width: 760px; margin-bottom: 40px; }
.work-process__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.process-card { min-height: 235px; padding: 25px; border: 1px solid #e3e9e5; border-radius: 20px; background: var(--white); }
.process-card > span { display: inline-grid; place-items: center; width: 37px; height: 37px; border-radius: 11px; background: var(--green); color: var(--white); font: 800 11px/1 'Manrope', sans-serif; }
.process-card h3 { margin: 28px 0 9px; font: 800 18px/1.3 'Manrope', sans-serif; }
.process-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.field-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.field-copy .text-link { display: inline-flex; gap: 8px; margin-top: 24px; color: var(--green); text-decoration: none; font-size: 14px; font-weight: 800; }
.field-gallery { display: grid; grid-template-columns: 1.18fr .82fr; gap: 14px; align-items: end; }
.field-gallery__large, .field-gallery__small { overflow: hidden; border-radius: 24px; background: #e5e9e6; }
.field-gallery__large { aspect-ratio: .9/1; }
.field-gallery__small { aspect-ratio: .82/1; margin-bottom: 34px; }
.field-gallery img { width: 100%; height: 100%; object-fit: cover; }

.work-contact-strip { padding: 82px 0; background: var(--green-deep); color: var(--white); }
.work-contact-strip__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; align-items: center; }
.work-contact-strip .eyebrow { color: #a9d7c3; }
.work-contact-strip h2 { margin: 0 0 11px; font: 800 clamp(33px,4vw,46px)/1.1 'Manrope', sans-serif; letter-spacing: -.035em; }
.work-contact-strip p { margin: 0; max-width: 500px; color: #b9ccc3; font-size: 14px; line-height: 1.7; }
.work-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.work-contact-cards a { min-height: 120px; padding: 18px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.055); color: var(--white); text-decoration: none; }
.work-contact-cards span { color: #9fb6ac; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.work-contact-cards strong { margin-top: 7px; font: 800 15px/1.25 'Manrope', sans-serif; }

@media (max-width: 1020px) {
  .work-hero__grid, .work-intro, .work-feature__grid, .field-grid, .work-contact-strip__grid { grid-template-columns: 1fr; }
  .work-hero__visual { min-height: 510px; max-width: 660px; }
  .work-intro { gap: 20px; }
  .work-feature__media { max-width: 660px; }
  .work-process__grid { grid-template-columns: repeat(2, 1fr); }
  .field-gallery { max-width: 760px; }
}

@media (max-width: 720px) {
  .work-hero { padding: 58px 0 62px; }
  .work-hero h1 { font-size: 43px; }
  .work-hero__copy { font-size: 16px; }
  .work-hero__meta { flex-direction: column; }
  .work-hero__meta > div { width: 100%; }
  .work-hero__visual { min-height: 435px; margin-top: 6px; }
  .work-hero__image { inset: 0 8px 30px 0; border-radius: 24px; }
  .work-hero__label { right: 0; top: 22px; width: 170px; padding: 14px; }
  .work-hero__badge { left: 8px; width: 215px; }
  .program-grid, .work-process__grid, .work-contact-cards { grid-template-columns: 1fr; }
  .program-card { min-height: auto; padding: 25px; }
  .program-card__top { margin-bottom: 30px; }
  .work-feature__callout { right: 9px; bottom: 18px; }
  .field-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .field-gallery__large { aspect-ratio: .84/1; }
  .field-gallery__small { margin-bottom: 22px; aspect-ratio: .8/1; }
  .work-contact-strip { padding: 68px 0; }
  .work-contact-strip__grid { gap: 32px; }
  .work-contact-cards a { min-height: 95px; }
}

/* DONATE */
.donate-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 84px;
  background:
    radial-gradient(circle at 88% 15%, rgba(200,155,82,.16), transparent 28%),
    linear-gradient(180deg, #fbfcfa 0%, #f6f3ed 100%);
}
.donate-hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: -260px;
  bottom: -270px;
  border: 1px solid rgba(14,90,71,.11);
  border-radius: 50%;
}
.donate-hero__grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center;
}
.donate-hero h1 {
  max-width: 760px;
  margin: 0 0 23px;
  font: 800 clamp(46px,5.2vw,72px)/1.02 'Manrope', sans-serif;
  letter-spacing: -.045em;
}
.donate-hero h1 em { color: var(--green); font-style: normal; }
.donate-hero__copy {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.donate-hero__trust { display: grid; gap: 8px; margin-top: 30px; max-width: 660px; }
.donate-hero__trust > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.donate-hero__trust span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: rgba(14,90,71,.09); color: var(--green); font: 800 10px/1 'Manrope', sans-serif; }
.donate-hero__trust p { margin: 2px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.donate-hero__trust strong { color: var(--ink); }
.donate-hero__visual { position: relative; min-height: 540px; }
.donate-hero__photo {
  position: absolute;
  inset: 0 22px 28px 34px;
  overflow: hidden;
  border-radius: 31px;
  background: #e0e7e3;
  box-shadow: 0 30px 70px rgba(30,54,44,.17);
}
.donate-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.donate-hero__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(8,34,25,.44)); }
.donate-hero__card {
  position: absolute;
  z-index: 3;
  right: -2px;
  top: 43px;
  width: 205px;
  padding: 18px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(14,90,71,.24);
}
.donate-hero__card small { display: block; opacity: .7; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.donate-hero__card strong { display: block; margin-top: 7px; font: 800 15px/1.3 'Manrope', sans-serif; }
.donate-hero__card a { display: block; margin-top: 4px; color: var(--white); text-decoration: none; font: 800 16px/1.25 'Manrope', sans-serif; }
.donate-hero__badge {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 250px;
  padding: 16px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e8eeea;
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.donate-hero__badge > span { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(200,155,82,.12); }
.donate-hero__badge small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.donate-hero__badge strong { display: block; margin-top: 3px; font: 800 14px/1.3 'Manrope', sans-serif; }

.donation-section { background: var(--white); }
.donation-layout { display: grid; grid-template-columns: 1.16fr .84fr; gap: 48px; align-items: start; }
.donation-builder .lead { max-width: 760px; }
.donation-box {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid #e3e9e5;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(26,48,39,.05);
}
.donation-box__label { margin-bottom: 13px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.donation-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.donation-amount {
  min-height: 55px;
  padding: 0 12px;
  border: 1px solid #dce5e0;
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font: 800 14px/1 'Manrope', sans-serif;
  cursor: pointer;
  transition: .2s ease;
}
.donation-amount:hover { border-color: rgba(14,90,71,.45); }
.donation-amount.is-active { border-color: var(--green); background: var(--green); color: var(--white); box-shadow: 0 11px 24px rgba(14,90,71,.14); }
.custom-amount { display: block; margin-top: 20px; }
.custom-amount > span:first-child { display: block; margin-bottom: 9px; color: var(--muted); font-size: 12px; font-weight: 700; }
.custom-amount__field { min-height: 56px; display: flex; align-items: center; gap: 8px; padding: 0 15px; border: 1px solid #dce5e0; border-radius: 13px; background: var(--white); }
.custom-amount__field b { color: var(--green); font: 800 14px/1 'Manrope', sans-serif; }
.custom-amount__field input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.custom-amount__field:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(14,90,71,.08); }
.donation-purpose { margin-top: 24px; padding-top: 22px; border-top: 1px solid #e3e9e5; }
.donation-purpose > span { display: block; margin-bottom: 11px; color: var(--muted); font-size: 12px; font-weight: 700; }
.donation-purpose__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.donation-purpose label { cursor: pointer; }
.donation-purpose input { position: absolute; opacity: 0; pointer-events: none; }
.donation-purpose label span { min-height: 49px; padding: 0 14px; display: flex; align-items: center; border: 1px solid #dce5e0; border-radius: 12px; background: var(--white); color: #3f4f49; font-size: 13px; font-weight: 800; transition: .2s ease; }
.donation-purpose input:checked + span { border-color: rgba(14,90,71,.45); background: var(--green-soft); color: var(--green); }
.donation-summary { margin-top: 23px; padding: 20px; border-radius: 16px; background: var(--green-deep); color: var(--white); }
.donation-summary > div { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.donation-summary span { color: #9fb8ad; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.donation-summary strong { text-align: right; font: 800 16px/1.3 'Manrope', sans-serif; }
.donation-summary p { margin: 13px 0 0; color: #b9cbc3; font-size: 12px; line-height: 1.6; }
.donation-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.donation-side { display: grid; gap: 16px; padding-top: 94px; }
.donation-side__card { padding: 28px; border: 1px solid #e3e9e5; border-radius: 22px; background: var(--cream); }
.donation-side__card--dark { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.donation-side__card .eyebrow { color: #a9d7c3; }
.donation-side__card h3 { margin: 0 0 12px; font: 800 25px/1.18 'Manrope', sans-serif; letter-spacing: -.025em; }
.donation-side__card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.donation-side__card--dark p { color: #b9cbc3; }
.donation-side__contacts { display: grid; gap: 9px; margin-top: 24px; }
.donation-side__contacts a { padding: 13px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.05); color: var(--white); text-decoration: none; }
.donation-side__contacts span { display: block; color: #9fb6ac; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.donation-side__contacts strong { display: block; margin-top: 4px; font: 800 15px/1.2 'Manrope', sans-serif; }
.donation-side__mini { display: block; margin-bottom: 9px; color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.donation-side__card .text-link { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--green); text-decoration: none; font-size: 13px; font-weight: 800; }

.support-areas__head { display: grid; grid-template-columns: 1fr .85fr; gap: 60px; align-items: end; margin-bottom: 38px; }
.support-areas__head .section-title { margin-bottom: 0; }
.support-areas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-area { min-height: 310px; padding: 27px; border: 1px solid #e4e9e6; border-radius: 22px; background: var(--white); }
.support-area > span { color: var(--muted); font: 800 11px/1 'Manrope', sans-serif; letter-spacing: .08em; }
.support-area__icon { width: 52px; height: 52px; margin: 34px 0 25px; display: grid; place-items: center; border-radius: 15px; background: var(--green-soft); color: var(--green); }
.support-area__icon svg { width: 24px; height: 24px; }
.support-area h3 { margin: 0 0 11px; font: 800 21px/1.22 'Manrope', sans-serif; }
.support-area p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.donation-transparency__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 74px; align-items: center; }
.donation-transparency__media { position: relative; }
.donation-transparency__photo { aspect-ratio: 4/4.35; overflow: hidden; border-radius: 28px; background: #e5e9e6; }
.donation-transparency__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.donation-transparency__note { position: absolute; right: -22px; bottom: 28px; width: 220px; padding: 17px 18px; border: 1px solid #e6ece8; border-radius: 17px; background: var(--white); box-shadow: var(--shadow); }
.donation-transparency__note span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.donation-transparency__note strong { display: block; margin-top: 5px; font: 800 15px/1.3 'Manrope', sans-serif; }
.transparency-list { display: grid; gap: 6px; margin: 28px 0 30px; }
.transparency-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 13px 0; border-bottom: 1px solid var(--line); }
.transparency-list > div:last-child { border-bottom: 0; }
.transparency-list span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--green-soft); color: var(--green); font-weight: 800; }
.transparency-list p { margin: 3px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.transparency-list strong { color: var(--ink); }

.donation-faq { padding: 96px 0; }
.donation-faq__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.donation-faq__intro { position: sticky; top: 120px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid #e2e8e4; border-radius: 16px; background: var(--white); overflow: hidden; }
.faq-list summary { position: relative; padding: 20px 52px 20px 20px; list-style: none; cursor: pointer; font: 800 15px/1.35 'Manrope', sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 19px; top: 50%; transform: translateY(-50%); width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: var(--green-soft); color: var(--green); font-size: 18px; font-weight: 600; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }

@media (max-width: 1020px) {
  .donate-hero__grid, .donation-layout, .support-areas__head, .donation-transparency__grid, .donation-faq__grid { grid-template-columns: 1fr; }
  .donate-hero__visual { min-height: 510px; max-width: 660px; }
  .donation-side { padding-top: 0; grid-template-columns: 1fr 1fr; }
  .support-areas__head { gap: 20px; }
  .donation-transparency__media { max-width: 660px; }
  .donation-faq__intro { position: static; }
}

@media (max-width: 720px) {
  .donate-hero { padding: 58px 0 62px; }
  .donate-hero h1 { font-size: 43px; }
  .donate-hero__copy { font-size: 16px; }
  .donate-hero__visual { min-height: 435px; margin-top: 6px; }
  .donate-hero__photo { inset: 0 8px 30px 0; border-radius: 24px; }
  .donate-hero__card { right: 0; top: 22px; width: 172px; padding: 14px; }
  .donate-hero__badge { left: 8px; width: 220px; }
  .donation-box { padding: 22px; }
  .donation-amounts { grid-template-columns: repeat(2, 1fr); }
  .donation-purpose__grid, .donation-side, .support-areas__grid { grid-template-columns: 1fr; }
  .donation-summary > div { flex-direction: column; gap: 6px; }
  .donation-summary strong { text-align: left; }
  .donation-actions .btn { width: 100%; }
  .donation-transparency__note { right: 9px; bottom: 18px; }
  .donation-faq { padding: 74px 0; }
}

/* CONTACT */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 88% 8%, rgba(200,155,82,.16), transparent 29%),
    linear-gradient(180deg, #fbfcfa 0%, #f6f3ed 100%);
}
.contact-hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(14,90,71,.1);
  border-radius: 50%;
  left: -270px;
  bottom: -280px;
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 72px;
  align-items: center;
}
.contact-hero h1 {
  max-width: 730px;
  margin: 0 0 23px;
  font: 800 clamp(46px,5.2vw,72px)/1.02 'Manrope', sans-serif;
  letter-spacing: -.045em;
}
.contact-hero h1 em { color: var(--green); font-style: normal; }
.contact-hero__copy {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.contact-hero__note {
  max-width: 560px;
  margin-top: 27px;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}
.contact-hero__note > span { width: 10px; height: 10px; margin-top: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(217,65,65,.09); }
.contact-hero__note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.contact-hero__note strong { color: var(--ink); }

.contact-directory {
  padding: 20px;
  border: 1px solid #e2e9e5;
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 70px rgba(30,54,44,.12);
}
.contact-directory__head { padding: 9px 8px 18px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.contact-directory__head span { color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.contact-directory__head strong { font: 800 18px/1.2 'Manrope', sans-serif; }
.contact-directory__item {
  min-height: 92px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid #e8eeea;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.contact-directory__item:hover { background: #f8faf8; transform: translateX(3px); }
.contact-directory__item--urgent { border-radius: 17px; border-top: 0; background: #fff3f1; }
.contact-directory__item--urgent:hover { background: #ffede9; }
.contact-directory__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--green-soft); color: var(--green); }
.contact-directory__item--urgent .contact-directory__icon { background: rgba(217,65,65,.1); color: var(--red); }
.contact-directory__icon svg { width: 23px; height: 23px; }
.contact-directory__item small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.contact-directory__item strong { display: block; margin-top: 5px; font: 800 17px/1.2 'Manrope', sans-serif; }
.contact-directory__item b { color: var(--green); font-size: 12px; }
.contact-directory__item--urgent b { color: var(--red); }

.contact-options__head { display: grid; grid-template-columns: 1fr .88fr; gap: 60px; align-items: end; margin-bottom: 38px; }
.contact-options__head .section-title { margin-bottom: 0; }
.contact-options__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-option {
  min-height: 330px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8e4;
  border-radius: 22px;
  background: var(--white);
}
.contact-option__num { color: var(--muted); font: 800 11px/1 'Manrope', sans-serif; letter-spacing: .08em; }
.contact-option__icon { width: 53px; height: 53px; margin: 35px 0 25px; display: grid; place-items: center; border-radius: 15px; background: var(--green-soft); color: var(--green); }
.contact-option__icon svg { width: 24px; height: 24px; }
.contact-option h3 { margin: 0 0 11px; font: 800 21px/1.23 'Manrope', sans-serif; }
.contact-option p { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.72; }
.contact-option a { margin-top: auto; padding-top: 19px; border-top: 1px solid #edf1ee; display: flex; justify-content: space-between; color: var(--green); text-decoration: none; font-size: 13px; font-weight: 800; }

.contact-message__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-message__copy { position: sticky; top: 125px; }
.contact-message__photo { position: relative; overflow: hidden; margin-top: 34px; min-height: 330px; border-radius: 24px; background: #e2e8e4; }
.contact-message__photo img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center 45%; }
.contact-message__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,31,24,.52)); }
.contact-message__photo > div { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: var(--white); }
.contact-message__photo span { display: block; opacity: .72; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.contact-message__photo strong { display: block; max-width: 340px; margin-top: 5px; font: 800 18px/1.3 'Manrope', sans-serif; }

.contact-form { padding: 31px; border: 1px solid #e1e8e4; border-radius: 25px; background: var(--surface); box-shadow: 0 16px 44px rgba(26,48,39,.055); }
.contact-form__head { margin-bottom: 26px; padding-bottom: 21px; border-bottom: 1px solid #e3e9e5; }
.contact-form__head span { display: block; color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.contact-form__head strong { display: block; margin-top: 6px; font: 800 24px/1.2 'Manrope', sans-serif; }
.contact-form label { display: block; margin-bottom: 17px; color: #3d4c46; font-size: 12px; font-weight: 800; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d9e3dd;
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input, .contact-form select { height: 54px; padding: 0 14px; }
.contact-form textarea { min-height: 150px; padding: 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(14,90,71,.08); }
.contact-form [aria-invalid='true'] { border-color: var(--red); box-shadow: 0 0 0 3px rgba(217,65,65,.07); }
.contact-form__hint { margin: -2px 0 18px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.contact-form__submit { width: 100%; }
.contact-form__status { min-height: 20px; margin-top: 12px; color: var(--red); font-size: 12px; font-weight: 700; }
.contact-form__result { margin-top: 18px; padding: 19px; border: 1px solid #d9e6df; border-radius: 16px; background: var(--white); }
.contact-form__result-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.contact-form__result-head span { color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-form__result-head button { border: 0; padding: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 800; cursor: pointer; }
.contact-form__result pre { margin: 15px 0 18px; padding: 16px; white-space: pre-wrap; word-break: break-word; border-radius: 12px; background: #f3f7f4; color: #35453f; font: 600 12px/1.65 'DM Sans', sans-serif; }
.contact-form__result-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.contact-form__result-actions .btn { min-height: 44px; padding: 0 15px; font-size: 12px; }

.contact-location__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: stretch; }
.contact-location__panel { padding: 24px 0; align-self: center; }
.contact-location__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.contact-location__map {
  min-height: 390px;
  padding: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid #dfe6e2;
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(14,90,71,.08) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(14,90,71,.08) 50%, transparent 50.5%),
    radial-gradient(circle at 72% 22%, rgba(200,155,82,.25), transparent 24%),
    #eef4f0;
  background-size: 58px 58px, 58px 58px, auto, auto;
  color: var(--ink);
  text-decoration: none;
}
.contact-location__map::before { content: ''; position: absolute; width: 420px; height: 150px; left: -80px; top: 70px; border: 16px solid rgba(255,255,255,.78); border-left: 0; border-right: 0; transform: rotate(-17deg); }
.contact-location__pin { position: relative; z-index: 2; width: 74px; height: 74px; flex: 0 0 74px; display: grid; place-items: center; border-radius: 22px; background: var(--green); color: var(--white); box-shadow: 0 18px 38px rgba(14,90,71,.22); }
.contact-location__pin svg { width: 32px; height: 32px; }
.contact-location__map > div { position: relative; z-index: 2; margin-left: auto; max-width: 330px; padding: 20px; border: 1px solid rgba(255,255,255,.8); border-radius: 17px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.contact-location__map small { display: block; color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-location__map strong { display: block; margin-top: 6px; font: 800 20px/1.25 'Manrope', sans-serif; }
.contact-location__map div span { display: block; margin-top: 13px; color: var(--green); font-size: 12px; font-weight: 800; }

.contact-connect { position: relative; overflow: hidden; padding: 82px 0; background: var(--green-deep); color: var(--white); }
.contact-connect::after { content: ''; position: absolute; width: 380px; height: 380px; right: -170px; top: -190px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); }
.contact-connect__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.contact-connect .eyebrow { color: #a9d7c3; }
.contact-connect h2 { max-width: 650px; margin: 0 0 13px; font: 800 clamp(34px,4vw,48px)/1.1 'Manrope', sans-serif; letter-spacing: -.035em; }
.contact-connect p { max-width: 640px; margin: 0; color: #b8cbc3; font-size: 15px; line-height: 1.72; }
.contact-connect__action { padding: 25px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.055); }
.contact-connect__action .btn { width: 100%; }
.contact-connect__action span { display: block; margin-top: 11px; color: #92a99f; text-align: center; font-size: 10px; }

@media (max-width: 1020px) {
  .contact-hero__grid,
  .contact-options__head,
  .contact-message__grid,
  .contact-location__grid,
  .contact-connect__grid { grid-template-columns: 1fr; }
  .contact-options__head { gap: 20px; }
  .contact-message__copy { position: static; }
  .contact-message__photo { max-width: 680px; }
  .contact-location__map { max-width: 760px; }
  .contact-connect__grid { gap: 30px; }
}

@media (max-width: 720px) {
  .contact-hero { padding: 58px 0 62px; }
  .contact-hero h1 { font-size: 43px; }
  .contact-hero__copy { font-size: 16px; }
  .contact-directory { padding: 12px; border-radius: 22px; }
  .contact-directory__head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .contact-directory__item { grid-template-columns: 46px 1fr; padding: 14px 10px; }
  .contact-directory__item b { display: none; }
  .contact-options__grid { grid-template-columns: 1fr; }
  .contact-option { min-height: 285px; }
  .contact-form { padding: 21px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .contact-form__result-actions .btn { width: 100%; }
  .contact-location__map { min-height: 370px; padding: 20px; align-items: flex-end; flex-direction: column; justify-content: flex-end; }
  .contact-location__pin { width: 62px; height: 62px; flex-basis: 62px; align-self: flex-start; }
  .contact-location__map > div { max-width: none; width: 100%; margin-left: 0; }
  .contact-location__actions .btn { width: 100%; }
  .contact-connect { padding: 68px 0; }
}

/* HOME */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
  background:
    radial-gradient(circle at 86% 12%, rgba(200,155,82,.16), transparent 29%),
    linear-gradient(180deg, #fbfcfa 0%, #f6f3ed 100%);
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 72px;
  align-items: center;
}
.home-hero h1 {
  margin: 0 0 24px;
  max-width: 760px;
  font: 800 clamp(44px,5.1vw,72px)/1.02 'Manrope', sans-serif;
  letter-spacing: -.045em;
}
.home-hero h1 em { color: var(--green); font-style: normal; }
.home-hero__copy {
  max-width: 630px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.home-hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: #4d5d57;
  font-size: 13px;
}
.home-dots { display: flex; }
.home-dots i {
  width: 28px;
  height: 28px;
  margin-left: -7px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #d7e5de;
}
.home-dots i:first-child { margin-left: 0; background: #8fb9a8; }
.home-dots i:nth-child(2) { background: #d0a66b; }
.home-dots i:nth-child(3) { background: #c86562; }
.home-hero__visual { position: relative; min-height: 560px; }
.home-hero__photo {
  position: absolute;
  inset: 0 38px 28px 18px;
  overflow: hidden;
  border-radius: 32px;
  background: #e5e9e6;
  box-shadow: 0 28px 70px rgba(30,54,44,.18);
}
.home-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.home-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9,33,25,.34) 100%);
}
.home-hero__number {
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 3;
  width: 200px;
  padding: 18px 19px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(14,90,71,.24);
}
.home-hero__number small,
.home-hero__field small {
  display: block;
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.home-hero__number small { opacity: .75; }
.home-hero__number a { display: block; margin-top: 5px; color: var(--white); text-decoration: none; font: 800 18px/1.2 'Manrope', sans-serif; }
.home-hero__field {
  position: absolute;
  left: -10px;
  bottom: 2px;
  z-index: 3;
  width: 245px;
  padding: 18px;
  border: 1px solid #e8eeea;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(33,51,44,.17);
}
.home-hero__field small { color: var(--green); font-weight: 800; }
.home-hero__field strong { display: block; margin-top: 7px; font: 800 16px/1.35 'Manrope', sans-serif; }

.home-trust { border-top: 1px solid #e5ebe7; border-bottom: 1px solid #e5ebe7; background: var(--white); }
.home-trust__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.home-trust__item { padding: 24px 22px; border-right: 1px solid #e5ebe7; }
.home-trust__item:first-child { padding-left: 0; }
.home-trust__item:last-child { border-right: 0; }
.home-trust__item b { display: block; margin-bottom: 4px; font: 800 14px/1.3 'Manrope', sans-serif; }
.home-trust__item span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.home-about { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.home-about__media { position: relative; }
.home-about__photo { aspect-ratio: 4/4.35; overflow: hidden; border-radius: 28px; background: #eef1ef; }
.home-about__photo img { width: 100%; height: 100%; object-fit: cover; }
.home-about__badge {
  position: absolute;
  right: -22px;
  bottom: 30px;
  width: 208px;
  padding: 17px 18px;
  border: 1px solid #e8eeea;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(30,54,44,.13);
}
.home-about__badge strong { display: block; margin-bottom: 5px; font: 800 16px/1.3 'Manrope', sans-serif; }
.home-about__badge span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.home-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 30px; }
.home-check {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.home-check::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  border-radius: 7px;
  background: #e4f1eb;
  color: var(--green);
  font-size: 12px;
}

.home-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.home-programs { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.home-program {
  min-height: 275px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8ece9;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(25,46,37,.045);
}
.home-program__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #e6f1ec;
  color: var(--green);
}
.home-program__icon svg { width: 24px; height: 24px; }
.home-program h3 { margin: 0 0 12px; font: 800 21px/1.25 'Manrope', sans-serif; letter-spacing: -.02em; }
.home-program p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.home-program a { margin-top: auto; color: var(--green); text-decoration: none; font-size: 13px; font-weight: 800; }

.home-help { position: relative; overflow: hidden; background: var(--green-deep); color: var(--white); }
.home-help::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.home-help__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.home-help .eyebrow { color: #a8d7c3; }
.home-help .section-title { color: var(--white); }
.home-help .lead { color: #c7d7d0; }
.home-help__links { position: relative; z-index: 2; display: grid; gap: 11px; }
.home-help__link {
  min-height: 64px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  color: var(--white);
  text-decoration: none;
}
.home-help__link b { font: 800 15px/1.3 'Manrope', sans-serif; }
.home-help__link span { opacity: .65; font-size: 12px; }

.home-contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: stretch; }
.home-contact__panel { padding: 34px; border: 1px solid #e5eae7; border-radius: 25px; background: #f7f8f6; }
.home-contact__items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.home-contact__item { padding: 18px; border: 1px solid #e6ebe8; border-radius: 16px; background: var(--white); }
.home-contact__item span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.home-contact__item a { color: var(--ink); text-decoration: none; font: 800 16px/1.3 'Manrope', sans-serif; }
.home-whatsapp { padding: 36px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 25px; background: #e7f5ee; }
.home-whatsapp h3 { margin: 0 0 13px; font: 800 28px/1.15 'Manrope', sans-serif; }
.home-whatsapp p { margin: 0 0 28px; color: #4f665c; line-height: 1.65; }

@media (max-width: 1020px) {
  .home-hero__grid, .home-about, .home-help__grid, .home-contact { grid-template-columns: 1fr; }
  .home-hero__visual { min-height: 500px; max-width: 660px; }
  .home-programs { grid-template-columns: 1fr 1fr; }
  .home-trust__grid { grid-template-columns: 1fr 1fr; }
  .home-trust__item:nth-child(2) { border-right: 0; }
  .home-trust__item:nth-child(-n+2) { border-bottom: 1px solid #e5ebe7; }
}

@media (max-width: 650px) {
  .home-hero { padding: 54px 0 56px; }
  .home-hero h1 { font-size: 43px; }
  .home-hero__copy { font-size: 16px; }
  .home-hero__visual { min-height: 430px; margin-top: 8px; }
  .home-hero__photo { inset: 0 12px 34px 0; border-radius: 24px; }
  .home-hero__number { top: 22px; right: 0; width: 168px; padding: 14px; }
  .home-hero__number a { font-size: 15px; }
  .home-hero__field { left: 8px; bottom: 0; width: 215px; padding: 15px; }
  .home-trust__grid, .home-programs, .home-checks, .home-contact__items { grid-template-columns: 1fr; }
  .home-trust__item { padding-left: 0; border-right: 0 !important; border-bottom: 1px solid #e5ebe7; }
  .home-trust__item:last-child { border-bottom: 0; }
  .home-about__badge { right: 10px; }
  .home-contact__panel, .home-whatsapp { padding: 26px; }
}
