/* ==========================================================
   HOME PAGE
   ========================================================== */

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/4-african-black-men-standing.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7,19,42,0.97) 0%,
    rgba(7,19,42,0.92) 50%,
    rgba(7,19,42,0.6) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-24);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero__content { max-width: 760px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: var(--sp-5);
}
.hero__tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--red);
}

.hero__headline {
  font-family: var(--font-head);
  font-size: var(--text-6xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.hero__headline .accent {
  color: var(--red-light);
  display: block;
}

.hero__sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 480px;
}

.hero__stat-strip {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero__stat { }
.hero__stat-num {
  font-family: var(--font-head);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero__stat-num .accent { color: var(--red-light); }
.hero__stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 4px;
}

/* Right — visual */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
}
.hero__figures {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-end;
}
.hero__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.hero__figure-icon {
  width: 64px;
  height: 88px;
  color: rgba(255,255,255,0.15);
  transition: color var(--dur) var(--ease);
}
.hero__figure--on .hero__figure-icon { color: var(--red); }
.hero__figure-num {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}
.hero__figure--on .hero__figure-num { color: var(--red-light); }

.hero__visual-caption {
  text-align: center;
  font-family: var(--font-head);
  font-size: var(--text-md);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.hero__visual-caption .accent { color: var(--red-light); }

@media (max-width: 1024px) {
  .hero__headline { font-size: var(--text-5xl); }
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: var(--sp-16); }
  .hero__visual { display: none; }
  .hero__headline { font-size: var(--text-4xl); }
  .hero__bg { background-attachment: scroll; }
}

/* ── 1-in-4 section ─────────────────────────────────────── */
.one-in-four-section { background: var(--off-white); }
.one-in-four-section .oif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.oif-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
.oif-figure-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  transition: all var(--dur) var(--ease);
}
.oif-figure-block--highlight {
  border-top-color: var(--red);
  box-shadow: var(--shadow-md);
}
.oif-figure-block__icon {
  width: 80px; height: 112px;
  color: var(--gray-200);
}
.oif-figure-block--highlight .oif-figure-block__icon { color: var(--red); }
.oif-figure-block__label {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  text-align: center;
}
.oif-figure-block--highlight .oif-figure-block__label { color: var(--red); }
.oif-figure-block__sub {
  font-size: var(--text-xs);
  color: var(--gray-500);
  text-align: center;
  line-height: 1.5;
}
.oif-figure-block--highlight .oif-figure-block__sub {
  color: var(--charcoal);
  font-weight: 600;
}

.oif-stats { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: var(--sp-6); }
.oif-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.oif-stat__num {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  min-width: 80px;
}
.oif-stat__text {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 768px) {
  .one-in-four-section .oif-grid { grid-template-columns: 1fr; }
  .oif-figures { grid-template-columns: repeat(2, 1fr); }
}

/* ── Why Black Men ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── Symptoms preview ──────────────────────────────────── */
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.symptom-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.symptom-item:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.symptom-item__icon {
  width: 20px; height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.symptom-item__text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .symptoms-grid { grid-template-columns: 1fr; }
}

/* ── Screened CTA ──────────────────────────────────────── */
.screened-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.screened-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--red);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}
.screened-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.screened-image {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.screened-image img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 768px) {
  .screened-grid { grid-template-columns: 1fr; }
  .screened-image { height: 260px; }
}

/* ── Stories preview ────────────────────────────────────── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
@media (max-width: 900px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stories-grid { grid-template-columns: 1fr; }
}

/* ── Get Involved ───────────────────────────────────────── */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}
.involve-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  transition: all var(--dur) var(--ease);
}
.involve-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.involve-card__icon {
  width: 56px; height: 56px;
  background: var(--red-subtle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.involve-card__icon svg { width: 26px; height: 26px; }
.involve-card__title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
}
.involve-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .involve-grid { grid-template-columns: 1fr; }
}

/* ── Impact stats ───────────────────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.impact-block {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-top: 3px solid var(--red);
}
.impact-block__num {
  font-family: var(--font-head);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  display: block;
  margin-bottom: var(--sp-3);
}
.impact-block__label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr; }
}
