/* Gospel Conversation — shared styles */
:root {
  --ink: #16171c;
  --paper: #fafaf7;
  --coral: #ff4d3d;
  --coral-dark: #e0341f;
  --blue: #1c3fa8;
  --blue-deep: #10265f;
  --gold: #ffb703;
  --gray: #6b6d76;
  --line: #e7e6e1;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header {
  background: var(--ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand .dot { color: var(--coral); }

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #d9dae2;
  transition: color 0.15s ease;
}

.nav a:hover, .nav a.active { color: var(--coral); }

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta:hover { background: var(--coral-dark); }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, var(--coral-dark) 130%);
  color: #fff;
  padding: 90px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,183,3,0.35), transparent 70%);
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin: 0 0 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 620px;
  color: #e8e9f2;
  margin-bottom: 34px;
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,77,61,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255,77,61,0.45); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* ---------- Sections ---------- */
section { padding: 76px 24px; }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }

.section-head .eyebrow { color: var(--coral); }

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.section-head p { color: var(--gray); font-size: 1.05rem; }

.grid-3 {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(16,17,23,0.08); }

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: var(--coral);
  color: #fff;
}

.card:nth-child(2) .icon { background: var(--blue); }
.card:nth-child(3) .icon { background: var(--gold); color: var(--ink); }

.card h3 { margin: 0 0 10px; font-size: 1.15rem; font-weight: 700; }
.card p { margin: 0; color: var(--gray); font-size: 0.98rem; }

.tinted { background: #101226; color: #fff; }
.tinted .section-head p { color: #b9bad0; }
.tinted .eyebrow { color: var(--gold); }

.stat-row {
  max-width: 1080px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}

.stat-row .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--coral);
}

.stat-row .label { color: #b9bad0; font-size: 0.95rem; margin-top: 6px; }

.cta-band {
  background: var(--coral);
  color: #fff;
  text-align: center;
  padding: 70px 24px;
}

.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 14px; }
.cta-band p { color: #ffe6e2; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-primary { background: var(--ink); box-shadow: none; }
.cta-band .btn-primary:hover { background: #000; }

/* ---------- Page header (non-home) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin: 0 0 12px; }
.page-hero p { color: #cfd0da; max-width: 560px; margin: 0 auto; }

/* ---------- About page ---------- */
.about-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 24px;
}
.about-body h2 { font-size: 1.5rem; font-weight: 800; margin: 40px 0 14px; }
.about-body p { color: #33343c; margin-bottom: 16px; font-size: 1.02rem; }
.about-body blockquote {
  border-left: 4px solid var(--coral);
  margin: 30px 0;
  padding: 6px 24px;
  font-style: italic;
  color: var(--blue-deep);
  font-size: 1.1rem;
}

.value-list { list-style: none; padding: 0; margin: 20px 0; }
.value-list li {
  padding: 14px 0 14px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #33343c;
}
.value-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--coral);
  font-weight: 800;
}

/* ---------- Resources page ---------- */
.filter-row {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-pill {
  border: 1.5px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
}
.filter-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.res-card { text-align: left; }
.res-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-bottom: 10px;
}
.res-card a.dl { font-weight: 700; color: var(--blue); font-size: 0.92rem; }
.res-card a.dl:hover { color: var(--blue-deep); }

/* ---------- Contact page ---------- */
.contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.contact-info p { color: var(--gray); margin-bottom: 22px; }
.info-item { margin-bottom: 18px; }
.info-item .label { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--coral); }
.info-item .value { color: var(--ink); }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.98rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
}
.contact-form button {
  border: none;
  cursor: pointer;
  margin-top: 6px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #b9bac4;
  padding: 46px 24px 30px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
footer .brand { color: #fff; margin-bottom: 8px; }
footer a:hover { color: var(--coral); }
.footer-links { list-style: none; display: flex; gap: 22px; padding: 0; margin: 0; }
.footer-bottom {
  max-width: 1080px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid #2a2b36;
  font-size: 0.85rem;
  color: #7c7d8a;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .nav ul { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}
