/* ===== Dr. Vivien Nonyelum Njemanze Foundation — Design System ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy-950: #0B1526;
  --navy-800: #16223B;
  --navy-700: #1D2C4A;
  --gold-500: #C9A24B;
  --gold-100: #F2E8CF;
  --ivory-50: #F7F5EF;
  --ink-900: #1B1B1B;
  --ink-600: #4A4A46;
  --line: rgba(201,162,75,0.35);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Work Sans', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--ivory-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

/* ---------- Thread signature: Inspire -> Impact -> Empower ---------- */
.thread {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-100);
  font-weight: 500;
}
.thread .node { color: var(--gold-500); font-weight: 700; }
.thread .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  max-width: 60px;
}
.thread.dark { color: var(--navy-800); }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--navy-950);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  height: 46px;
  width: 46px;
  object-fit: contain;
}
.brand-text {
  font-family: var(--serif);
  color: var(--gold-100);
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold-500);
  font-weight: 500;
  margin-top: 2px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
nav.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(242,232,207,0.85);
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-100);
  border-color: var(--gold-500);
}
.btn-partner {
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.3rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-partner:hover { background: #dab35c; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold-100);
  font-size: 1.2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
  cursor: pointer;
}

@media (max-width: 900px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 0.9rem;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .btn-partner { order: 99; margin-top: 0.5rem; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-950);
  color: rgba(242,232,207,0.7);
  padding: 3rem 1.5rem 2rem;
  margin-top: 5rem;
}
.footer-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-wrap h4 {
  font-family: var(--serif);
  color: var(--gold-100);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.footer-wrap p { font-size: 0.85rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(242,232,207,0.75); }
.footer-links a:hover { color: var(--gold-500); }
.footer-bottom {
  max-width: 1240px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: rgba(242,232,207,0.5);
  text-align: center;
}
@media (max-width: 700px) {
  .footer-wrap { grid-template-columns: 1fr; }
}

/* ---------- Generic section utilities ---------- */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-narrow { max-width: 900px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; }

.placeholder-box {
  background: repeating-linear-gradient(
    135deg, #e9e3d3, #e9e3d3 10px, #f2ede0 10px, #f2ede0 20px
  );
  border: 1px dashed var(--gold-500);
  color: var(--ink-600);
  font-family: var(--sans);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  min-height: 220px;
}

/* ---------- Coming soon page ---------- */
.coming-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  background: var(--navy-950);
  color: var(--gold-100);
}
.coming-soon h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 1.2rem 0 0.8rem;
}
.coming-soon p {
  max-width: 480px;
  color: rgba(242,232,207,0.75);
  font-size: 0.95rem;
}
