:root {
  --green: #003f35;
  --green-2: #075b4a;
  --green-3: #0d7460;
  --orange: #f47b10;
  --orange-2: #ff9b31;
  --cream: #fbfaf5;
  --paper: #ffffff;
  --ink: #11342f;
  --muted: #60716c;
  --line: #e7ebe6;
  --shadow: 0 18px 45px rgba(8, 54, 46, 0.12);
  --soft-shadow: 0 10px 28px rgba(8, 54, 46, 0.09);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-reveal {
  --reveal-delay: 0ms;
}

html.scroll-reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

html.scroll-reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.scroll-reveal-ready .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .partner-logo-loop.is-looping {
    animation: none;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 63, 53, 0.08);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 168px;
  height: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
  isolation: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 27px 0 25px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-3);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.btn-green {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
}

.btn-orange {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.btn-green-outline {
  color: var(--green);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--green);
  box-shadow: none;
}

.btn-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 515px;
  overflow: hidden;
  background: #eef3ee;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 33%, rgba(255, 255, 255, 0.12) 57%, rgba(255, 255, 255, 0) 100%),
    url("../images/home/hero-page.jpeg") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
}

.hero-leaves {
  position: absolute;
  bottom: 42px;
  left: -18px;
  width: clamp(140px, 16vw, 245px);
  max-width: none;
  opacity: 0.9;
  filter: drop-shadow(0 12px 20px rgba(0, 63, 53, 0.16));
  transform: rotate(-7deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 150px;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow span,
.kicker.gold,
.gold {
  color: var(--orange);
}

.hero h1,
.section h2,
.movement h2,
.tourism h2,
.leadership h2,
.footer-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 30px;
  color: #29463f;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stats-float {
  position: relative;
  z-index: 4;
  width: min(930px, calc(100% - 40px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 63, 53, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 100px;
  padding: 22px;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.stat-item small {
  color: #1f3c37;
  font-size: 12px;
  font-weight: 600;
}

.line-icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--green);
  background: currentColor;
  mask: radial-gradient(circle, #000 50%, transparent 51%);
  -webkit-mask: radial-gradient(circle, #000 50%, transparent 51%);
}

.line-icon.doctor {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath d='M4 21c.8-4.4 3.4-7 8-7s7.2 2.6 8 7'/%3E%3Cpath d='M12 17v4M10 19h4'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath d='M4 21c.8-4.4 3.4-7 8-7s7.2 2.6 8 7'/%3E%3Cpath d='M12 17v4M10 19h4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.line-icon.globe {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.line-icon.leaf {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M20 4C11 4 5 9 4 20c11-1 16-7 16-16Z'/%3E%3Cpath d='M4 20 15 9'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M20 4C11 4 5 9 4 20c11-1 16-7 16-16Z'/%3E%3Cpath d='M4 20 15 9'/%3E%3C/svg%3E") center/contain no-repeat;
}

.line-icon.heart {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M12 21C7 17 3 14 3 9a4 4 0 0 1 7-2.7A4 4 0 0 1 17 9c0 5-4 8-5 12Z'/%3E%3Cpath d='M4 16h4l2-4 3 6 2-4h5'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M12 21C7 17 3 14 3 9a4 4 0 0 1 7-2.7A4 4 0 0 1 17 9c0 5-4 8-5 12Z'/%3E%3Cpath d='M4 16h4l2-4 3 6 2-4h5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.line-icon.building,
.line-icon.shield,
.line-icon.badge {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M5 21V8l7-5 7 5v13'/%3E%3Cpath d='M9 21v-7h6v7M8 10h1M15 10h1'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M5 21V8l7-5 7 5v13'/%3E%3Cpath d='M9 21v-7h6v7M8 10h1M15 10h1'/%3E%3C/svg%3E") center/contain no-repeat;
}

.section,
.section-tight {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 70px 0 38px;
}

.section-tight {
  margin-top: 40px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  color: var(--green);
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.12;
}

.section-heading p:not(.kicker) {
  margin: 12px 0 0;
  color: var(--muted);
}

.compact {
  margin-bottom: 18px;
}

.compact h2 {
  font-family: var(--sans);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.heading-leaf {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-left: 6px;
  vertical-align: -3px;
  background: var(--green-3);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M20 4C11 4 5 9 4 20c11-1 16-7 16-16Z'/%3E%3Cpath d='M4 20 15 9'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M20 4C11 4 5 9 4 20c11-1 16-7 16-16Z'/%3E%3Cpath d='M4 20 15 9'/%3E%3C/svg%3E") center/contain no-repeat;
}

.carousel-shell {
  position: relative;
}

.service-track {
  display: grid;
  grid-auto-columns: calc((100% - 80px) / 5);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar,
.logo-row::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
  scroll-snap-align: start;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  background: #f4f6f4;
}

.service-card h3 {
  min-height: 58px;
  margin: 14px 18px 10px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.22;
}

.service-card p {
  min-height: 74px;
  margin: 0 18px 14px;
  color: #263f39;
  font-size: 14px;
}

.service-card a {
  display: inline-flex;
  margin: 0 18px 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.service-card a span {
  color: var(--orange);
}

.arrow {
  position: absolute;
  top: 45%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.arrow-left {
  left: -26px;
}

.arrow-right {
  right: -26px;
}

.arrow.small {
  position: static;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  font-size: 25px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 18px;
}

.dots span,
.dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #c9d0cd;
  border: 0;
  cursor: pointer;
}

.dots .active,
.dots button.active {
  background: var(--orange);
}

.center-btn {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

.movement {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 18px;
  padding: 18px 22px;
  color: #fff;
  background:
    radial-gradient(circle at 27% 55%, rgba(230, 156, 35, 0.18), transparent 30%),
    linear-gradient(135deg, #003f35 0%, #004d42 58%, #003f35 100%);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.movement h2 {
  font-size: 44px;
  line-height: 1.05;
}

.movement-intro p:not(.kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.movement-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.movement-stats article {
  padding: 4px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.21);
  text-align: center;
}

.movement-stats article:last-child {
  border-right: 0;
}

.movement-stats .line-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  color: var(--orange-2);
}

.movement-stats span {
  display: block;
  color: var(--orange-2);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
}

.movement-stats p {
  min-height: 86px;
  margin: 10px 0 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.movement-stats small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.life-care {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding-top: 42px;
}

.life-care .kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.life-care .kicker .heading-leaf {
  margin-left: 0;
}

.life-care-kicker-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.life-care h2 {
  margin: 0;
  color: #013f35;
  font-family: var(--serif);
  font-size: clamp(42px, 4.7vw, 66px);
  font-weight: 700;
  line-height: 1.04;
  white-space: nowrap;
}

.life-care h2 span {
  color: #079a78;
}

.life-care h3 {
  margin: 14px 0 12px;
  color: #1d2727;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.35;
}

.life-care-copy > p:not(.kicker) {
  max-width: 690px;
  margin: 0;
  color: #263f39;
  font-size: 15px;
}

.life-care-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 18px;
}

.life-care-cards article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 182px;
  padding: 18px 13px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.life-care-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.life-care-cards h4 {
  min-height: 47px;
  margin: 11px 0 7px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.12;
}

.life-care-cards p {
  margin: 0;
  color: #1e2f2b;
  font-size: 13px;
  line-height: 1.45;
}

.life-care-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.life-care-actions .btn {
  min-width: 205px;
  gap: 12px;
}

.life-care-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.life-care-panel-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: fill;
  border-radius: 12px;
}

.life-care-banner-copy {
  position: absolute;
  top: 56.2%;
  left: 13.4%;
  width: 50%;
}

.life-care-banner-copy p {
  max-width: 310px;
  margin: 0 0 18px;
  color: #1e2f2b;
  font-size: clamp(10px, 0.95vw, 14px);
  line-height: 1.45;
}

.life-care-banner-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.life-care-banner-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e2f2b;
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 600;
  line-height: 1.25;
}

.life-care-banner-copy li img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.life-care-impact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.life-care-impact div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 84px;
  padding: 17px 22px;
}

.life-care-impact div + div {
  border-left: 1px solid var(--line);
}

.life-care-impact .life-care-icon {
  width: 58px;
  height: 58px;
}

.life-care-impact strong {
  color: var(--green);
  font-size: 16px;
  line-height: 1.25;
}

.tourism {
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.tourism-content {
  padding: 34px 28px;
}

.tourism h2 {
  color: var(--green);
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.08;
}

.tourism p:not(.kicker) {
  max-width: 430px;
  color: #405a54;
}

.tourism img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.icon-grid span {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.icon-grid .line-icon {
  width: 33px;
  height: 33px;
}

.leadership {
  position: relative;
  display: grid;
  grid-template-columns: 33% 1fr 34%;
  gap: 34px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #003f35 url("../images/home/leadership-banner.jpeg") center / cover no-repeat;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.leadership::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 63, 53, 0) 0 32%, rgba(0, 63, 53, 0.1) 44%, rgba(0, 63, 53, 0.32) 100%);
  pointer-events: none;
}

.leader-photo,
.leader-copy,
.leader-features {
  position: relative;
  z-index: 1;
}

.leader-photo {
  min-height: 410px;
}

.leader-copy {
  padding: 34px 22px 34px 0;
}

.leader-copy h2 {
  font-size: 35px;
  line-height: 1.1;
}

.leader-copy h3 {
  margin: 14px 0 2px;
  color: var(--orange-2);
  font-size: 20px;
}

.leader-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.role {
  margin-top: 0;
  color: #fff !important;
  font-weight: 700;
}

.signature {
  color: #ffbd61 !important;
  font-family: var(--serif);
  font-size: 20px !important;
  font-style: italic;
}

.leader-features {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 40px 32px 40px 58px;
  margin: 40px 0;
  list-style: none;
}

.leader-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.leader-features .line-icon {
  width: 38px;
  height: 38px;
  color: var(--orange-2);
}

.future {
  padding-top: 35px;
}

.services .kicker,
.future .kicker,
#partners-title,
#testimonials-title {
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.12;
}

.services .kicker,
.future .kicker {
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
  color: var(--green);
  font-family: var(--serif);
  font-weight: 700;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.future-grid article,
.testimonial-card,
.logo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.future-grid article {
  padding: 22px 20px;
}

.future-grid .line-icon {
  width: 38px;
  height: 38px;
}

.future-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.1;
}

.future-grid p {
  min-height: 64px;
  margin: 8px 0 14px;
  color: #324943;
  font-size: 13px;
}

.future-grid small {
  color: #213b35;
  font-size: 11px;
  font-weight: 800;
}

.logo-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partner-logo-carousel {
  position: relative;
  display: block;
  overflow: hidden;
}

.partner-logo-carousel .arrow {
  display: none;
}

.partner-logo-mask {
  position: relative;
  overflow: hidden;
}

.partner-logo-mask::before,
.partner-logo-mask::after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 68px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.partner-logo-mask::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), rgba(251, 250, 245, 0));
}

.partner-logo-mask::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream), rgba(251, 250, 245, 0));
}

.logo-row {
  display: grid;
  grid-auto-columns: minmax(280px, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.partner-logo-loop {
  --partner-loop-distance: 0px;
  display: flex;
  width: max-content;
  overflow: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.partner-logo-loop .logo-card {
  flex: 0 0 min(280px, 72vw);
}

.partner-logo-loop.is-looping {
  animation: partnerLogoLoop 36s linear infinite;
}

.partner-logo-mask:hover .partner-logo-loop.is-looping,
.partner-logo-mask:focus-within .partner-logo-loop.is-looping {
  animation-play-state: paused;
}

.partner-logo-loop [data-logo-clone="true"] {
  pointer-events: none;
}

@keyframes partnerLogoLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--partner-loop-distance) * -1), 0, 0);
  }
}

.logo-card {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 14px 16px;
}

.logo-card img {
  width: 100%;
  max-width: 245px;
  max-height: 150px;
  object-fit: contain;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 24px;
}

.stars {
  color: #ff9d13;
  letter-spacing: 2px;
}

.testimonial-card p {
  min-height: 80px;
  color: #263d38;
  font-size: 15px;
}

.person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.person img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong,
.person small {
  display: block;
}

.person small {
  color: var(--muted);
}

.footer {
  position: relative;
  margin-top: 36px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 20%, rgba(37, 130, 82, 0.28), transparent 20%),
    radial-gradient(ellipse at 100% 18%, rgba(37, 130, 82, 0.28), transparent 20%),
    linear-gradient(120deg, #003b33 0%, #00473d 52%, #00372f 100%);
}

.footer-leaf {
  position: absolute;
  bottom: 120px;
  z-index: 1;
  width: 140px;
  max-width: none;
  opacity: 0.72;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.18));
}

.footer-leaf-left {
  left: -45px;
  transform: rotate(-15deg);
}

.footer-leaf-right {
  right: -45px;
  transform: scaleX(-1) rotate(-15deg);
}

.footer-cta,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: 86px 1.8fr 1fr 250px;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-seal {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 26px;
}

.footer-cta h2 {
  max-width: 520px;
  font-size: clamp(24px, 2.5vw, 46px);
  line-height: 1.05;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-actions {
  display: grid;
  gap: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.25fr 1.3fr;
  gap: 56px;
  padding: 22px 0 14px;
}

.brand-footer {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: max-content;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer-main a {
  display: block;
  margin: 5px 0;
}

.footer-about p {
  max-width: 310px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.socials img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-main > div:last-child p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-main > div:last-child .line-icon {
  width: 18px;
  height: 18px;
  color: var(--orange-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
}

.life-connect-template {
  background: #fff;
}

.life-connect-template .navbar {
  width: min(1240px, calc(100% - 40px));
  gap: 20px;
}

.life-connect-template .brand img {
  width: 154px;
}

.life-connect-template .nav-panel {
  gap: 20px;
}

.life-connect-template .nav-links {
  gap: 20px;
  font-size: 13px;
}

.lcc-page {
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, #fbfaf5 100%);
}

.lcc-hero {
  position: relative;
  min-height: 302px;
  overflow: hidden;
  background: #eef5f1;
}

.lcc-hero img {
  width: 100%;
  height: 302px;
  object-fit: cover;
  object-position: center;
}

.lcc-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.84) 26%, rgba(255, 255, 255, 0.14) 57%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.lcc-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  pointer-events: none;
}

.lcc-hero h1 {
  margin: 0 0 6px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
}

.lcc-hero p {
  max-width: 560px;
  margin: 0;
  color: #101f1c;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.45;
}

.lcc-intro,
.lcc-focus-grid,
.lcc-benefits,
.lcc-impact,
.lcc-programs,
.lcc-partner-cta {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.lcc-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: center;
  padding: 34px 0 26px;
}

.lcc-intro-copy {
  padding: 6px 0;
}

.lcc-intro-copy h2,
.lcc-impact-copy h2,
.lcc-partner-cta h2 {
  margin: 8px 0 16px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.08;
}

.lcc-intro-copy h2 span,
.lcc-impact-copy h2 span {
  color: var(--orange);
}

.lcc-intro-copy p:not(.kicker),
.lcc-impact-copy p,
.lcc-partner-cta p {
  max-width: 620px;
  color: #273d39;
  font-size: 15px;
}

.lcc-intro-copy .btn {
  margin-top: 14px;
}

.lcc-mission-card {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 63, 53, 0.1);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.lcc-logo-wrap {
  display: grid;
  min-height: 236px;
  place-items: center;
  padding: 28px;
}

.lcc-logo-wrap img {
  width: min(270px, 100%);
}

.lcc-mission-copy {
  display: grid;
  align-content: center;
  padding: 30px 34px 30px 4px;
}

.lcc-mission-copy h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 20px;
}

.lcc-mission-copy p {
  margin: 0;
  color: #273d39;
  font-size: 14px;
}

.lcc-pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.lcc-pillars span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 70px;
  color: var(--green);
  font-weight: 800;
  border-left: 1px solid var(--line);
}

.lcc-pillars span:first-child {
  border-left: 0;
}

.lcc-pillars img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.lcc-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0 0 22px;
}

.lcc-focus-grid article {
  display: grid;
  justify-items: center;
  min-height: 238px;
  padding: 28px 20px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 63, 53, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(8, 54, 46, 0.08);
}

.lcc-focus-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}

.lcc-focus-grid h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}

.lcc-focus-grid p {
  margin: 0;
  color: #3d504c;
  font-size: 13px;
}

.lcc-focus-grid a,
.lcc-program-grid a {
  align-self: end;
  margin-top: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.lcc-benefits {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(65, 135, 70, 0.42), transparent 28%),
    radial-gradient(ellipse at 100% 0%, rgba(1, 93, 79, 0.4), transparent 30%),
    linear-gradient(120deg, #003f35 0%, #004f44 58%, #003b33 100%);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.lcc-benefits article {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 166px;
  padding: 22px 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.lcc-benefits article:first-child {
  border-left: 0;
}

.lcc-benefits img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(78%) saturate(1715%) hue-rotate(358deg) brightness(102%) contrast(104%);
}

.lcc-benefits h2 {
  margin: 0;
  color: #fff;
  font-size: 17px;
}

.lcc-benefits p {
  max-width: 180px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.lcc-impact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
  padding: 42px 0 20px;
}

.lcc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.lcc-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.lcc-stats strong {
  display: block;
  color: var(--green);
  font-size: 22px;
  line-height: 1.1;
}

.lcc-impact-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.lcc-programs {
  padding: 8px 0 28px;
}

.lcc-programs .section-heading {
  margin-bottom: 18px;
}

.lcc-programs .section-heading h2 {
  max-width: none;
  font-size: clamp(34px, 3.6vw, 46px);
}

.lcc-program-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.lcc-program-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 63, 53, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(8, 54, 46, 0.08);
}

.lcc-program-grid article > img {
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.lcc-program-grid article > div {
  padding: 15px 14px 16px;
}

.lcc-program-grid h3 {
  min-height: 44px;
  margin: 0 0 9px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.2;
}

.lcc-program-grid p {
  min-height: 68px;
  margin: 0;
  color: #3d504c;
  font-size: 12px;
}

.lcc-partner-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.28fr 1.65fr;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  margin-bottom: -8px;
  padding: 28px 36px;
  color: #fff;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(79, 145, 68, 0.38), transparent 26%),
    radial-gradient(ellipse at 100% 100%, rgba(79, 145, 68, 0.32), transparent 26%),
    linear-gradient(120deg, #003f35 0%, #004f44 58%, #003b33 100%);
  border-radius: 10px;
}

.lcc-partner-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
}

.lcc-partner-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.lcc-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.lcc-partner-grid span {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 118px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.lcc-partner-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lcc-cta-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.about-page {
  padding-bottom: 70px;
}

.about-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.about-hero-copy,
.about-hero-visual,
.about-panel,
.about-quote,
.about-card,
.about-stat,
.about-cta {
  background: var(--paper);
  border: 1px solid rgba(0, 63, 53, 0.08);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.about-hero-copy {
  padding: 34px 34px 30px;
}

.about-hero-copy h1 {
  margin: 8px 0 16px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
}

.about-hero-copy h1 span {
  color: var(--orange);
}

.about-hero-copy p {
  color: #334e47;
  font-size: 16px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.about-hero-visual {
  overflow: hidden;
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.about-stat {
  display: grid;
  gap: 8px;
  padding: 18px;
  min-height: 138px;
}

.about-stat strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.about-stat small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.about-section {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 0;
}

.about-section h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.about-quote {
  padding: 24px;
}

.about-quote p {
  margin: 0;
  color: #28433d;
  font-size: 16px;
}

.about-quote strong {
  display: block;
  margin-top: 16px;
  color: var(--green);
}

.about-panel {
  overflow: hidden;
}

.about-panel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-panel-content {
  padding: 22px 22px 24px;
}

.about-panel-content p {
  margin: 0;
  color: var(--muted);
}

.about-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-card {
  overflow: hidden;
}

.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-card-content {
  padding: 20px;
}

.about-card-content h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 20px;
}

.about-card-content p {
  margin: 0;
  color: #405952;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-pillar {
  display: grid;
  gap: 12px;
  padding: 22px;
  min-height: 190px;
}

.about-pillar h3 {
  margin: 0;
  color: var(--green);
  font-size: 18px;
}

.about-pillar p {
  margin: 0;
  color: var(--muted);
}

.about-founders {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 18px;
}

.about-founder-image {
  min-height: 320px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.about-founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-founder-copy {
  padding: 28px;
  background: linear-gradient(135deg, rgba(0, 63, 53, 0.96), rgba(7, 91, 74, 0.96));
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-founder-copy h3 {
  margin: 0 0 10px;
  color: var(--orange-2);
  font-size: 23px;
}

.about-founder-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.about-founder-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.about-founder-point {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.about-founder-point strong {
  color: #fff;
  font-size: 17px;
}

.about-founder-point span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.about-impact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-impact-card {
  padding: 22px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.about-impact-card span {
  color: var(--orange);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.about-impact-card p {
  margin: 0;
  color: var(--muted);
}

.about-cta {
  margin: 42px auto 0;
  width: min(1180px, calc(100% - 40px));
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 63, 53, 0.96), rgba(13, 116, 96, 0.96));
  color: #fff;
}

.about-cta h2 {
  margin: 0 0 8px;
  color: #fff;
}

.about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.about-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .service-track {
    grid-auto-columns: calc((100% - 60px) / 4);
  }

  .movement,
  .life-care,
  .leadership,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .life-care-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .movement-stats,
  .future-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .leader-copy,
  .leader-features {
    padding-inline: 30px;
  }

  .leader-features {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: grid;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .leader-photo {
    min-height: 340px;
    background: url("../images/home/leadership-banner.jpeg") left center / cover no-repeat;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.32) 100%),
      url("../images/home/hero-page.jpeg") center / cover no-repeat;
  }

  .hero-content {
    padding-top: 86px;
    padding-bottom: 128px;
  }

  .stats-float {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item + .stat-item {
    border-left: 0;
  }

  .stat-item:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .stat-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .service-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .movement-stats,
  .life-care-impact,
  .future-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .life-care {
    padding-top: 46px;
  }

  .life-care-panel {
    max-width: 620px;
    margin-inline: auto;
  }

  .life-care-impact div:nth-child(2n + 1) {
    border-left: 0;
  }

  .life-care-impact div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .life-care-impact div {
    justify-content: flex-start;
  }

  .tourism {
    grid-template-columns: 1fr;
  }

  .tourism img {
    min-height: 280px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    text-align: center;
  }

  .about-hero,
  .about-intro,
  .about-duo,
  .about-pillars,
  .about-founders,
  .about-impact,
  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-founder-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .navbar,
  .hero-content,
  .stats-float,
  .section,
  .section-tight,
  .footer-cta,
  .footer-main,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions,
  .footer-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .stats-float,
  .movement-stats,
  .life-care-cards,
  .life-care-impact,
  .future-grid,
  .testimonial-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .life-care h2 {
    font-size: 40px;
    white-space: normal;
  }

  .life-care-panel {
    padding: 0;
  }

  .life-care-banner-copy {
    top: 55.8%;
    left: 11.8%;
    width: 54%;
  }

  .life-care-banner-copy p {
    margin-bottom: 10px;
  }

  .life-care-banner-copy ul {
    gap: 6px;
  }

  .life-care-banner-copy li {
    gap: 7px;
  }

  .life-care-banner-copy li img {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }

  .life-care-impact div,
  .life-care-impact div:nth-child(2n + 1) {
    border-left: 0;
  }

  .stat-item,
  .life-care-impact div {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    justify-content: center;
    gap: 18px;
    text-align: left;
  }

  .stat-item .line-icon,
  .life-care-impact .life-care-icon {
    justify-self: center;
  }

  .stat-item > div {
    min-width: 0;
  }

  .life-care-impact strong {
    justify-self: start;
  }

  .life-care-impact div:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .stat-item:nth-child(2n),
  .stat-item + .stat-item {
    border-left: 0;
  }

  .stat-item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-top: 52px;
  }

  .service-track {
    grid-auto-columns: 86%;
  }

  .arrow-left {
    left: -8px;
  }

  .arrow-right {
    right: -8px;
  }

  .movement {
    padding: 24px;
  }

  .movement-stats {
    border-left: 0;
  }

  .movement-stats article {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    padding: 18px 0;
  }

  .movement-stats p,
  .future-grid p,
  .testimonial-card p {
    min-height: 0;
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-photo {
    min-height: 300px;
    background-position: left center;
  }

  .about-hero,
  .about-section,
  .about-cta {
    width: min(100% - 28px, 1180px);
  }

  .about-metrics,
  .about-founder-points {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    text-align: center;
  }

  .footer-seal {
    margin: 0 auto;
  }
}

.about-template {
  background: #ffffff;
}

.about-mockup {
  width: min(1240px, calc(100% - 22px));
  margin: 0 auto;
  color: #172f2b;
}

.about-banner {
  position: relative;
  min-height: 326px;
  overflow: hidden;
  border-radius: 18px;
  background: #f2f5ed;
}

.about-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(252, 248, 239, 0.97) 0%, rgba(252, 248, 239, 0.82) 34%, rgba(252, 248, 239, 0.22) 60%, rgba(252, 248, 239, 0) 100%);
}

.about-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 555px;
  padding: 64px 52px;
}

.about-banner-copy h1,
.mission-vision h2,
.core-objectives h2,
.leadership-profile h2,
.about-team h2,
.footer-cta h2 {
  letter-spacing: 0;
}

.about-banner-copy h1 {
  margin: 8px 0 18px;
  color: #263f39;
  font-family: var(--sans);
  font-size: 31px;
  font-weight: 800;
  line-height: 1.05;
}

.about-banner-copy p:not(.kicker) {
  margin: 0;
  color: #455a55;
  font-size: 18px;
  line-height: 1.25;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.mv-card {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  border: 1px solid rgba(0, 63, 53, 0.16);
  border-radius: 18px;
  box-shadow: 0 11px 24px rgba(3, 43, 36, 0.09);
}

.mv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-card::after,
.vision-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.mission-card::after {
  background: linear-gradient(90deg, rgba(0, 31, 27, 0.14), rgba(0, 31, 27, 0.84) 58%, rgba(0, 31, 27, 0.96));
}

.vision-card::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18));
}

.mv-content {
  position: relative;
  z-index: 1;
  width: 54%;
  min-width: 290px;
  margin-left: auto;
  padding: 48px 36px;
  text-align: center;
}

.vision-card .mv-content {
  margin-right: auto;
  margin-left: 0;
}

.mv-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.mv-content h2 {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 800;
}

.mission-card .mv-content h2,
.mission-card .mv-content p {
  color: #fff;
}

.mv-content p {
  margin: 0;
  color: #132723;
  font-size: 18px;
  line-height: 1.28;
}

.core-objectives {
  padding: 10px 24px 18px;
  margin-top: 20px;
  background: #fff;
  text-align: center;
}

.core-objectives h2,
.about-team h2 {
  margin: 0;
  color: #003f35;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
}

.title-rule {
  width: 58px;
  height: 3px;
  margin: 13px auto 28px;
  background: var(--orange);
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 30px;
}

.objective-grid article {
  min-height: 206px;
  padding: 0 28px;
  border-left: 1px solid rgba(244, 123, 16, 0.42);
}

.objective-grid article:nth-child(4n + 1) {
  border-left: 0;
}

.objective-grid img {
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(0, 99, 84, 0.12);
}

.objective-grid h3 {
  min-height: 42px;
  margin: 0 0 8px;
  color: #0d5a35;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.08;
}

.objective-grid p {
  margin: 0;
  color: #172f2b;
  font-size: 15px;
  line-height: 1.2;
}

.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 20px 22px 22px;
  padding: 26px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(244, 123, 16, 0.18), transparent 24%),
    linear-gradient(135deg, #003f35, #005c4e);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 63, 53, 0.2);
}

.about-stats-strip article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 18px;
  text-align: center;
  border-left: 1px solid rgba(255, 172, 78, 0.56);
}

.about-stats-strip article:first-child {
  border-left: 0;
}

.about-stats-strip img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.about-stats-strip strong {
  color: var(--orange);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.about-stats-strip span {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.2;
}

.leadership-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 26px 40px;
  margin-top: 18px;
  background: linear-gradient(90deg, #eef3f4, #fff);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(0, 63, 53, 0.05), inset 0 -1px 0 rgba(0, 63, 53, 0.05);
}

.leadership-photo {
  width: 100%;
  height: 418px;
  object-fit: cover;
  object-position: left center;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 45, 40, 0.12);
}

.leadership-profile-copy {
  padding: 14px 0;
}

.leadership-profile h2 {
  margin: 20px 0 4px;
  color: #263f39;
  font-family: var(--sans);
  font-size: 31px;
  font-weight: 800;
}

.leadership-profile h3 {
  margin: 0 0 22px;
  color: #263f39;
  font-size: 16px;
}

.leadership-profile ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  color: #40514d;
  list-style: none;
}

.leadership-profile li {
  position: relative;
  padding-left: 38px;
  font-size: 17px;
  line-height: 1.2;
}

.leadership-profile li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 23px;
  height: 23px;
  content: "";
  background: #00633f;
  border-radius: 50%;
}

.about-team {
  padding: 58px 20px 70px;
  text-align: center;
}

.about-team > p {
  max-width: 720px;
  margin: 20px auto 32px;
  color: #172f2b;
  font-size: 16px;
  line-height: 1.35;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 225px));
  gap: 24px;
  justify-content: center;
}

.team-grid article {
  overflow: hidden;
  background: #003f35;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 63, 53, 0.16);
}

.team-grid img {
  width: 100%;
  height: 228px;
  object-fit: cover;
  object-position: center 18%;
  background: #eef5f2;
}

.team-grid .team-photo-shagufta {
  object-position: center 16%;
}

.team-grid .team-photo-liaquat {
  object-position: center 12%;
}

.team-grid .team-photo-kamran {
  object-position: center 10%;
}

.team-grid div {
  min-height: 72px;
  padding: 10px 12px 12px;
  color: #fff;
}

.team-grid h3 {
  margin: 0 0 3px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.team-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.1;
}

.about-template .footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .about-mockup {
    width: min(100% - 20px, 1240px);
  }

  .mission-vision,
  .leadership-profile {
    grid-template-columns: 1fr;
  }

  .objective-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .objective-grid article:nth-child(4n + 1) {
    border-left: 1px solid rgba(244, 123, 16, 0.42);
  }

  .objective-grid article:nth-child(2n + 1) {
    border-left: 0;
  }

  .about-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .about-stats-strip article:nth-child(2n + 1) {
    border-left: 0;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
}

@media (max-width: 640px) {
  .about-banner {
    min-height: 430px;
  }

  .about-banner::after {
    background: linear-gradient(180deg, rgba(252, 248, 239, 0.97), rgba(252, 248, 239, 0.82) 58%, rgba(252, 248, 239, 0.2));
  }

  .about-banner-copy {
    padding: 42px 24px;
  }

  .about-banner-copy h1 {
    font-size: 28px;
  }

  .about-banner-copy p:not(.kicker),
  .mv-content p,
  .objective-grid p,
  .leadership-profile li {
    font-size: 15px;
  }

  .mv-content {
    width: 100%;
    min-width: 0;
    padding: 42px 26px;
  }

  .mission-card::after {
    background: rgba(0, 31, 27, 0.72);
  }

  .objective-grid,
  .about-stats-strip,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .objective-grid article,
  .objective-grid article:nth-child(4n + 1),
  .objective-grid article:nth-child(2n + 1),
  .about-stats-strip article {
    border-left: 0;
  }

  .about-stats-strip {
    margin-inline: 0;
  }

  .leadership-profile {
    padding: 22px;
  }

  .leadership-photo {
    height: 300px;
  }

  .team-grid {
    max-width: 260px;
    margin-inline: auto;
  }
}

.contact-page {
  width: min(1240px, calc(100% - 22px));
  margin: 0 auto;
  padding-bottom: 22px;
  background: #fff;
  color: #142d28;
}

.contact-hero {
  position: relative;
  min-height: max(620px, calc(100vh - 76px));
  overflow: hidden;
  background: #f6f4ef;
}

.contact-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
  padding: 54px 52px 42px;
}

.contact-hero h1,
.contact-info h2,
.contact-feature h2,
.message-card h2,
.location-card h2 {
  margin: 0;
  color: #003f35;
  font-family: var(--serif);
  letter-spacing: 0;
}

.contact-hero h1 {
  margin: 16px 0 22px;
  font-size: 64px;
  line-height: 1.02;
}

.contact-hero-copy p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: #172f2b;
  font-size: 17px;
  line-height: 1.55;
}

.hero-contact-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 22px;
  max-width: 440px;
  margin-top: 34px;
}

.hero-contact-points span {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  color: #003f35;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hero-contact-points img {
  position: static;
  inset: auto;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.contact-info {
  padding: 26px 30px 14px;
  text-align: center;
}

.contact-info h2 {
  font-size: 36px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.contact-info-grid article,
.contact-feature,
.message-card,
.location-card {
  background: #fff;
  border: 1px solid rgba(0, 63, 53, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 45, 38, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.contact-info-grid article:hover,
.contact-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 106, 66, 0.22);
  box-shadow: 0 18px 38px rgba(0, 45, 38, 0.14);
}

.contact-info-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 220px;
  padding: 30px 16px 18px;
}

.contact-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #fff;
  border: 2px solid #2d721b;
  border-radius: 50%;
}

.contact-card-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.contact-info-grid h3 {
  margin: 22px 0 12px;
  color: #003f35;
  font-size: 14px;
}

.contact-info-grid p {
  margin: 0;
  color: #172f2b;
  font-size: 13px;
  line-height: 1.55;
}

.contact-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 18px 30px 28px;
}

.contact-feature {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 16px;
}

.contact-feature img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 9px;
}

.contact-feature div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 10px 10px;
}

.contact-feature h2 {
  font-size: 29px;
  line-height: 1.1;
}

.feature-blue h2 {
  color: #075c9e;
}

.contact-feature p {
  min-height: 70px;
  margin: 18px 0 24px;
  color: #172f2b;
  font-size: 15px;
  line-height: 1.45;
}

.contact-feature ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.contact-feature li {
  position: relative;
  padding-left: 28px;
  color: #172f2b;
  font-size: 15px;
  line-height: 1.25;
}

.contact-feature li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  content: "✓";
  color: var(--feature-color, #0d7460);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.feature-green {
  --feature-color: #006a42;
}

.feature-blue {
  --feature-color: #075c9e;
}

.feature-olive {
  --feature-color: #4c7b1b;
}

.feature-btn {
  display: flex;
  min-height: 52px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--feature-color, #006a42);
  border-radius: 9px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(0, 45, 38, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.feature-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 45, 38, 0.2);
  filter: brightness(1.06);
}

.contact-action-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  padding: 0 30px 34px;
}

.message-card,
.location-card {
  padding: 30px;
}

.message-card h2,
.location-card h2 {
  font-size: 30px;
}

.message-card > p,
.location-card > p {
  max-width: 460px;
  margin: 12px 0 26px;
  color: #354b46;
  font-size: 14px;
  line-height: 1.45;
}

.message-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.message-card input,
.message-card select,
.message-card textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  color: #263f39;
  background: #fff;
  border: 1px solid #dfe8e4;
  border-radius: 7px;
  font: inherit;
  font-size: 13px;
}

.message-card textarea {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.message-card button {
  min-height: 54px;
  color: #fff;
  background: linear-gradient(135deg, #006a42, #004b36);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(0, 63, 53, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.message-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 63, 53, 0.24);
  filter: brightness(1.05);
}

.location-actions .btn {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.location-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 63, 53, 0.2);
  filter: brightness(1.05);
}

.feature-btn:focus-visible,
.message-card button:focus-visible,
.location-actions .btn:focus-visible {
  outline: 3px solid rgba(244, 123, 16, 0.34);
  outline-offset: 3px;
}

.map-preview {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  border: 1px solid #dfe8e4;
  border-radius: 9px;
  background:
    linear-gradient(32deg, transparent 0 46%, rgba(45, 125, 75, 0.23) 46% 48%, transparent 48%),
    linear-gradient(148deg, transparent 0 39%, rgba(32, 111, 167, 0.18) 39% 41%, transparent 41%),
    linear-gradient(85deg, transparent 0 59%, rgba(244, 123, 16, 0.18) 59% 61%, transparent 61%),
    repeating-linear-gradient(0deg, #f7faf8 0 28px, #eef5f2 28px 30px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(0, 63, 53, 0.08) 42px 44px);
}

.map-preview::after {
  position: absolute;
  right: 26%;
  bottom: 34%;
  width: 24px;
  height: 24px;
  content: "";
  background: #e73524;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transform: rotate(-45deg);
}

.map-label {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
  font-size: 12px;
}

.map-label span {
  color: var(--muted);
}

.map-pin {
  position: absolute;
  right: 13%;
  bottom: 33%;
  color: #e73524;
  font-size: 12px;
  font-weight: 800;
}

.location-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.location-actions p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #003f35;
  font-size: 15px;
  font-weight: 700;
}

.location-actions .line-icon {
  width: 42px;
  height: 42px;
  color: #0d7460;
}

@media (max-width: 1080px) {
  .contact-info-grid,
  .contact-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-page {
    width: min(100% - 20px, 1240px);
  }

  .contact-hero {
    min-height: calc(100vh - 76px);
  }

  .contact-hero-copy {
    padding: 44px 24px;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .hero-contact-points {
    max-width: none;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 63, 53, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(0, 63, 53, 0.12);
  }

  .hero-contact-points,
  .contact-info-grid,
  .contact-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info,
  .contact-feature-grid,
  .contact-action-grid {
    padding-inline: 0;
  }

  .message-card form {
    grid-template-columns: 1fr;
  }

  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-contact-points,
  .contact-info-grid,
  .contact-feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-feature img {
    height: 210px;
  }
}

@media (max-width: 1180px) {
  .life-connect-template .navbar {
    width: min(100% - 28px, 1240px);
  }

  .life-connect-template .nav-links {
    gap: 13px;
    font-size: 12px;
  }

  .life-connect-template .brand img {
    width: 140px;
  }

  .life-connect-template .btn-small {
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  .lcc-intro,
  .lcc-impact,
  .lcc-partner-cta {
    grid-template-columns: 1fr;
  }

  .lcc-focus-grid,
  .lcc-program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcc-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .lcc-benefits article:nth-child(4) {
    border-left: 0;
  }

  .lcc-partner-grid {
    border-left: 0;
  }

  .lcc-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .life-connect-template .brand img {
    width: 154px;
  }

  .life-connect-template .nav-panel {
    gap: 16px;
  }

  .life-connect-template .nav-links {
    gap: 0;
    font-size: 14px;
  }

  .lcc-hero,
  .lcc-hero img {
    min-height: 420px;
  }

  .lcc-hero img {
    height: 420px;
    object-position: 64% center;
  }

  .lcc-hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 52%, rgba(255, 255, 255, 0.2) 100%);
  }

  .lcc-hero-copy {
    align-content: end;
    padding-bottom: 54px;
  }

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

  .lcc-logo-wrap {
    min-height: 0;
    padding-bottom: 10px;
  }

  .lcc-logo-wrap img {
    width: min(250px, 78%);
  }

  .lcc-mission-copy {
    padding: 0 28px 24px;
    text-align: center;
  }

  .lcc-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcc-benefits article,
  .lcc-benefits article:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.34);
  }

  .lcc-benefits article:nth-child(2n + 1) {
    border-left: 0;
  }

  .lcc-stats,
  .lcc-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcc-cta-actions {
    justify-content: center;
  }

  .lcc-cta-actions .btn {
    width: min(280px, 100%);
  }

  .lcc-partner-grid span:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .lcc-intro,
  .lcc-focus-grid,
  .lcc-benefits,
  .lcc-impact,
  .lcc-programs,
  .lcc-partner-cta,
  .lcc-hero-copy {
    width: min(100% - 28px, 1180px);
  }

  .lcc-hero,
  .lcc-hero img {
    min-height: 470px;
  }

  .lcc-hero img {
    height: 470px;
    object-position: 69% center;
  }

  .lcc-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.52) 46%, rgba(255, 255, 255, 0.96) 100%);
  }

  .lcc-hero h1 {
    font-size: 42px;
  }

  .lcc-hero p {
    font-size: 17px;
  }

  .lcc-intro {
    padding-top: 28px;
  }

  .lcc-focus-grid,
  .lcc-benefits,
  .lcc-program-grid,
  .lcc-stats,
  .lcc-pillars,
  .lcc-partner-grid {
    grid-template-columns: 1fr;
  }

  .lcc-pillars span,
  .lcc-pillars span:first-child {
    display: grid;
    grid-template-columns: 64px minmax(110px, max-content);
    justify-content: center;
    justify-items: center;
    column-gap: 16px;
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .lcc-pillars img {
    justify-self: center;
  }

  .lcc-benefits article,
  .lcc-benefits article:nth-child(2n + 1),
  .lcc-benefits article:nth-child(4) {
    min-height: 145px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
  }

  .lcc-benefits article:first-child {
    border-top: 0;
  }

  .lcc-program-grid h3,
  .lcc-program-grid p {
    min-height: 0;
  }

  .lcc-program-grid article > img {
    height: 180px;
  }

  .lcc-partner-cta {
    padding: 28px 22px;
  }

  .lcc-partner-grid span {
    min-height: 96px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .lcc-cta-actions {
    display: grid;
    gap: 12px;
    justify-items: center;
  }

  .lcc-cta-actions .btn {
    width: min(280px, 100%);
  }
}
