/* ═══════════════════════════════════════════════════════
   Christian Union — Shared Styles
   All pages link to this file.
   ═══════════════════════════════════════════════════════ */

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

:root {
  --cream:      #FAF7F2;
  --cream-mid:  #F2EBE0;
  --cream-deep: #E8D5B0;
  --ink:        #2C2418;
  --ink-mid:    #7A6A54;
  --ink-light:  #B5A48A;
  --gold:       #C4933F;
  --gold-light: #D4A850;
  --gold-pale:  #FFF3D6;
  --gold-deep:  #A0722A;
  --red:        #8B3A3A;
}

html, body {
  width: 100%;
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,147,63,0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-wordmark {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.nav-wordmark span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  height: 38px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.nav-mobile-menu { display: none; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 136px 32px 72px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
  border-bottom: 1px solid rgba(196,147,63,0.15);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-title {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.25;
}
.page-desc {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CONTENT WRAPPERS ── */
.content-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.content-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* ── LEGAL PROSE ── */
.legal-body { max-width: 720px; margin: 0 auto; padding: 80px 32px 100px; }
.legal-body h1 {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.legal-body .legal-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 48px;
}
.legal-body h2 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 14px;
  padding-top: 48px;
  border-top: 1px solid var(--cream-deep);
}
.legal-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-body ul, .legal-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-body li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--gold-deep); text-decoration: underline; }
.legal-body .legal-contact-box {
  background: var(--cream-mid);
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 48px;
}
.legal-body .legal-contact-box p { margin: 0; }
.legal-body .legal-contact-box a { color: var(--gold-deep); }
.legal-body .table-wrap { overflow-x: auto; margin: 20px 0; }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}
.legal-body th {
  background: var(--cream-mid);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--cream-deep);
}
.legal-body td {
  padding: 10px 14px;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--cream-mid);
  vertical-align: top;
}
.legal-body code {
  font-family: monospace;
  font-size: 12px;
  background: var(--cream-mid);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-item {
  background: #fff;
  border: 1.5px solid var(--cream-deep);
  border-radius: 16px;
  padding: 32px;
}
.card-item-gold {
  background: var(--gold-pale);
  border: 1.5px solid rgba(196,147,63,0.3);
  border-radius: 16px;
  padding: 32px;
}
.card-icon {
  width: 40px; height: 40px;
  background: var(--cream-mid);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-item-title {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.card-item-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--cream-deep);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--cream-deep); }
.faq-q {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
}
.faq-a a { color: var(--gold-deep); text-decoration: underline; }

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,147,63,0.3), transparent);
  margin: 0;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #3A2810 0%, #2A1E0A 50%, #1A1208 100%);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-title {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: #FAF7F2;
  margin-bottom: 12px;
}
.cta-band-sub {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(250,247,242,0.65);
  margin-bottom: 32px;
}
.cta-btn-outline {
  height: 50px;
  padding: 0 32px;
  border: 1.5px solid rgba(196,147,63,0.5);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.cta-btn-outline:hover { background: rgba(196,147,63,0.1); border-color: var(--gold); }
.cta-btn-gold {
  height: 50px;
  padding: 0 32px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.cta-btn-gold:hover { opacity: 0.88; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, #3A2810 0%, #2A1E0A 40%, #1A1208 100%);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,147,63,0.4), transparent);
}
footer::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,63,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 0;
}
.footer-signoff {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(196,147,63,0.18);
}
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-wrap svg { width: 48px; height: 48px; }
.footer-brand {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #FAF7F2;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }
.footer-faith {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(250,247,242,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}
.footer-faith em { font-style: normal; color: var(--gold); font-weight: 400; }
.footer-waitlist-btn {
  height: 46px;
  padding: 0 28px;
  border: 1.5px solid rgba(196,147,63,0.5);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-waitlist-btn:hover { background: rgba(196,147,63,0.1); border-color: var(--gold); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 52px 0 56px;
  border-bottom: 1px solid rgba(196,147,63,0.12);
}
.footer-col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(250,247,242,0.60);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(250,247,242,0.95); }
.footer-bottom {
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(250,247,242,0.30);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(196,147,63,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,0.45);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: rgba(196,147,63,0.5); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ── COOKIE BANNER ── */
#cu-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--ink);
  border-top: 1px solid rgba(196,147,63,0.3);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#cu-cookie p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(250,247,242,0.72);
  margin: 0;
  line-height: 1.5;
}
#cu-cookie a { color: var(--gold); text-decoration: underline; }
#cu-accept {
  height: 34px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  #cu-cookie { flex-direction: column; align-items: flex-start; padding: 16px 24px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .page-hero { padding: 110px 24px 56px; }
  .content-wide, .content-narrow { padding: 56px 24px; }
  .legal-body { padding: 56px 24px 80px; }
  .cards-grid-2, .cards-grid-3 { grid-template-columns: 1fr; }
  .footer-inner { padding: 56px 24px 0; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-band { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
