/* ============================================================
   DR. OYAREKWA AUSTINE FELIX-ADERI — WEBSITE STYLES v2
   ============================================================ */

:root {
  --green-dark:   #1a3a2a;
  --green-mid:    #2d5a3d;
  --green-light:  #4a8c5c;
  --green-pale:   #eaf3e6;
  --gold:         #c9943a;
  --gold-light:   #f0c870;
  --cream:        #faf8f3;
  --white:        #ffffff;
  --text-dark:    #1c1c1c;
  --text-mid:     #444;
  --text-muted:   #777;
  --border:       #e0ddd6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       10px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--cream); line-height: 1.7; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-inner { max-width: 1080px; margin: 0 auto; padding: 5rem 2rem; }

/* ---- HEADER ---- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,248,243,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { max-width: 1080px; margin: 0 auto; padding: 0 2rem; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); letter-spacing: 0.01em; }
.logo-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; }
.nav-link { font-size: 0.88rem; font-weight: 500; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; position: relative; padding-bottom: 2px; transition: color var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--green-dark); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: var(--transition); }

/* ---- TABS ---- */
main { padding-top: 68px; }
.tab { display: none; animation: fadeIn 0.4s ease; }
.tab.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- BUTTONS ---- */
.btn-primary { background: var(--green-dark); color: var(--white); border: 2px solid var(--green-dark); padding: 0.75rem 1.75rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; cursor: pointer; letter-spacing: 0.02em; transition: background var(--transition), transform var(--transition); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); padding: 0.75rem 1.75rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: background var(--transition), color var(--transition); display: inline-block; }
.btn-outline:hover { background: var(--green-dark); color: var(--white); }
.btn-full { width: 100%; }

/* ---- HERO ---- */
.hero { min-height: calc(100vh - 68px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; max-width: 1080px; margin: 0 auto; padding: 4rem 2rem; gap: 4rem; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.hero-name { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.08; color: var(--green-dark); margin-bottom: 0.75rem; }
.hero-position { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; font-style: italic; }
.hero-desc { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; max-width: 480px; margin-bottom: 2rem; }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-image-placeholder { width: 100%; aspect-ratio: 3/4; max-height: 560px; background: linear-gradient(160deg, #d6e8d0, #b2d0b0); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--green-mid); font-size: 0.85rem; text-align: center; }
.hero-image-placeholder .placeholder-icon { font-size: 3.5rem; }
.hero-image-wrap img { width: 100%; aspect-ratio: 3/4; max-height: 560px; object-fit: cover; object-position: top center; border-radius: 16px; }
.hero-image-badge { position: absolute; bottom: 1.5rem; left: -1rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 500; color: var(--green-dark); box-shadow: var(--shadow); }

/* ---- STATS ---- */
.stats-strip { background: var(--green-dark); display: flex; justify-content: center; align-items: center; flex-wrap: wrap; padding: 2.5rem 2rem; }
.stat-item { text-align: center; padding: 0.5rem 3rem; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; letter-spacing: 0.04em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ---- INTRO / WHO IS HE ---- */
.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
/*.intro-image-col {}*/
.intro-image-placeholder { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg, #d6e8d0, #b2d0b0); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--green-mid); font-size: 0.85rem; text-align: center; }
.intro-image-placeholder .placeholder-icon { font-size: 3rem; }
.intro-image-col img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: 16px; }
/*.intro-text-col {}*/
.intro-body { color: var(--text-mid); font-size: 1rem; line-height: 1.8; }
.section-eyebrow { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; display: block; }
.section-heading { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--green-dark); margin-bottom: 1.5rem; line-height: 1.2; }

/* ---- QUOTES ---- */
.quotes-section { background: var(--cream); padding: 5rem 2rem; }
.quotes-inner { max-width: 1080px; margin: 0 auto; }
.quotes-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 2rem; text-align: center; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: box-shadow var(--transition), transform var(--transition); }
.quote-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--green-pale); line-height: 1; margin-bottom: 0.5rem; }
.quote-text { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--green-dark); line-height: 1.6; margin: 0; }

/* ---- WHY HE'S RUNNING ---- */
.why-section { background: var(--green-dark); }
.why-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: center; }
.why-placeholder { background: rgba(255,255,255,0.07); border: 1px dashed rgba(255,255,255,0.2); border-radius: var(--radius); padding: 1.25rem; color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 2rem; font-style: italic; line-height: 1.6; }
.why-statement { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.85; margin-bottom: 2rem; }
.why-pillars { display: flex; flex-direction: column; gap: 1rem; }
.why-pillar { display: flex; gap: 1rem; align-items: flex-start; }
.why-pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.why-pillar h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.2rem; }
.why-pillar p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }
.why-image-placeholder { width: 100%; aspect-ratio: 4/5; background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.15); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.85rem; text-align: center; }
.why-image-placeholder .placeholder-icon { font-size: 3rem; }
.why-image-col img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: 16px; }

/* ---- VENTURES ---- */
.ventures-section { background: var(--white); }
.ventures-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.venture-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: box-shadow var(--transition), transform var(--transition); }
.venture-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.venture-logo { font-size: 2.2rem; margin-bottom: 1rem; }
.venture-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.2rem; }
.venture-role { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); font-weight: 500; margin-bottom: 0.75rem; }
.venture-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; }
.venture-link { font-size: 0.88rem; font-weight: 500; color: var(--green-light); transition: color var(--transition); }
.venture-link:hover { color: var(--green-dark); }

/* ---- CREDENTIALS STRIP ---- */
.creds-strip-section { background: var(--cream); }
.creds-strip-section .section-inner { padding-top: 3rem; padding-bottom: 3rem; }
.creds-strip { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.creds-strip-badge { background: var(--white); border: 1px solid var(--border); border-radius: 40px; padding: 0.45rem 1.1rem; font-size: 0.82rem; font-weight: 500; color: var(--text-mid); }

/* ---- NEWS ---- */
.news-section { background: var(--white); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.news-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: box-shadow var(--transition), transform var(--transition); background: var(--white); }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.placeholder-img { background: var(--green-pale); }
.news-card-body { padding: 1.5rem; }
.news-date { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.news-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.75rem; line-height: 1.35; }
.news-excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.news-read { font-size: 0.85rem; font-weight: 500; color: var(--gold); }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--green-pale); border-top: 1px solid #c5dfc0; border-bottom: 1px solid #c5dfc0; padding: 4rem 2rem; text-align: center; }
.cta-banner-inner { max-width: 600px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.75rem; }
.cta-sub { font-size: 1rem; color: var(--text-mid); margin-bottom: 1.75rem; }
.cta-btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--green-dark); padding: 5rem 2rem 4rem; text-align: center; }
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.page-hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 1rem; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.7; }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.about-image-placeholder { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg, #d6e8d0, #b2d0b0); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--green-mid); font-size: 0.85rem; text-align: center; position: sticky; top: 90px; }
.about-image-placeholder .placeholder-icon { font-size: 3rem; }
.about-image-col img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: 16px; position: sticky; top: 90px; }
.about-section-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--green-dark); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--green-pale); }
.about-body { color: var(--text-mid); font-size: 1rem; margin-bottom: 1rem; }
.edu-list { display: flex; flex-direction: column; gap: 1rem; }
.edu-item { display: flex; gap: 1rem; align-items: flex-start; }
.edu-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.edu-degree { font-weight: 500; color: var(--green-dark); font-size: 0.95rem; margin-bottom: 0.15rem; }
.edu-school { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ---- VISION BAND ---- */
.vision-band { background: var(--green-dark); }
.vision-band .section-inner { padding-top: 4rem; padding-bottom: 4rem; }
.vision-placeholder { background: rgba(255,255,255,0.07); border: 1px dashed rgba(255,255,255,0.2); border-radius: var(--radius); padding: 1.5rem; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 3rem; font-style: italic; }
.vision-statement { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.9; margin-bottom: 3rem; max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.vision-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vision-pillar { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.75rem; transition: background var(--transition); }
.vision-pillar:hover { background: rgba(255,255,255,0.1); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.vision-pillar h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.5rem; }
.vision-pillar p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.65; }

/* ---- ARTICLES ---- */
.articles-section { background: var(--cream); }
.article-accordion { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; background: var(--white); overflow: hidden; }
.article-summary { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer; list-style: none; transition: background var(--transition); }
.article-summary:hover { background: var(--green-pale); }
.article-summary::-webkit-details-marker { display: none; }
.article-summary-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); }
.article-toggle { font-size: 1.4rem; color: var(--gold); font-weight: 300; transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
details[open] .article-toggle { transform: rotate(45deg); }
.article-body { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--border); }
.article-body p { color: var(--text-mid); font-size: 0.95rem; margin-top: 1rem; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--green-pale); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot { position: absolute; left: -2rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 2px solid var(--green-light); z-index: 1; }
.timeline-dot.current { background: var(--gold); border-color: var(--gold); }
.timeline-date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 500; }
.timeline-role { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--green-dark); margin: 0.2rem 0; }
.timeline-org { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; margin-bottom: 0.5rem; }
.timeline-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ---- ORGS ---- */
.orgs-band { background: var(--white); }
.orgs-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.org-badge { background: var(--green-pale); color: var(--green-dark); border: 1px solid #c5dfc0; border-radius: 40px; padding: 0.5rem 1.1rem; font-size: 0.85rem; font-weight: 500; transition: background var(--transition); }
.org-badge:hover { background: var(--green-light); color: var(--white); }

/* ---- CREDENTIALS ---- */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cred-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: box-shadow var(--transition), transform var(--transition); }
.cred-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.cred-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.cred-title { font-weight: 600; color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.cred-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.45; margin: 0; }

/* ---- BOOK ---- */
.book-section { background: var(--cream); }
.book-card { display: flex; gap: 3rem; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; }
.book-cover-placeholder { width: 160px; height: 220px; background: linear-gradient(160deg, var(--green-pale), #c5dfc0); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--green-mid); flex-shrink: 0; text-align: center; gap: 0.5rem; }
.book-cover-placeholder p { font-size: 0.75rem; }
.book-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }
.book-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.75rem; }
.book-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-col-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.5rem; }
.contact-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.82rem; font-weight: 500; color: var(--text-mid); }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.92rem; color: var(--text-dark); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-input:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(74,140,92,0.12); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; color: var(--green-light); font-size: 0.88rem; font-weight: 500; margin-top: 0.25rem; }
.form-success.visible { display: block; }
.connect-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.connect-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.connect-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 500; margin-bottom: 0.15rem; }
.connect-link { font-size: 0.92rem; color: var(--gold); font-weight: 500; }
.connect-link:hover { text-decoration: underline; }
.connect-value { font-size: 0.92rem; color: var(--text-mid); margin: 0; }
.social-heading { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); margin: 1.5rem 0 0.75rem; }
.social-links { display: flex; flex-direction: column; gap: 0.6rem; }
.social-btn { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; color: var(--text-mid); background: var(--white); transition: all var(--transition); }
.social-btn:hover { transform: translateX(4px); border-color: var(--green-light); color: var(--green-dark); }
.social-btn.linkedin:hover { background: #f0f7ff; border-color: #0a66c2; color: #0a66c2; }
.social-btn.twitter:hover { background: #f7f7f7; border-color: #000; color: #000; }
.social-btn.facebook:hover { background: #f0f4ff; border-color: #1877f2; color: #1877f2; }
.social-btn.instagram:hover { background: #fff0f7; border-color: #e1306c; color: #e1306c; }
.social-btn.whatsapp:hover { background: #f0fff4; border-color: #25d366; color: #25d366; }
.bio-download { background: var(--green-pale); border: 1px solid #c5dfc0; border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; }
.bio-download-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.5rem; }
.bio-download-desc { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0; }

/* ---- FOOTER ---- */
.site-footer { background: var(--green-dark); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.footer-constituency { font-size: 0.8rem; color: var(--gold-light); font-style: italic; margin: 0; }
.footer-col-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); font-weight: 500; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.footer-social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero entrance — replays each time the home tab is activated */
.hero-content > * {
  opacity: 0;
  animation: slideUp 0.65s ease forwards;
}
.tab.active .hero-content > *:nth-child(1) { animation-delay: 0.40s; }
.tab.active .hero-content > *:nth-child(2) { animation-delay: 0.55s; }
.tab.active .hero-content > *:nth-child(3) { animation-delay: 0.70s; }
.tab.active .hero-content > *:nth-child(4) { animation-delay: 0.85s; }
.tab.active .hero-content > *:nth-child(5) { animation-delay: 1.00s; }

.hero-image-wrap {
  opacity: 0;
  animation:
    slideInRight 0.85s ease 0.40s forwards,
    floatY 7s ease-in-out 1.35s infinite;
}

.hero-image-badge {
  opacity: 0;
  animation: scaleIn 0.45s ease 1.30s forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.from-left  { transform: translateX(-44px); }
.reveal.from-right { transform: translateX(44px); }
.reveal.visible    { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .hero-image-wrap, .hero-image-badge { animation: none; opacity: 1; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  /* Layout */
  .section-inner { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 3.5rem 1.5rem 3rem; }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; min-height: auto; padding: 3rem 1.5rem; }
  .hero-image-wrap { order: -1; animation: slideInRight 0.85s ease 0.40s forwards; }
  .hero-image-placeholder, .hero-image-wrap img { max-height: 300px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image-col img, .intro-image-placeholder { max-height: 280px; }
  .quote-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-placeholder, .about-image-col img { position: static; max-height: 280px; }
  .vision-pillars { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-col { display: block; order: -1; }
  .why-image-col img { max-height: 260px; }
  .ventures-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-card { flex-direction: column; align-items: center; }
  .book-info { text-align: center; }
  .book-info .btn-primary { display: block; width: fit-content; margin: 1rem auto 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 0.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Text alignment */
  .section-eyebrow,
  .section-heading,
  .about-section-title { text-align: center; }
  .intro-text-col .btn-primary { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1rem 2rem; gap: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-name { font-size: 2.4rem; }
  .hero-image-placeholder, .hero-image-wrap img { max-height: 240px; }
  .page-hero { padding: 2.5rem 1.25rem 2rem; }
  .stats-strip { flex-direction: column; }
  .cred-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 3rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-btn-row { flex-direction: column; align-items: center; }
}
