/* ==========================================
GOOGLE FONTS
========================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap");

/* ==========================================
   CSS RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
}

/* ===========================
01. Variables
=========================== */

:root {
  --primary: #0f766e;

  --primary-dark: #00201f;

  --text: #1a1a1a;

  --paragraph: #5b5d62;

  --light: #ebf0f5;

  --white: #ffffff;

  --border: #0f766e;
}

/* ===========================
03. Utility Classes
=========================== */

.btn,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn::after,
.cta-button::after {
  content: "";
  width: 0;
  height: 10px;
  margin-left: 0;
  opacity: 0;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("../images/icons/arrow-right.svg") center / contain
    no-repeat;
  mask: url("../images/icons/arrow-right.svg") center / contain no-repeat;
  transform: translateX(-6px);
  transition:
    width 0.3s ease,
    margin-left 0.3s ease,
    opacity 0.2s ease,
    transform 0.3s ease;
}

.btn:hover::after,
.cta-button:hover::after {
  width: 12px;
  margin-left: 10px;
  opacity: 1;
  transform: translateX(0);
}

.btn-primary {
  padding: 22px 32px;
  border-radius: 32px;
  background-color: var(--primary);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.btn-secondary {
  padding: 22px 32px;
  border-radius: 32px;
  background-color: var(--light);
  color: var(--primary-dark);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

/* ===========================
04. Header
=========================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  background: var(--white);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(6, 47, 45, 0.08);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.logo {
  justify-self: start;
}

.logo img {
  width: 160px;
  height: auto;
}

.navbar {
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #5b5d62;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active {
  font-weight: 600;
}

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

.header .btn-primary {
  padding: 12px 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid #dce4e1;
  border-radius: 50%;
  background: #ffffff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-dark);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
05. Hero
=========================== */

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.hero h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 56px;
  line-height: 72px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
}

.hero p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--paragraph);
  max-width: 700px;
}

.hero span {
  color: var(--primary);
  font-style: italic;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-image {
  margin-top: 100px;
}

/* ==========================================
06. TRUSTED PARTNERS
========================================== */

.partners {
  padding: 0px 0 10px 0;
  background: #ffffff;
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #5b5d62;
  margin-bottom: 55px;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 21px;

  width: max-content;

  animation: scrollPartners 28s linear infinite;
}

.partner-card {
  width: 260px;
  height: 120px;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;

  transition: 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
}

.partner-card img {
  width: 65%;

  object-fit: contain;

  opacity: 0.75;

  filter: grayscale(100%);

  transition: 0.35s;
}

.partner-card .partner-logo-small {
  width: 40px;
  max-height: 52px;
}

.partner-card:hover img {
  opacity: 1;

  filter: grayscale(0);
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* Infinite Scroll */

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

/* What we do */

.services-scroll-section {
  position: relative;
  height: 500vh;
  background: #fff;
}

.services-header {
  text-align: center;
  padding: 0px 0px 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px;

  border: 1px solid #ddd;
  border-radius: 40px;

  font-size: 13px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;

  background: var(--primary);
  border-radius: 50%;
}

.services-header h2 {
  margin-top: 32px;

  font-size: 48px;
  font-weight: 600;
  font-family: "Libre Baskerville", serif;
}

.sticky-wrapper {
  position: sticky;
  top: 0;

  height: 100vh;

  display: flex;
  align-items: center;
}

.services-layout {
  width: 90%;
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service {
  position: relative;

  padding: 35px 0 35px 50px;

  border-bottom: 1px solid #eee;

  opacity: 0.35;

  cursor: pointer;

  transition: 0.4s;
}

.service.active {
  opacity: 1;
}

.service::before {
  content: "";

  position: absolute;

  left: 0;
  top: 35px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #ddd;

  transition: 0.35s;
}

.service.active::before {
  width: 1px;
  height: 150px;

  border-radius: 999px;

  background: var(--primary);
}

.service h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
  font-family: "Libre Baskerville", serif;
}

.service p {
  color: #5b5d62;
  line-height: 30px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  max-width: 440px;
  letter-spacing: -1.5%;
}

.service a {
  display: inline-block;
  margin-top: 20px;

  color: #00897b;
  text-decoration: none;
  font-weight: 600;
}

.service:not(.active) p,
.service:not(.active) a {
  display: none;
}

.service-image {
  border-radius: 22px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  display: block;

  transition: 0.35s;
}

.mobile-image {
  display: none;
}

.mobile-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* ===========================
Why LifeDev
=========================== */

.why-lifedev {
  padding: 120px 0;
  background: #052725;
}

.why-lifedev-container {
  width: 84%;
  max-width: 1272px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(90px, 10.5vw, 160px);
}

.why-lifedev-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(25, 153, 146, 0.4);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.why-lifedev-label span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #199992;
}

.why-lifedev h2 {
  max-width: 520px;
  color: #c1fcca;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(42px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -1.5px;
}

.why-lifedev-copy {
  max-width: 500px;
  margin-top: 38px;
}

.why-lifedev-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.why-lifedev-copy p + p {
  margin-top: 26px;
}

.why-lifedev-visual {
  overflow: hidden;
  border-radius: 12px;
}

.why-lifedev-visual img {
  width: 100%;
  height: auto;
}

/* ===========================
Our Focus Areas
=========================== */

.focus-areas {
  --focus-card-width: 252px;
  --focus-active-card-width: 444px;
  --focus-card-gap: 24px;
  padding: 120px 0 156px;
  background: #ffffff;
  overflow: hidden;
}

.focus-areas-container {
  width: 84%;
  max-width: 1272px;
  margin: 0 auto;
}

.focus-areas-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 18px;
  border: 1px solid #d7dee6;
  border-radius: 999px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.focus-areas-label span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #0f766e;
}

.focus-areas-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.focus-areas h2 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(42px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -1.5px;
}

.focus-areas h2 em,
.focus-areas h2 span {
  display: block;
}

.focus-areas h2 em {
  color: #0f766e;
}

.focus-areas-controls {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
}

.focus-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #0f766e;
  color: #ffffff;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.focus-arrow:not(:disabled):hover {
  background: #096b65;
  transform: translateY(-2px);
}

.focus-arrow:disabled {
  background: #edf2f6;
  color: #bdcbd7;
  cursor: not-allowed;
}

.focus-arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-areas-carousel {
  position: relative;
}

.focus-areas-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.focus-areas-viewport.is-dragging {
  cursor: grabbing;
}

.focus-edge-zone {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .focus-edge-zone {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    display: block;
    width: calc((100vw - 100%) / 2);
  }

  .focus-edge-zone-previous {
    right: 100%;
    cursor: w-resize;
  }

  .focus-edge-zone-next {
    left: 100%;
    cursor: e-resize;
  }

  .focus-edge-zone.is-disabled {
    pointer-events: none;
  }
}

.focus-areas-track {
  display: flex;
  align-items: stretch;
  gap: var(--focus-card-gap);
  width: max-content;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.focus-areas-viewport.is-dragging .focus-areas-track {
  transition: none;
}

.focus-card {
  width: var(--focus-card-width);
  height: 390px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 31px 26px;
  border: 1px solid #e3e7ec;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.focus-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.3);
  outline-offset: 3px;
}

.focus-card.is-active {
  width: var(--focus-active-card-width);
  border-color: #9ee4aa;
  background: #eafeed;
  cursor: default;
}

.focus-card-icon {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  fill: none;
  stroke: #0f766e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-card-content h3 {
  max-width: 300px;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.focus-card-content p {
  max-width: 350px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: #4f5655;
  font-size: 16px;
  line-height: 1.55;
  transition:
    max-height 0.35s ease,
    margin-top 0.35s ease,
    opacity 0.25s ease;
}

.focus-card.is-active .focus-card-content p {
  max-height: 90px;
  margin-top: 16px;
  opacity: 1;
}

/* ===========================
Featured Initiatives
=========================== */

.featured-initiatives {
  padding: 100px 0 120px;
  background: #f5f8fa;
}

.featured-initiatives-container {
  width: 84%;
  max-width: 1272px;
  margin: 0 auto;
}

.featured-initiatives-label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 42px;
  padding: 10px 18px;
  border: 1px solid #d7dee6;
  border-radius: 999px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.featured-initiatives-label span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #0f766e;
}

.featured-initiatives h2 {
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(42px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1.5px;
  text-align: center;
}

.featured-initiatives h2 em {
  color: #0f766e;
}

.featured-initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}

.initiative-card {
  min-height: 468px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 50px 49px;
  border-radius: 12px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.initiative-card:hover,
.initiative-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(6, 47, 45, 0.08);
}

.initiative-card-borderless {
  background: #ffe9a1;
}

.initiative-card-primary-care {
  background: #c1e2ff;
}

.initiative-card-venture {
  background: #c1fcca;
}

.initiative-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.6px;
}

.initiative-card p {
  margin-top: 20px;
  color: #202424;
  font-size: 17px;
  line-height: 1.75;
}

.initiative-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border: 1px solid rgba(15, 118, 110, 0.25);
  border-radius: 999px;
  color: #151919;
  font-size: 14px;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.initiative-button:hover {
  border-color: rgba(15, 118, 110, 0.5);
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.initiative-button:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.3);
  outline-offset: 3px;
}

.initiative-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===========================
Future of Public Health
=========================== */

.public-health-future {
  padding: 110px 0 115px;
  background: #f5f8fa;
}

.public-health-future-container {
  width: 84%;
  max-width: 1272px;
  margin: 0 auto;
}

.public-health-future-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 456px);
  align-items: start;
  gap: clamp(80px, 12vw, 240px);
}

.public-health-future h2 {
  max-width: 530px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(42px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1.5px;
}

.public-health-future h2 em {
  color: #0f766e;
}

.public-health-future-header p {
  padding-top: 5px;
  color: #61666d;
  font-size: 16px;
  line-height: 1.65;
}

.public-health-future-image {
  margin-top: 78px;
  overflow: hidden;
  border-radius: 12px;
}

.public-health-future-image img {
  width: 100%;
  height: auto;
}

/* ==========================================
12. CTA
========================================== */

.cta {
  position: relative;

  overflow: hidden;

  background: #062f2d;

  padding: 120px 0;
}

.cta-pattern {
  position: absolute;

  top: 0;

  left: 0;

  width: 65%;

  height: 100%;

  background: url("../images/backgrounds/cta-pattern.svg") no-repeat left center;

  background-size: contain;

  /* opacity: 0.18; */

  pointer-events: none;
}

.cta-container {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 100px;
}

.cta-left {
  flex: 1;
}

.cta-right {
  flex: 1;
}

.cta h2 {
  font-family: "Libre Baskerville", serif;

  font-size: 40px;

  line-height: 60px;
  letter-spacing: -1px;

  font-weight: 600px;

  color: #ffffff;
}

.cta h2.contactcta {
  font-family: "Libre Baskerville", serif;

  font-size: 35px;

  line-height: 60px;
  letter-spacing: -1px;

  font-weight: 600px;

  color: #ffffff;
}

.cta h2 span {
  color: #c9f5c7;

  font-style: italic;
}

.cta p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 42px;
}

.cta-button {
  display: inline-flex;

  align-items: center;

  gap: 0;

  padding: 18px 34px;

  border: 1.5px solid rgba(28, 139, 130, 0.7);

  border-radius: 999px;

  color: #d6f7d3;

  font-weight: 600;

  transition: 0.35s ease;
}

.cta-button:hover {
  background: var(--primary);

  border-color: var(--primary);

  color: #ffffff;
}

/* ==========================================
13. FOOTER
========================================== */

.footer {
  background: #031816;

  padding: 90px 0 40px;
}

/* =========================
Footer Top
========================= */

.footer-top {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 100px;
}

/* =========================
Brand
========================= */

.footer-brand {
  width: 40%;
}

.footer-logo img {
  width: 190px;

  display: block;

  margin-bottom: 28px;
}

.footer-description {
  color: #97a5a4;

  font-size: 16px;

  line-height: 1.8;

  max-width: 420px;

  margin-bottom: 35px;
}

/* =========================
Newsletter
========================= */

.newsletter {
  display: flex;

  align-items: center;

  gap: 14px;
}

.newsletter input {
  flex: 1;

  height: 56px;

  padding: 0 22px;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: transparent;

  color: white;

  font-size: 15px;

  outline: none;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter button {
  height: 56px;

  padding: 0 28px;

  border: none;

  border-radius: 999px;

  background: #c9f5c7;

  color: #031816;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;
}

.newsletter button:hover {
  background: #ffffff;
}

/* =========================
Links
========================= */

.footer-links {
  display: flex;

  gap: 80px;
}

.footer-column {
  display: flex;

  flex-direction: column;
}

.footer-column h4 {
  color: white;

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 25px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;

  margin-bottom: 18px;

  font-size: 15px;

  transition: 0.3s;
}

.footer-column a:hover {
  color: #c9f5c7;

  transform: translateX(4px);
}

/* =========================
Divider
========================= */

.footer-divider {
  width: 100%;

  height: 1px;

  background: rgba(255, 255, 255, 0.08);

  margin: 70px 0 35px;
}

/* =========================
Bottom
========================= */

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer-bottom p {
  color: #97a5a4;

  font-size: 14px;
}

.footer-bottom p a {
  color: var(--white);
}

/* =========================
Social Icons
========================= */

.footer-social {
  display: flex;

  gap: 18px;
}

.footer-social a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, 0.05);

  color: white;

  font-size: 16px;

  text-decoration: none;

  transition: 0.35s ease;
}

.footer-social a:hover {
  background: #1c8b82;

  transform: translateY(-4px);
}

/* ===========================
Solutions page
=========================== */

.solutions-hero {
  display: flex;
  align-items: center;
  min-height: 805px;
  padding: 50px 0 105px;
  background: #ffffff;
}

.solutions-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(60px, 8vw, 125px);
}

.solutions-hero-copy {
  max-width: 675px;
}

.solutions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  padding: 12px 20px;
  border: 1px solid #d8e0e7;
  border-radius: 999px;
  color: #292929;
  font-size: 15px;
  font-weight: 500;
}

.solutions-eyebrow > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #138d84;
}

.solutions-hero h1 {
  max-width: 670px;
  margin-bottom: 26px;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -4%;
  color: #1a1a1a;
}

.solutions-hero-copy > p {
  max-width: 630px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.solutions-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.solutions-hero-actions .btn {
  min-width: 180px;
  padding: 19px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.solutions-hero-visual {
  overflow: hidden;
  border-radius: 12px;
}

.solutions-hero-visual img {
  width: 100%;
  height: auto;
}

.solutions-approach {
  padding: 110px 0 125px;
  background: #f5f8fa;
  scroll-margin-top: 75px;
}

.solutions-approach-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: start;
  gap: clamp(70px, 10vw, 145px);
}

.solutions-approach-heading .solutions-eyebrow {
  margin-bottom: 34px;
}

.solutions-approach h2 {
  max-width: 585px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.solutions-approach-copy {
  padding-top: 2px;
}

.solutions-approach-copy p,
.solutions-approach-copy strong {
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.solutions-approach-copy p {
  margin-bottom: 32px;
  font-weight: 400;
}

.solutions-approach-copy strong {
  display: block;
  margin-top: 39px;
  font-weight: 700;
}

.innovation-areas {
  padding: 105px 0 140px;
  background: #ffffff;
}

.innovation-areas-intro {
  max-width: 790px;
  margin-bottom: 78px;
  text-align: center;
}

.innovation-areas-intro h2 {
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.innovation-areas-intro p {
  margin-top: 19px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.innovation-card-stack {
  perspective: 1400px;
}

.innovation-card {
  position: sticky;
  top: 95px;
  z-index: var(--innovation-index, 1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(610px, calc(100vh - 125px));
  margin-bottom: 20vh;
  overflow: hidden;
  border: 1px solid rgba(0, 105, 67, 0.12);
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 18px 46px rgba(3, 43, 32, 0.07);
  transform: translateY(var(--innovation-lift, 0))
    rotateX(var(--innovation-tilt, 0deg)) scale(var(--innovation-scale, 1));
  transform-origin: center top;
  transition: box-shadow 0.2s ease;
  will-change: transform;
}

.innovation-card:nth-child(1) {
  --innovation-index: 1;
}
.innovation-card:nth-child(2) {
  --innovation-index: 2;
}
.innovation-card:nth-child(3) {
  --innovation-index: 3;
}
.innovation-card:nth-child(4) {
  --innovation-index: 4;
}
.innovation-card:nth-child(5) {
  --innovation-index: 5;
}
.innovation-card:nth-child(6) {
  --innovation-index: 6;
  margin-bottom: 0;
}

.innovation-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 74px);
}

.innovation-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
}

.innovation-card h3 {
  max-width: 470px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.04em;
}

.innovation-card-content > p {
  max-width: 510px;
  margin-top: 20px;
  color: #3b3d40;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.015em;
}

.innovation-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 30px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 105, 67, 0.08);
}

.innovation-card li {
  position: relative;
  padding-left: 20px;
  color: #3b3d40;
  font-size: 13px;
  line-height: 1.5;
}

.innovation-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f766e;
  font-weight: 600;
}

.innovation-card-visual {
  min-height: 100%;
  overflow: hidden;
}

.innovation-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-principles {
  padding: 110px 0 120px;
  background: #effff2;
}

.solutions-principles-container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(65px, 8vw, 120px);
}

.solutions-principles-content {
  max-width: 650px;
}

.solutions-principles-content .solutions-eyebrow {
  margin-bottom: 34px;
  border-color: rgba(0, 105, 67, 0.18);
}

.solutions-principles h2 {
  max-width: 650px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.solutions-principles h2 em {
  color: #15988e;
  font-weight: inherit;
}

.solutions-principles-content > p {
  max-width: 650px;
  margin-top: 26px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.solutions-principles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
  margin-top: 39px;
}

.solutions-principles-list li {
  position: relative;
  padding-left: 42px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.solutions-principles-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #15988e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.solutions-principles-image {
  width: 100%;
  min-height: 540px;
  border-radius: 14px;
  background: #b9fac7;
}

.solutions-future {
  padding: 115px 0 130px;
  background: #ffffff;
}

.solutions-future-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: start;
  gap: clamp(75px, 11vw, 165px);
}

.solutions-future-heading .solutions-eyebrow {
  margin-bottom: 34px;
}

.solutions-future h2 {
  max-width: 575px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.solutions-future-copy {
  align-self: center;
  padding-top: 1px;
}

.solutions-future-copy p {
  max-width: 610px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.solutions-future-copy p + p {
  margin-top: 34px;
}

.solutions-products {
  padding: 105px 0 115px;
  background: #f5f8fa;
}

.solutions-products-container {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(75px, 11vw, 165px);
}

.solutions-products-image {
  width: 100%;
  min-height: 570px;
  border-radius: 14px;
  background: #b9fac7;
}

.solutions-products-content {
  max-width: 610px;
}

.solutions-products h2 {
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.solutions-products-content > p {
  max-width: 590px;
  margin-top: 28px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.solutions-products-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px;
  padding: 15px 24px;
  border: 1px solid #d5dde3;
  border-radius: 999px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.solutions-products-link span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.solutions-products-link:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.solutions-products-link:hover span {
  transform: translateX(4px);
}

/* ===========================
Impact page
=========================== */

.impact-hero {
  display: flex;
  align-items: center;
  min-height: 805px;
  padding: 50px 0 105px;
  background: #ffffff;
}

.impact-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(60px, 8vw, 125px);
}

.impact-hero-copy {
  max-width: 675px;
}

.impact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  padding: 12px 20px;
  border: 1px solid #d8e0e7;
  border-radius: 999px;
  color: #292929;
  font-size: 15px;
  font-weight: 500;
}

.impact-eyebrow > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #138d84;
}

.impact-hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.impact-hero-copy > p {
  max-width: 650px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
  text-align: left;
}

.impact-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.impact-hero-actions .btn {
  min-width: 180px;
  padding: 19px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.impact-hero-visual {
  overflow: hidden;
  border-radius: 12px;
}

.impact-hero-visual img {
  width: 100%;
  height: auto;
}

.impact-programs {
  padding: 50px 0 145px;
  background: #ffffff;
}

.impact-programs-intro {
  max-width: 1040px;
  margin-bottom: 95px;
  text-align: center;
}

.impact-programs-intro .impact-eyebrow {
  margin-bottom: 34px;
}

.impact-programs-intro h2 {
  color: #acb1bb;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.impact-heading-word {
  color: #acb1bb;
  transition: color 0.08s linear;
}

.impact-program-stack {
  perspective: 1500px;
}

.impact-program-card {
  position: sticky;
  top: 92px;
  z-index: var(--impact-program-index, 1);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  min-height: min(650px, calc(100vh - 120px));
  margin-bottom: 20vh;
  overflow: hidden;
  border: 1px solid #e1e5e8;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 60px 34px rgba(0, 0, 0, 0.1);
  transform: translateY(var(--impact-program-lift, 0))
    rotateX(var(--impact-program-tilt, 0deg)) scale(var(--impact-program-scale, 1));
  transform-origin: center top;
  will-change: transform;
}

.impact-program-card:nth-child(1) {
  --impact-program-index: 1;
}

.impact-program-card:nth-child(2) {
  --impact-program-index: 2;
}

.impact-program-card:nth-child(3) {
  --impact-program-index: 3;
  margin-bottom: 0;
}

.impact-program-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
}

.impact-program-label {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 10px 17px;
  border: 1px solid #dbe1e6;
  border-radius: 999px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.impact-program-card h3 {
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.04em;
}

.impact-program-content > p {
  max-width: 530px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.impact-program-content > p + p {
  margin-top: 27px;
}

.impact-program-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding: 14px 21px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.impact-program-link span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.impact-program-link:hover span {
  transform: translateX(4px);
}

.impact-program-topics {
  margin-top: 42px;
}

.impact-program-topics h4 {
  margin-bottom: 17px;
  color: #138d84;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.impact-program-topics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.impact-program-topics li {
  padding: 9px 14px;
  border: 1px solid #e1e6ea;
  border-radius: 999px;
  color: #5a5d61;
  font-size: 12px;
  line-height: 1.3;
}

.impact-program-visual {
  margin: clamp(38px, 4vw, 58px);
  margin-left: 0;
  overflow: hidden;
  border-radius: 14px;
}

.impact-program-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-program-card:nth-child(3) .impact-program-visual img {
  object-fit: contain;
  object-position: center;
}

.impact-matters {
  padding: 115px 0 130px;
  background: #f5f8fa;
}

.impact-matters-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: start;
  gap: clamp(75px, 11vw, 165px);
}

.impact-matters-heading .impact-eyebrow {
  margin-bottom: 34px;
}

.impact-matters h2 {
  max-width: 580px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.04em;
}

.impact-matters-copy p {
  max-width: 630px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

.impact-matters-copy p + p {
  margin-top: 34px;
}

.impact-all-programs {
  padding: 110px 0 130px;
  background: #ffffff;
}

.impact-all-programs-intro {
  max-width: 790px;
  margin-bottom: 70px;
  text-align: center;
}

.impact-all-programs-intro .impact-eyebrow {
  margin-bottom: 34px;
}

.impact-all-programs-intro h2 {
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.04em;
}

.impact-all-programs-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.impact-program-summary {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 38px 34px 34px;
  border: 1px solid #dfe5e9;
  border-radius: 12px;
  background: #f8fafc;
}

.impact-program-summary:nth-child(n + 4) {
  grid-column: span 3;
}

.impact-program-summary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.impact-program-summary h3 {
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.impact-program-summary-header i {
  flex: 0 0 auto;
  color: #138d84;
  font-size: 24px;
}

.impact-program-summary ul {
  margin-top: 40px;
}

.impact-program-summary li {
  position: relative;
  padding-left: 21px;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.015em;
}

.impact-program-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 500;
}

.impact-goals {
  padding: 110px 0 125px;
  background: #f5f8fa;
}

.impact-goals-container {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(560px, 1.18fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.impact-goals-heading .impact-eyebrow {
  margin-bottom: 34px;
  border-color: rgba(0, 105, 67, 0.18);
}

.impact-goals h2 {
  max-width: 500px;
  color: #1a1a1a;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.04em;
}

.impact-goals-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(21, 152, 142, 0.25);
  border-radius: 18px;
}

.impact-goals-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  min-height: 145px;
  padding: 30px 32px;
  border-bottom: 1px solid rgba(21, 152, 142, 0.22);
}

.impact-goals-list li:nth-child(odd) {
  border-right: 1px solid rgba(21, 152, 142, 0.22);
}

.impact-goals-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.impact-goals-list span {
  color: #15988e;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.impact-goals-list p {
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.015em;
}

/* ===========================
Contact page
=========================== */

.contact-hero {
  padding: 100px 0 120px;
  background: #ffffff;
}

.contact-hero-content {
  max-width: 1200px;
  text-align: center;
}

.contact-hero-copy {
  max-width: 940px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  padding: 11px 20px;
  border: 1px solid #d7e5df;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.contact-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.contact-hero h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: -1.7px;
  font-weight: 500;
}

.contact-hero p {
  max-width: 880px;
  margin: 27px auto 0;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
}

.contact-hero-image {
  margin-top: 88px;
  overflow: hidden;
  border-radius: 12px;
}

.contact-hero-image img {
  width: 100%;
  height: clamp(450px, 48vw, 610px);
  object-fit: cover;
  object-position: center;
}

.contact-section {
  padding: 70px 0 0;
}

.contact-section-header {
  max-width: 610px;
  text-align: center;
}

.contact-section-header h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: -1px;
  font-weight: 500;
  scroll-margin-top: 110px;
}

.contact-section-header p {
  max-width: 440px;
  margin: 26px auto 0;
  color: #262626;
  font-size: 16px;
  line-height: 1.65;
}

.contact-form-container {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.contact-info-section {
  padding: 90px 0 105px;
  background: #ffffff;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(45px, 7vw, 95px);
}

.contact-method {
  display: block;
  padding: 0;
  border: 0;
}

.contact-method h3 {
  padding-bottom: 17px;
  border-bottom: 1px solid #e4e4e4;
  color: #087a72;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  line-height: 1.3;
}

.contact-method-copy {
  padding-top: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-method-copy strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-method-copy p {
  max-width: 220px;
  margin-top: 5px;
}

.contact-form {
  width: 100%;
  max-width: 760px;
  padding: 44px;
  border: 0;
  border-radius: 12px;
  background: #f5f8fa;
  box-shadow: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-field {
  margin-bottom: 31px;
}

.form-field label {
  display: block;
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 500;
}

.form-field label span {
  color: #858b8a;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 55px;
  padding: 15px 18px;
  border: 1px solid #c8d0d4;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #94a1a4;
}
.form-field select {
  color: #94a1a4;
}
.form-field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}
.contact-submit {
  width: 100%;
  min-height: 57px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: #13847b;
  font-size: 14px;
  font-weight: 600;
}

.contact-submit::after {
  width: 12px;
  margin-left: 14px;
  opacity: 1;
  transform: translateX(0);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-form-website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-status {
  min-height: 24px;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-status.is-success {
  color: #087a72;
}

.contact-form-status.is-error {
  color: #b42318;
}

/* ===========================
Contact help cards
=========================== */

.contact-help {
  padding: 115px 0 125px;
  background: #f5f8fa;
}

.contact-help-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-help h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: -1.5px;
  text-align: center;
  font-weight: 500;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 75px;
}

.contact-help-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dde4e7;
  border-radius: 12px;
  background: #ffffff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-help-card:hover,
.contact-help-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(6, 47, 45, 0.08);
}

.contact-help-illustration {
  width: 100%;
  height: auto;
  aspect-ratio: 306 / 193;
  object-fit: cover;
}

.contact-help-content {
  flex: 1;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 28px 30px 30px;
}

.contact-help-content h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  line-height: 1.45;
}

.contact-help-content > div > p {
  margin-top: 14px;
  color: #666c72;
  font-size: 15px;
  line-height: 1.55;
}

.contact-help-action > p {
  color: #2c3030 !important;
}

.contact-help-action p a {
  color: #14877f;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.contact-help-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #14877f;
  font-size: 15px;
  font-weight: 600;
}

.contact-help-link span {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.contact-help-link:hover span {
  transform: translateX(5px);
}

/* ===========================
Contact FAQ
=========================== */

.contact-faq {
  padding: 120px 0 135px;
  background: #ffffff;
}

.contact-faq-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(560px, 1.45fr);
  gap: clamp(80px, 11vw, 170px);
  margin: 0 auto;
}

.contact-faq h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1.8px;
}

.contact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-faq-item {
  border-radius: 12px;
  background: #f5f5f6;
}

.contact-faq-item summary {
  position: relative;
  padding: 32px 72px 32px 34px;
  color: #202124;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  width: 11px;
  height: 11px;
  border-right: 2px solid #60666d;
  border-bottom: 2px solid #60666d;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.contact-faq-item[open] summary {
  padding-bottom: 15px;
}

.contact-faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.contact-faq-item > p {
  padding: 0 72px 31px 34px;
  color: #656a70;
  font-size: 16px;
  line-height: 1.65;
}

.contact-faq-item summary:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.25);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ===========================
About page
=========================== */

.about-hero {
  padding: 100px 0 120px;
  background: #ffffff;
}

.about-hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-copy {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  padding: 10px 19px;
  border: 1px solid #d7e0e5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.about-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.about-hero h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(35px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1.8px;
}

.about-hero-copy > p {
  max-width: 900px;
  margin: 25px auto 0;
  color: #303335;
  font-size: 16px;
  line-height: 1.7;
}

.about-hero-image {
  margin-top: 78px;
  overflow: hidden;
  border-radius: 12px;
}

.about-hero-image img {
  width: 100%;
  height: clamp(500px, 47vw, 610px);
  object-fit: cover;
  object-position: center;
}

/* ===========================
About story
=========================== */

.about-story {
  padding: 100px 0 130px;
  background: #f5f8fa;
}

.about-story-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  gap: 120px;
  margin: 0 auto;
}

.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding: 10px 19px;
  border: 1px solid #d7e0e5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.story-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.about-story h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1.5px;
}

.about-story-copy {
  padding-top: 2px;
}

.about-story-copy strong {
  display: block;
  margin-bottom: 34px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.about-story-copy p {
  color: #303335;
  font-size: 16px;
  line-height: 1.75;
}

.about-story-copy p + p {
  margin-top: 32px;
}

/* ===========================
About team
=========================== */

.about-team {
  padding: 115px 0 130px;
  background: #ffffff;
}
.about-team-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.about-team-intro {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 120px;
  align-items: end;
}
.team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
  padding: 10px 19px;
  border: 1px solid #d7e0e5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}
.team-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.about-team-intro h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -1.5px;
}
.about-team-intro h2 em {
  color: var(--primary);
}
.about-team-intro > p {
  color: #303335;
  font-size: 16px;
  line-height: 1.7;
}
.team-experience {
  margin-top: 105px;
  text-align: center;
}
.team-experience h3 {
  color: #6b7075;
  font-size: 13px;
  letter-spacing: 4px;
}
.team-logo-list {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 42px 65px;
  margin: 55px auto 0;
}
.team-logo-list img {
  width: auto;
  max-width: 145px;
  height: 42px;
  object-fit: contain;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 125px;
}
.team-card,
.team-opportunity {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe5e8;
  border-radius: 12px;
  background: #fff;
}
.team-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.team-card:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.25);
  outline-offset: 3px;
}
.team-card-visual {
  position: relative;
  aspect-ratio: 303 / 347;
  overflow: hidden;
  background: #f5f8fa;
}
.team-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 0.16s ease,
    transform 0.25s ease;
}
.team-portrait {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96%;
  object-fit: contain;
  object-position: bottom center;
  transition: opacity 0.13s ease;
}
.team-portrait-inactive {
  z-index: 2;
  filter: grayscale(1);
  opacity: 1;
}
.team-portrait-active {
  z-index: 3;
  opacity: 0;
  transition-delay: 0s;
}
.team-card:hover,
.team-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(6, 47, 45, 0.09);
}
.team-card:hover .team-card-bg,
.team-card:focus .team-card-bg {
  opacity: 1;
  transform: scale(1);
}
.team-card:hover .team-portrait-inactive,
.team-card:focus .team-portrait-inactive {
  opacity: 0;
}
.team-card:hover .team-portrait-active,
.team-card:focus .team-portrait-active {
  opacity: 1;
  transition-delay: 0.12s;
}
.team-card-info {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
}
.team-card-info h3 {
  font-size: 14px;
  line-height: 1.4;
}
.team-card-info p {
  margin-top: 5px;
  color: var(--primary);
  font-size: 12px;
}
.team-card-info a {
  flex: 0 0 auto;
  color: #151918;
  font-size: 16px;
}
.team-opportunity {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 30px;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.3s ease;
}
.team-opportunity h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
.team-opportunity p {
  max-width: 220px;
  margin-top: 22px;
  color: #6a7074;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.22s ease;
}
.team-opportunity a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 21px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
}
.team-opportunity:hover,
.team-opportunity:focus {
  background: #002b27;
  color: #c9f5c7;
  transform: translateY(-4px);
}
.team-opportunity:hover p,
.team-opportunity:focus p {
  color: rgba(255, 255, 255, 0.78);
}
.team-opportunity:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.25);
  outline-offset: 3px;
}

/* ===========================
About pillars
=========================== */

.about-pillars {
  padding: 115px 0 130px;
  background: #f5f8fa;
}
.about-pillars-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.pillars-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding: 10px 19px;
  border: 1px solid #d7e0e5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}
.pillars-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.about-pillars h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -1.5px;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 72px;
  text-align: left;
}
.pillar-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dde4e7;
  border-radius: 12px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(6, 47, 45, 0.08);
}
.pillar-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 306 / 219;
  object-fit: cover;
}
.pillar-card-content {
  min-height: 290px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 30px 30px;
}
.pillar-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  line-height: 1.45;
}
.pillar-card p {
  margin-top: 15px;
  color: #666c72;
  font-size: 15px;
  line-height: 1.55;
}
.pillar-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #14877f;
  font-size: 15px;
  font-weight: 600;
}
.pillar-card a span {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.25s ease;
}
.pillar-card a:hover span {
  transform: translateX(5px);
}

/* ===========================
About mission and vision
=========================== */

.about-purpose {
  padding: 115px 0 130px;
  background: #ffffff;
}

.about-purpose-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 160px;
  margin: 0 auto;
}

.purpose-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.purpose-item h2 {
  margin-top: 58px;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.5px;
}

.purpose-item p {
  max-width: 555px;
  margin-top: 30px;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.75;
}

/* ===========================
About values
=========================== */

.about-values {
  padding: 105px 0 115px;
  background: #eafeed;
}

.about-values-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-values h2 {
  padding-bottom: 58px;
  border-bottom: 1px solid #cce5d0;
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.5px;
}

.values-list {
  list-style: none;
}

.value-item {
  display: grid;
  grid-template-columns: 42px minmax(240px, 0.85fr) minmax(420px, 1.35fr);
  align-items: center;
  gap: 0 18px;
  min-height: 122px;
  border-bottom: 1px solid #cce5d0;
}

.value-item:last-child {
  border-bottom: 0;
}

.value-number {
  color: #88cdb6;
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
}

.value-item h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.value-item p {
  color: #292d2c;
  font-size: 16px;
  line-height: 1.65;
}

/* ===========================
About looking ahead
=========================== */

.about-future {
  padding: 115px 0 130px;
  background: #ffffff;
}

.about-future-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  gap: 120px;
  margin: 0 auto;
}

.future-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding: 10px 19px;
  border: 1px solid #d7e0e5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

.future-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.about-future h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -1.5px;
}

.about-future-copy p {
  color: #303335;
  font-size: 16px;
  line-height: 1.75;
}

.about-future-copy p + p {
  margin-top: 32px;
}

.about-future-copy strong {
  display: block;
  margin-top: 34px;
  font-size: 17px;
  line-height: 1.6;
}
