/* ============================
   IWF — STYLES.CSS
   Brand: Navy #00163a | Orange #ff6700 | Teal #007f7f
   Font: Montserrat
   ============================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #00163a;
  --navy-dark: #000e26;
  --navy-mid: #002255;
  --orange: #ff6700;
  --orange-light: #ff8533;
  --teal: #007f7f;
  --teal-light: #009999;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-gray: #f0f2f5;
  --mid-gray: #c8cdd6;
  --text: #1a1a2e;
  --text-muted: #5a6278;
  --font: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,22,58,0.10);
  --shadow-lg: 0 12px 48px rgba(0,22,58,0.16);
  --transition: 0.22s ease;
  --container: 1160px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================
   CONTAINER & SECTIONS
   ============================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.section-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-heading.white { color: var(--white); }

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.text-orange { color: var(--orange); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,103,0,0.35);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-light); border-color: var(--orange-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-large { padding: 18px 36px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============================
   NAVIGATION
   ============================ */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  max-width: 70vw;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;   /* logo left, menu right */
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--navy);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: auto;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,127,127,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,103,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  padding: 40px 24px 40px max(24px, calc((100vw - var(--container)) / 2 + 24px));
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--orange);
  display: inline-block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-col {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 40px 0;
  position: relative;
  z-index: 1;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  background: linear-gradient(135deg, #007f7f 0%, #004d4d 100%);
}

/* Fallback for images that haven't been added yet */
.hero-img:not([src]),
.hero-img[src=""],
.hero-img[src="images/hero-children.jpg"] {
  background: linear-gradient(135deg, #007f7f20, #00163a);
  min-height: 540px;
}

.hero-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ============================
   MISSION STRIP
   ============================ */
.mission-strip {
  background: var(--teal);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  color: var(--white);
  flex: 1;
  max-width: 380px;
}
.strip-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.strip-item p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
}
.strip-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.strip-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.25);
}

/* ============================
   IMPACT SECTION
   ============================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.impact-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.impact-img-wrap {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.impact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.impact-card:hover .impact-img-wrap img {
  transform: scale(1.04);
}

.impact-card-body {
  padding: 24px;
}
.impact-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.impact-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.card-link:hover { color: var(--orange-light); }

/* ============================
   IN HONOUR OF
   ============================ */
.honour-section {
  background: var(--navy-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.honour-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(255,103,0,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.honour-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.honour-text .section-heading { color: var(--white); }
.honour-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.honour-portrait {
  flex-shrink: 0;
}
.portrait-frame {
  width: 280px;
  height: 320px;
  border-radius: 16px;
  border: 3px solid rgba(255,103,0,0.4);
  overflow: hidden;
  background: var(--navy-mid);
}
.portrait-frame.large {
  width: 340px;
  height: 400px;
  border-color: var(--orange);
  border-width: 3px;
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
}
.portrait-placeholder.large { font-size: 14px; }
.portrait-initial {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.portrait-initial.large { font-size: 64px; }
.portrait-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin-top: 8px;
}

/* ============================
   SDG SECTION
   ============================ */
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.sdg-card {
  padding: 28px 22px;
  border-radius: var(--radius);
  border-top: 4px solid;
  background: var(--white);
  box-shadow: var(--shadow);
}
.sdg-card.sdg-1 { border-color: #E5243B; }
.sdg-card.sdg-4 { border-color: #C5192D; }
.sdg-card.sdg-8 { border-color: #A21942; }
.sdg-card.sdg-10 { border-color: #DD1367; }
.sdg-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}
.sdg-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.sdg-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: var(--navy);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
}
.page-hero--orange {
  background: linear-gradient(135deg, var(--orange) 0%, #cc5200 100%);
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}

/* ============================
   ABOUT PAGE
   ============================ */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.pull-quote {
  border-left: 4px solid var(--orange);
  padding: 12px 20px;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 12px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--mid-gray);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 6px;
}
.timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* TRUSTEES */
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.trustee-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.trustee-photo {
  height: 240px;
  background: var(--light-gray);
  overflow: hidden;
}
.trustee-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,0.5);
}
.trustee-photo-placeholder span {
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
}
.trustee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.trustee-info {
  padding: 24px;
}
.trustee-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.trustee-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.trustee-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.trustee-contact {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin: 0;
}

/* GOVERNANCE */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.governance-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.gov-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.governance-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.governance-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ============================
   MISSION PAGE
   ============================ */
.pvm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pvm-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.pvm-card--featured {
  background: var(--navy);
  border-color: transparent;
}
.pvm-card--featured h3 { color: var(--white); }
.pvm-card--featured p { color: rgba(255,255,255,0.75); }
.pvm-icon { font-size: 36px; margin-bottom: 16px; }
.pvm-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.pvm-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* OBJECTIVES */
.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.objective-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.objective-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}
.objective-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  padding-top: 4px;
}
.objective-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.objective-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.objective-sdg {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 4px;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.value-item {
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.value-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.value-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ============================
   PROJECTS PAGE
   ============================ */
.project-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.project-detail--reverse {
  direction: rtl;
}
.project-detail--reverse > * {
  direction: ltr;
}
.project-detail-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.project-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}
.project-badge.sdg8 { background: var(--teal); }
.project-badge.sdg10 { background: #DD1367; }
.project-detail-text .section-heading {
  margin-bottom: 16px;
}
.project-detail-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.project-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
}
.project-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ============================
   DONATE PAGE
   ============================ */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.impact-amounts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}
.amount-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.amount-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  white-space: nowrap;
  min-width: 100px;
}
.amount-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.donate-assurance {
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
}
.donate-assurance h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--orange);
}
.donate-assurance p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.donate-box {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.donate-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.donate-box > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.bank-details {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 13px;
}
.bank-row:last-child { border-bottom: none; }
.bank-label {
  font-weight: 700;
  color: var(--navy);
}
.bank-value { color: var(--text-muted); }
.donate-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.donate-note a { color: var(--orange); font-weight: 600; }
.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.way-card {
  padding: 28px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.way-icon { font-size: 32px; margin-bottom: 14px; }
.way-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.way-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 28px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,103,0,0.12);
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}
.contact-details { padding-top: 8px; }
.contact-details h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.detail-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-detail-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-detail-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.contact-detail-item a { color: var(--teal); font-weight: 600; }
.contact-social {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--light-gray);
}
.contact-social h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.social-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-style: italic;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  transition: background var(--transition);
}
.social-btn:hover { background: var(--orange); }
.contact-reg-box {
  margin-top: 24px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}
.contact-reg-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-reg-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 6px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-reg {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-nav h5,
.footer-contact h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--orange); }
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-phone {
  font-size: 13px !important;
  color: rgba(255,255,255,0.55) !important;
}
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero-content {
    padding: 60px 24px 40px;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-image-col {
    padding: 0 24px 40px;
    justify-content: center;
  }
  .hero-img-wrap { max-width: 500px; }

  .honour-inner { grid-template-columns: 1fr; }
  .honour-portrait { display: none; }

  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .governance-grid { grid-template-columns: repeat(2, 1fr); }
  .trustees-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-section { grid-template-columns: 1fr; }
  .two-col-image { display: flex; justify-content: center; }
  .donate-layout { grid-template-columns: 1fr; }
  .donate-box { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .project-detail { grid-template-columns: 1fr; }
  .project-detail--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 10px 14px; display: block; }
  .nav-toggle { display: flex; }

  .mission-strip {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .strip-item {
    padding: 20px 24px;
    max-width: none;
    width: 100%;
  }
  .strip-divider {
    width: 100%;
    height: 1px;
  }

  .impact-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr 1fr; }
  .pvm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .governance-grid { grid-template-columns: 1fr 1fr; }
  .trustees-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .objective-item { grid-template-columns: 40px 1fr; }
  .objective-sdg { display: none; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .governance-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; }
}


/* QR code donation block */
.qr-donate {
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 2px dashed var(--teal);
}
.qr-donate h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.qr-donate p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.qr-image {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  background: white;
  padding: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.qr-image:hover {
  transform: scale(1.04);
}
.qr-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0 !important;
}
/* Ifetola portrait photo */
.portrait-frame img,
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
