/* ===========================================================
   Deaf-Care Healthcare Initiative (DCHI) — shared stylesheet
   Brand palette pulled from the DCHI logo (green / gold / red)
   =========================================================== */
:root {
  --green:        #1b7a3d;
  --green-dark:   #14572c;
  --green-deep:   #0e3d1f;
  --gold:         #f4b400;
  --gold-soft:    #ffd24d;
  --red:          #b5202a;
  --red-dark:     #8f1820;
  --ink:          #16231a;
  --body:         #3a4a40;
  --cream:        #fbf8f0;
  --cream-2:      #f3eede;
  --white:        #ffffff;
  --line:         rgba(20,87,44,.14);

  --radius:       18px;
  --radius-lg:    28px;
  --shadow:       0 14px 40px -18px rgba(14,61,31,.45);
  --shadow-soft:  0 6px 24px -12px rgba(14,61,31,.3);
  --maxw:         1140px;
  --font-head:    "Montserrat", "Montserrat Fallback", system-ui, sans-serif;
  --font-body:    "Montserrat", "Montserrat Fallback", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; font-size: 15px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
a { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Accessibility: skip link + focus */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 10px;
  transition: top .2s ease; font-weight: 600;
}
.skip:focus { top: 12px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-deep); box-shadow: var(--shadow-soft); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green-deep); border-color: rgba(20,87,44,.3); }
.btn-ghost:hover { border-color: var(--green); background: rgba(27,122,61,.06); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-white:hover { transform: translateY(-2px); }

/* ===== Header / Nav ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,240,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; max-width: none; flex: none; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: 9px 14px; border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: rgba(27,122,61,.1); color: var(--green-dark); }
.nav-links a.active { color: var(--green-dark); background: rgba(27,122,61,.12); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 20px; font-size: .92rem; }

.menu-toggle { display: none; background: none; border: 2px solid var(--line); border-radius: 12px; padding: 8px 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2.5px; background: var(--green-deep); border-radius: 2px; margin: 4px 0; transition: .25s; }

/* ===== Services mega menu ===== */
.has-mega { position: relative; }
.has-mega > a { display: inline-flex; align-items: center; gap: 4px; }
.has-mega > a .chev { width: 14px; height: 14px; flex: none; transition: transform .2s ease; }
.has-mega:hover > a .chev, .has-mega:focus-within > a .chev { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: min(620px, 90vw); padding-top: 14px; z-index: 120;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px;
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega-item { display: flex; gap: 12px; padding: 12px; border-radius: 12px; align-items: flex-start; color: var(--ink); }
.mega-item:hover { background: var(--cream-2); }
.mega-item .ico { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(27,122,61,.1); color: var(--green); }
.mega-item:nth-child(2) .ico { background: rgba(244,180,0,.16); color: #a87a00; }
.mega-item:nth-child(3) .ico { background: rgba(181,32,42,.1); color: var(--red); }
.mega-item:nth-child(4) .ico { background: rgba(20,87,44,.12); color: var(--green-dark); }
.mega-item .ico svg { width: 20px; height: 20px; }
.mega-item h4 { font-size: .9rem; margin-bottom: 3px; color: var(--ink); }
.mega-item p { font-size: .75rem; color: var(--body); line-height: 1.35; }
.mega-all {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px;
  padding: 11px; border-radius: 12px; background: var(--green); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
}
.mega-all:hover { background: var(--green-dark); }
.mega-all svg { width: 16px; height: 16px; }

/* ===== Page banner (inner pages) ===== */
.page-hero { position: relative; padding: 64px 0 56px; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(244,180,0,.22), transparent 60%),
    radial-gradient(700px 460px at -5% 120%, rgba(27,122,61,.12), transparent 55%);
}
.page-hero .crumb { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--green); margin-bottom: 12px; }
.page-hero .crumb a { color: var(--green); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 14px; max-width: 18ch; }
.page-hero p { font-size: 1.12rem; max-width: 60ch; }

/* ===== Hero (home) ===== */
.hero { position: relative; padding: 84px 0 96px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(244,180,0,.22), transparent 60%),
    radial-gradient(900px 600px at -5% 110%, rgba(27,122,61,.14), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(181,32,42,.1); color: var(--red-dark);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 20px; }
.hero h1 .hl { color: var(--green); }
.hero p.lead { font-size: 1.18rem; max-width: 34ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-art {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 42%, var(--gold) 0 56%, var(--gold-soft) 56% 100%);
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.hero-art .head { width: 62%; height: 62%; position: relative; }
.hero-art svg { width: 100%; height: 100%; }
.hero-badge {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-soft);
  padding: 12px 16px; font-family: var(--font-head); font-weight: 700; color: var(--green-deep); font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-size: 1rem; }
.hero-badge.b1 { top: 6%; left: -5%; }
.hero-badge.b2 { bottom: 8%; right: -2%; white-space: nowrap; }
.hero-badge.b1 .dot { background: var(--green); }
.hero-badge.b2 .dot { background: var(--red); }

/* ===== Section scaffolding ===== */
section { padding: 84px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .kicker { font-family: var(--font-head); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); font-size: .82rem; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.section-head p { font-size: 1.08rem; }

/* ===== Focus band ===== */
.focus { background: var(--green-deep); color: #e9f3ec; }
.focus .section-head h2 { color: #fff; }
.focus .section-head .kicker { color: var(--gold); }
.focus .section-head p { color: #c5dccb; }
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.focus-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px 24px; transition: transform .2s ease, background .2s ease; }
.focus-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.focus-card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: var(--gold); color: var(--green-deep); }
.focus-card .ico svg { width: 26px; height: 26px; }
.focus-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 8px; }
.focus-card p { color: #bcd3c2; font-size: .96rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid .lead-mark { font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.problem { background: var(--cream-2); border-left: 5px solid var(--red); border-radius: 14px; padding: 24px 26px; margin-top: 24px; }
.problem h4 { color: var(--red-dark); font-size: 1.02rem; margin-bottom: 8px; }
.stat-stack { display: grid; gap: 16px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-soft); }
.stat-card h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.stat-card .tag { width: 34px; height: 34px; border-radius: 10px; background: rgba(27,122,61,.12); color: var(--green); display: grid; place-items: center; flex: none; }

/* ===== Values ===== */
.values { background: var(--cream-2); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value { background: #fff; border-radius: var(--radius); padding: 26px 22px; text-align: center; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value .num { font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: var(--gold); letter-spacing: .1em; }
.value h3 { font-size: 1.12rem; margin: 8px 0 8px; }
.value p { font-size: .92rem; }

/* ===== Services / Ecosystem ===== */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc::after { content: ""; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--green); z-index: 2; }
.svc:nth-child(2)::after { background: var(--gold); }
.svc:nth-child(3)::after { background: var(--red); }
.svc:nth-child(4)::after { background: var(--green-dark); }
.svc-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-2); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.svc:hover .svc-thumb img { transform: scale(1.04); }
.svc .n { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff; position: absolute; top: 12px; right: 18px; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,.45); }
.svc-body { padding: 24px 28px 28px; }
.svc h3 { font-size: 1.28rem; margin-bottom: 10px; }

/* ===== Partnership ===== */
.partner { background: linear-gradient(135deg, var(--green-dark), var(--green-deep)); color: #e9f3ec; }
.partner-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.partner h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.partner p { color: #cfe2d4; font-size: 1.06rem; margin-bottom: 14px; }
.partner .crest { aspect-ratio: 4/3; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; place-items: center; padding: 32px; text-align: center; }
.partner .crest .seal { width: 90px; height: 90px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; margin: 0 auto 18px; color: var(--green-deep); }
.partner .crest .partner-logo { background: transparent; border-radius: 0; padding: 0; margin: 0 auto 18px; max-width: 300px; box-shadow: none; }
.partner .crest .partner-logo img { width: 100%; height: auto; display: block; }
.partner .crest h3 { color: var(--ink); font-size: 1.25rem; line-height: 1.25; }
.partner .crest span { color: #a87a00; font-weight: 700; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; }

/* ===== Donate / CTA band ===== */
.cta-band { background: var(--gold); color: var(--green-deep); text-align: center; }
.cta-band h2 { color: var(--green-deep); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band p { font-size: 1.15rem; max-width: 50ch; margin: 0 auto 30px; color: #5c4a00; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== Donate page ways ===== */
.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.way { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-soft); }
.way .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(27,122,61,.1); color: var(--green); margin-bottom: 16px; }
.way:nth-child(2) .ico { background: rgba(244,180,0,.16); color: #a87a00; }
.way:nth-child(3) .ico { background: rgba(181,32,42,.1); color: var(--red); }
.way .ico svg { width: 26px; height: 26px; }
.way h3 { font-size: 1.18rem; margin-bottom: 8px; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.impact { background: var(--cream-2); border-radius: var(--radius); padding: 30px 24px; }
.impact .big { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--green); line-height: 1; margin-bottom: 8px; }

/* ===== Directors ===== */
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dir { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; text-align: center; box-shadow: var(--shadow-soft); }
.dir .avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px; background: radial-gradient(circle at 50% 40%, var(--gold) 0 58%, var(--gold-soft) 58% 100%); display: grid; place-items: center; color: var(--green-deep); font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; }
.dir h3 { font-size: 1.18rem; margin-bottom: 4px; }
.dir .role { color: var(--red); font-weight: 600; font-size: .92rem; margin-bottom: 10px; }
.dir p { font-size: .95rem; }
.note-card { background: var(--cream-2); border: 1px dashed var(--line); border-radius: var(--radius); padding: 26px 28px; text-align: center; max-width: 720px; margin: 0 auto; }
.dir-bio { margin-top: 12px; text-align: left; border-top: 1px solid var(--line); padding-top: 12px; }
.dir-bio summary { cursor: pointer; list-style: none; font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--green); display: flex; align-items: center; justify-content: center; gap: 6px; }
.dir-bio summary::-webkit-details-marker { display: none; }
.dir-bio summary::after { content: "▾"; transition: transform .2s ease; }
.dir-bio[open] summary::after { transform: rotate(180deg); }
.dir-bio .bio { margin-top: 12px; display: grid; gap: 10px; font-size: .92rem; color: var(--body); }
.dir-bio .bio h4 { font-size: .92rem; color: var(--green-dark); margin-top: 4px; }
.dir-bio .bio .tagline { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: .85rem; letter-spacing: .04em; }
.dir-bio .bio blockquote { border-left: 3px solid var(--gold); padding-left: 12px; margin: 2px 0; font-style: italic; color: var(--ink); }
.dir-bio .bio ul { display: grid; gap: 4px; padding-left: 2px; }
.dir-bio .bio ul li { position: relative; padding-left: 16px; }
.dir-bio .bio ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.dir-bio .bio .meta { font-size: .85rem; color: var(--body); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-list { display: grid; gap: 16px; margin-top: 8px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.contact-item .ico { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(27,122,61,.1); color: var(--green); }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-item a, .contact-item p { font-size: .98rem; color: var(--body); word-break: break-word; }
.contact-item a:hover { color: var(--green); text-decoration: underline; }

.reg-card { background: var(--green-deep); color: #e9f3ec; border-radius: var(--radius-lg); padding: 38px 34px; }
.reg-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.reg-card p { color: #c5dccb; margin-bottom: 22px; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.socials a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; background: rgba(255,255,255,.08); color: #fff; padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); transition: background .15s ease; }
.socials a:hover { background: rgba(255,255,255,.16); }

/* ===== Contact form ===== */
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,122,61,.15); }
.field textarea { min-height: 130px; resize: vertical; }

/* ===== Footer ===== */
footer { background: var(--green-deep); color: #aecbb4; padding: 44px 0 30px; border-top: 4px solid var(--gold); }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 28px; }
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-brand img { height: 52px; background: #fff; border-radius: 12px; padding: 6px 10px; }
.foot-brand strong { color: #fff; font-family: var(--font-head); font-size: 1.05rem; display: block; }
.foot-brand span { font-size: .82rem; color: var(--gold-soft); }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-links a { color: #cfe2d4; font-size: .94rem; }
.foot-links a:hover { color: var(--gold-soft); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .85rem; }

/* ===== Logo animation video (hero) ===== */
.hero-art.video { background: var(--green-deep); overflow: visible; }
.hero-art.video video { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.hero-art.photo { background: var(--cream-2); overflow: visible; }
.hero-art.photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }

/* Animated logo video inside the donate CTA band */
.cta-video { max-width: 440px; margin: 0 auto 28px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.cta-video video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: var(--green-deep); }

/* ===== Team photos ===== */
.dir .photo { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.dir .photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Feature list (service sub-points) ===== */
.feature-list { display: grid; gap: 12px; margin-top: 8px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.feature-list li::before {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
}
.audience { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,180,0,.16); color: #8a6500; font-family: var(--font-head); font-weight: 700; font-size: .82rem; padding: 7px 14px; border-radius: 999px; margin-top: 4px; }

/* Service index cards link styling */
.svc.link { text-decoration: none; color: inherit; display: block; }
.svc .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: var(--font-head); font-weight: 700; color: var(--green); }
.svc .more svg { width: 16px; height: 16px; }

/* ===== Media images ===== */
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.media img { width: 100%; height: clamp(220px, 34vw, 380px); object-fit: cover; display: block; }
.media.full img { height: clamp(200px, 30vw, 320px); }
.media.tall img { height: clamp(460px, 56vw, 760px); object-position: center 18%; }
.about-grid .media img { height: 100%; min-height: 280px; }
.media-band { padding-top: 12px; padding-bottom: 0; }

/* ===== Floating action buttons ===== */
.fab {
  position: fixed; right: 20px; z-index: 90; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; border: none;
  box-shadow: var(--shadow); transition: transform .18s ease, opacity .2s ease, background .18s ease;
}
.fab-wa { bottom: 20px; background: #25d366; color: #fff; }
.fab-wa:hover { transform: translateY(-3px); background: #1ebe5b; }
.fab-top { bottom: 84px; background: var(--green); color: #fff; opacity: 0; visibility: hidden; transform: translateY(8px); }
.fab-top.show { opacity: 1; visibility: visible; transform: none; }
.fab-top:hover { background: var(--green-dark); transform: translateY(-3px); }
@media (max-width: 600px) { .fab { width: 50px; height: 50px; right: 16px; } .fab-wa { bottom: 16px; } .fab-top { bottom: 76px; } }

/* ===== Form status message ===== */
.form-status { font-size: .92rem; font-weight: 600; padding: 0; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: var(--red-dark); }

/* ===== FAQ accordion ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--font-head);
  font-weight: 700; color: var(--ink); font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); font-weight: 400; flex: none; transition: transform .2s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--green-dark); }
.faq .a { padding: 0 24px 22px; color: var(--body); }
.faq .a p { margin-bottom: 10px; }
.faq .a a { color: var(--green); text-decoration: underline; }

/* ===== Legal / prose pages ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; margin: 32px 0 10px; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; }
.prose ul.bullets { display: grid; gap: 8px; margin: 0 0 14px; }
.prose ul.bullets li { position: relative; padding-left: 20px; }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.prose .updated { color: var(--body); font-size: .9rem; font-style: italic; }
.prose a { color: var(--green); text-decoration: underline; }

/* ===== 404 ===== */
.err-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.err-page .code { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 14vw, 8rem); color: var(--green); line-height: 1; }
.err-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 8px 0 14px; }
.err-page p { max-width: 46ch; margin: 0 auto 26px; }

/* ===== Footer legal row ===== */
.foot-legal { display: flex; flex-wrap: wrap; gap: 14px; }
.foot-legal a { color: #cfe2d4; }
.foot-legal a:hover { color: var(--gold-soft); }

/* ===== National impact points ===== */
.impact-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.impact-point { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-soft); display: flex; gap: 14px; align-items: flex-start; transition: transform .2s ease, box-shadow .2s ease; }
.impact-point:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.impact-point .tick { flex: none; width: 36px; height: 36px; border-radius: 10px; background: rgba(27,122,61,.12); color: var(--green); display: grid; place-items: center; }
.impact-point:nth-child(2) .tick { background: rgba(244,180,0,.16); color: #a87a00; }
.impact-point:nth-child(3) .tick { background: rgba(181,32,42,.1); color: var(--red); }
.impact-point:nth-child(4) .tick { background: rgba(20,87,44,.12); color: var(--green-dark); }
.impact-point .tick svg { width: 18px; height: 18px; }
.impact-point p { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.4; }
@media (max-width: 980px) { .impact-points { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .impact-points { grid-template-columns: 1fr; } }

.dir .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-family: var(--font-head); font-weight: 700; color: var(--green); }
.dir .more:hover { color: var(--green-dark); }
.dir .more svg { width: 16px; height: 16px; }

/* ===== HG Mask / PPE page ===== */
.ppe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ppe-fig { margin: 0; }
.ppe-fig img { width: 100%; height: clamp(240px, 34vw, 380px); object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: block; }
.ppe-fig figcaption { font-size: .9rem; color: var(--body); margin-top: 10px; text-align: center; }
.img-placeholder { width: 100%; height: clamp(240px, 34vw, 380px); border-radius: var(--radius-lg); border: 2px dashed var(--line); background: var(--cream-2); display: grid; place-items: center; text-align: center; color: var(--body); font-family: var(--font-head); font-weight: 600; padding: 20px; }
@media (max-width: 760px) { .ppe-grid { grid-template-columns: 1fr; } }

/* ===== Gallery / videos ===== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { margin: 0; }
.video-thumb { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--cream-2); cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.video-thumb:hover img { transform: scale(1.04); }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(14,35,26,.16); transition: background .2s ease; }
.video-thumb:hover::after { background: rgba(14,35,26,.05); }
.video-thumb .play-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 68px; height: 68px; border-radius: 50%; background: var(--red); display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(0,0,0,.55); transition: transform .18s ease, background .18s ease; }
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--red-dark); }
.video-thumb .play-btn svg { width: 26px; height: 26px; margin-left: 3px; fill: #fff; }
.video-thumb:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-soft); }
.video-card figcaption { margin-top: 12px; font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.35; }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }

/* ===== Local video clips ===== */
.clip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.clip { width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: block; }
@media (max-width: 700px) { .clip-grid { grid-template-columns: 1fr; } }

/* ===== Photo gallery + lightbox ===== */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-item { padding: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; cursor: pointer; background: var(--cream-2); aspect-ratio: 1 / 1; box-shadow: var(--shadow-soft); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.photo-item:hover img { transform: scale(1.05); }
.photo-item:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(8,20,14,.93); padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1200px); max-height: 86vh; border-radius: 12px; box-shadow: 0 20px 60px -20px rgba(0,0,0,.8); }
.lightbox .lb-btn { position: absolute; background: rgba(255,255,255,.14); border: none; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .18s ease; }
.lightbox .lb-btn:hover { background: rgba(255,255,255,.3); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .9rem; opacity: .85; }
@media (max-width: 600px) { .lightbox .lb-btn { width: 44px; height: 44px; font-size: 1.4rem; } .lb-prev { left: 8px; } .lb-next { right: 8px; } }

/* ===== Director profile pages ===== */
.profile-head { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: center; margin-top: 14px; }
.profile-head .photo { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--cream-2); }
.profile-head .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-head h1 { margin-bottom: 8px; }
.profile-head .role { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: 1.05rem; margin-bottom: 12px; }
.profile-head .lead { font-size: 1.08rem; color: var(--body); max-width: 52ch; }
.profile-bio { max-width: 820px; margin: 0 auto; }
.profile-bio p { margin-bottom: 14px; font-size: 1.05rem; }
.profile-bio h4 { font-size: 1.1rem; color: var(--green-dark); margin: 24px 0 8px; }
.profile-bio .tagline { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: .95rem; letter-spacing: .03em; margin-bottom: 14px; }
.profile-bio blockquote { border-left: 3px solid var(--gold); padding-left: 16px; margin: 4px 0 16px; font-style: italic; color: var(--ink); }
@media (max-width: 760px) {
  .profile-head { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .profile-head .photo { max-width: 220px; margin: 0 auto; }
  .profile-head .lead { margin: 0 auto; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .hero p.lead { max-width: none; }
  .about-grid, .partner-inner, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .focus-grid, .ways-grid, .impact-grid, .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 70px; left: 16px; right: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow);
  }
  .nav-links.open a { padding: 12px 16px; }
  /* Mega menu collapses to an indented static list on mobile */
  .has-mega > a .chev { display: none; }
  .mega { position: static; width: auto; padding-top: 0; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .mega-inner { box-shadow: none; border: none; background: transparent; padding: 0 0 6px 14px; }
  .mega-grid { grid-template-columns: 1fr; gap: 0; }
  .mega-item { padding: 9px 12px; }
  .mega-item .ico, .mega-item p { display: none; }
  .mega-all { display: none; }
  section, .page-hero { padding-top: 56px; padding-bottom: 56px; }
  .focus-grid, .values-grid, .ways-grid, .impact-grid, .dir-grid { grid-template-columns: 1fr; }
}
