/* ============================================
   DR. TOMIKE OLAWANDE — MENTAL HEALTH ADVOCACY
   Main Stylesheet
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* Mental Health Green Palette */
  --sage: #3A8C5C;
  --sage-light: #6BBF8A;
  --sage-deep: #1F6B40;
  --teal: #1B7A4A;
  --teal-light: #2EA86A;
  --cream: #F2FAF5;
  --warm-white: #F7FDF9;
  --charcoal: #152920;
  --slate: #2D4A38;
  --mist: #6B8F76;
  --accent: #C8864A;
  --accent-light: #E8A87C;
  --gold: #D4AF37;
  --error: #C0392B;
  --success: #1B7A4A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(28,35,39,0.08);
  --shadow-md: 0 6px 24px rgba(28,35,39,0.12);
  --shadow-lg: 0 16px 48px rgba(28,35,39,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--teal);
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); }
p { margin-bottom: 1rem; color: var(--slate); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage-deep);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 16px rgba(27,122,74,0.35);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,122,74,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(200,134,74,0.35);
}
.btn-accent:hover {
  background: #B8763A;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: white;
  color: var(--teal);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--sage-deep);
  color: white;
  padding: 10px 0;
  font-size: 0.85rem;
  text-align: center;
  position: relative;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.announcement-bar p { margin: 0; color: rgba(255,255,255,0.9); }
.announcement-bar a { color: white; text-decoration: underline; font-weight: 600; }
.bar-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.bar-close:hover { opacity: 1; }

/* ---- Navigation ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,140,92,0.2);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  flex-shrink: 0;
  position: relative;
}
.brand-dot::after {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--teal);
  background: rgba(27,122,74,0.06);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.dropdown-arrow { font-size: 0.75rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(58,140,92,0.15);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--cream); color: var(--teal); }
.nav-cta { display: none; }
@media (min-width: 1100px) { .nav-cta { display: inline-flex; } }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero Section ---- */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(58,140,92,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(27,122,74,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,140,92,0.15);
  border: 1px solid rgba(58,140,92,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero-title .highlight {
  color: var(--teal);
  font-style: italic;
  display: block;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage) 0%, var(--teal) 50%, var(--sage-deep) 100%);
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  min-height: 100%;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  padding: 40px;
  text-align: center;
}
.hero-photo-placeholder .placeholder-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px dashed rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.hero-photo-placeholder p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.hero-overlay-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.overlay-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.overlay-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.overlay-card-sub { font-size: 0.78rem; color: var(--mist); }
.hero-decor {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-decor::after {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* ---- Quick Nav Strips ---- */
.quick-nav {
  background: var(--charcoal);
  padding: 0;
}
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: white;
}
.quick-nav-item:last-child { border-right: none; }
.quick-nav-item:hover { background: rgba(58,140,92,0.2); }
.quick-nav-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.quick-nav-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.quick-nav-text span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.section-bg { background: var(--cream); }
.section-dark {
  background: var(--charcoal);
  color: white;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

/* ---- Cards ---- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(58,140,92,0.1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-image-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.card-body { padding: 28px; }
.card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(58,140,92,0.12);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-excerpt {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--mist);
  padding-top: 16px;
  border-top: 1px solid rgba(58,140,92,0.1);
}
.card-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card-read-more:hover { gap: 10px; }

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Event Cards */
.event-card {
  display: flex;
  gap: 24px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58,140,92,0.1);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 80px;
  background: var(--teal);
  border-radius: var(--radius);
  color: white;
  flex-shrink: 0;
}
.event-date-box .month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.event-date-box .day { font-size: 2rem; font-weight: 700; line-height: 1; }
.event-info { flex: 1; }
.event-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.event-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.4;
}
.event-meta {
  font-size: 0.82rem;
  color: var(--mist);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.events-grid { display: grid; gap: 20px; }

/* Program Cards */
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.program-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58,140,92,0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.program-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

/* Media Cards */
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.media-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(58,140,92,0.1);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-embed { position: relative; padding-bottom: 56.25%; height: 0; }
.media-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.media-card-body { padding: 20px; }
.media-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.badge-youtube { background: rgba(255,0,0,0.1); color: #FF0000; }
.badge-podcast { background: rgba(200,134,74,0.12); color: var(--accent); }
.badge-interview { background: rgba(27,122,74,0.1); color: var(--teal); }

/* Resource Cards */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58,140,92,0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.resource-icon { font-size: 2.4rem; margin-bottom: 16px; }
.resource-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.resource-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
}
.resource-desc {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(58,140,92,0.1);
}
.resource-downloads { font-size: 0.78rem; color: var(--mist); }

/* ---- About Section (Homepage) ---- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--sage-light), var(--teal));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  font-size: 0.9rem;
}
.about-photo-placeholder .placeholder-icon { font-size: 4rem; }
.about-credentials {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.about-credentials .cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--slate);
  padding: 4px 0;
}
.cred-icon { font-size: 1rem; }
.about-content .btn { margin-top: 8px; }
.quote-block {
  background: linear-gradient(135deg, rgba(58,140,92,0.1), rgba(27,122,74,0.1));
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--slate);
}

/* ---- Mission Banner ---- */
.mission-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--sage-deep) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mission-banner .container { position: relative; }
.mission-banner h2 { color: white; margin-bottom: 20px; }
.mission-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; }
.mission-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Forms ---- */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(58,140,92,0.3);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(27,122,74,0.1);
}
.form-control::placeholder { color: var(--mist); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- Newsletter Section ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2A3840 100%);
  padding: 72px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.newsletter-copy { flex-shrink: 0; max-width: 380px; }
.newsletter-copy h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.newsletter-copy p { color: rgba(255,255,255,0.65); margin: 0; }
.newsletter-form { flex: 1; }
.newsletter-fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.newsletter-fields input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-fields input:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.newsletter-fields input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-privacy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ---- Footer ---- */
.site-footer {
  background: #111820;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-links a:hover { background: var(--sage); color: white; }
.social-links svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--sage-light); padding-left: 4px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--sage); }
.contact-list a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.contact-list a:hover { color: var(--sage-light); }
.crisis-note {
  margin-top: 20px;
  background: rgba(200,134,74,0.15);
  border: 1px solid rgba(200,134,74,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.8rem;
}
.crisis-note strong { color: var(--accent-light); display: block; margin-bottom: 6px; }
.crisis-note p { color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; font-size: 0.78rem; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sage-light); }
.footer-bottom p + p { margin-top: 6px; }
.footer-seo { font-size: 0.7rem; opacity: 0.5; }

/* ---- Page Header Banner ---- */
.page-header {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D4A45 100%);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sage-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-header h1 { color: white; margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; }

/* ---- About Page ---- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-sidebar { position: sticky; top: 100px; }
.about-portrait {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--sage), var(--teal));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 12px;
}
.about-portrait-placeholder .icon { font-size: 5rem; }
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58,140,92,0.15);
  margin-top: 24px;
}
.sidebar-card h4 { margin-bottom: 16px; font-size: 0.9rem; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(58,140,92,0.1);
  font-size: 0.88rem;
  color: var(--slate);
}
.credential-list li:last-child { border-bottom: none; }
.credential-list .icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.bio-section { margin-bottom: 48px; }
.bio-section h2 { margin-bottom: 20px; }
.research-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.research-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--sage);
}
.research-item strong { display: block; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 4px; }
.research-item span { font-size: 0.82rem; color: var(--mist); }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sage), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-info-body strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.contact-info-body span { font-size: 0.88rem; color: var(--slate); }

/* ---- Join Page ---- */
.join-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.join-option {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58,140,92,0.1);
  transition: var(--transition);
  cursor: pointer;
}
.join-option:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.join-option.active { border-color: var(--teal); background: rgba(27,122,74,0.03); }
.join-option-icon { font-size: 2.8rem; margin-bottom: 16px; }
.join-option h3 { font-size: 1.2rem; margin-bottom: 10px; }
.join-option p { font-size: 0.88rem; color: var(--slate); margin: 0; }

/* ---- Alerts / Messages ---- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: var(--success); }
.alert-error { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3); color: var(--error); }
.alert-info { background: rgba(27,122,74,0.1); border: 1px solid rgba(27,122,74,0.3); color: var(--teal); }

/* ---- Category Color Coding ---- */
.cat-awareness { background: rgba(58,140,92,0.12); color: var(--sage-deep); }
.cat-migration { background: rgba(27,122,74,0.1); color: var(--teal); }
.cat-parenting { background: rgba(200,134,74,0.12); color: var(--accent); }
.cat-youth { background: rgba(212,175,55,0.12); color: #8B7200; }
.cat-research { background: rgba(58,74,82,0.1); color: var(--slate); }

/* Program card gradient themes */
.prog-theme-1 { background: linear-gradient(135deg, #3A8C5C, #1B7A4A); }
.prog-theme-2 { background: linear-gradient(135deg, #1F6B40, #1B7A4A); }
.prog-theme-3 { background: linear-gradient(135deg, #C8864A, #8B5E3C); }
.prog-theme-4 { background: linear-gradient(135deg, #3A5F8A, #2D3E6E); }

/* ---- Admin Dashboard Styles ---- */
.admin-body {
  background: #F0F4F8;
  font-family: var(--font-body);
}
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--charcoal);
  color: white;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}
.admin-sidebar-header {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-header h2 {
  font-size: 1rem;
  color: white;
  margin-bottom: 4px;
}
.admin-sidebar-header span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.admin-nav { padding: 16px 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active {
  color: white;
  background: rgba(58,140,92,0.2);
  border-left: 3px solid var(--sage);
  padding-left: 21px;
}
.admin-nav .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.admin-main { margin-left: 260px; flex: 1; padding: 32px; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.admin-topbar h1 { font-size: 1.6rem; color: var(--charcoal); }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.admin-stat-card .number {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--teal);
}
.admin-stat-card .label { font-size: 0.85rem; color: var(--mist); margin-top: 4px; }
.admin-table-wrap {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--cream);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mist);
  border-bottom: 1px solid rgba(58,140,92,0.15);
}
.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(58,140,92,0.08);
  font-size: 0.88rem;
  color: var(--slate);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(58,140,92,0.04); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-green { background: rgba(39,174,96,0.12); color: var(--success); }
.badge-yellow { background: rgba(241,196,15,0.15); color: #8B7000; }
.badge-red { background: rgba(192,57,43,0.1); color: var(--error); }

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-sage { color: var(--sage-deep); }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex { display: flex; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-muted { color: var(--mist); }
.divider { border: none; border-top: 1px solid rgba(58,140,92,0.15); margin: 40px 0; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 460px; display: block; }
  .hero-content { padding: 80px 40px 60px; }
  .about-section { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .join-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255,253,249,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 0 32px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-bottom: 1px solid rgba(58,140,92,0.2);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-height));
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 14px 24px; border-radius: 0; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(58,140,92,0.06);
    padding: 0;
  }
  .dropdown li a { padding: 10px 40px; }
  .about-section { grid-template-columns: 1fr; }
  .about-credentials { position: static; margin-top: 16px; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .programs-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero-content { padding: 60px 24px 48px; }
  .hero-stats { gap: 24px; }
  .section { padding: 64px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .join-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; gap: 32px; }
  .newsletter-copy { max-width: 100%; }
  .research-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { position: static; width: 100%; height: auto; }
  .admin-main { margin-left: 0; padding: 20px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .quick-nav-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .mission-actions { flex-direction: column; align-items: center; }
}