/* ============================================================
   Dr. Nina Collins Foundation — drninacollinsfoundation.org
   Palette: Deep Green #1B4332 · Forest #2D6A4F · Gold #D4AF37
            Soft Gold #F0E3C0 · Ivory #FDFBF5 · Ink #22271F
   Type: Cormorant Garamond (display) · Mulish (body)
   ============================================================ */

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

:root {
  --green-deep: #1B4332;
  --green: #2D6A4F;
  --green-faint: #EAF2ED;
  --gold: #D4AF37;
  --gold-soft: #F0E3C0;
  --ivory: #FDFBF5;
  --ink: #22271F;
  --ink-soft: #4A5248;
  --white: #FFFFFF;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Mulish', 'Segoe UI', sans-serif;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1.02rem;
}

img { max-width: 100%; display: block; }
a { color: var(--green); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }

/* ---- Signature woven band (kente-inspired stripe) ---- */
.weave {
  height: 10px;
  background:
    repeating-linear-gradient(90deg,
      var(--green-deep) 0 26px,
      var(--gold) 26px 34px,
      var(--green) 34px 60px,
      var(--gold-soft) 60px 66px);
}
.weave.thin { height: 6px; }

/* ---- Header ---- */
header.site {
  background: var(--green-deep);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(27,67,50,.35);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1.4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--white);
  margin-right: auto;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.brand .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.15;
}
.brand .name small {
  display: block;
  font-family: var(--body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
nav.links { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
nav.links a {
  color: #DCE8E0;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
nav.links a:hover { color: var(--white); border-bottom-color: var(--gold); }
nav.links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 800;
  font-family: var(--body);
  text-decoration: none;
  padding: .68rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--gold);
  font-size: .92rem;
  letter-spacing: .03em;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); background: #E4C455; }
.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn.ghost:hover { background: rgba(212,175,55,.15); }
.btn.green {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.btn.green:hover { background: var(--green); }

/* ---- Hero ---- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(212,175,55,.16), transparent 60%),
    var(--green-deep);
  color: var(--white);
  overflow: hidden;
}
.hero .inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.2rem 1.4rem 4.6rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.eyebrow {
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p.lead {
  color: #D9E5DD;
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.8rem;
}
.hero .cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.portrait-frame {
  position: relative;
  justify-self: center;
}
.portrait-frame img {
  width: min(340px, 80vw);
  border-radius: 200px 200px 18px 18px;
  border: 5px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.portrait-frame figcaption {
  text-align: center;
  margin-top: .8rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--gold-soft);
}

/* ---- Sections ---- */
section.block { padding: 4rem 0; }
section.block.tint { background: var(--green-faint); }
.kicker {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
  margin-bottom: .6rem;
}
h2.title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.block p { max-width: 46rem; color: var(--ink-soft); margin-bottom: 1rem; }

/* Two-mission cards */
.missions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border-radius: 16px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 10px 34px rgba(27,67,50,.10);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.card .icon { font-size: 2rem; margin-bottom: .8rem; }
.card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: .7rem;
}
.card p { font-size: .97rem; flex: 1; }
.card .btn { align-self: flex-start; margin-top: 1.1rem; }

/* Scripture band */
.scripture {
  background: var(--green-deep);
  color: var(--gold-soft);
  text-align: center;
  padding: 3.4rem 1.4rem;
}
.scripture blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  max-width: 52rem;
  margin: 0 auto .9rem;
  line-height: 1.5;
}
.scripture cite {
  font-family: var(--body);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}

/* Video */
.video-shell {
  margin-top: 2rem;
  aspect-ratio: 16 / 9;
  max-width: 780px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(27,67,50,.22);
  background: var(--green-deep);
}
.video-shell iframe { width: 100%; height: 100%; border: 0; }

/* Teasers (podcast/book) */
.teasers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2rem;
}
.teaser {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.3rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 34px rgba(27,67,50,.10);
  align-items: center;
}
.teaser img { border-radius: 10px; }
.teaser h3 { font-family: var(--display); color: var(--green-deep); font-size: 1.3rem; margin-bottom: .35rem; }
.teaser p { font-size: .92rem; margin-bottom: .6rem; }
.teaser a.more { font-weight: 800; font-size: .88rem; text-decoration: none; color: var(--green); }
.teaser a.more:hover { color: var(--green-deep); }

/* Newsletter / forms */
.signup {
  margin-top: 1.6rem;
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  max-width: 34rem;
}
input, textarea, select {
  font-family: var(--body);
  font-size: .95rem;
  padding: .72rem .95rem;
  border: 1.5px solid #C4CFC7;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
input:focus, textarea:focus { border-color: var(--green); outline: 2px solid rgba(45,106,79,.25); }
.signup input { flex: 1; min-width: 220px; width: auto; }
button.btn { cursor: pointer; font-size: .92rem; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 3.2rem 0 3.4rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
}
.page-hero p { color: #D9E5DD; max-width: 44rem; margin-top: .8rem; }

/* Story (about page) */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem;
  max-width: 48rem;
}
.story h2 {
  font-family: var(--display);
  color: var(--green-deep);
  font-size: 1.6rem;
  margin: 2.2rem 0 .6rem;
}
.story h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-top: .5rem;
}
.story p { color: var(--ink-soft); margin-bottom: 1rem; }
.pull {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--green-deep);
  border-left: 4px solid var(--gold);
  padding: .4rem 0 .4rem 1.2rem;
  margin: 1.6rem 0;
  max-width: 40rem;
}
figure.inset { margin: 1.8rem 0; max-width: 30rem; }
figure.inset img { border-radius: 14px; box-shadow: 0 14px 40px rgba(27,67,50,.18); }
figure.inset figcaption { font-size: .82rem; color: var(--ink-soft); margin-top: .5rem; font-style: italic; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 34px rgba(27,67,50,.10);
}
.contact-card h3 { font-family: var(--display); color: var(--green-deep); font-size: 1.35rem; margin-bottom: .8rem; }
.contact-card p { font-size: .95rem; }
form .field { margin-bottom: 1rem; }
form label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: .35rem; color: var(--green-deep); }

/* Footer */
footer.site {
  background: var(--green-deep);
  color: #C9D8CE;
  padding: 3rem 0 2rem;
  font-size: .9rem;
}
footer .cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.4rem;
}
footer h4 {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
footer a { color: #DCE8E0; text-decoration: none; display: block; padding: .18rem 0; }
footer a:hover { color: var(--gold); }
footer .legal {
  text-align: center;
  margin-top: 2.4rem;
  padding: 1.2rem 1.4rem 0;
  border-top: 1px solid rgba(212,175,55,.25);
  font-size: .8rem;
  color: #9FB4A6;
}

/* Responsive */
@media (max-width: 860px) {
  .hero .inner { grid-template-columns: 1fr; text-align: center; padding-top: 3rem; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .cta { justify-content: center; }
  .portrait-frame { order: -1; }
  .missions, .teasers, .contact-grid, footer .cols { grid-template-columns: 1fr; }
  .teaser { grid-template-columns: 96px 1fr; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .brand { margin-right: 0; width: 100%; justify-content: center; }
}

/* ---- Liberia mission gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2rem;
}
.gallery figure {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27,67,50,.12);
  border-bottom: 5px solid var(--gold);
}
.gallery img { width: 100%; height: 220px; object-fit: cover; }
.gallery figcaption {
  padding: .8rem 1rem;
  font-size: .84rem;
  color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 240px; }
}

/* ---- Logo hero + YouTube card ---- */
.logo-hero img {
  width: min(430px, 88vw);
  border-radius: 22px;
  border: none;
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
}
.hero {
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(212,175,55,.14), transparent 60%),
    #0E3527;
}
.yt-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--gold-soft);
  background:
    radial-gradient(600px 300px at 50% 120%, rgba(212,175,55,.18), transparent 70%),
    var(--green-deep);
  padding: 2rem;
}
.yt-card .play {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 1.6rem;
  flex-shrink: 0;
}
.yt-card .yt-text {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.35;
}
.yt-card .yt-text small {
  font-family: var(--body);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.yt-card:hover .play { transform: scale(1.06); }
