/* ==========================================================================
   KOSHUR FOUNDATION — Editorial Design System
   Clean white, charcoal & red. Magazine/editorial layout inspired by
   premium NGO + TED-style references. Inter throughout (TED-style type
   hierarchy). No shadows, no gradients — hairlines, whitespace & typography.
   Brand green appears only in the logo.
   ========================================================================== */

/* ---------------------------------------------------------------- TOKENS */
:root {
  /* Core palette — Heritage warm neutrals */
  --bg:        #FBF8F3;   /* Main Background */
  --bg-alt:    #F4EFE7;   /* Section Background */
  --bg-dark:   #2B2B2B;   /* dark band (charcoal) */
  --ink:       #2B2B2B;   /* Heading Color */
  --ink-2:     #2B2B2B;
  --body:      #666666;   /* Body Text */
  --muted:     #8C8275;   /* meta / captions (warm) */
  --faint:     #BCB2A2;
  --line:      #E6DDCD;   /* hairline (warm) */
  --line-soft: #EFE8DA;

  /* Brand palette — Heritage Burgundy / Soft Gold / Bronze */
  --red:        #6B2737;  /* Primary — Heritage Burgundy */
  --red-dark:   #511C29;  /* darker burgundy (hover) */
  --red-soft:   #F1E7EA;  /* soft burgundy tint */
  --gold:       #D9C7A3;  /* Secondary — Soft Gold */
  --gold-deep:  #C7B083;
  --bronze:     #A67C52;  /* Accent — Bronze */
  --bronze-dark: #8A6543;

  /* Legacy token aliases (keep every page working, remapped to palette) */
  --green-900: #2B2B2B; --green-800: var(--bg-dark); --green-700: var(--red);
  --green-600: var(--red); --green-500: var(--red); --green-400: var(--bronze);
  --green-soft: var(--red-soft); --green-mist: var(--bg-alt);
  --gold-700: var(--bronze-dark); --gold-600: var(--bronze); --gold-500: var(--bronze);
  --gold-400: var(--gold); --gold-soft: #EFE7D6;
  --ink-900: var(--ink); --ink-700: var(--ink-2); --ink-600: var(--body); --ink-400: var(--muted);
  --cream: var(--bg); --cream-2: var(--bg-alt); --white: #ffffff;
  --primary: var(--red); --primary-dark: var(--red-dark); --accent: var(--bronze); --accent-dark: var(--bronze-dark);

  /* No shadows in this system */
  --shadow-xs: none; --shadow-sm: none; --shadow-md: none; --shadow-lg: none; --shadow-gold: none;

  /* Radii — minimal/editorial */
  --r-sm: 2px; --r-md: 3px; --r-lg: 4px; --r-xl: 4px; --r-pill: 999px;

  /* Type */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.25s var(--ease);
}

/* ---------------------------------------------------------------- RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--body); background: var(--bg);
  line-height: 1.7; font-size: 1rem; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: var(--red); transition: var(--transition); }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------------------------------------------------------------- TYPE */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display); color: var(--ink); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.01em; font-optical-sizing: auto; text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.5rem); font-weight: 800; line-height: 1.08; }   /* 36 → 56px */
h2 { font-size: clamp(1.875rem, 3.4vw, 2.625rem); font-weight: 700; line-height: 1.15; } /* 30 → 42px */
h3 { font-size: clamp(1.5rem, 2.2vw, 1.75rem); font-weight: 700; line-height: 1.25; }     /* 24 → 28px */
h4 { font-size: 1.375rem; font-weight: 600; line-height: 1.3; }                            /* 22px */
h5 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; color: var(--ink); }
p { color: var(--body); font-size: 1.125rem; line-height: 1.8; }                           /* 18px / 1.8 */
strong { color: var(--ink-2); font-weight: 700; }
em { font-style: italic; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.text-red { color: var(--red); }

/* ---------------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 4vw, 56px); }
.container-narrow { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(44px, 5vw, 72px) 0; position: relative; }
.section-tight { padding: clamp(48px, 5vw, 76px) 0; }
.section-cta { padding-top: clamp(20px, 2.5vw, 36px); }   /* CTA band hugs the preceding section */
.bg-cream { background: var(--bg); }
.bg-alt { background: var(--bg-alt); }
.bg-mist { background: var(--bg-alt); }
.bg-green { background: var(--bg-dark); color: #DAD2C5; }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: #fff; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.grid { display: grid; gap: 28px; }
.flow > * + * { margin-top: 1rem; }
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--red); }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: 56px; background: var(--line); }
.bw { filter: grayscale(100%); transition: filter .55s var(--ease); }
.bw:hover { filter: grayscale(0%); }
.photo-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-2x2 img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-sm); }
.eyebrow-line { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }

/* Custom NGO SVG icons */
.kf-ic { display: inline-block; vertical-align: middle; width: 46px; height: 46px; }
.service-item .si-ic .kf-ic, .service-item .kf-ic { width: 44px; height: 44px; }
.hero-badge .kf-ic { width: 38px; height: 38px; }
.intro-panel .kf-ic { width: 44px; height: 44px; margin-bottom: 6px; }
.focus-card .kf-ic { width: 50px; height: 50px; margin-bottom: 22px; display: block; }
.impact-card .kf-ic { width: 42px; height: 42px; }
.value-card .kf-ic { width: 46px; height: 46px; }
.trust-item .kf-ic { width: 40px; height: 40px; }
.badge-float .kf-ic { width: 34px; height: 34px; }
.hero-badge .ic, .intro-panel .pic, .focus-card .ic, .impact-card .ic { line-height: 0; }

/* Lists */
.leaf-list, .check-list { display: grid; gap: 13px; }
.leaf-list li, .check-list li { position: relative; padding-left: 28px; color: var(--body); line-height: 1.6; }
.leaf-list li::before { content: "\2014"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }
.check-list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 4px; font-size: 0.72rem; color: var(--red);
}

/* ---------------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--r-sm); border: 1.5px solid transparent;
  transition: var(--transition); cursor: pointer; line-height: 1; white-space: nowrap;
}
.btn i { font-size: 0.95em; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-accent { background: var(--red); color: #fff; }
.btn-accent:hover { background: var(--red-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-sm { padding: 11px 22px; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  border-bottom: 2px solid var(--ink); padding-bottom: 3px;
}
.link-arrow:hover { color: var(--red); border-color: var(--red); }
.link-arrow i { font-size: 0.85em; }

/* ---------------------------------------------------------------- MASTHEAD (single line) */
.masthead { background: var(--bg); border-bottom: 1px solid var(--line); }
.masthead-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 16px; padding-bottom: 16px; }
.mast-logo { display: flex; align-items: center; flex-shrink: 0; }
.mast-logo img { height: 60px; width: auto; }
.mast-right { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.mast-meta { display: flex; align-items: center; gap: 22px; }
.mast-meta a { display: inline-flex; align-items: center; gap: 9px; color: var(--body); font-size: 0.82rem; font-weight: 500; }
.mast-meta a i { color: var(--red); font-size: 0.95rem; }
.mast-meta a:hover { color: var(--red); }

.mast-search { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--bg); transition: border-color .2s var(--ease); }
.mast-search:focus-within { border-color: var(--red); }
.mast-search input { border: 0; outline: 0; padding: 10px 14px; width: 190px; font-size: 0.84rem; background: transparent; color: var(--ink); }
.mast-search input::placeholder { color: var(--muted); }
.mast-search button { display: grid; place-items: center; width: 42px; align-self: stretch; background: var(--bg-alt); color: var(--ink-2); border-left: 1px solid var(--line); font-size: 0.9rem; transition: var(--transition); }
.mast-search button:hover { background: var(--red); color: #fff; }
.mast-donate { flex-shrink: 0; }

/* ---------------------------------------------------------------- SUB NAV (quick links) */
.subnav { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.subnav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 44px; }
.subnav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.subnav-links a { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 8px 12px; border-radius: var(--r-sm); }
.subnav-links a i { color: var(--red); font-size: 0.8rem; }
.subnav-links a:hover { color: var(--red); background: var(--bg); }
.subnav-loc { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.78rem; font-weight: 500; white-space: nowrap; }
.subnav-loc i { color: var(--red); }

/* ---------------------------------------------------------------- PRIMARY NAV (red bar) */
.header { background: var(--red); position: sticky; top: 0; z-index: 50; transition: box-shadow .25s var(--ease); }
.header.scrolled { box-shadow: 0 6px 20px -10px rgba(0,0,0,.45); }
.nav { display: flex; align-items: stretch; justify-content: space-between; gap: 20px; padding-top: 0; padding-bottom: 0; min-height: 54px; }

.nav-menu { display: flex; align-items: stretch; gap: 0; }
.nav-menu > li { position: relative; display: flex; }
.nav-menu > li > a {
  color: #fff; font-weight: 600; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0 18px; display: flex; align-items: center; gap: 8px; position: relative; white-space: nowrap;
}
.nav-menu > li > a > i:first-child { font-size: 0.82rem; opacity: .92; }
.nav-menu > li > a .caret { font-size: 0.58rem; opacity: .8; margin-left: 1px; transition: transform .25s var(--ease); }
.nav-menu > li > a:hover, .nav-menu > li > a.active { background: var(--red-dark); color: #fff; }
.nav-menu > li > a.active { box-shadow: inset 0 -3px 0 #fff; }
.nav-menu > li:hover > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0; background: var(--bg); min-width: 256px;
  padding: 8px; border: 1px solid var(--line); border-top: 3px solid var(--red);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 70;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.35);
}
li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--r-sm); color: var(--ink-2); font-size: 1rem; font-weight: 500; }
.dropdown li a i { width: 18px; color: var(--red); font-size: 0.9rem; }
.dropdown li a:hover { background: var(--bg-alt); color: var(--red); }

.nav-social { display: flex; align-items: center; gap: 4px; }
.nav-social a { display: grid; place-items: center; width: 34px; height: 34px; color: rgba(255,255,255,.85); font-size: 0.85rem; border-radius: var(--r-sm); transition: var(--transition); }
.nav-social a:hover { background: var(--red-dark); color: #fff; }

.nav-toggle { display: none; font-size: 1.3rem; color: #fff; width: 48px; align-items: center; justify-content: flex-start; }

/* ---------------------------------------------------------------- FEATURED HERO (slider + aside) */
.featured { padding: clamp(22px, 2.6vw, 34px) 0; background: var(--bg); }
.featured-grid { display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr); gap: 26px; align-items: stretch; }

/* generic action row — also used by 404 / thank-you pages */
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* --- slider --- */
.hero-slider { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--bg-dark); min-height: 480px; }
.hs-track { position: absolute; inset: 0; }
.hs-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s var(--ease); }
.hs-slide.is-active { opacity: 1; visibility: visible; }
.hs-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s linear; }
.hs-slide.is-active .hs-bg { transform: scale(1); }
.hs-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,15,.05) 0%, rgba(15,15,15,.18) 42%, rgba(12,12,12,.78) 100%); }
.hs-content { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(26px, 3.4vw, 46px); color: #fff; }
.hs-cat { display: inline-flex; align-items: center; gap: 9px; background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--r-sm); }
.hs-cat i { font-size: 0.85em; }
.hs-title { color: #fff; font-size: clamp(1.7rem, 2.9vw, 2.9rem); line-height: 1.08; margin: 18px 0 12px; max-width: 18ch; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hs-text { color: rgba(255,255,255,.9); max-width: 56ch; font-size: clamp(0.95rem, 1.1vw, 1.08rem); line-height: 1.6; }
.hs-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.hs-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 2px solid var(--red); padding-bottom: 5px; }
.hs-link i { transition: transform .25s var(--ease); }
.hs-link:hover { color: #fff; }
.hs-link:hover i { transform: translateX(5px); }

.hs-arrow { position: absolute; top: 38%; transform: translateY(-50%); width: 46px; height: 46px; display: grid; place-items: center; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; backdrop-filter: blur(4px); z-index: 4; opacity: 0; transition: var(--transition); }
.hero-slider:hover .hs-arrow { opacity: 1; }
.hs-arrow:hover { background: var(--red); border-color: var(--red); }
.hs-arrow.prev { left: 18px; }
.hs-arrow.next { right: 18px; }
.hs-dots { position: absolute; right: clamp(26px, 3.4vw, 46px); bottom: clamp(26px, 3.4vw, 46px); display: flex; gap: 8px; z-index: 4; }
.hs-dot { width: 26px; height: 5px; border-radius: 2px; background: rgba(255,255,255,.4); transition: var(--transition); }
.hs-dot.active { background: var(--red); width: 34px; }
.hs-dot:hover { background: rgba(255,255,255,.75); }

/* --- news / events aside --- */
.news-aside { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); overflow: hidden; }
.na-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; background: var(--bg-dark); }
.na-head h3 { color: #fff; font-size: 1.18rem; margin: 0; position: relative; padding-left: 14px; }
.na-head h3::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 70%; background: var(--red); border-radius: 2px; }
.na-all { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.na-all:hover { color: #fff; }
.na-list { flex: 1; display: flex; flex-direction: column; }
.na-item { border-bottom: 1px solid var(--line-soft); }
.na-item:last-child { border-bottom: 0; }
.na-item > a { display: flex; gap: 14px; padding: 14px 18px; align-items: center; }
.na-item > a:hover { background: var(--bg-alt); }
.na-thumb { flex-shrink: 0; width: 76px; height: 64px; border-radius: var(--r-sm); overflow: hidden; background: var(--bg-alt); }
.na-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.na-item > a:hover .na-thumb img { transform: scale(1.07); }
.na-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.na-cat { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }
.na-title { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; line-height: 1.25; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.na-item > a:hover .na-title { color: var(--red); }
.na-date { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; color: var(--muted); font-weight: 500; }
.na-date i { color: var(--red); }
.na-more { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--bg-alt); border-top: 1px solid var(--line); }
.na-more:hover { background: var(--red); color: #fff; }
.na-more i { transition: transform .25s var(--ease); }
.na-more:hover i { transform: translateX(5px); }

/* ---------------------------------------------------------------- PAGE BANNER (light editorial) */
.page-banner { position: relative; background: var(--bg-alt); padding: clamp(56px, 7vw, 104px) 0 clamp(40px, 5vw, 64px); text-align: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-banner .bg-img { display: none; }
.page-banner::before, .page-banner::after { display: none; }
.page-banner .container { position: relative; z-index: 2; }
.page-banner .eyebrow { color: var(--red); justify-content: center; }
.page-banner h1 { color: var(--ink); margin: 6px 0 18px; }
.page-banner p { color: var(--body); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumbs { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; text-transform: uppercase; letter-spacing: 0.06em; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .sep { opacity: .6; font-size: .6rem; }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------- SECTION HEADER / EYEBROW */
.section-header { max-width: 720px; margin: 0 auto clamp(44px, 5vw, 68px); text-align: center; }
.section-header.left { margin-left: 0; text-align: left; max-width: 640px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); }
.section-header h2 { margin-bottom: 18px; }
.section-header p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; }

/* TED-style row header: hairline rule + label left + link right */
.row-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 22px; margin-bottom: 40px; border-bottom: 1px solid var(--ink); flex-wrap: wrap; }
.row-head .label { font-family: var(--font-body); font-weight: 800; font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.row-head h2 { margin: 0; }
.row-head .more { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.row-head .more:hover { color: var(--red); border-color: var(--red); }

/* ---------------------------------------------------------------- TRUST STRIP */
.trust-strip { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 34px 32px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-item .ic { font-size: 1.35rem; color: var(--red); flex-shrink: 0; line-height: 1; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); line-height: 1.15; }
.trust-item span { font-size: 0.84rem; color: var(--muted); }

/* Marquee (kept, restrained) */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 34s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-body); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 14px; }
.marquee-track i { color: var(--red); font-size: 0.45rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- STATS */
/* ---------------------------------------------------------------- IMPACT STATS (horizontal timeline) */
.infographic { background: var(--bg-dark); color: #DAD2C5; padding-block: clamp(44px, 5vw, 72px); }
.hline { position: relative; display: flex; min-height: 210px; }
/* full-bleed centre axis — runs from the left corner straight across */
.hl-axis { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100vw; height: 2px; background: rgba(255,255,255,.26); z-index: 1; }

.hl-item { position: relative; flex: 1 1 0; min-width: 0; }
.hl-dot { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 18px; height: 18px; border-radius: 50%; background: #D9C7A3; box-shadow: 0 0 0 4px var(--bg-dark), 0 0 0 6px rgba(217,199,163,.5); z-index: 3; transition: transform .3s var(--ease); }
.hl-item:hover .hl-dot { transform: translate(-50%, -50%) scale(1.18); }

.hl-val { position: absolute; left: 50%; bottom: 50%; transform: translateX(-50%); margin-bottom: 26px; white-space: nowrap; font-weight: 800; font-size: clamp(1.9rem, 2.8vw, 2.7rem); color: #fff; line-height: 1; letter-spacing: -0.02em; }
.hl-val .suf { color: var(--gold); margin-left: 1px; }
.hl-text { position: absolute; left: 50%; top: 50%; transform: translateX(-50%); margin-top: 26px; width: max-content; max-width: min(220px, 84%); display: flex; flex-direction: column; align-items: center; text-align: center; }
.hl-title { color: #fff; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.35; }
.hl-desc { color: #9a9389; font-size: 0.84rem; line-height: 1.4; margin-top: 6px; }

@media (max-width: 700px) {
  .hline { flex-direction: column; min-height: 0; gap: 26px; }
  .hl-axis { display: none; }
  .hl-item { position: static; display: flex; flex-direction: column; align-items: center; }
  .hl-val { position: static; transform: none; margin: 0 0 10px; }
  .hl-dot { position: static; transform: none; margin: 0 auto 12px; }
  .hl-item:hover .hl-dot { transform: scale(1.18); }
  .hl-text { position: static; transform: none; margin: 0 auto; max-width: 100%; }
}

/* ---------------------------------------------------------------- CARDS */
.cards { display: grid; gap: clamp(28px, 3vw, 44px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Story card — TED-style: image + red label + title + meta (no border / no shadow) */
.story-card { display: flex; flex-direction: column; }
.story-card .thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-sm); background: var(--bg-alt); margin-bottom: 18px; }
.story-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.story-card:hover .thumb img { transform: scale(1.04); }
.story-card .badge { position: absolute; right: 10px; bottom: 10px; background: rgba(0,0,0,.82); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; padding: 4px 9px; border-radius: var(--r-sm); }
.story-card .cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.story-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.18rem; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 10px; }
.story-card:hover h3 { color: var(--red); }
.story-card .meta { font-size: 0.82rem; color: var(--muted); margin-top: auto; }

/* Intro features — red "Who We Are" panel + numbered feature columns */
.intro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 2.4vw, 36px); align-items: stretch; }
.intro-panel { background: var(--red); color: #fff; padding: clamp(32px, 3vw, 46px) clamp(28px, 2.4vw, 38px); display: flex; flex-direction: column; position: relative; overflow: hidden; border-radius: var(--r-sm); }
.intro-panel::after { content: "\f004"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -16px; bottom: -24px; font-size: 8rem; color: rgba(255,255,255,.07); pointer-events: none; }
.intro-panel .pic { font-size: 1.7rem; margin-bottom: 18px; color: rgba(255,255,255,.92); line-height: 1; position: relative; z-index: 1; }
.intro-panel h3 { color: #fff; font-size: clamp(1.4rem, 1.8vw, 1.65rem); margin-bottom: 18px; position: relative; z-index: 1; }
.intro-panel p { color: rgba(255,255,255,.9); font-size: 0.92rem; line-height: 1.72; margin-bottom: 28px; position: relative; z-index: 1; }
.intro-panel .read { margin-top: auto; align-self: flex-start; color: #fff; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; border-bottom: 2px solid rgba(255,255,255,.55); padding-bottom: 3px; position: relative; z-index: 1; }
.intro-panel .read:hover { border-color: #fff; color: #fff; }
.intro-feature { display: flex; flex-direction: column; }
.intro-feature .intro-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 1.6vw, 1.45rem); color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.intro-feature .intro-title .n { color: var(--red); }
.intro-feature .intro-sub { display: block; color: var(--red); font-size: 0.82rem; font-weight: 600; margin-bottom: 18px; }
.intro-feature .pic-img { aspect-ratio: 16/10; overflow: hidden; border-radius: var(--r-sm); margin-bottom: 18px; background: var(--bg-alt); }
.intro-feature .pic-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .55s var(--ease); }
.intro-feature:hover .pic-img img { filter: grayscale(0%); }
.intro-feature p { color: var(--muted); font-size: 0.92rem; line-height: 1.72; margin-bottom: 18px; }
.intro-feature .read { margin-top: auto; align-self: flex-start; color: var(--red); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.11em; text-transform: uppercase; border-bottom: 1px solid var(--red); padding-bottom: 3px; }
.intro-feature .read:hover { color: var(--red-dark); border-color: var(--red-dark); }
@media (max-width: 960px) { .intro-grid { grid-template-columns: 1fr 1fr; } .intro-panel { grid-column: 1 / -1; } }
@media (max-width: 600px) { .intro-grid { grid-template-columns: 1fr; } }

/* Services layout — left title block + open (card-less) icon/title/text grid */
.services-layout { display: grid; grid-template-columns: 1fr 2.5fr; gap: clamp(40px, 5vw, 84px); align-items: start; }
.services-head .eyebrow { margin-bottom: 16px; }
.services-head h2 { font-size: clamp(1.7rem, 2.4vw, 2.35rem); margin-bottom: 26px; }
.services-head .learn-more { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 700; font-size: 0.73rem; letter-spacing: 0.13em; text-transform: uppercase; border-bottom: 1px solid var(--red); padding-bottom: 4px; }
.services-head .learn-more:hover { color: var(--red-dark); border-color: var(--red-dark); }
.services-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 3.4vw, 54px) clamp(28px, 2.6vw, 46px); }
.service-item .si-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.service-item .si-ic { font-size: 1.55rem; color: var(--red); line-height: 1; flex-shrink: 0; }
.service-item h3 { font-size: 1.18rem; margin: 0; letter-spacing: -0.01em; }
.service-item p { color: var(--muted); font-size: 0.92rem; line-height: 1.72; }
@media (max-width: 960px) { .services-layout { grid-template-columns: 1fr; gap: 40px; } .services-items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-items { grid-template-columns: 1fr; } }

/* Focus / minimal-icon editorial block */
.focus-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 36px 32px; transition: border-color .25s var(--ease); }
.focus-card:hover { border-color: var(--ink); }
.focus-card .ic { font-size: 1.5rem; color: var(--red); margin-bottom: 22px; display: block; line-height: 1; }
.focus-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.focus-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 14px; }

/* Hairline matrix */
.matrix { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.matrix-4 { grid-template-columns: repeat(4, 1fr); }
.matrix-3 { grid-template-columns: repeat(3, 1fr); }
.matrix-cell { background: var(--bg); padding: clamp(28px, 2.6vw, 42px) clamp(24px, 2.2vw, 34px); transition: background .25s var(--ease); position: relative; }
.matrix-cell:hover { background: var(--bg-alt); }
.matrix-cell .ic { font-size: 1.4rem; color: var(--red); line-height: 1; display: block; margin-bottom: 22px; }
.matrix-cell .idx { position: absolute; top: 22px; right: 24px; font-family: var(--font-display); font-size: 0.9rem; color: var(--faint); }
.matrix-cell h3 { font-size: 1.12rem; margin-bottom: 10px; }
.matrix-cell p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 960px) { .matrix-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .matrix-4, .matrix-3 { grid-template-columns: 1fr; } }

/* Program / image card */
.prog-card { position: relative; border-radius: var(--r-sm); overflow: hidden; background: var(--bg-dark); min-height: 360px; display: flex; align-items: flex-end; isolation: isolate; }
.prog-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.prog-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.78)); }
.prog-card:hover img { transform: scale(1.05); }
.prog-card .body { padding: 28px; color: #fff; position: relative; z-index: 2; }
.prog-card .tag { display: inline-flex; align-items: center; gap: 7px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.prog-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.prog-card p { color: #DDD5C9; font-size: 0.92rem; margin-bottom: 16px; }
.prog-card .link-arrow { color: #fff; border-color: #fff; }
.prog-card .link-arrow:hover { color: var(--red); border-color: var(--red); }

/* Value card (numbered) */
.value-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 36px 32px; transition: border-color .25s var(--ease); }
.value-card:hover { border-color: var(--ink); }
.value-card .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.value-card h4 { margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* Team card */
.team-card { text-align: left; }
.team-card .photo { overflow: hidden; aspect-ratio: 1; margin-bottom: 16px; border-radius: var(--r-sm); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .photo img { transform: scale(1.04); }
.team-card h4 { margin-bottom: 2px; }
.team-card span { color: var(--red); font-size: 0.84rem; font-weight: 600; }

/* News card (legacy) */
.news-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; transition: border-color .25s var(--ease); }
.news-card:hover { border-color: var(--ink); }
.news-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.news-card:hover .thumb img { transform: scale(1.04); }
.news-card .cat { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-sm); }
.news-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-card .meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.news-card .meta i { color: var(--red); margin-right: 5px; }
.news-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }
.news-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }

/* Event card */
.event-card { display: grid; grid-template-columns: 88px 1fr; gap: 22px; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: border-color .25s var(--ease); }
.event-card:hover { border-color: var(--ink); }
.event-card .date { text-align: center; padding: 14px 8px; border: 1px solid var(--line); border-radius: var(--r-sm); }
.event-card .date .d { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--red); line-height: 1; }
.event-card .date .m { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); font-weight: 700; margin-top: 4px; }
.event-card h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.event-card .where { font-size: 0.84rem; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; }
.event-card .where i { color: var(--red); margin-right: 5px; }

/* ---------------------------------------------------------------- SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .img-main { overflow: hidden; border-radius: var(--r-sm); aspect-ratio: 5/4; }
.split-media .img-main img { width: 100%; height: 100%; object-fit: cover; }
.split-media .img-sub { position: absolute; bottom: -28px; right: -22px; width: 44%; aspect-ratio: 1; overflow: hidden; border: 6px solid var(--bg); border-radius: var(--r-sm); }
.split-media .img-sub img { width: 100%; height: 100%; object-fit: cover; }
.split-media .badge-float { position: absolute; top: -18px; left: -18px; background: var(--red); color: #fff; border-radius: var(--r-sm); padding: 16px 20px; text-align: center; z-index: 3; }
.split-media .badge-float strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.split-media .badge-float span { font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.split-body h2 { margin-bottom: 18px; }
.split-body .lead { margin-bottom: 22px; }
.signature { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.signature .who strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.1rem; }
.signature .who span { font-size: 0.84rem; color: var(--red); }

/* Quote block */
.quote-block { background: var(--bg-alt); border-left: 3px solid var(--red); padding: clamp(32px, 4vw, 56px); position: relative; }
.quote-block p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.95rem); line-height: 1.45; color: var(--ink); position: relative; z-index: 2; font-style: italic; }
.quote-block .by { margin-top: 22px; color: var(--red); font-weight: 700; font-family: var(--font-body); font-style: normal; font-size: 0.9rem; letter-spacing: 0.04em; }

/* Info table */
.info-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 16px 22px; font-size: 0.95rem; }
.info-table td:first-child { font-weight: 600; color: var(--ink); width: 42%; background: var(--bg-alt); display: flex; align-items: center; gap: 10px; }
.info-table td:first-child i { color: var(--red); }

/* ---------------------------------------------------------------- PROCESS */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.step { text-align: left; position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
.step .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 16px; display: block; }
.step h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------------------------------------------------------------- TESTIMONIALS / SUCCESS STORIES */
.testi-wrap { position: relative; max-width: 940px; margin: 0 auto; }
.testi-track { display: flex; transition: transform .5s var(--ease); }
.testi-slide { min-width: 100%; padding: 0 8px; }
.testi-card { background: transparent; text-align: center; padding: 0 clamp(8px, 4vw, 44px); }
.testi-card .stars { color: var(--red); margin-bottom: 26px; font-size: 0.8rem; letter-spacing: 5px; }
.testi-card .quote { font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.42; color: var(--ink); font-style: italic; margin-bottom: 30px; position: relative; }
.testi-card .quote::before { content: "\201C"; color: var(--red); }
.testi-card .quote::after { content: "\201D"; color: var(--red); }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-author .avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; overflow: hidden; }
.testi-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author .who { text-align: left; }
.testi-author .who strong { display: block; color: var(--ink); font-family: var(--font-display); }
.testi-author .who span { font-size: 0.82rem; color: var(--red); }
.testi-nav { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: var(--transition); cursor: pointer; }
.testi-dot.active { background: var(--red); width: 26px; border-radius: var(--r-pill); }
.testi-arrows { position: absolute; top: 40%; width: 100%; left: 0; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.testi-arrows button { pointer-events: auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); color: var(--ink); display: grid; place-items: center; font-size: 0.9rem; transition: var(--transition); }
.testi-arrows button:hover { background: var(--red); color: #fff; border-color: var(--red); }
.testi-arrows .prev { margin-left: -22px; } .testi-arrows .next { margin-right: -22px; }

/* Success-stories static grid (Open Heart style) */
.stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 44px); }
.story-quote { }
.story-quote .mark { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--red); line-height: 0.6; display: block; margin-bottom: 14px; }
.story-quote p { color: var(--body); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.story-quote .by { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.story-quote .role { display: block; font-family: var(--font-body); font-size: 0.8rem; color: var(--red); font-weight: 600; margin-top: 2px; }

/* ---------------------------------------------------------------- GALLERY + LIGHTBOX */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
.filter-btn { padding: 9px 20px; border-radius: var(--r-sm); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); background: var(--bg); border: 1px solid var(--line); transition: var(--transition); }
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; grid-auto-flow: dense; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--bg-alt); aspect-ratio: 1; border-radius: var(--r-sm); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); filter: grayscale(100%); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: rgba(107,39,55,0); transition: var(--transition); }
.gallery-item .cap { position: absolute; left: 16px; bottom: 14px; right: 16px; color: #fff; z-index: 2; opacity: 0; transition: var(--transition); }
.gallery-item .cap span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.gallery-item .cap strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.gallery-item .zoom-ic { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7); width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--red); display: grid; place-items: center; z-index: 2; opacity: 0; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gallery-item:hover::after { background: rgba(20,20,20,.4); }
.gallery-item:hover .cap, .gallery-item:hover .zoom-ic { opacity: 1; }
.gallery-item:hover .zoom-ic { transform: translate(-50%,-50%) scale(1); }
.gallery-item.hide { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,15,15,.95); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--r-sm); }
.lightbox .lb-cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-display); }
.lightbox button { position: absolute; color: #fff; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 1.1rem; transition: var(--transition); }
.lightbox button:hover { background: var(--red); }
.lb-close { top: 24px; right: 24px; } .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); } .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------- CTA / VOLUNTEER BAND / NEWSLETTER */
.cta-banner { position: relative; overflow: hidden; padding: clamp(52px, 6vw, 92px); text-align: center; color: #fff; background: var(--red); border-radius: var(--r-sm); isolation: isolate; }
.cta-banner img { display: none; }
.cta-banner::after { display: none; }
.cta-banner .eyebrow { color: #fff; justify-content: center; }
.cta-banner .eyebrow::before { background: #fff; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 580px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-accent { background: #fff; color: var(--red); }
.cta-banner .btn-accent:hover { background: var(--ink); color: #fff; }

/* Volunteer band — image left, solid red panel right (Open Heart) */
.volunteer-band { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 420px; }
.volunteer-band .vb-img { position: relative; overflow: hidden; background: var(--bg-alt); }
.volunteer-band .vb-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.volunteer-band .vb-body { background: var(--red); color: #fff; padding: clamp(40px, 5vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.volunteer-band .vb-body .eyebrow { color: #fff; } .volunteer-band .vb-body .eyebrow::before { background: #fff; }
.volunteer-band .vb-body h2 { color: #fff; margin-bottom: 18px; }
.volunteer-band .vb-body p { color: rgba(255,255,255,.92); margin-bottom: 28px; max-width: 460px; }
.volunteer-band .vb-body .btn-ghost { align-self: flex-start; }

.newsletter { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(32px, 4vw, 52px); display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.newsletter h3 { margin-bottom: 8px; }
.newsletter p { color: var(--muted); }
.newsletter form { display: flex; gap: 10px; }
.newsletter input { flex: 1; padding: 15px 18px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--bg); font-size: 0.95rem; }
.newsletter input:focus { outline: none; border-color: var(--red); }

/* Scenic band — full-bleed image with caption (no gradient) */
.scenic-band { position: relative; padding: clamp(72px, 10vw, 150px) 0; text-align: center; color: #fff; isolation: isolate; overflow: hidden; }
.scenic-band .scenic-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: grayscale(40%); }
.scenic-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15,15,15,.58); }
.scenic-band .eyebrow { color: #fff; justify-content: center; } .scenic-band .eyebrow::before { background: #fff; }
.scenic-band h2 { color: #fff; max-width: 860px; margin: 0 auto 18px; }
.scenic-band p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ---------------------------------------------------------------- FORMS */
.form-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(28px, 4vw, 44px); }
.form-card h3 { margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group .req { color: var(--red); }
.form-control, .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg); font-size: 0.95rem; color: var(--ink-2); transition: var(--transition); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }

/* Content forms (Contact / Donate / Volunteer) use bare <label>/<input> markup */
.section form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.section form input[type="text"],
.section form input[type="email"],
.section form input[type="tel"],
.section form input[type="number"],
.section form input[type="password"],
.section form select,
.section form textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg); font-size: 0.95rem; color: var(--ink-2); transition: var(--transition); }
.section form textarea { resize: vertical; min-height: 130px; }
.section form input:focus, .section form select:focus, .section form textarea:focus { outline: none; border-color: var(--red); }
.section form .form-row { margin-bottom: 16px; }
.section form > div { margin-bottom: 16px; }
.section form .btn { margin-top: 8px; }

.form-message { margin-top: 16px; padding: 14px 18px; border-radius: var(--r-sm); font-size: 0.92rem; display: none; }
.form-message.success { display: block; background: var(--gold-soft); color: var(--bronze-dark); border: 1px solid var(--gold-deep); }
.form-message.error { display: block; background: var(--red-soft); color: var(--red-dark); border: 1px solid #D8B9C1; }

.contact-info-card { display: flex; gap: 16px; padding: 26px 24px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); transition: border-color .25s var(--ease); }
.contact-info-card:hover { border-color: var(--ink); }
.contact-info-card .ic { font-size: 1.25rem; color: var(--red); flex-shrink: 0; line-height: 1; margin-top: 3px; }
.contact-info-card h5 { margin-bottom: 4px; color: var(--ink); }
.contact-info-card p, .contact-info-card a { color: var(--muted); font-size: 0.92rem; }
.contact-info-card a:hover { color: var(--red); }
.map-embed { overflow: hidden; border-radius: var(--r-sm); border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(100%); }
.social-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.social-row a { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-size: 1.15rem; background: var(--bg); border: 1px solid var(--line); color: var(--ink); transition: var(--transition); }
.social-row a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------------------------------------------------------------- DONATE */
.donate-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.tier { border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 20px 16px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--bg); }
.tier:hover, .tier.active { border-color: var(--red); background: var(--red-soft); }
.tier .amt { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--red); line-height: 1; }
.tier .what { font-size: 0.8rem; color: var(--muted); margin-top: 8px; }
.impact-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.impact-card .ic { font-size: 1.3rem; color: var(--red); flex-shrink: 0; line-height: 1; margin-top: 3px; }
.impact-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.impact-card p { font-size: 0.9rem; color: var(--muted); }
.pay-badges { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 18px; color: var(--muted); font-size: 0.8rem; font-weight: 600; flex-wrap: wrap; }
.pay-badges span { display: inline-flex; align-items: center; gap: 6px; }
.pay-badges i { font-size: 1.4rem; color: var(--ink-2); }
.pay-badges .fa-indian-rupee-sign, .pay-badges .fa-building-columns { font-size: 0.95rem; }

/* ---------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 0; max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px; text-align: left; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.faq-q .ic { flex-shrink: 0; color: var(--red); transition: var(--transition); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--muted); }

/* ---------------------------------------------------------------- FOOTER (light editorial) */
.footer { background: var(--bg-alt); color: var(--body); border-top: 1px solid var(--line); }
.footer-top { padding: clamp(56px, 7vw, 88px) 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; }
.footer-brand img { height: 56px; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink-2); display: grid; place-items: center; background: var(--bg); }
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-col h5 { color: var(--ink); font-family: var(--font-body); font-weight: 800; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a { color: var(--muted); font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--red); }
.footer-contact-item { display: flex; gap: 13px; margin-bottom: 16px; font-size: 0.9rem; color: var(--muted); }
.footer-contact-item .ic { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.84rem; color: var(--muted); }
.footer-bottom a { color: var(--red); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); }
.footer-bottom-links a:hover { color: var(--red); }

/* ---------------------------------------------------------------- FLOATING */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.55rem; z-index: 90; border: 1px solid rgba(0,0,0,.08); }
.whatsapp-float:hover { color: #fff; transform: translateY(-2px); }
.to-top { position: fixed; bottom: 90px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; z-index: 90; opacity: 0; visibility: hidden; transition: var(--transition); }
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--red); }

/* ---------------------------------------------------------------- CARD TITLES (TED hierarchy — 22px / 600) */
.story-card h3, .news-card h3, .intro-panel h3, .intro-feature .intro-title,
.service-item h3, .focus-card h3, .matrix-cell h3, .prog-card h3, .value-card h3,
.form-card h3, .newsletter h3 {
  font-size: 1.375rem; font-weight: 600; line-height: 1.3;
}

/* ---------------------------------------------------------------- REVEAL */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } [data-reveal] { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------- RESPONSIVE */
@media (max-width: 1080px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
  .featured-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-slider { min-height: 440px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media { order: 0; }
  .split-media { max-width: 540px; margin: 0 auto; }
  .newsletter { grid-template-columns: 1fr; gap: 22px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .hline { min-height: 190px; }
  .volunteer-band { grid-template-columns: 1fr; }
  .volunteer-band .vb-img { min-height: 280px; }
}
/* ---- header / hero responsive ---- */
@media (max-width: 1100px) {
  .mast-meta a span { display: none; }                 /* keep phone/mail icons only */
  .mast-search input { width: 150px; }
}
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav { min-height: 50px; }
  .nav-menu { position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 86vw); background: var(--bg); flex-direction: column; align-items: stretch; gap: 0; padding: 78px 18px 30px; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; z-index: 55; border-left: 1px solid var(--line); }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { display: block; }
  .nav-menu > li > a { color: var(--ink-2); padding: 15px 12px; font-size: 1rem; justify-content: flex-start; border-bottom: 1px solid var(--line-soft); }
  .nav-menu > li > a .caret { margin-left: auto; }
  .nav-menu > li > a:hover, .nav-menu > li > a.active { background: var(--bg-alt); color: var(--red); box-shadow: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; border: none; box-shadow: none; padding: 0 0 6px 16px; min-width: auto; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
  .nav-menu > li.open .dropdown { max-height: 600px; }
  .nav-menu > li.open > a .caret { transform: rotate(180deg); }
  .nav-social { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(15,15,15,.4); z-index: 54; opacity: 0; visibility: hidden; transition: var(--transition); }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}
@media (max-width: 760px) {
  .mast-meta { display: none; }
  .subnav-loc { display: none; }
  .subnav-inner { justify-content: flex-start; }
  .subnav-links { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .subnav-links::-webkit-scrollbar { display: none; }
  .hs-arrow { display: none; }
}
@media (max-width: 560px) {
  .masthead-inner { gap: 14px; }
  .mast-logo img { height: 48px; }
  .mast-search { display: none; }
  .mast-donate .full { display: inline; }
  .hero-slider { min-height: 400px; }
  .hs-title { font-size: 1.5rem; }
}
@media (max-width: 720px) {
  .cards.cols-2, .cards.cols-3, .cards.cols-4 { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .form-row { grid-template-columns: 1fr; }
  .donate-tiers { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-badge { display: none; }
  .split-media .img-sub { display: none; }
  .row-head { align-items: flex-start; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .testi-arrows { display: none; }
  .topbar-social { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer — community silhouette background (footerbgimage.png)
   ============================================================ */
.site-footer {
  position: relative;
  background: #672A34;
  color: #ecd9dd;
}
.sf-illu {
  background: #FBF8F3 url('../img/newfooterbgimage.png') no-repeat top center;
  background-size: 100% auto;
  height: 14.5vw;
}
.sf-body { padding: 10px 0 42px; background: #672A34; margin-top: -4px; position: relative; z-index: 1; }
.sf-logo { display: inline-block; margin: 0 0 30px; }
.sf-logo img { height: 50px; width: auto; display: block; }

.sf-cols { display: grid; grid-template-columns: 1fr 1fr 1.7fr 1.6fr; gap: 42px; }
.sf-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin: 0 0 16px; letter-spacing: .2px; }
.sf-col ul { list-style: none; margin: 0; padding: 0; }
.sf-col li { margin-bottom: 11px; }
.sf-col a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .92rem; transition: color .15s; }
.sf-col a:hover { color: #fff; }

.sf-news-head { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.sf-news-head i { font-size: 1.05rem; }
.sf-news p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.6; margin: 0 0 14px; }
.sf-sub { display: flex; background: #fff; border-radius: 5px; overflow: hidden; max-width: 390px; }
.sf-sub input { flex: 1; border: 0; padding: 12px 14px; font-size: .9rem; color: #222; outline: none; background: #fff; }
.sf-sub button { border: 0; background: #8a3a48; color: #fff; font-weight: 600; padding: 0 20px; cursor: pointer; transition: background .15s; }
.sf-sub button:hover { background: #9c4351; }
.sf-fine { font-size: .76rem; color: rgba(255,255,255,.55); margin-top: 20px; line-height: 1.55; max-width: 390px; }
.sf-fine a { color: rgba(255,255,255,.8); text-decoration: underline; }

.sf-member-h { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 1rem; text-decoration: none; margin-bottom: 12px; }
.sf-member-h i { font-size: .78rem; transition: transform .15s; }
.sf-member-h:hover i { transform: translateX(4px); }
.sf-member p { color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.65; margin: 0 0 22px; }
.sf-follow-h { color: #fff; font-size: .95rem; font-weight: 700; margin: 0 0 14px; }
.sf-social { display: flex; gap: 12px; }
.sf-social a { width: 38px; height: 38px; border-radius: 50%; background: #fff; color: #672A34; display: grid; place-items: center; font-size: 1rem; text-decoration: none; transition: transform .15s, background .15s, color .15s; }
.sf-social a:hover { transform: translateY(-3px); background: #D9C7A3; color: #672A34; }

.sf-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); font-size: .83rem; color: rgba(255,255,255,.6); }
.sf-bottom a { color: rgba(255,255,255,.78); text-decoration: none; }
.sf-bottom a:hover { color: #fff; text-decoration: underline; }
.sf-bottom-links { display: flex; align-items: center; gap: 12px; }
.sf-bottom-links .sep { opacity: .4; }

@media (max-width: 900px) {
  .sf-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .sf-news, .sf-member { grid-column: span 2; }
  .sf-body { padding: 10px 0 36px; }
}
@media (max-width: 560px) {
  .sf-cols { grid-template-columns: 1fr; }
  .sf-news, .sf-member { grid-column: span 1; }
  .sf-bottom { flex-direction: column; align-items: flex-start; }
  .sf-body { padding: 10px 0 30px; }
  .sf-illu { height: 18vw; }
}
