/* ═══════════════════════════════════════════
   HAWI JAMES OUMA — STYLE.CSS
   Warm Earthy Courage: Forest · Gold · Cream
   Universal Coaching Brand — All Individuals
═══════════════════════════════════════════ */

:root {
  /* Branding - Royal Blue from Logo */
  --brand-blue:    #1a3a82; 
  --brand-blue-dk: #0f2452;
  --brand-blue-lt: #3a5ba8;

  /* Re-mapping Forest to Blue for instant updates */
  --forest:    var(--brand-blue);
  --forest-dk: var(--brand-blue-dk);
  --forest-lt: var(--brand-blue-lt);

  /* Keeping Gold/Cream for high-end contrast */
  --gold:       #c8860a;
  --gold-lt:    #e8a020;
  --gold-pale:  #fdf3e0;
  --cream:      #faf6ef;
  --cream-dk:   #f0e8d8;
  
  --text-dark:  #1a1208;
  --text-mid:   #4a3825;
  --text-light: #7a6550;
  --white:      #ffffff;
  --wa-green:   #25d366;

  --nav-h: 76px;
  --r:     6px;
  --r-lg:  14px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dk); }
::-webkit-scrollbar-thumb { background: var(--forest-lt); border-radius: 3px; }

/* ═══ NAV ═══ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,246,239,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,134,10,0.18);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(250,246,239,0.99);
  box-shadow: 0 2px 24px rgba(30,77,59,0.1);
}
.nav-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.85rem;
  cursor: pointer; flex-shrink: 0;
}
/* Ensure the container handles the image correctly */
.brand-icon {
  width: 44px; 
  height: 44px;
  background: transparent; /* Removes the green box */
  display: flex; 
  align-items: center; 
  justify-content: center;
  border-radius: var(--r);
  box-shadow: none; /* Removes the shadow if he wants it "clean" */
  padding: 0; /* Let the logo fill the space */
}

/* Make the logo image responsive to the 44px container */
.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents stretching */
  display: block;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--forest-dk); }
.brand-tagline { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--text-light); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-link {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid); padding: 0.5rem 0.75rem;
  border-radius: var(--r); cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap; letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--forest); background: rgba(30,77,59,0.08); }
.nav-link.active { color: var(--forest); font-weight: 600; }
.nav-cta {
  background: var(--forest) !important; color: #fff !important;
  padding: 0.5rem 1.1rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--forest-lt) !important; }

.nav-bar {
  position: absolute; bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  width: 0%; transition: width 0.12s linear;
}

.hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; background: rgba(30,77,59,0.08);
  border: 1px solid rgba(30,77,59,0.2);
  border-radius: var(--r); cursor: pointer;
  padding: 0.6rem 0.7rem;
  min-width: 48px; min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; flex-shrink: 0; z-index: 1100;
}
.hamburger span { display: block; width: 21px; height: 2px; background: var(--forest); border-radius: 2px; transition: 0.3s; pointer-events: none; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ PAGE SYSTEM ═══ */
#app { margin-top: var(--nav-h); }

.page {
  display: none; opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  min-height: calc(100vh - var(--nav-h));
}
.page.active { display: block; }
.page.visible { opacity: 1; transform: translateY(0); }

/* ═══ SHARED LAYOUT ═══ */
.section-wrap {
  max-width: 1360px; margin: 0 auto;
  padding: 5rem 2rem;
}
.section-tag {
  font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 0.75rem;
  display: block;
}
.section-tag.light { color: rgba(253,243,224,0.85); }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700; line-height: 1.18;
  color: var(--forest-dk); margin-bottom: 1.25rem;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-header.centered { text-align: center; margin-bottom: 3.5rem; }

/* ═══ BUTTONS ═══ */
.btn-forest {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--forest); color: #fff;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.04em;
  padding: 0.85rem 1.85rem; border: none;
  border-radius: var(--r); cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-forest:hover { background: var(--forest-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,77,59,0.3); }
.btn-forest.sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.btn-forest.full { width: 100%; justify-content: center; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: #fff;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em;
  padding: 0.85rem 1.85rem; border: none;
  border-radius: var(--r); cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,134,10,0.35); }
.btn-gold.sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: #fff;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem; padding: 0.85rem 1.85rem;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--r); cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--wa-green); color: #fff;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.9rem; padding: 0.85rem 1.85rem;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-whatsapp:hover { background: #1ebe59; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ═══ HERO CAROUSEL ═══ */
.hero-carousel {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 600px;
}
.hc-slides { position: relative; width: 100%; height: 100%; }

.hc-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease-in-out, visibility 1.5s;
  z-index: 1;
}

.hc-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.nav-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.hc-slide.leaving {
  position: absolute; inset: 0;
  opacity: 1; pointer-events: none;
  animation: hcOut 0.7s ease forwards;
  z-index: 2;
}
@keyframes hcIn { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
@keyframes hcOut { from { opacity: 1; } to { opacity: 0; } }

.hc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,46,36,0.78) 0%, rgba(20,46,36,0.35) 60%, rgba(0,0,0,0.2) 100%);
}
.hc-content {
  position: relative; z-index: 3;
  max-width: 1360px; margin: 0 auto;
  padding: 0 2rem;
  height: 100%; display: flex;
  flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
}
.hc-badge {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 1.25rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.75rem;
}
.hc-badge::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold-lt); }
.hc-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900; line-height: 1.0;
  color: #fff; max-width: 800px;
  animation: hcTitleIn 0.9s 0.15s both;
}
.hc-title em { font-style: italic; color: var(--gold-lt); }
@keyframes hcTitleIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hc-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.88); max-width: 520px;
  margin-top: 1.25rem; line-height: 1.7;
  animation: hcTitleIn 0.9s 0.3s both;
}
.hc-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; animation: hcTitleIn 0.9s 0.45s both; }

.hc-controls {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 1.25rem;
  z-index: 10;
}
.hc-prev, .hc-next {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; backdrop-filter: blur(8px);
}
.hc-prev:hover, .hc-next:hover { background: rgba(200,134,10,0.7); border-color: var(--gold-lt); }
.hc-dots { display: flex; gap: 0.5rem; }
.hc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hc-dot.active { background: var(--gold-lt); transform: scale(1.35); }

.hc-scroll-hint {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; opacity: 0.5; z-index: 10;
}
.hc-scroll-hint span { font-size: 0.58rem; letter-spacing: 0.28em; color: #fff; writing-mode: vertical-rl; }
.sh-line { width: 1px; height: 44px; background: linear-gradient(to bottom, #fff, transparent); animation: shPulse 1.6s infinite; }
@keyframes shPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ═══ MARQUEE ═══ */
.marquee-strip {
  overflow: hidden; background: var(--forest);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(200,134,10,0.3);
  border-bottom: 1px solid rgba(200,134,10,0.3);
}
.marquee-track {
  display: flex; gap: 2.5rem;
  white-space: nowrap; animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(253,243,224,0.75); }
.marquee-track .mx { color: var(--gold-lt); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══ WHO I HELP — AUDIENCE PILLS ═══ */
.audience-section { background: var(--cream); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.audience-card {
  background: var(--white);
  border: 1px solid rgba(200,134,10,0.15);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(30,77,59,0.12);
  border-color: var(--gold);
}
.audience-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.audience-card h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--forest-dk); margin-bottom: 0.4rem;
}
.audience-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ═══ INTRO SECTION ═══ */
.intro-section { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4.5rem; align-items: center; }
.intro-img-wrap { position: relative; }
.intro-img { height: 520px; border-radius: var(--r-lg); box-shadow: 0 20px 60px rgba(30,77,59,0.2); }
.intro-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: #fff;
  padding: 1.25rem 1.5rem; border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 30px rgba(200,134,10,0.4);
}
.ibf-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.ibf-lbl { font-size: 0.72rem; letter-spacing: 0.1em; opacity: 0.9; margin-top: 0.2rem; }
.intro-text p { color: var(--text-mid); margin-bottom: 1rem; font-size: 1rem; line-height: 1.78; }
.intro-pillars { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.75rem 0; }
.pillar { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 500; color: var(--forest); }
.pillar-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ═══ THE 4 Cs SECTION ═══ */
.four-cs-section { background: var(--forest-dk); padding: 5rem 0; }
.four-cs-section .section-tag { color: var(--gold-lt); }
.four-cs-section .section-h2 { color: var(--white); }
.four-cs-section .section-h2 em { color: var(--gold-lt); }
.four-cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.four-c-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,134,10,0.25);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.four-c-card:hover {
  border-color: var(--gold-lt);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.four-c-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.four-c-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.four-c-card p {
  font-size: 0.85rem;
  color: rgba(250,246,239,0.65);
  line-height: 1.65;
}

/* ═══ CREDENTIALS ═══ */
.creds-section { background: var(--cream-dk); padding: 5rem 0; }
.creds-section .section-tag { color: var(--gold); }
.creds-section .section-h2 { color: var(--forest-dk); }
.creds-section .section-h2 em { color: var(--gold); }
.creds-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cred-card {
  background: var(--white);
  border: 1px solid rgba(200,134,10,0.2);
  border-radius: var(--r-lg); padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cred-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(30,77,59,0.1); }
.cred-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.cred-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest); font-weight: 700; margin-bottom: 0.5rem; }
.cred-body { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

/* ═══ TESTIMONIALS ═══ */
.praise-section { background: var(--white); }
.praise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.praise-card {
  background: var(--cream); border-radius: var(--r-lg);
  padding: 2rem; border: 1px solid rgba(200,134,10,0.12);
  box-shadow: 0 4px 20px rgba(30,77,59,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.praise-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(30,77,59,0.12); }
.praise-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.praise-text { font-family: var(--font-italic); font-size: 1.05rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 1.5rem; }
.praise-author { display: flex; align-items: center; gap: 0.85rem; }
.praise-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.praise-author strong { display: block; font-size: 0.92rem; color: var(--forest-dk); }
.praise-author span { font-size: 0.78rem; color: var(--text-light); }

/* ═══ DISCOVERY CTA ═══ */
.discovery-cta { background: var(--forest); padding: 5rem 2rem; }
.dca-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.dca-text .section-tag { color: var(--gold-lt); }
.dca-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.dca-text h2 em { font-style: italic; color: var(--gold-lt); }
.dca-text > p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.dca-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.dca-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 1.55; }
.dca-list li span { flex-shrink: 0; font-size: 1rem; }
.dca-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.dca-img { height: 460px; border-radius: var(--r-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

/* ═══ ENGAGEMENTS ═══ */
.engage-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.engage-card {
  background: var(--white); border: 1px solid rgba(200,134,10,0.15);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.engage-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,77,59,0.12); }
.engage-logo { font-size: 2.2rem; margin-bottom: 0.75rem; }
.engage-card h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-dk); margin-bottom: 0.6rem; }
.engage-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.engage-link { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }
.engage-link:hover { color: var(--forest); }
.engage-link-btn { background: none; border: none; font-size: 0.78rem; color: var(--gold); font-weight: 600; cursor: pointer; letter-spacing: 0.05em; font-family: var(--font-body); }
.engage-link-btn:hover { color: var(--forest); }

/* ═══ PAGE HERO ═══ */
.page-hero {
  position: relative; height: 380px;
  background: var(--bg) center/cover no-repeat;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,46,36,0.88) 0%, rgba(20,46,36,0.4) 60%, rgba(0,0,0,0.15) 100%); }
.ph-content { position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; width: 100%; padding: 0 2rem 3rem; }
.ph-content h1 { font-family: var(--font-display); font-size: clamp(2.5rem,6vw,5rem); color: #fff; line-height: 1.05; }
.ph-content h1 em { font-style: italic; color: var(--gold-lt); }

/* ═══ ABOUT ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.about-main-img { height: 480px; border-radius: var(--r-lg); box-shadow: 0 16px 50px rgba(30,77,59,0.2); }
.about-quote-card { background: var(--forest); color: #fff; padding: 1.75rem; border-radius: var(--r-lg); margin-top: 1.25rem; border-left: 4px solid var(--gold); }
.about-quote-card p { font-family: var(--font-italic); font-size: 1.25rem; font-style: italic; line-height: 1.6; margin-bottom: 0.5rem; }
.about-quote-card span { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold-lt); }
.about-text-col p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.about-tags span { font-size: 0.78rem; font-weight: 600; background: rgba(30,77,59,0.1); color: var(--forest); border: 1px solid rgba(30,77,59,0.2); padding: 0.3rem 0.85rem; border-radius: 20px; }
.about-values-section { background: var(--cream-dk); padding: 5rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.val-item { background: var(--white); border: 1px solid rgba(200,134,10,0.12); border-radius: var(--r-lg); padding: 1.75rem; transition: transform 0.25s, box-shadow 0.25s; }
.val-item:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(30,77,59,0.1); }
.val-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.val-item h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-dk); margin-bottom: 0.5rem; }
.val-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ═══ SERVICES ═══ */
.services-intro { max-width: 720px; font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 3.5rem; }
.services-list { display: flex; flex-direction: column; gap: 4rem; }
.svc-item { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: center; }
.svc-item.reverse { direction: rtl; }
.svc-item.reverse > * { direction: ltr; }
.svc-img { height: 380px; border-radius: var(--r-lg); box-shadow: 0 14px 44px rgba(30,77,59,0.15); }
.svc-tag { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
.svc-body h3 { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); color: var(--forest-dk); margin-bottom: 0.85rem; }
.svc-body > p { color: var(--text-mid); line-height: 1.78; margin-bottom: 1.25rem; }
.svc-body ul { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.5rem; }
.svc-body ul li { font-size: 0.9rem; color: var(--text-mid); padding-left: 1.1rem; position: relative; }
.svc-body ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 0.18rem; }
.mini-cta { background: var(--gold-pale); border-top: 1px solid rgba(200,134,10,0.2); border-bottom: 1px solid rgba(200,134,10,0.2); padding: 3.5rem 2rem; text-align: center; }
.mini-cta h3 { font-family: var(--font-italic); font-size: clamp(1.2rem,2.5vw,1.75rem); font-style: italic; color: var(--forest-dk); margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ═══ WHO I HELP (Services Page) ═══ */
.who-i-help-section { background: var(--cream-dk); padding: 5rem 0; }
.who-i-help-section .section-h2 { color: var(--forest-dk); }
.wih-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.wih-card {
  background: var(--white);
  border: 1px solid rgba(200,134,10,0.12);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wih-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(30,77,59,0.1); }
.wih-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.wih-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--forest-dk); margin-bottom: 0.25rem; }
.wih-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ═══ EVENTS ═══ */
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.event-card { background: var(--white); border: 1px solid rgba(200,134,10,0.12); border-radius: var(--r-lg); overflow: hidden; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(30,77,59,0.12); }
.featured-event { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.4fr; }
.ev-date-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: #fff; padding: 0.6rem 0.75rem; border-radius: var(--r); display: flex; flex-direction: column; align-items: center; z-index: 5; box-shadow: 0 4px 12px rgba(200,134,10,0.4); }
.ev-day { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; line-height: 1; }
.ev-mon { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.ev-yr { font-size: 0.62rem; opacity: 0.85; }
.ev-img { height: 200px; }
.featured-event .ev-img { height: 100%; min-height: 300px; }
.ev-body { padding: 1.75rem; }
.ev-tag { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
.ev-body h3 { font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.5rem); color: var(--forest-dk); margin-bottom: 0.75rem; }
.ev-body > p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.ev-meta { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.25rem; }
.ev-meta span { font-size: 0.82rem; color: var(--text-light); }

/* ═══ BLOG ═══ */
.blog-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.bf-btn { font-size: 0.78rem; font-weight: 500; background: transparent; border: 1px solid rgba(30,77,59,0.2); color: var(--text-mid); padding: 0.45rem 1.1rem; border-radius: 20px; cursor: pointer; transition: all 0.2s; }
.bf-btn:hover, .bf-btn.active { background: var(--forest); border-color: var(--forest); color: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid rgba(200,134,10,0.1); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(30,77,59,0.12); }
.bc-img { height: 200px; }
.bc-body { padding: 1.5rem; }
.bc-tags { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.bc-tags span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); background: rgba(30,77,59,0.08); padding: 0.2rem 0.6rem; border-radius: 3px; }
.bc-body h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-dk); margin-bottom: 0.6rem; line-height: 1.35; }
.bc-body > p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.bc-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.75rem; }
.bc-read { font-size: 0.8rem; font-weight: 600; color: var(--gold); cursor: pointer; }
.bc-read:hover { color: var(--forest); }

/* ═══ VIDEOS ═══ */
.video-intro { max-width: 720px; font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
.vid-channel-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; margin-bottom: 3rem; }
.vcl { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 600; padding: 0.65rem 1.35rem; border-radius: var(--r); transition: transform 0.2s, box-shadow 0.2s; }
.vcl.youtube { background: #ff0000; color: #fff; }
.vcl.tiktok { background: #000; color: #fff; }
.vcl:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.yt-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.yt-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(200,134,10,0.1); }
.yt-thumb { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.yt-thumb iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.yt-info { padding: 1.5rem; }
.yt-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.yt-info h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--forest-dk); margin: 0.4rem 0 0.5rem; }
.yt-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.yt-embed-direct { display: flex; align-items: center; }
.yt-channel-banner { background: var(--forest-dk); border-radius: var(--r-lg); padding: 2.5rem 2rem; color: #fff; display: flex; gap: 1.5rem; align-items: flex-start; height: 100%; }
.ycb-icon { font-size: 3rem; flex-shrink: 0; }
.yt-channel-banner h4 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.yt-channel-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 1.25rem; }
.tiktok-section { margin-top: 1rem; }
.tt-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: center; }
.tt-card { background: #000; border-radius: var(--r-lg); padding: 3rem 2rem; text-align: center; color: #fff; }
.tt-icon { margin-bottom: 1rem; }
.tt-card h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.6rem; }
.tt-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1.5rem; }
.tt-embed-note { background: var(--cream-dk); border-radius: var(--r-lg); padding: 2.5rem; text-align: center; }
.tt-embed-note p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 1.5rem; }

/* ═══ IMPACT ═══ */
.impact-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid rgba(200,134,10,0.15); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 4rem; }
.is-item { padding: 2.5rem 2rem; text-align: center; background: var(--white); border-right: 1px solid rgba(200,134,10,0.12); }
.is-item:last-child { border-right: none; }
.is-num { display: block; font-family: var(--font-display); font-size: 3rem; color: var(--forest); font-weight: 900; line-height: 1; }
.is-lbl { display: block; font-size: 0.8rem; color: var(--text-light); margin-top: 0.35rem; letter-spacing: 0.05em; }
.impact-story { max-width: 800px; margin-bottom: 4rem; }
.impact-story h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.6rem); color: var(--forest-dk); margin-bottom: 1.25rem; }
.impact-story h2 em { font-style: italic; color: var(--gold); }
.impact-story p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.impact-programmes h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest-dk); margin-bottom: 1.75rem; }
.ip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.ip-card { background: var(--white); border: 1px solid rgba(200,134,10,0.12); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.ip-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,77,59,0.1); }
.ip-img { height: 180px; }
.ip-body { padding: 1.5rem; }
.ip-body h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-dk); margin-bottom: 0.5rem; }
.ip-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.75rem; }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem); color: var(--forest-dk); margin-bottom: 1rem; }
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p { color: var(--text-mid); line-height: 1.78; margin-bottom: 2rem; }
.ci-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.ci-item strong { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.ci-item a { display: block; font-size: 0.92rem; color: var(--text-mid); transition: color 0.2s; }
.ci-item a:hover { color: var(--forest); }
.contact-form-wrap { background: var(--white); border: 1px solid rgba(200,134,10,0.15); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: 0 8px 32px rgba(30,77,59,0.08); }
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest-dk); margin-bottom: 1.75rem; }
.cf-row { margin-bottom: 1.25rem; }
.cf-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-group label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.cf-group input, .cf-group select, .cf-group textarea {
  background: var(--cream); border: 1px solid rgba(200,134,10,0.2);
  border-radius: var(--r); color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.92rem;
  padding: 0.75rem 1rem; outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: var(--text-light); font-size: 0.88rem; }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--forest); background: #fff; }
textarea { resize: vertical; min-height: 130px; }
.cf-success { margin-top: 1rem; padding: 1rem 1.25rem; background: rgba(30,77,59,0.08); border: 1px solid rgba(30,77,59,0.25); border-radius: var(--r); color: var(--forest); font-size: 0.9rem; }
.cf-error { margin-top: 1rem; padding: 1rem 1.25rem; background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.25); border-radius: var(--r); color: #b91c1c; font-size: 0.9rem; }

/* ═══ FOOTER ═══ */
#footer { background: var(--forest-dk); color: rgba(250,246,239,0.8); }
.footer-inner { max-width: 1360px; margin: 0 auto; padding: 4.5rem 2rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.2fr; gap: 3rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-top: 1.25rem; max-width: 320px; color: rgba(250,246,239,0.62); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.fs-btn { width: 40px; height: 40px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, opacity 0.2s; opacity: 0.8; }
.fs-btn:hover { transform: translateY(-2px); opacity: 1; }
.fs-btn.yt { background: #ff0000; }
.fs-btn.tt { background: #000; }
.fs-btn.wa { background: var(--wa-green); }
.footer-links h5, .footer-contact h5 { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.25rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul a { font-size: 0.88rem; color: rgba(250,246,239,0.6); cursor: pointer; transition: color 0.2s; }
.footer-links ul a:hover { color: var(--gold-lt); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(250,246,239,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-lt); }
.footer-bottom { max-width: 1360px; margin: 0 auto; padding: 1.5rem 2rem; border-top: 1px solid rgba(250,246,239,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(250,246,239,0.35); }
/* Footer specific logo container adjustments */
.fb-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* If your footer background is dark, ensure the brand-name is visible */
.brand-name .brand-name-logo {
  color: rgba(250,246,239,0.62);;  
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.fb-logo .brand-tagline {
  font-size: 0.65rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer specific logo container adjustments */
.fb-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* If your footer background is dark, ensure the brand-name is visible */
.fb-logo .brand-name {
  color: var(--forest); /* This will now be your Royal Blue */
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.fb-logo .brand-tagline {
  font-size: 0.65rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 999; width: 56px; height: 56px;
  background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  animation: waPulse 2.5s infinite;
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 18px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,.65),0 0 0 8px rgba(37,211,102,.1)} }

/* ═══ SCROLL REVEAL ═══ */
.reveal-ready { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }
.reveal-ready:nth-child(2){transition-delay:.07s}
.reveal-ready:nth-child(3){transition-delay:.14s}
.reveal-ready:nth-child(4){transition-delay:.21s}
.reveal-ready:nth-child(5){transition-delay:.28s}
.reveal-ready:nth-child(6){transition-delay:.35s}
.reveal-ready:nth-child(7){transition-delay:.42s}
.reveal-ready:nth-child(8){transition-delay:.49s}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .creds-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr 1fr; }
  .engage-grid { grid-template-columns: 1fr 1fr; }
  .four-cs-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(250,246,239,0.99); flex-direction: column;
    padding: 0.75rem 1rem 1.25rem; gap: 0.15rem;
    border-bottom: 2px solid rgba(200,134,10,0.2);
    transform: translateY(-110%); opacity: 0;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s;
    backdrop-filter: blur(20px); z-index: 999;
    pointer-events: none; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; }
  .nav-link { display: flex; align-items: center; width: 100%; padding: 1rem 1.25rem !important; font-size: 1rem !important; min-height: 52px; border-radius: var(--r) !important; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
  .nav-cta { margin-top: 0.5rem !important; justify-content: center; }
  .intro-grid, .about-grid { grid-template-columns: 1fr; }
  .dca-inner { grid-template-columns: 1fr; }
  .dca-img { height: 280px; }
  .svc-item, .svc-item.reverse { grid-template-columns: 1fr; direction: ltr; }
  .svc-img { height: 260px; }
  .events-grid { grid-template-columns: 1fr; }
  .featured-event { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .praise-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .ip-grid { grid-template-columns: 1fr; }
  .yt-grid, .tt-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .four-cs-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .wih-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section-wrap { padding: 3.5rem 1.25rem; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .engage-grid { grid-template-columns: 1fr; }
  .cf-row.two { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .hc-title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .praise-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .wih-grid { grid-template-columns: 1fr; }
  .four-cs-grid { grid-template-columns: 1fr 1fr; }
}