/* Kumar Health Welfare Society — Design System */
:root {
  --ink: #14241f;
  --ink-soft: #3a4f47;
  --brand: #0b5c4b;
  --brand-deep: #073d33;
  --brand-mid: #1a7a64;
  --leaf: #2f9b78;
  --amber: #d97706;
  --amber-soft: #f59e0b;
  --clay: #b45309;
  --sun: #ffb703;
  --coral: #e85d4c;
  --sky: #2a9d8f;
  --indigo-soft: #3d7ea6;
  --paper: #f3f7f5;
  --paper-2: #e7f0ec;
  --white: #ffffff;
  --line: rgba(20, 36, 31, 0.12);
  --shadow: 0 18px 50px rgba(7, 61, 51, 0.14);
  --radius: 18px;
  --nav-h: 78px;
  --max: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  position: relative;
  isolation: isolate;
  background-color: #e8f6f0;
  background-image:
    radial-gradient(ellipse 900px 520px at 8% -5%, rgba(255, 183, 3, 0.42), transparent 58%),
    radial-gradient(ellipse 800px 480px at 92% 8%, rgba(232, 93, 76, 0.28), transparent 55%),
    radial-gradient(ellipse 700px 520px at 50% 35%, rgba(42, 157, 143, 0.22), transparent 60%),
    radial-gradient(ellipse 640px 420px at 15% 70%, rgba(61, 126, 166, 0.2), transparent 58%),
    radial-gradient(ellipse 720px 460px at 85% 85%, rgba(47, 155, 120, 0.28), transparent 55%),
    linear-gradient(165deg, #fff4d6 0%, #d8f3e8 28%, #e7f0ff 58%, #ffe8d6 82%, #e8f6f0 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(rgba(11, 92, 75, 0.09) 1px, transparent 1px),
    radial-gradient(rgba(217, 119, 6, 0.08) 1px, transparent 1px);
  background-size: 28px 28px, 48px 48px;
  background-position: 0 0, 14px 14px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255, 183, 3, 0.12), transparent 35%);
  animation: atmospherePulse 14s var(--ease) infinite alternate;
}

@keyframes atmospherePulse {
  from { opacity: 0.55; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: linear-gradient(
    90deg,
    rgba(255, 244, 214, 0.88),
    rgba(232, 246, 240, 0.9),
    rgba(231, 240, 255, 0.88)
  );
  border-bottom: 1px solid rgba(11, 92, 75, 0.12);
  box-shadow: 0 8px 30px rgba(11, 92, 75, 0.06);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, var(--brand), var(--leaf), var(--amber), var(--brand));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(11, 92, 75, 0.25);
}

.brand-mark span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--brand-deep);
  letter-spacing: 0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-deep);
  background: rgba(11, 92, 75, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: var(--white) !important;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(11, 92, 75, 0.28);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand)) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

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

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--clay));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(180, 83, 9, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(11, 92, 75, 0.35);
  color: var(--brand-deep);
}

.btn-solid {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(11, 92, 75, 0.25);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 93, 76, 0.18) 0%, rgba(7, 40, 34, 0.2) 32%, rgba(7, 30, 26, 0.82) 100%),
    linear-gradient(115deg, rgba(11, 92, 75, 0.72) 0%, rgba(42, 157, 143, 0.28) 42%, transparent 70%),
    linear-gradient(0deg, rgba(217, 119, 6, 0.28), transparent 45%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(
    90deg,
    rgba(255, 183, 3, 0.22),
    rgba(232, 93, 76, 0.12),
    rgba(42, 157, 143, 0.2)
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 650;
  margin: 0 0 1rem;
  text-wrap: balance;
  animation: riseIn 0.9s var(--ease) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1rem;
  max-width: 28ch;
  text-wrap: balance;
  animation: riseIn 0.9s 0.1s var(--ease) both;
}

.hero p {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.9);
  animation: riseIn 0.9s 0.18s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: riseIn 0.9s 0.26s var(--ease) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Page hero (inner) ——— */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.page-hero .hero-content {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  max-width: 760px;
}

.page-hero .hero-brand {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 0.65rem;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

/* ——— Sections ——— */
.section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  overflow: clip;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

/* Alternating colorful section washes */
main > .section:nth-of-type(odd) {
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(255, 183, 3, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 70% at 100% 30%, rgba(42, 157, 143, 0.16), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(216, 243, 232, 0.45));
}

main > .section:nth-of-type(even) {
  background:
    radial-gradient(ellipse 65% 75% at 100% 20%, rgba(232, 93, 76, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 65% at 0% 80%, rgba(61, 126, 166, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(231, 240, 255, 0.5), rgba(255, 244, 214, 0.35));
}

main > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%
  );
}

.page-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(11, 92, 75, 0.25) 0%, rgba(7, 30, 26, 0.78) 100%),
    linear-gradient(120deg, rgba(217, 119, 6, 0.35), rgba(232, 93, 76, 0.2), transparent 60%);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2,
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  text-wrap: balance;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.media-frame {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow:
    0 22px 50px rgba(11, 92, 75, 0.18),
    0 0 0 3px rgba(255, 255, 255, 0.65),
    0 0 0 6px rgba(42, 157, 143, 0.18),
    0 18px 40px rgba(255, 183, 3, 0.16);
  aspect-ratio: 4 / 3;
}

.media-frame.tall {
  aspect-ratio: 3 / 4;
}

.media-frame.wide {
  aspect-ratio: 16 / 10;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(7, 61, 51, 0.28)),
    linear-gradient(45deg, rgba(255, 183, 3, 0.12), transparent 40%);
  pointer-events: none;
}

.prose p + p {
  margin-top: 1rem;
}

.prose ul {
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.prose li + li {
  margin-top: 0.45rem;
}

/* ——— Focus strip ——— */
.focus-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.focus-item {
  position: relative;
  padding: 1.35rem 1.25rem 1.15rem;
  border-top: 3px solid transparent;
  border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.35));
  box-shadow: 0 12px 36px rgba(11, 92, 75, 0.08);
  overflow: hidden;
}

.focus-item:nth-child(1) {
  border-top: 3px solid var(--brand);
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 155, 120, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(216, 243, 232, 0.55));
}

.focus-item:nth-child(2) {
  border-top: 3px solid var(--amber);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 183, 3, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 244, 214, 0.55));
}

.focus-item:nth-child(3) {
  border-top: 3px solid var(--coral);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 93, 76, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 232, 224, 0.55));
}

.focus-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}

.focus-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ——— Service / activity lists (interaction-forward, not card-heavy) ——— */
.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
}

.service-row:hover {
  background: linear-gradient(
    90deg,
    rgba(42, 157, 143, 0.12),
    rgba(255, 183, 3, 0.12),
    rgba(232, 93, 76, 0.08)
  );
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 12px;
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand);
  font-weight: 650;
}

.service-row h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
}

.service-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 62ch;
}

.service-link {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* ——— Mosaic / gallery ——— */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.85rem;
}

.mosaic figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 34px rgba(11, 92, 75, 0.14);
}

.mosaic figure:first-child {
  grid-row: span 2;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mosaic figure:hover img {
  transform: scale(1.05);
}

.mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  background: linear-gradient(
    transparent,
    rgba(7, 40, 34, 0.45) 35%,
    rgba(180, 83, 9, 0.72)
  );
}

/* ——— Stats ——— */
.stat-band {
  background:
    linear-gradient(125deg, rgba(11, 92, 75, 0.92) 0%, rgba(42, 157, 143, 0.88) 40%, rgba(180, 83, 9, 0.9) 78%, rgba(232, 93, 76, 0.88) 100%),
    url("../assets/images/heart-monitors.jpg") center/cover;
  color: var(--white);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  box-shadow:
    0 24px 55px rgba(11, 92, 75, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  position: relative;
  overflow: hidden;
}

.stat-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 40%);
  pointer-events: none;
}

.stat-band > * {
  position: relative;
  z-index: 1;
}

.stat-band div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.25rem;
}

.stat-band div span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

/* ——— Leadership ——— */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.leader {
  padding: 1.4rem 1.25rem 1.3rem;
  border-top: 3px solid var(--brand);
  border-radius: 0 0 var(--radius) var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 155, 120, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(216, 243, 232, 0.5));
  box-shadow: 0 12px 32px rgba(11, 92, 75, 0.08);
}

.leader:nth-child(2) {
  border-top-color: var(--amber);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 183, 3, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 244, 214, 0.55));
}

.leader:nth-child(3) {
  border-top-color: var(--coral);
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 93, 76, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 232, 224, 0.5));
}

.leader .role {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.leader h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.55rem;
}

.leader p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
  margin-top: 1.5rem;
}

.member-list li {
  list-style: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.member-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

/* ——— Legal / trust ——— */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

.trust-item {
  padding: 1rem 1rem 1rem 0.9rem;
  border-bottom: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(42, 157, 143, 0.1), rgba(255, 255, 255, 0.45));
  margin-bottom: 0.35rem;
}

.trust-item dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.trust-item dd {
  margin: 0;
  font-weight: 560;
}

/* ——— Forms ——— */
.form-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 183, 3, 0.2), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(42, 157, 143, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 92, 75, 0.12);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow:
    0 22px 50px rgba(11, 92, 75, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(26, 122, 100, 0.15);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
}

.contact-details h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.contact-details p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-details a {
  color: var(--brand);
  font-weight: 600;
}

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  color: var(--white);
  min-height: 280px;
  display: grid;
  align-items: center;
}

.cta-band .bg {
  position: absolute;
  inset: 0;
}

.cta-band .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band .shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 40, 34, 0.9) 0%, rgba(42, 157, 143, 0.55) 48%, rgba(180, 83, 9, 0.55) 100%),
    linear-gradient(0deg, rgba(232, 93, 76, 0.25), transparent 50%);
}

.cta-band .inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 560px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.cta-band p {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ——— Donate amounts (interactive) ——— */
.amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.amount-options button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}

.amount-options button.active,
.amount-options button:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 10% 0%, rgba(255, 183, 3, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 70% at 90% 20%, rgba(232, 93, 76, 0.22), transparent 50%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(42, 157, 143, 0.3), transparent 55%),
    linear-gradient(160deg, #0d4a3d 0%, #0b3d34 40%, #123a4d 75%, #1a2f28 100%);
  color: rgba(255, 255, 255, 0.86);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h3,
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 0 0.85rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ——— Legal note ——— */
.legal-note {
  background:
    linear-gradient(90deg, rgba(42, 157, 143, 0.14), rgba(255, 183, 3, 0.12)),
    rgba(255, 255, 255, 0.65);
  border-left: 4px solid var(--brand);
  padding: 1rem 1.25rem;
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ——— Timeline ——— */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(11, 92, 75, 0.25);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding: 0 0 1.75rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 92, 75, 0.15);
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
}

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .focus-strip,
  .stat-band,
  .leader-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }

  .mosaic figure:first-child {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(243, 247, 245, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-header.nav-open .nav-links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero-media img {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  body {
    background-attachment: scroll;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
  }

  .service-link {
    grid-column: 2;
  }

  .focus-strip,
  .stat-band,
  .leader-grid,
  .member-list,
  .trust-grid,
  .footer-grid,
  .form-grid,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-rows: none;
  }

  .mosaic figure,
  .mosaic figure:first-child {
    grid-column: auto;
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .brand-text small {
    display: none;
  }
}
