/* ═══════════════════════════════════════════════════════════
   EmmanuelOgunleye.com — Main Stylesheet
   Palette: Forest Green · Kente Gold · Harmattan Cream
   ═══════════════════════════════════════════════════════════ */

:root {
  --green:       #1A3A2A;
  --green-mid:   #234d38;
  --green-light: #2e6349;
  --gold:        #C8922A;
  --gold-light:  #dfa94d;
  --cream:       #F5EFE6;
  --sand:        #E8DDD0;
  --text:        #2C2C2C;
  --text-light:  #5a5a5a;
  --white:       #ffffff;
  --radius:      6px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text);
}

.cormorant-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--green);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subhead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.body-lg {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--cream);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--green); color: var(--white); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  margin-top: 1rem;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.full-width { width: 100%; text-align: center; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-initials {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}

.adinkra-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-name em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--gold);
  font-size: 1rem;
  padding: 1rem 2.25rem;
}
.hero .btn-primary:hover { background: var(--gold-light); }

.hero .btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2.25rem;
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,146,42,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── Credibility Strip ───────────────────────────────────── */
.credibility-strip {
  background: var(--text);
  padding: 1.75rem 0;
  border-bottom: 3px solid var(--gold);
}

.strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.cred-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.cred-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── About ───────────────────────────────────────────────── */
.about-portrait { display: flex; justify-content: center; }

.portrait-frame {
  position: relative;
  max-width: 380px;
  width: 100%;
}

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--sand), var(--cream));
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gold);
  gap: 0.5rem;
}

.portrait-initials {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
}

.portrait-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.6;
  margin: 0;
}

.portrait-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.portrait-badge span:first-child {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text { padding: 1rem 0; }

.about-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.cert-tag {
  background: var(--cream);
  border: 1px solid var(--sand);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* ── Service Grid ─────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon { font-size: 1.75rem; margin-bottom: 1rem; }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--green);
}

.service-card p { font-size: 0.9rem; margin: 0; }

/* ── Nigeria Section ──────────────────────────────────────── */
.nigeria-section {
  background: var(--green);
  padding: 6rem 0;
}

.nigeria-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading.light { color: var(--white); }
.section-eyebrow.light { color: var(--gold); }
.section-subhead.light { color: rgba(255,255,255,0.7); }
.light-text { color: rgba(255,255,255,0.75); line-height: 1.7; }

.nigeria-cards {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.nigeria-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2rem;
  color: var(--white);
}

.nigeria-card.featured {
  background: rgba(200, 146, 42, 0.1);
  border-color: var(--gold);
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.nigeria-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.nigeria-card p { color: rgba(255,255,255,0.72); font-size: 0.92rem; }

.nigeria-card .cormorant-quote {
  color: rgba(255,255,255,0.85);
  border-color: var(--gold);
  font-size: 1.05rem;
}

.card-bullets {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-bullets li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  padding-left: 1.25rem;
  position: relative;
}

.card-bullets li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Policy Dialogue Tabs ─────────────────────────────────── */
.dialogue-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--sand);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
}

.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--gold); }

.dialogue-panel { display: none; }
.dialogue-panel.active { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; }

.dialogue-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.meta-tag {
  background: var(--cream);
  border: 1px solid var(--sand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.meta-date {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-left: auto;
}

.dialogue-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.dialogue-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 1.5rem 0 0.5rem;
}

.dialogue-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.dialogue-body li { font-size: 0.92rem; margin-bottom: 0.35rem; color: var(--text-light); }

.dialogue-cta { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.dialogue-comment-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 2rem;
}

.dialogue-comment-box h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.dialogue-comment-box > p {
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

/* ── Forms ───────────────────────────────────────────────── */
.comment-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,58,42,0.08);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  resize: vertical;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,58,42,0.08);
}

.form-select { cursor: pointer; }
.form-privacy { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-align: center; margin: 0; }

/* ── Video Blog ───────────────────────────────────────────── */
.video-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-player-frame {
  aspect-ratio: 16/9;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.play-btn {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.play-btn:hover { transform: scale(1.1); background: var(--gold-light); }

.video-placeholder-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.video-placeholder-sub { font-size: 0.8rem; opacity: 0.6; }

.video-featured-info { padding: 2.5rem 2.5rem 2.5rem 0; }

.video-ep-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.video-featured-info h3 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.video-meta-row {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thumb-play {
  width: 44px; height: 44px;
  background: rgba(200,146,42,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
}

.thumb-ep {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.video-card-info { padding: 1.25rem; }

.video-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.video-card-info h4 {
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.video-card-info p { font-size: 0.82rem; margin: 0; }

/* ── Speaking ─────────────────────────────────────────────── */
.speaking-layout { align-items: start; gap: 4rem; }

.speaking-topics { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }

.topic-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.topic-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 0.1rem; }

.topic-item strong { display: block; font-size: 0.95rem; color: var(--green); margin-bottom: 0.2rem; }
.topic-item p { font-size: 0.85rem; margin: 0; }

.speaking-blockquote {
  background: var(--green);
  border-radius: 8px;
  padding: 2.5rem;
  margin: 0 0 2rem;
}

.speaking-blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.speaking-blockquote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.speaking-formats {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.75rem;
}

.speaking-formats h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.speaking-formats ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.speaking-formats li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
}

.speaking-formats li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-channels { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0; }

.channel-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
}

.contact-form { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 2.5rem; }
.contact-form .form-privacy { color: rgba(255,255,255,0.4); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-divi-note { font-style: italic; }

/* ── Toast ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(6rem);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  max-width: 320px;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nigeria-cards { grid-template-columns: 1fr 1fr; }
  .nigeria-card.featured { grid-column: span 2; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .dialogue-panel.active { grid-template-columns: 1fr; }
  .video-featured { grid-template-columns: 1fr; }
  .video-featured-info { padding: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .about-portrait { order: -1; }
  .portrait-frame { max-width: 280px; }
  .service-grid { grid-template-columns: 1fr; }
  .nigeria-cards { grid-template-columns: 1fr; }
  .nigeria-card.featured { grid-column: span 1; }
  .video-grid { grid-template-columns: 1fr; }
  .speaking-layout { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; gap: 1.25rem; }
  .cred-divider { width: 40px; height: 1px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--green); padding: 1rem 2rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 0.9rem 0; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-name { font-size: clamp(3rem, 14vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none; }
  .adinkra-canvas { display: none; }
  * { transition: none !important; }
}
