/* World Cancer Care — Homepage redesign
   Brand primary: #e448d3 */

:root {
  --primary: #e448d3;
  --rose-50: #fdf5fc;
  --rose-100: #fce8f9;
  --rose-200: #f5c8ef;
  --rose-400: #f06de0;
  --rose-500: #e448d3;
  --rose-600: #c832bd;
  --rose-700: #a0289a;
  --rose-800: #7a1f75;
  --ink: #1e1630;
  --ink-soft: #4a4568;
  --muted: #8b5a85;
  --line: rgba(122, 31, 117, 0.12);
  --paper: #ffffff;
  --cream: #f9f4f8;
  --yellow-soft: #fdf8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(228, 72, 211, 0.14);
  --gradient-brand: #e448d3;
  --gradient-deep: #7a1f75;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 2.5rem));
  --header-h: 5.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(228, 72, 211, 0.1), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(228, 72, 211, 0.06), transparent 55%),
    var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rose-700);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
}

.btn--donate {
  background: var(--gradient-brand);
  color: var(--white);
  border-color: transparent;
}

.btn--donate:hover {
  background: var(--gradient-deep);
  border-color: transparent;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--rose-800);
}

.btn--light {
  background: var(--white);
  color: var(--rose-800);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--rose-100);
}

/* Top bar */
.topbar {
  background: linear-gradient(105deg, #5c1758 0%, #7a1f75 42%, #9a2a8f 100%);
  color: var(--white);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.85rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}

.topbar__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}

.topbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem 0.7rem 0.28rem 0.35rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.topbar__chip-icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 7px;
  flex-shrink: 0;
  position: relative;
  display: grid;
  place-items: center;
}

.topbar__chip-icon::before,
.topbar__chip-icon::after {
  content: "";
  position: absolute;
}

.topbar__chip-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.08rem;
}

.topbar__chip-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.topbar__chip-value {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
}

.topbar__chip--helpline {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 4px 12px rgba(234, 88, 12, 0.28);
  color: #fff7ed;
}

.topbar__chip--helpline .topbar__chip-label {
  color: rgba(255, 247, 237, 0.88);
  opacity: 1;
}

.topbar__chip--helpline .topbar__chip-value {
  color: #ffffff;
}

.topbar__chip--helpline .topbar__chip-icon {
  background: rgba(255, 255, 255, 0.95);
  color: #c2410c;
}

/* Phone handset icon */
.topbar__chip--helpline .topbar__chip-icon::before {
  width: 0.55rem;
  height: 0.55rem;
  border: 1.6px solid currentColor;
  border-radius: 0.15rem 0.15rem 0.45rem 0.45rem;
  transform: rotate(-28deg);
}

.topbar__chip--helpline .topbar__chip-icon::after {
  width: 0.28rem;
  height: 2px;
  background: currentColor;
  bottom: 0.38rem;
  border-radius: 1px;
  transform: rotate(-28deg) translateX(1px);
}

.topbar__chip--helpline:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 6px 16px rgba(234, 88, 12, 0.35);
}

.topbar__chip--helpline:hover .topbar__chip-value {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topbar__chip--track {
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 4px 12px rgba(21, 128, 61, 0.28);
  color: #ecfdf5;
}

.topbar__chip--track .topbar__chip-label {
  color: rgba(236, 253, 245, 0.88);
  opacity: 1;
}

.topbar__chip--track .topbar__chip-value {
  color: #ffffff;
}

.topbar__chip--track .topbar__chip-icon {
  background: rgba(255, 255, 255, 0.95);
  color: #166534;
}

/* Document / report icon */
.topbar__chip--track .topbar__chip-icon::before {
  width: 0.58rem;
  height: 0.72rem;
  border: 1.5px solid currentColor;
  border-radius: 1px 3px 1px 1px;
}

.topbar__chip--track .topbar__chip-icon::after {
  width: 0.28rem;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 3px 0 currentColor, 0 6px 0 currentColor;
  top: 0.55rem;
}

.topbar__chip--track:hover {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 6px 16px rgba(21, 128, 61, 0.35);
}

.topbar__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.topbar__phone {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar__phone:hover {
  color: var(--white);
  text-decoration: underline;
}

.topbar__phone-icon {
  width: 0.85rem;
  height: 0.85rem;
  border: 1.5px solid currentColor;
  border-radius: 0.2rem 0.2rem 0.35rem 0.35rem;
  position: relative;
  flex-shrink: 0;
  display: none;
}

.topbar__phone-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0.35rem;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  border-radius: 1px;
}

.topbar .btn--donate {
  background: var(--white);
  color: var(--rose-800);
  border-color: var(--white);
}

.topbar .btn--donate:hover {
  background: var(--rose-100);
}

/* Header quick icons — mobile only by default hidden on desktop */
.header-icons {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  margin-right: 0.35rem;
}

.header-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: 0;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(228, 72, 211, 0.35);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.header-icon:hover,
.header-icon:focus-visible {
  filter: brightness(1.08);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(228, 72, 211, 0.4);
}

.header-icon--donate {
  background: var(--primary);
}

.header-icon--camp {
  background: var(--rose-700);
}

.header-icon--volunteer {
  background: var(--rose-600);
}

.header-icon--track {
  background: var(--rose-400);
}

.header-icon__glyph {
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  display: block;
}

.header-icon--donate .header-icon__glyph::before {
  content: "₹";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.header-icon--camp .header-icon__glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 0.85rem;
  height: 0.45rem;
  border: 1.5px solid currentColor;
  border-top: 0;
  transform: translateX(-50%);
}

.header-icon--camp .header-icon__glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.05rem;
  width: 0;
  height: 0;
  border-left: 0.55rem solid transparent;
  border-right: 0.55rem solid transparent;
  border-bottom: 0.45rem solid currentColor;
  transform: translateX(-50%);
}

.header-icon--volunteer .header-icon__glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.05rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.header-icon--volunteer .header-icon__glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.05rem;
  width: 0.85rem;
  height: 0.5rem;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 0.5rem 0.5rem 0 0;
  transform: translateX(-50%);
}

.header-icon--track .header-icon__glyph::before {
  content: "";
  position: absolute;
  left: 0.05rem;
  top: 0.05rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.header-icon--track .header-icon__glyph::after {
  content: "";
  position: absolute;
  right: 0.05rem;
  bottom: 0.1rem;
  width: 0.4rem;
  height: 1.5px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(47, 42, 107, 0.08);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rose-800);
  line-height: 1.1;
}

.brand__sub {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem 0.1rem;
}

.primary-nav a {
  display: block;
  padding: 0.45rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--rose-700);
  border-bottom-color: var(--rose-500);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--rose-800);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  height: min(88vh, 720px);
  min-height: 420px;
  color: var(--white);
  overflow: hidden;
  background: #160c22;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 5.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(30, 22, 48, 0.72) 0%, rgba(122, 31, 117, 0.45) 48%, rgba(30, 22, 48, 0.3) 100%),
    linear-gradient(to top, rgba(30, 22, 48, 0.5), transparent 45%);
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 61rem;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.45s ease 0.1s, transform 0.45s ease 0.1s;
}

.hero__slide.is-active .hero__content {
  opacity: 1;
  transform: translateY(0);
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-200);
}

.hero__title {
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	font-weight: 600;
	margin-bottom: 1rem;
	text-wrap: balance;
	text-transform: uppercase;
}

.hero__lead {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* First slide — 12 years milestone (ICS-inspired layout, WCC branding) */
.hero__slide--milestone {
  align-items: center;
  padding: 4rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, #4a1a6e 0%, transparent 72%),
    linear-gradient(160deg, #1a0533 0%, #3b0f5c 38%, #2a0848 68%, #12022a 100%);
}

.hero__slide--milestone .hero__overlay {
  display: none;
}

.hero__content--milestone {
  max-width: 56rem;
  text-align: center;
  margin-inline: auto;
}

.hero-mile {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Soft large bokeh balloons */
.hero-mile__glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 170, 255, 0.55) 0%, rgba(140, 110, 230, 0.2) 42%, transparent 72%);
  filter: blur(1.5px);
}

.hero-mile__glow--1  { width: 280px; height: 280px; top: -6%; left: 2%; opacity: 0.75; }
.hero-mile__glow--2  { width: 200px; height: 200px; top: 10%; right: 6%; opacity: 0.65; }
.hero-mile__glow--3  { width: 340px; height: 340px; bottom: -10%; left: 16%; opacity: 0.45; }
.hero-mile__glow--4  { width: 150px; height: 150px; top: 36%; left: 40%; opacity: 0.5; }
.hero-mile__glow--5  { width: 190px; height: 190px; bottom: 14%; right: 12%; opacity: 0.6; }
.hero-mile__glow--6  { width: 100px; height: 100px; top: 20%; left: 26%; opacity: 0.7; }
.hero-mile__glow--7  { width: 120px; height: 120px; top: 6%; right: 26%; opacity: 0.5; }
.hero-mile__glow--8  { width: 170px; height: 170px; bottom: 6%; right: 36%; opacity: 0.45; }
.hero-mile__glow--9  { width: 90px; height: 90px; top: 48%; left: 8%; opacity: 0.65; }
.hero-mile__glow--10 { width: 220px; height: 220px; top: 55%; left: 55%; opacity: 0.35; }
.hero-mile__glow--11 { width: 70px; height: 70px; top: 14%; left: 48%; opacity: 0.8; }
.hero-mile__glow--12 { width: 130px; height: 130px; bottom: 28%; left: 4%; opacity: 0.55; }
.hero-mile__glow--13 { width: 250px; height: 250px; top: -4%; right: 18%; opacity: 0.4; }
.hero-mile__glow--14 { width: 80px; height: 80px; bottom: 40%; right: 8%; opacity: 0.7; }
.hero-mile__glow--15 { width: 160px; height: 160px; top: 28%; right: 40%; opacity: 0.4; }
.hero-mile__glow--16 { width: 110px; height: 110px; bottom: 8%; left: 42%; opacity: 0.55; }
.hero-mile__glow--17 { width: 60px; height: 60px; top: 62%; right: 28%; opacity: 0.75; }
.hero-mile__glow--18 { width: 200px; height: 200px; top: 70%; left: 70%; opacity: 0.3; }

/* Sharper mid-size bubbles (balloon look) */
.hero-mile__bubble {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 18%, transparent 42%),
    radial-gradient(circle, rgba(200, 185, 255, 0.45) 0%, rgba(130, 100, 220, 0.18) 50%, transparent 72%);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.15);
}

.hero-mile__bubble--1  { width: 48px; height: 48px; top: 12%; left: 18%; opacity: 0.85; }
.hero-mile__bubble--2  { width: 32px; height: 32px; top: 22%; left: 62%; opacity: 0.75; }
.hero-mile__bubble--3  { width: 64px; height: 64px; top: 38%; left: 12%; opacity: 0.7; }
.hero-mile__bubble--4  { width: 28px; height: 28px; top: 18%; right: 16%; opacity: 0.9; }
.hero-mile__bubble--5  { width: 42px; height: 42px; bottom: 22%; left: 28%; opacity: 0.8; }
.hero-mile__bubble--6  { width: 56px; height: 56px; bottom: 18%; right: 22%; opacity: 0.65; }
.hero-mile__bubble--7  { width: 24px; height: 24px; top: 44%; left: 48%; opacity: 0.85; }
.hero-mile__bubble--8  { width: 36px; height: 36px; top: 58%; right: 14%; opacity: 0.75; }
.hero-mile__bubble--9  { width: 72px; height: 72px; top: 8%; left: 72%; opacity: 0.55; }
.hero-mile__bubble--10 { width: 20px; height: 20px; bottom: 32%; left: 58%; opacity: 0.9; }
.hero-mile__bubble--11 { width: 40px; height: 40px; top: 70%; left: 8%; opacity: 0.7; }
.hero-mile__bubble--12 { width: 52px; height: 52px; top: 30%; right: 8%; opacity: 0.6; }

.hero-mile__spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
  opacity: 0.95;
}

.hero-mile__spark--1 { top: 14%; left: 22%; }
.hero-mile__spark--2 { top: 24%; right: 22%; width: 9px; height: 9px; }
.hero-mile__spark--3 { top: 52%; left: 8%; width: 11px; height: 11px; }
.hero-mile__spark--4 { bottom: 20%; right: 18%; width: 10px; height: 10px; }
.hero-mile__spark--5 { top: 36%; left: 55%; width: 7px; height: 7px; opacity: 0.8; }
.hero-mile__spark--6 { bottom: 32%; left: 35%; width: 8px; height: 8px; }
.hero-mile__spark--7 { top: 8%; right: 38%; width: 10px; height: 10px; }
.hero-mile__spark--8 { bottom: 14%; left: 72%; width: 9px; height: 9px; }

.hero-mile__dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 215, 255, 0.9);
  box-shadow: 0 0 8px 2px rgba(170, 190, 255, 0.55);
}

.hero-mile__dot--1 { top: 18%; left: 48%; }
.hero-mile__dot--2 { top: 62%; right: 32%; width: 4px; height: 4px; }
.hero-mile__dot--3 { bottom: 28%; left: 14%; width: 3px; height: 3px; }
.hero-mile__dot--4 { top: 44%; right: 12%; }
.hero-mile__dot--5 { top: 28%; left: 78%; width: 4px; height: 4px; }
.hero-mile__dot--6 { bottom: 42%; left: 42%; width: 3px; height: 3px; }

.hero-mile__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff8ae8;
}

.hero-mile__main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  margin-bottom: 1.15rem;
}

.hero-mile__figure {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  line-height: 0.8;
}

.hero-mile__number {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(9rem, 22vw, 15rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.8;
  background: linear-gradient(180deg, #ffffff 8%, #f0e6f8 40%, #d4b0e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}

.hero-mile__years {
  position: absolute;
  right: -0.2em;
  bottom: 0.08em;
  font-family: "Segoe Script", "Brush Script MT", "Apple Chancery", cursive;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transform: rotate(-8deg);
}

.hero-mile__tagline {
	max-width: 56rem;
	margin: 0;
	text-align: center;
	font-size: clamp(1.25rem, 2.6vw, 1.65rem);
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.98);
}

.hero-mile__foot {
  margin-bottom: 1.75rem;
}

.hero-mile__since {
  margin: 0 0 0.45rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero-mile__claim {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  color: #ff9aef;
}

.hero__slide--milestone .hero__cta {
  justify-content: center;
}

.hero__slide--milestone .btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero__slide--milestone .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Desktop: banner text up near the menu */
@media (min-width: 901px) {
  .hero__slide {
    align-items: flex-start;
    padding: 5.75rem 0 5rem;
  }

  .hero__slide--milestone {
    align-items: flex-start;
    padding: 1.75rem 0 4rem;
  }
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(30, 22, 48, 0.45);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hero__arrow--prev {
  left: max(1rem, calc((100% - var(--shell)) / 2));
}

.hero__arrow--next {
  right: max(1rem, calc((100% - var(--shell)) / 2));
}

.hero__arrow:hover {
  background: var(--rose-600);
  border-color: var(--rose-600);
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.hero__dot.is-active {
  background: var(--white);
  transform: scale(1.25);
}

/* Section heads */
.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head--light {
  color: var(--white);
}

.section-head--light .section-head__eyebrow {
  color: var(--rose-200);
}

.section-head__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
}

.section-head--light h2 {
  color: var(--white);
}

.section-head__lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-head--light .section-head__lead {
  color: rgba(255, 255, 255, 0.8);
}

/* Stories */
.stories {
  padding: 5rem 0 4.5rem;
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.story {
  display: block;
  padding: 2rem 1.5rem 2.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
  min-height: 100%;
}

.story:nth-child(4n) {
  border-right: 0;
}

.story:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.story__index {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--rose-400);
  margin-bottom: 1rem;
}

.story h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
  color: var(--rose-800);
}

.story p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.story__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.story:hover .story__link {
  color: var(--rose-800);
}

/* Quick actions */
.actions {
  padding: 4.5rem 0;
  background: var(--gradient-deep);
  color: var(--white);
}

.actions__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.85rem;
}

.actions__grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 1.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.actions__grid a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.actions__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}

.actions__icon::before,
.actions__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.actions__icon--donate::before {
  content: "₹";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
}

.actions__icon--camp::before {
  width: 1.1rem;
  height: 0.7rem;
  border: 2px solid currentColor;
  border-top: 0;
  bottom: 0.7rem;
  top: auto;
}

.actions__icon--camp::after {
  width: 0;
  height: 0;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  border-bottom: 0.65rem solid currentColor;
  top: 0.55rem;
  bottom: auto;
}

.actions__icon--map::before {
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.actions__icon--volunteer::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
  top: 0.55rem;
  bottom: auto;
}

.actions__icon--volunteer::after {
  width: 1.1rem;
  height: 0.7rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 0.7rem 0.7rem 0 0;
  top: auto;
  bottom: 0.55rem;
}

.actions__icon--enquire::before {
  content: "?";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.actions__icon--doctor::before {
  width: 1.1rem;
  height: 0.28rem;
  background: currentColor;
}

.actions__icon--doctor::after {
  width: 0.28rem;
  height: 1.1rem;
  background: currentColor;
}

.actions__icon--track::before {
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 0.45rem;
  left: 0.4rem;
  right: auto;
  bottom: auto;
}

.actions__icon--track::after {
  width: 0.45rem;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  top: auto;
  left: auto;
  right: 0.55rem;
  bottom: 0.65rem;
}

/* Mission */
.mission {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 520px;
}

.mission__media {
  background-size: cover;
  background-position: center;
  min-height: 320px;
  position: relative;
}

.mission__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255, 255, 255, 0.15));
}

.mission__copy {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(160deg, var(--cream), var(--white) 55%);
}

.mission__copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--rose-800);
  margin-bottom: 1rem;
}

.mission__copy > p {
  color: var(--ink-soft);
  max-width: 34rem;
}

.mission__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  margin: 0.5rem 0 1.75rem;
}

.mission__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.mission__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--rose-500);
  border-radius: 50%;
}

/* Serving banner */
.serving {
  background:
    linear-gradient(120deg, rgba(122, 31, 117, 0.88), rgba(228, 72, 211, 0.72)),
    url("../images/hero-05.webp") center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.serving__inner h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 0.75rem;
}

.serving__inner p {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  opacity: 0.92;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--rose-800);
  border-color: rgba(228, 72, 211, 0.35);
}

.btn--ghost-dark:hover {
  background: var(--rose-800);
  color: var(--white);
  border-color: var(--rose-800);
}

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

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

/* Impact stats */
.impact {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.impact__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--rose-700);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.impact__item span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Continuum */
.continuum {
  padding: 5rem 0 4.5rem;
  background:
    linear-gradient(180deg, var(--cream), var(--white) 45%);
}

.continuum__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.continuum__card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-top: 3px solid var(--rose-500);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}

.continuum__card:hover {
  transform: translateY(-4px);
}

.continuum__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose-400);
  display: block;
  margin-bottom: 0.75rem;
}

.continuum__card h3 {
  font-size: 1.4rem;
  color: var(--rose-800);
}

.continuum__card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.continuum__card a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.continuum__card a:hover {
  color: var(--rose-800);
}

/* Global */
.global {
  padding: 4.5rem 0;
  background: #160c22;
  color: rgba(255, 255, 255, 0.85);
}

.global .section-head h2,
.global .section-head__lead {
  color: var(--white);
}

.global .section-head__eyebrow {
  color: var(--rose-200);
}

.global .section-head__lead {
  color: rgba(255, 255, 255, 0.7);
}

.global__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.global__card {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.global__flag {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-200);
}

.global__card h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.global__card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.global__card a {
  color: var(--white);
}

.global__card a:hover {
  color: var(--rose-200);
}

/* Screening */
.screening {
  padding: 5rem 0 4.5rem;
}

.screening__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.screen-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--rose-500);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.screen-card__img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.screen-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.screen-card h3 {
  font-size: 1.3rem;
  color: var(--rose-800);
}

.screen-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.screen-card--cta {
  background: var(--gradient-brand);
  color: var(--white);
  border-bottom-color: transparent;
  justify-content: center;
}

.screen-card--cta h3 {
  color: var(--white);
}

.screen-card--cta p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.screen-card--cta .btn--donate {
  background: var(--white);
  color: var(--rose-800);
  border-color: var(--white);
}

/* Help */
.help {
  padding: 5rem 0;
  background: var(--gradient-deep);
  color: var(--white);
}

.help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.help__card {
  display: block;
  padding: 1.75rem 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.25s, transform 0.25s;
  min-height: 100%;
}

.help__card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.help__card h3 {
  font-size: 1.45rem;
  color: var(--white);
}

.help__card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.help__card span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-100);
}

/* Camps */
.camps {
  padding: 5rem 0 4.5rem;
  background: var(--cream);
}

.camps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.camp-card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--rose-500);
  box-shadow: var(--shadow);
}

.camp-card__tag {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.camp-card h3 {
  font-size: 1.4rem;
  color: var(--rose-800);
}

.camp-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.camp-card a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.camp-card a:hover {
  color: var(--rose-800);
}

/* Facts */
.facts {
  padding: 5rem 0;
}

.facts__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.facts__copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--rose-800);
}

.facts__copy > p {
  color: var(--ink-soft);
}

.facts__list {
  margin: 1rem 0 1.75rem;
}

.facts__list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.facts__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rose-500);
}

.facts__quote {
  margin: 0;
  padding: 2.25rem 2rem;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: 2px;
}

.facts__quote p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.facts__quote cite {
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.85;
}

.serving__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* FAQ */
.faq {
  padding: 5rem 0 4.5rem;
  background: var(--cream);
}

.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0 1.25rem;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 600;
  color: var(--rose-800);
  font-size: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--rose-500);
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
  padding: 4.5rem 0;
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(228, 72, 211, 0.14), transparent 70%),
    var(--white);
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rose-800);
  margin-bottom: 0.75rem;
}

.final-cta > .shell > p,
.final-cta__inner > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.site-footer__note {
  margin: 0;
  opacity: 0.8;
}

.highlights {
  padding: 5rem 0 4.5rem;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.highlight {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-bottom: 3px solid var(--rose-500);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

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

.highlight__img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.highlight__body {
  padding: 1.5rem 1.4rem 1.75rem;
}

.highlight h3 {
  font-size: 1.45rem;
  color: var(--rose-800);
}

.highlight p {
  color: var(--muted);
  font-size: 0.95rem;
}

.highlight a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.highlight a:hover {
  color: var(--rose-800);
}

/* Footer */
.site-footer {
  background: #160c22;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 3.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer a:hover {
  color: var(--rose-200);
}

.site-footer__brand img {
  margin-bottom: 0.85rem;
}

.site-footer__brand p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.site-footer__address {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.site-footer ul li {
  margin-bottom: 0.45rem;
}

.site-footer ul a {
  font-size: 0.92rem;
}

.site-footer__founder p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom p {
  margin: 0;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: var(--rose-600);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(228, 72, 211, 0.35);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--rose-800);
}

/* Achievements modal */
.achieve-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.achieve-modal[hidden] {
  display: none !important;
}

.achieve-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 48, 0.55);
  backdrop-filter: blur(5px);
}

.achieve-modal__box {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(92vh, 720px);
  overflow: hidden;
  background: #f4f5f8;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(40, 20, 60, 0.28);
  padding: 0;
  animation: achieveIn 0.5s var(--ease) both;
  text-align: center;
  color: var(--ink);
}

.achieve-modal__ribbon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.achieve-modal__ribbon-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.achieve-modal__ribbon-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(244, 245, 248, 0.08) 0%, rgba(244, 245, 248, 0.45) 42%, rgba(244, 245, 248, 0.65) 100%);
  pointer-events: none;
}

.achieve-modal__content {
  position: relative;
  z-index: 1;
  padding: 1.6rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  justify-content: center;
}

.achieve-modal__close,
.achieve-modal__hero,
.achieve-modal__stats,
.achieve-modal__actions {
  position: relative;
  z-index: 1;
}

.achieve-modal__logo {
  position: relative;
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 0.3rem;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(60, 40, 90, 0.18);
  animation: logoPop 0.55s var(--ease) 0.15s both;
}

@keyframes logoPop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes achieveIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.achieve-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--rose-800);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(60, 40, 90, 0.15);
}

.achieve-modal__close:hover {
  background: #ffffff;
  color: var(--rose-600);
}

.achieve-modal__hero {
  padding: 0.15rem 0.75rem 0.35rem;
  max-width: 26rem;
}

.achieve-modal__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.achieve-modal__hero h2 {
  margin: 0 auto 0.65rem;
  max-width: 18ch;
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  color: var(--rose-800);
  line-height: 1.2;
  text-wrap: balance;
}

.achieve-modal__intro {
  color: #4a4568;
  font-size: 0.95rem;
  margin: 0 auto 1.2rem;
  max-width: 36ch;
}

.achieve-modal__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  width: min(100%, 34rem);
}

.achieve-modal__stats li {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1rem 0.5rem 0.9rem;
  box-shadow: 0 10px 24px rgba(60, 40, 90, 0.12);
}

.achieve-modal__stats .achieve-count {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--rose-600);
  line-height: 1.05;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.achieve-modal__stats span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.achieve-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.achieve-modal__actions .btn--donate {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(228, 72, 211, 0.28);
}

.achieve-modal__actions .btn--donate:hover {
  background: var(--rose-600);
  border-color: transparent;
  color: #ffffff;
}

.achieve-modal__actions .btn--ghost-dark {
  background: rgba(255, 255, 255, 0.88);
  color: var(--rose-800);
  border-color: rgba(47, 42, 107, 0.25);
}

.achieve-modal__actions .btn--ghost-dark:hover {
  background: #ffffff;
  color: var(--rose-800);
  border-color: var(--rose-800);
}

@media (max-width: 640px) {
  .achieve-modal__stats {
    grid-template-columns: 1fr;
  }

  .achieve-modal__hero h2 {
    max-width: none;
  }

  .achieve-modal__logo {
    width: 76px;
    height: 76px;
  }

  .achieve-modal__content {
    min-height: 380px;
    padding: 1.4rem 1rem 1.25rem;
  }

  .achieve-modal__ribbon-bg img {
    object-position: left center;
  }
}

/* Chatbot */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chatbot {
  position: fixed;
  right: 1.25rem;
  bottom: 5.25rem;
  z-index: 90;
  font-family: var(--font-body);
}

.chatbot__launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 0.75rem 1rem 0.75rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(122, 31, 117, 0.35);
  font-weight: 600;
  font-size: 0.88rem;
}

.chatbot__launcher:hover {
  background: var(--gradient-deep);
}

.chatbot__launcher-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.chatbot__launcher-icon::before {
  content: "";
  position: absolute;
  inset: 0.28rem;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0.2rem;
}

.chatbot__panel {
  position: absolute;
  right: 0;
  bottom: 3.6rem;
  width: min(360px, calc(100vw - 2rem));
  height: 460px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(30, 22, 48, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chatbot__panel[hidden] {
  display: none !important;
}

.chatbot__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--gradient-brand);
  color: var(--white);
}

.chatbot__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.chatbot__status {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  opacity: 0.9;
}

.chatbot__close {
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.chatbot__bubble {
  max-width: 88%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.chatbot__bubble a {
  color: var(--rose-700);
  text-decoration: underline;
  font-weight: 600;
}

.chatbot__bubble--bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  border-bottom-left-radius: 4px;
}

.chatbot__bubble--user {
  align-self: flex-end;
  background: var(--rose-600);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chatbot__quick button {
  border: 1px solid rgba(122, 31, 117, 0.2);
  background: var(--white);
  color: var(--rose-800);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
}

.chatbot__quick button:hover {
  background: var(--cream);
}

.chatbot__quick button:hover {
  background: var(--cream);
}

.chatbot__form {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem 0.8rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chatbot__form input {
  flex: 1;
  border: 1px solid var(--line);
  padding: 0.6rem 0.7rem;
  font: inherit;
  font-size: 0.86rem;
  border-radius: 2px;
  min-width: 0;
}

.chatbot__form input:focus {
  outline: 2px solid rgba(228, 72, 211, 0.35);
  outline-offset: 1px;
}

.chatbot__form button {
  border: 0;
  background: var(--rose-600);
  color: var(--white);
  font-weight: 600;
  padding: 0.6rem 0.85rem;
  cursor: pointer;
  border-radius: 2px;
}

.chatbot__form button:hover {
  background: var(--rose-800);
}

@media (max-width: 640px) {
  .chatbot {
    right: 0.85rem;
    bottom: 4.75rem;
  }

  .chatbot__launcher-label {
    display: none;
  }

  .chatbot__launcher {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .chatbot__panel {
    height: min(70vh, 440px);
  }
}

.btn--outline {
  background: var(--cream);
  color: var(--rose-800);
  border-color: var(--rose-200);
}

.btn--outline:hover {
  background: var(--rose-100);
  border-color: var(--rose-400);
  color: var(--rose-800);
}

/* ============================================================
   ICS-inspired homepage sections (WCC purple/magenta palette)
   ============================================================ */

/* Continuum band — static grid on desktop (not a carousel) */
.ics-pillars {
  background: var(--gradient-deep);
  padding: 2.75rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.ics-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 10% 50%, rgba(228, 72, 211, 0.15), transparent 70%),
    radial-gradient(500px 180px at 90% 50%, rgba(228, 72, 211, 0.2), transparent 70%);
  pointer-events: none;
}

.ics-pillars__shell {
  display: block;
  position: relative;
  z-index: 1;
}

.ics-pillars__viewport {
  overflow: visible;
}

.ics-pillars__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
  transform: none !important;
}

.ics-pillar {
  min-width: 0;
}

.ics-pillar__link {
  display: block;
  text-align: center;
  color: var(--white);
  padding: 0.5rem 0.75rem;
  transition: transform 0.3s var(--ease);
}

.ics-pillar__link:hover {
  transform: translateY(-4px);
  color: var(--white);
}

.ics-pillar__icon {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-700);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ics-pillar__icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.ics-pillar__link:hover .ics-pillar__icon {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(228, 72, 211, 0.25);
}

.ics-pillar h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.ics-pillar p {
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.ics-pillars__nav {
  display: none;
}

/* Movement section — white + floating blobs */
.ics-movement {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: var(--white);
  overflow: hidden;
}

.ics-movement__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ics-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  animation: blobFloat 12s ease-in-out infinite;
}

.ics-blob--1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(228, 72, 211, 0.18), transparent 70%);
  top: -80px;
  left: -60px;
  animation-delay: 0s;
}

.ics-blob--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(228, 72, 211, 0.12), transparent 70%);
  top: 20%;
  right: 5%;
  animation-delay: -3s;
}

.ics-blob--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 31, 117, 0.1), transparent 70%);
  bottom: -120px;
  left: 30%;
  animation-delay: -6s;
}

.ics-blob--4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 50, 189, 0.14), transparent 70%);
  bottom: 10%;
  right: 25%;
  animation-delay: -9s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.04); }
  66% { transform: translate(-10px, 14px) scale(0.98); }
}

.ics-movement__grid {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1.5fr minmax(200px, 260px);
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.ics-movement__poster {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(122, 31, 117, 0.12);
  max-width: 240px;
}

.ics-movement__poster img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.ics-movement__poster-cta {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.78rem;
  padding: 0.65rem 1.1rem;
}

.ics-movement__copy h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  color: var(--rose-800);
  margin-bottom: 1rem;
}

.ics-movement__copy p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.ics-stats-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 12px 36px rgba(122, 31, 117, 0.1);
}

.ics-stats-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin: 0 0 1rem;
}

.ics-stats-card__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.ics-stats-card__list li {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.ics-stats-card__list li:last-child {
  border-bottom: 0;
}

.ics-stat {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--rose-700);
  line-height: 1.1;
}

.ics-stats-card__list span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.ics-stats-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-600);
}

.ics-stats-card__link:hover {
  color: var(--rose-800);
}

/* What's New — gradient band + cards */
.ics-news {
  background: var(--cream);
  padding-bottom: 3.5rem;
}

.ics-news__band {
  background: var(--gradient-brand);
  padding: 1.1rem 0;
  margin-bottom: 2.5rem;
}

.ics-news__band h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  text-transform: none;
}

.ics-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ics-news-card {
  background: var(--white);
  padding: 1.5rem 1.35rem;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(122, 31, 117, 0.08);
  border-top: 3px solid var(--rose-500);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ics-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(122, 31, 117, 0.14);
}

.ics-news-card time {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose-600);
  margin-bottom: 0.5rem;
}

.ics-news-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rose-800);
  margin: 0 0 0.45rem;
}

.ics-news-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.ics-news-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-600);
  text-transform: lowercase;
}

.ics-news-card a:hover {
  color: var(--rose-800);
}

.ics-news__more {
  text-align: center;
  margin: 2rem 0 0;
}

.ics-news__more a {
  font-weight: 600;
  color: var(--rose-700);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--rose-200);
  border-radius: 2px;
  background: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.ics-news__more a:hover {
  background: var(--rose-100);
  border-color: var(--rose-400);
}

/* How can you help + Upcoming camps */
.ics-help {
  padding: 0;
}

.ics-help__band {
  background: var(--gradient-brand);
  padding: 1.1rem 0;
}

.ics-help__band-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.ics-help__band h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  text-align: left;
  text-transform: none;
}

.ics-help__band h2:last-child {
  text-align: left;
  padding-left: 0.15rem;
}

.ics-help__body {
  position: relative;
  padding: 2.5rem 0 3.25rem;
  background:
    rgba(122, 31, 117, 0.9),
    url("../images/banner-hd-02.jpg") center / cover no-repeat fixed;
}

.ics-help__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 60%, rgba(228, 72, 211, 0.12), transparent 50%);
  pointer-events: none;
}

.ics-help__body .shell {
  position: relative;
  z-index: 1;
}

.ics-help__split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.ics-help__col {
  min-width: 0;
}

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

.ics-help-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  text-align: left;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border-radius: 4px;
  border-top: 0;
  border-left: 3px solid var(--rose-500);
  box-shadow: 0 10px 32px rgba(26, 8, 18, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ics-help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(26, 8, 18, 0.22);
}

.ics-help-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease);
}

.ics-help-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.ics-help-card:hover .ics-help-card__icon {
  transform: scale(1.06) rotate(-3deg);
}

.ics-help-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rose-800);
  margin: 0 0 0.35rem;
}

.ics-help-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0 0 0.55rem;
  line-height: 1.55;
}

.ics-help-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-600);
  text-transform: lowercase;
}

.ics-help-card a:hover {
  color: var(--rose-800);
}

.ics-camps {
  background: var(--white);
  border-radius: 4px;
  border-top: 3px solid #ea580c;
  box-shadow: 0 10px 32px rgba(26, 8, 18, 0.18);
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ics-camps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  flex: 1;
}

.ics-camps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.ics-camps__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ics-camps__date {
  width: 3.2rem;
  min-height: 3.2rem;
  border-radius: 6px;
  background: linear-gradient(145deg, #22c55e 0%, #15803d 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.25);
}

.ics-camps__day {
  font-size: 1.1rem;
  font-weight: 700;
}

.ics-camps__month {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}

.ics-camps__info h3 {
  margin: 0 0 0.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.ics-camps__meta {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ics-camps__info p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.ics-camps__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.ics-camps__actions .btn--ghost {
  color: var(--rose-800);
  border-color: rgba(122, 31, 117, 0.25);
  background: transparent;
}

.ics-camps__actions .btn--ghost:hover {
  background: var(--rose-50);
}

/* Screening strip */
.ics-screening {
  padding: 4rem 0;
  background: var(--cream);
}

.ics-screening__head {
  text-align: center;
  margin-bottom: 2rem;
}

.ics-screening__head h2 {
  color: var(--rose-800);
  margin-bottom: 0.5rem;
}

.ics-screening__head p {
  color: var(--muted);
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}

.ics-screen-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.ics-screen-carousel__viewport {
  overflow: hidden;
}

.ics-screen-carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.ics-screen-carousel__nav {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(228, 72, 211, 0.3);
  background: var(--white);
  color: var(--brand, #e448d3);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ics-screen-carousel__nav:hover:not(:disabled) {
  background: var(--brand, #e448d3);
  color: #fff;
}

.ics-screen-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ics-screen-item {
  flex: 0 0 auto;
  width: calc((100% - 3rem) / 4);
  min-width: 0;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(122, 31, 117, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.ics-screen-item__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ics-screen-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(122, 31, 117, 0.14);
}

.ics-screen-item__img {
  height: 120px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}

.ics-screen-item:hover .ics-screen-item__img {
  transform: scale(1.06);
}

.ics-screen-item h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 0.5rem;
  margin: 0;
  color: var(--rose-800);
}

.ics-screening__more {
  text-align: center;
  margin: 1.5rem 0 0;
}

.ics-screening__more a {
  font-weight: 600;
  color: var(--brand, #e448d3);
}

/* Screening detail page (bookmarks) */
.screen-detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.screen-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  scroll-margin-top: 6rem;
}

.screen-detail:target {
  border-color: rgba(228, 72, 211, 0.45);
  box-shadow: 0 8px 24px rgba(122, 31, 117, 0.08);
}

.screen-detail__photo {
  margin: 0;
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}

.screen-detail__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-detail__copy h3 {
  margin: 0 0 0.55rem;
  color: var(--rose-800);
  font-family: var(--font-body);
  font-size: 1.15rem;
}

.screen-detail__copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Gallery carousel */
.ics-gallery {
  padding: 4rem 0 4.5rem;
  background: var(--white);
}

.ics-gallery__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ics-gallery__head h2 {
  margin: 0;
  color: var(--rose-800);
}

.ics-gallery__head a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose-600);
}

.ics-gallery__track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-400) var(--cream);
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.ics-gallery__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.ics-gallery__item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(122, 31, 117, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  color: var(--ink);
}

.ics-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(122, 31, 117, 0.16);
  color: var(--ink);
}

.ics-gallery__item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.ics-gallery__item:hover img {
  transform: scale(1.05);
}

.ics-gallery__item span {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-800);
}

/* Final CTA band */
.ics-cta {
  background: var(--gradient-deep);
  padding: 3.5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ics-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 20% 50%, rgba(228, 72, 211, 0.2), transparent 70%),
    radial-gradient(400px 180px at 80% 50%, rgba(228, 72, 211, 0.15), transparent 70%);
  pointer-events: none;
}

.ics-cta__inner {
  position: relative;
  z-index: 1;
}

.ics-cta h2 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.ics-cta p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.5rem;
  max-width: 32rem;
  margin-inline: auto;
}

.ics-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ics-cta .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
}

.ics-cta .btn--ghost:hover {
  background: var(--white);
  color: var(--rose-800);
}

/* Staggered reveal */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

.ics-help__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.ics-help__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.ics-news__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.ics-news__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

/* Inner pages must stay visible — do not wait for scroll reveal */
.page-content .reveal,
.inner-article.reveal,
.faq-page .reveal {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .primary-nav a {
    font-size: 0.72rem;
    padding: 0.4rem 0.4rem;
  }

  .actions__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .story:nth-child(2n) {
    border-right: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    background: var(--primary);
    border-radius: 50%;
    padding: 0.45rem;
  }

  .header-icons {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0.25rem;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    min-height: auto;
    padding: 0.55rem 0;
    gap: 0.45rem;
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.5rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .brand__text {
    display: flex;
    min-width: 0;
  }

  .brand__name {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary);
  }

  .brand__sub {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--rose-400);
    font-weight: 600;
  }

  .nav-toggle span {
    background: #ffffff;
    height: 2px;
    margin: 3px 0;
    border-radius: 2px;
    width: 100%;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .header-icon {
    width: 2.35rem;
    height: 2.35rem;
    background: var(--rose-700);
    border: 0;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(228, 72, 211, 0.4);
  }

  .header-icon--donate {
    background: var(--primary);
  }

  .header-icon--camp {
    background: var(--rose-400);
  }

  .header-icon--volunteer {
    background: var(--primary);
  }

  .header-icon--track {
    background: var(--rose-700);
  }

  .topbar__links {
    width: 100%;
    justify-content: center;
    gap: 0.45rem;
  }

  .topbar__chip {
    padding: 0.3rem 0.55rem 0.3rem 0.3rem;
    gap: 0.4rem;
  }

  .topbar__chip-icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .topbar__chip-label {
    font-size: 0.58rem;
  }

  .topbar__chip-value {
    font-size: 0.76rem;
  }

  .topbar__donate-text {
    display: none;
  }

  .topbar__phone--primary .topbar__phone-icon {
    display: block;
  }

  .topbar__inner {
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.4rem 0;
  }

  .topbar__actions {
    width: 100%;
    justify-content: center;
    gap: 0.55rem 0.85rem;
    flex-wrap: wrap;
  }

  .topbar__phone {
    font-size: 0.72rem;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }

  .primary-nav.is-open {
    max-height: 70vh;
    overflow-y: auto;
  }

  .primary-nav ul {
    flex-direction: column;
    padding: 0.5rem 1.25rem 1rem;
  }

  .primary-nav a {
    font-size: 0.9rem;
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

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

  .mission__copy {
    padding: 2.5rem 1.5rem 3rem;
  }

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

  .impact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .continuum__grid,
  .global__grid,
  .camps__grid,
  .screening__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .facts__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }

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

  .ics-movement__grid {
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
  }

  .ics-movement__poster {
    max-width: 200px;
  }

  .ics-movement__poster img {
    height: 220px;
  }

  .ics-movement__aside {
    grid-column: 1 / -1;
  }

  .ics-help__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ics-help__split,
  .ics-help__band-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ics-help__band h2 {
    text-align: center;
    padding-inline: 0.25rem;
  }

  .ics-help__body {
    background-attachment: scroll;
    padding: 1.75rem 0 2.25rem;
  }

  .ics-help-card {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .ics-camps {
    padding: 1rem;
  }

  .ics-screen-item {
    width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 1.5rem, 1180px);
  }

  .header-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .header-icons {
    gap: 0.28rem;
  }

  .nav-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand__name {
    font-size: 0.95rem;
    color: var(--primary);
  }

  .brand__sub {
    font-size: 0.58rem;
    color: var(--rose-400);
  }

  .hero {
    height: min(78vh, 620px);
    min-height: 380px;
  }

  .hero__content {
    padding-left: 0;
    padding-right: 2.5rem;
    max-width: 100%;
  }

  .hero__content--milestone {
    padding-right: 0;
    max-width: 100%;
  }

  .hero-mile__number {
    font-size: clamp(5.5rem, 28vw, 9rem);
  }

  .hero-mile__years {
    font-size: clamp(2rem, 10vw, 3.2rem);
    right: -0.05em;
    bottom: 0.05em;
  }

  .hero-mile__main {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-mile__tagline {
    text-align: center;
    max-width: 20rem;
  }

  .hero__arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
  }

  .hero__arrow--prev {
    left: 0.65rem;
  }

  .hero__arrow--next {
    right: 0.65rem;
  }

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

  .story {
    border-right: 0;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .continuum__grid,
  .global__grid,
  .camps__grid,
  .screening__grid,
  .help__grid {
    grid-template-columns: 1fr;
  }

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

  .ics-pillars__track {
    grid-template-columns: 1fr;
  }

  .ics-pillars__shell {
    gap: 0.35rem;
  }

  .ics-pillars__nav {
    display: none;
  }

  .ics-movement__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .ics-movement__poster {
    max-width: 220px;
    margin: 0 auto;
  }

  .ics-movement__poster img {
    height: 240px;
  }

  .ics-movement {
    padding: 3rem 0 3.5rem;
  }

  .ics-news__grid {
    grid-template-columns: 1fr;
  }

  .ics-screen-item {
    width: 100%;
  }

  .screen-detail {
    grid-template-columns: 1fr;
  }

  .screen-detail__photo {
    width: 120px;
    height: 120px;
  }
}

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

.page-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: end stretch;
  color: var(--white);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(30, 22, 48, 0.78) 0%, rgba(122, 31, 117, 0.55) 55%, rgba(30, 22, 48, 0.35) 100%),
    linear-gradient(to top, rgba(30, 22, 48, 0.55), transparent 50%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
}

.page-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
}

.page-hero__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}


.about-intro {
  padding: 4.5rem 0;
  background: var(--white);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about-intro__copy h2 {
  color: var(--rose-800);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}

.about-intro__copy p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.about-intro__points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about-intro__points li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--rose-800);
}

.about-intro__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
}

.about-quote {
  margin: 0;
  padding: 2rem 1.75rem;
  background: var(--gradient-deep);
  color: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
  margin: 0 0 1rem;
  color: var(--white);
}

.about-quote cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
}

.about-work {
  padding: 4.5rem 0;
  background: var(--cream);
}

.about-work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-work-card {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  border-radius: 4px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 24px rgba(122, 31, 117, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(228, 72, 211, 0.14);
}

.about-work-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rose-800);
  margin: 0 0 0.55rem;
}

.about-work-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.about-why {
  padding: 4.5rem 0;
  background: var(--white);
}

.about-why__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.about-why__copy h2 {
  color: var(--rose-800);
}

.about-why__copy > p {
  color: var(--ink-soft);
}

.about-why__panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  text-align: center;
}

.about-why__stat {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.about-why__label {
  margin: 0.75rem 0 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.about-leaders {
  padding: 4.5rem 0;
  background: var(--cream);
}

.about-leaders__block {
  margin-top: 2rem;
}

.about-leaders__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
}

.about-leaders__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-leaders__grid--compact {
  grid-template-columns: repeat(5, 1fr);
}

.about-leaders__grid li {
  background: var(--white);
  border-radius: 4px;
  padding: 1.15rem 1rem;
  box-shadow: 0 6px 20px rgba(122, 31, 117, 0.07);
  border-left: 3px solid var(--primary);
}

.about-leaders__grid strong {
  display: block;
  font-size: 0.92rem;
  color: var(--rose-800);
  margin-bottom: 0.25rem;
}

.about-leaders__grid span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.about-founder {
  padding: 4.5rem 0;
  background: var(--white);
}

.about-founder__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.about-founder__copy h2 {
  color: var(--rose-800);
  margin-bottom: 0.35rem;
}

.about-founder__role {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-founder__copy > p {
  color: var(--ink-soft);
}

.about-founder__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}

.about-founder__contact a {
  font-weight: 600;
  color: var(--rose-700);
}

.about-founder__contact a:hover {
  color: var(--primary);
}

.about-founder__card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(122, 31, 117, 0.08);
}

.about-founder__card-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-founder__card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.about-founder__card .btn {
  margin-top: 0.5rem;
}

@media (max-width: 1100px) {
  .about-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-leaders__grid,
  .about-leaders__grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-intro__grid,
  .about-why__inner,
  .about-founder__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__content {
    padding: 3.25rem 0 2.25rem;
  }
}

@media (max-width: 640px) {
  .about-work__grid,
  .about-leaders__grid,
  .about-leaders__grid--compact {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 220px;
  }
}

/* ============================================================
   Nav submenu + inner page sidebar layout
   ============================================================ */

.primary-nav .has-submenu {
  position: relative;
}

.primary-nav .submenu-toggle {
  display: none;
}

.primary-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  max-height: min(70vh, 480px);
  overflow-y: auto;
  margin: 0;
  padding: 0.45rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(122, 31, 117, 0.12);
  z-index: 50;
}

.primary-nav .has-submenu:hover > .submenu,
.primary-nav .has-submenu:focus-within > .submenu {
  display: block;
}

.primary-nav .submenu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 0;
  color: var(--ink-soft);
}

.primary-nav .submenu a:hover,
.primary-nav .submenu a.is-active {
  color: var(--primary);
  background: var(--rose-50);
  border-bottom-color: transparent;
}

/* Cancer Types mega menu */
.primary-nav .has-megamenu {
  position: static;
}

.primary-nav .megamenu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  /* Pull up into the header so the cursor never leaves the hover target */
  top: calc(100% - 2.75rem);
  z-index: 60;
  padding: 2.75rem 1rem 1rem;
  box-sizing: border-box;
}

.primary-nav .has-megamenu:hover > .megamenu,
.primary-nav .has-megamenu:focus-within > .megamenu,
.primary-nav .has-megamenu.is-mega-visible > .megamenu {
  display: block;
}

.primary-nav .megamenu__inner {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  gap: 1.25rem;
  max-width: var(--shell, 1180px);
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(122, 31, 117, 0.14);
  position: relative;
  z-index: 1;
}

.primary-nav .megamenu__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.primary-nav .megamenu__title {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}

.primary-nav .megamenu__text {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.primary-nav .megamenu__cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
}

.primary-nav .megamenu__cta:hover {
  border-bottom-color: var(--primary);
}

.primary-nav .megamenu__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.15rem 0.75rem;
  max-height: min(60vh, 420px);
  overflow-y: auto;
}

.primary-nav .megamenu__grid a {
  display: block;
  padding: 0.45rem 0.55rem;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  border-radius: 4px;
}

.primary-nav .megamenu__grid a:hover,
.primary-nav .megamenu__grid a.is-active {
  color: var(--primary);
  background: var(--rose-50);
}

.page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
  align-items: start;
}

.page-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.25rem 1rem;
}

.page-sidebar__title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0 0.5rem;
}

.page-sidebar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-sidebar__nav a {
  display: block;
  padding: 0.7rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.page-sidebar__nav a:hover {
  background: var(--white);
  color: var(--rose-800);
}

.page-sidebar__nav a.is-active {
  background: var(--white);
  color: var(--primary);
  border-left-color: var(--primary);
  box-shadow: 0 4px 14px rgba(228, 72, 211, 0.1);
}

.page-content {
  min-width: 0;
}

.inner-article h2 {
  color: var(--rose-800);
  margin-top: 0;
}

.inner-article h3 {
  color: var(--rose-800);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
}

.inner-article > p {
  color: var(--ink-soft);
}

.about-quote--inline {
  margin: 1.5rem 0;
}

.about-founder__card--inline {
  margin-top: 1.5rem;
}

.about-why__panel--inline {
  margin: 1.75rem 0;
}

.about-work__grid--inner {
  margin-top: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.about-leaders__grid--page {
  margin: 0 0 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.impact--inner {
  margin: 2rem 0 0;
  padding: 0;
  background: transparent;
}

.impact--inner .impact__grid {
  gap: 0.85rem;
}

.impact--inner .impact__item {
  background: var(--cream);
  border-radius: 4px;
  padding: 1rem 0.75rem;
  text-align: center;
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* About page photos */
.about-photo {
  margin: 1.5rem 0 0;
  padding: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  background: var(--cream);
}

.about-photo figcaption {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.about-photo--feature {
  margin: 1.75rem 0;
}

.about-photo--feature img {
  max-height: 560px;
}

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

.about-photo-grid .about-photo {
  margin: 0;
}

.about-photo-grid img {
  max-height: 360px;
  aspect-ratio: 3 / 4;
}

.about-hospitals {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.about-hospitals li {
  background: var(--cream);
  border-radius: 4px;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--brand, #e448d3);
}

.about-hospitals strong {
  display: block;
  color: var(--rose-800);
  font-size: 1rem;
}

.about-hospitals span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .about-photo-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img,
  .about-photo--feature img {
    max-height: 420px;
  }
}

/* Leadership messages */
.msg-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.msg-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(122, 31, 117, 0.07);
}

.msg-card__media {
  width: 200px;
  max-width: 100%;
}

.msg-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
  box-shadow: 0 8px 20px rgba(122, 31, 117, 0.15);
}

.msg-card__avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--gradient-deep);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.msg-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.msg-card__body h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--rose-800);
}

.msg-card__role {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--rose-700);
  font-size: 0.9rem;
}

.msg-card__quote {
  margin: 0;
  padding: 0;
  border: 0;
}

.msg-card__quote p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}

.msg-card__sign {
  margin: 0.5rem 0 0;
  font-weight: 700;
  color: var(--rose-800);
  font-style: italic;
}

@media (max-width: 900px) {
  .msg-card {
    grid-template-columns: 140px 1fr;
    gap: 1rem;
  }

  .msg-card__media {
    width: 140px;
  }
}

@media (max-width: 640px) {
  .msg-card {
    grid-template-columns: 1fr;
  }

  .msg-card__media {
    width: min(220px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .primary-nav .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.9rem;
  }

  .primary-nav .has-submenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .primary-nav .has-submenu > a {
    flex: 1;
  }

  .primary-nav .submenu {
    position: static;
    display: none;
    width: 100%;
    border: 0;
    box-shadow: none;
    background: var(--cream);
    padding: 0.25rem 0 0.5rem 0.75rem;
  }

  .primary-nav .has-submenu.is-open > .submenu {
    display: block;
  }

  .primary-nav .has-megamenu {
    position: relative;
  }

  .primary-nav .megamenu {
    position: static;
    display: none;
    padding: 0;
    width: 100%;
    top: auto;
  }

  .primary-nav .has-megamenu.is-open > .megamenu {
    display: block;
  }

  .primary-nav .megamenu__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0;
    max-width: none;
    border: 0;
    box-shadow: none;
    background: var(--cream);
    padding: 0.5rem 0.75rem 0.85rem;
  }

  .primary-nav .megamenu__grid {
    grid-template-columns: 1fr 1fr;
    max-height: none;
    overflow: visible;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }

  .page-sidebar {
    position: static;
  }

  .page-sidebar__nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }

  .about-work__grid--inner,
  .about-leaders__grid--page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-sidebar__nav ul {
    grid-template-columns: 1fr;
  }
}

/* Cancer Types — definition + small image, then panels */
.page-layout--types {
  grid-template-columns: 240px 1fr;
}

.page-sidebar--types {
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
  position: sticky;
  top: 5.5rem;
}

.ctype-def {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.35rem;
  align-items: start;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.ctype-def__photo {
  margin: 0;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(122, 31, 117, 0.08);
}

.ctype-def__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctype-def__copy h2 {
  margin: 0 0 0.65rem;
}

.ctype-def__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.ctype-def__note {
  margin: 0.9rem 0 0;
  padding: 0;
  background: none;
  border: 0;
  border-left: 3px solid var(--brand, #e448d3);
  padding-left: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.ctype-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ctype-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem 1.2rem 1.25rem;
  min-height: 100%;
  box-shadow: 0 10px 28px rgba(122, 31, 117, 0.08);
}

.ctype-panel__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.ctype-panel__head h3 {
  margin: 0;
  font-size: 1.02rem;
}

.ctype-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  color: var(--brand, #e448d3);
  background: var(--rose-100);
  border-radius: 50%;
}

.ctype-panel--diagnosis .ctype-panel__icon {
  color: #7a1f75;
  background: rgba(122, 31, 117, 0.1);
}

.ctype-panel--stages .ctype-panel__icon {
  color: #b832a8;
  background: rgba(184, 50, 168, 0.1);
}

.ctype-panel--treatments .ctype-panel__icon {
  color: #15803d;
  background: rgba(21, 128, 61, 0.1);
}

.ctype-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ctype-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.15rem 0;
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ctype-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
  color: var(--brand, #e448d3);
}

.ctype-list--diagnosis .ctype-list__icon {
  color: #7a1f75;
}

.ctype-list--treat .ctype-list__icon {
  color: #15803d;
}

.ctype-list--treat li {
  border: 0;
}

.ctype-stages__label {
  margin: 0 0 0.85rem;
  font-weight: 700;
  color: var(--rose-800);
}

.ctype-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.ctype-stages > li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ctype-stages__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.2rem 0.15rem;
  background: none;
  color: var(--rose-800);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0;
  text-align: center;
  border-bottom: 2px solid var(--brand, #e448d3);
}

.ctype-stages__ico {
  display: inline-flex;
  color: var(--brand, #e448d3);
}

.ctype-stages > li:first-child .ctype-stages__node {
  box-shadow: none;
  color: var(--brand, #e448d3);
}

.ctype-stages__line {
  width: 1.1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand, #e448d3), rgba(228, 72, 211, 0.25));
}

.ctype-stages__hint {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .page-layout--types {
    grid-template-columns: 1fr;
  }

  .page-sidebar--types {
    position: static;
    max-height: none;
  }

  .page-sidebar--types .page-sidebar__nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
  }

  .ctype-def {
    grid-template-columns: 140px 1fr;
  }

  .ctype-def__photo {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 720px) {
  .ctype-panels {
    grid-template-columns: 1fr;
  }

  .ctype-def {
    grid-template-columns: 1fr;
  }

  .ctype-def__photo {
    width: 160px;
    height: 160px;
  }

  .page-sidebar--types .page-sidebar__nav ul {
    grid-template-columns: 1fr;
  }
}

/* FAQs page */
.faq-page {
  padding: 2.5rem 0 4rem;
  max-width: 860px;
}

.faq-page__intro {
  margin-bottom: 2rem;
}

.faq-page__intro h2 {
  margin-bottom: 0.5rem;
}

.faq-group {
  margin-bottom: 2rem;
}

.faq-group__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rose-800);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(228, 72, 211, 0.35);
  box-shadow: 0 6px 18px rgba(122, 31, 117, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1rem 2.75rem 1rem 1.1rem;
  font-weight: 600;
  color: var(--rose-800);
  line-height: 1.4;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--brand, #e448d3);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 3px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover {
  color: var(--brand, #e448d3);
}

.faq-item__body {
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid var(--line);
}

.faq-item__body p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.faq-page__actions {
  margin-top: 2.25rem;
}

/* Donate page */
.donate-page {
  padding: 2.5rem 0 4rem;
}

.donate-page__intro {
  margin-bottom: 2rem;
  max-width: 46rem;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.donate-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.5rem 1.4rem 1.6rem;
}

.donate-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  color: var(--rose-800);
}

.donate-card > p {
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.donate-card__flag {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.55rem;
  background: var(--brand, #e448d3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 3px;
}

.donate-card--intl .donate-card__flag {
  background: #7a1f75;
}

.donate-bank h3,
.donate-upi h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--rose-800);
}

.donate-bank__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.donate-bank__list > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: var(--cream);
  border-radius: 3px;
}

.donate-bank__list dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.donate-bank__list dd {
  margin: 0;
  font-weight: 600;
  color: var(--rose-800);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.donate-copy {
  border: 1px solid rgba(228, 72, 211, 0.35);
  background: #fff;
  color: var(--brand, #e448d3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  cursor: pointer;
}

.donate-upi {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.donate-upi__note {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.donate-form {
  display: grid;
  gap: 0.85rem;
}

.donate-form__row {
  display: grid;
  gap: 0.35rem;
}

.donate-form__row label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose-800);
}

.donate-form__row input,
.donate-form__row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.donate-form__row input:focus,
.donate-form__row textarea:focus {
  outline: 2px solid rgba(228, 72, 211, 0.35);
  border-color: var(--brand, #e448d3);
}

.donate-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.donate-alert {
  padding: 0.85rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.donate-alert p {
  margin: 0;
}

.donate-alert--ok {
  background: #f3faf3;
  border: 1px solid #b7dfb9;
  color: #1f5b28;
}

.donate-alert--err {
  background: #fff5f5;
  border: 1px solid #f0b4b4;
  color: #8a1f1f;
}

.donate-note {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  background: var(--cream);
  border-left: 3px solid var(--brand, #e448d3);
}

.donate-note > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .donate-bank__list > div {
    grid-template-columns: 1fr;
  }
}

/* Donate map badges */
.donate-card__map {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--brand, #e448d3);
}

.donate-card__map svg {
  display: block;
  flex-shrink: 0;
}

.donate-card__map span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose-800);
}

.donate-card--intl .donate-card__map {
  color: #7a1f75;
}

/* Get Involved pages */
.involve-page {
  padding: 2.5rem 0 4rem;
  max-width: 920px;
}

.involve-form-card {
  margin-top: 2rem;
  padding: 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.involve-form-card h2 {
  margin: 0 0 0.5rem;
  color: var(--rose-800);
  font-size: 1.35rem;
}

.involve-form-card > p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}

.donate-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.donate-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

@media (max-width: 720px) {
  .donate-form__grid {
    grid-template-columns: 1fr;
  }
}

.donate-card__map img {
  display: block;
  width: 56px;
  height: auto;
  object-fit: contain;
}

.donate-card__map--world img {
  width: 72px;
}

.donate-card__map--india img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(122, 31, 117, 0.18);
}

.donate-card__map--world img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* Contact page */
.contact-page {
  padding: 2.5rem 0 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 28px rgba(26, 8, 18, 0.08);
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--rose-800, #7a1f75);
}

.contact-card h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  color: var(--rose-700, #9a2f94);
}

.contact-card p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-card__error {
  color: #8a1f1f;
  background: #fff1f1;
  padding: 0.75rem 0.9rem;
  border-radius: 4px;
}

.contact-card__ok {
  color: #14532d;
  background: #ecfdf3;
  padding: 0.85rem 0.9rem;
  border-radius: 4px;
}

.contact-form__row {
  margin-bottom: 0.9rem;
}

.contact-form__row label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form__row input,
.contact-form__row textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.camps-page {
  padding: 2.5rem 0 3.5rem;
}

.ics-camps--page {
  max-width: 48rem;
}

.ics-camps__empty {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.ics-help__body .ics-camps__empty {
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Volunteer signup */
.vol-signup .vol-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.vol-form select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
.vol-form__note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.vol-icard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.vol-icard {
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(26, 8, 18, 0.12);
  overflow: hidden;
}
.vol-icard__inner {
  padding: 1.25rem 1.35rem 1.5rem;
  background: linear-gradient(180deg, #fff5fb 0%, #ffffff 45%);
}
.vol-icard__brand {
  font-weight: 700;
  color: #e30a43;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.vol-icard__role {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rose-800, #7a1f75);
  margin: 0.25rem 0 1rem;
}
.vol-icard__body {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
.vol-icard__name {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #e30a43;
}
.vol-icard__desi,
.vol-icard__id,
.vol-icard__dates {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
}
.vol-icard__photo img {
  width: 90px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ddd;
  background: #fafafa;
}
.vol-icard__photo-ph {
  width: 90px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 1px dashed #ccc;
  color: #999;
  font-size: 0.8rem;
}
@media (max-width: 720px) {
  .vol-signup .vol-form__grid {
    grid-template-columns: 1fr;
  }
}
@media print {
  .site-header, .topbar, .page-hero, .vol-icard-actions, .site-footer, .chat-widget, .hero__arrow, .hero__dots {
    display: none !important;
  }
  .vol-icard {
    box-shadow: none;
    border: 1px solid #000;
  }
}
