/* =========================================
   WELLSPRING — Theme CSS
   ========================================= */

:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-sage: #74A892;
  --amber: #C9A227;
  --cream: #FDFAF6;
  --cream-warm: #F5EFE0;
  --charcoal: #2D2A26;
  --charcoal-light: #4A4743;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 100px 40px 120px;
  overflow: hidden;
  background: var(--cream);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--green-deep);
  top: -200px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--green-sage);
  bottom: -100px;
  left: -100px;
  opacity: 0.08;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--amber);
  top: 40%;
  left: 30%;
  opacity: 0.06;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-mid);
}

.hero-lede {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--charcoal-light);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-mid);
  border-left: 3px solid var(--amber);
  padding-left: 24px;
  max-width: 560px;
  line-height: 1.6;
}

/* ── AUDIENCE ── */
.audience {
  background: var(--cream-warm);
  padding: 100px 40px;
}

.audience-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 56px;
  line-height: 1.2;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.audience-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 16px;
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: 0 2px 20px rgba(27, 67, 50, 0.04);
}

.card-icon {
  color: var(--green-mid);
  margin-bottom: 24px;
}

.audience-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.audience-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--green-deep);
  color: var(--cream);
  padding: 100px 40px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto .section-label {
  color: var(--amber);
}

.manifesto .section-headline {
  color: var(--cream);
}

.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
}

.manifesto-body p {
  margin-bottom: 24px;
  color: rgba(253, 250, 246, 0.82);
}

.manifesto-statement {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--amber);
  margin: 32px 0;
}

.manifesto-body em {
  font-style: italic;
  color: var(--green-sage);
}

/* ── CLOSING ── */
.closing {
  background: var(--cream);
  padding: 100px 40px 120px;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 580px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.closing-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}

.value {
  padding: 28px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.value-name {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.55;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-deep);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(253, 250, 246, 0.55);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(253, 250, 246, 0.4);
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: rgba(253, 250, 246, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.closing-cta {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 64px;
}

.closing-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ── HERO BOOK CTA ── */
.hero-book-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-cover-thumb {
  width: 100px;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(27, 67, 50, 0.25);
  flex-shrink: 0;
}

.hero-book-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-book-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-book-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-mid);
  color: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
}

.hero-book-price {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  font-weight: 400;
}

.hero-buy-btn {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  width: fit-content;
}

.hero-buy-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.hero-free-link {
  font-size: 0.85rem;
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-free-link:hover {
  color: var(--green-deep);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .closing-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 24px 90px;
    min-height: auto;
  }
  .audience {
    padding: 72px 24px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .manifesto {
    padding: 72px 24px;
  }
  .closing {
    padding: 72px 24px 90px;
  }
  .closing-values {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 40px 24px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}