:root {
  --cream:      hsl(30 50% 98%);
  --cream-2:    hsl(28 46% 95%);
  --rose:       hsl(342 78% 50%);
  --rose-deep:  hsl(342 72% 43%);
  --rose-soft:  hsl(342 70% 96%);
  --gold:       hsl(38 80% 60%);
  --gold-soft:  hsl(38 82% 92%);
  --maroon:     #3A2230;
  --ink:        #5b4750;
  --ink-soft:   #806b75;
  --white:      #fff;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --shadow-soft: 0 12px 40px -16px rgba(58,34,48,0.18);
  --shadow-card: 0 8px 30px -12px rgba(58,34,48,0.14);
  --shadow-rose: 0 14px 34px -12px rgba(192,40,90,0.45);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose); color: var(--white);
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  text-decoration: none;
  padding: 14px 30px; border-radius: 999px;
  box-shadow: var(--shadow-rose);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(192,40,90,0.5); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 10px 22px; font-size: 15px; }
.btn-lg { padding: 17px 40px; font-size: 18px; }
.btn-on-rose { background: var(--white); color: var(--rose-deep); box-shadow: 0 14px 34px -12px rgba(58,34,48,0.45); }
.btn-on-rose:hover { background: var(--cream); color: var(--rose-deep); }

.microcopy { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }
.microcopy--light { color: rgba(255,255,255,0.9); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: hsla(30 50% 98% / 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid hsla(342 30% 60% / 0.12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.wordmark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  color: var(--maroon); text-decoration: none; letter-spacing: -0.01em;
}
.wordmark .heart { color: var(--rose); flex: none; }

/* ===== Hero ===== */
.hero { position: relative; padding: 40px 0 64px; }
.hero-grid { display: grid; gap: 40px; align-items: center; }
.pill {
  display: inline-block; background: var(--gold-soft); color: #9a6a13;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid hsla(38 70% 55% / 0.3);
}
.hero h1 { font-size: clamp(2.45rem, 9vw, 3.4rem); margin-bottom: 20px; font-weight: 600; }
.lede { font-size: clamp(1.05rem, 4vw, 1.18rem); color: var(--ink); max-width: 30ch; margin-bottom: 28px; }
.cta-group { display: flex; flex-direction: column; align-items: flex-start; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 10px 0 30px; }
.hero-blob {
  position: absolute; inset: -6% 4% 6% 4%;
  background: radial-gradient(120% 90% at 30% 20%, hsla(342 80% 88% / 0.9), transparent 60%),
              radial-gradient(120% 100% at 80% 80%, hsla(38 85% 80% / 0.75), transparent 62%);
  border-radius: 46% 54% 56% 44% / 50% 46% 54% 50%;
  filter: blur(6px);
  z-index: 0;
}
.hero-photo {
  position: relative; z-index: 1;
  width: min(320px, 80vw);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
}
.hero-photo img { display: block; width: 100%; height: auto; }

.float-card {
  position: absolute; z-index: 2;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  padding: 12px 15px;
}
.float-card--question {
  left: -4px; bottom: 36px; max-width: 210px;
  display: flex; flex-direction: column; gap: 4px;
}
.fc-label { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--rose); }
.fc-text { font-family: var(--font-display); font-size: 14.5px; color: var(--maroon); line-height: 1.3; font-style: italic; }
.float-card--heart {
  right: -2px; top: 20px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--maroon);
}
.float-card--heart svg { color: var(--rose); }

/* ===== Empathy ===== */
.empathy { padding: 22px 0 60px; }
.empathy-text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 5.2vw, 1.7rem); line-height: 1.45;
  color: var(--maroon); text-align: center; max-width: 22ch; margin: 0 auto;
  font-weight: 400;
}

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 22ch; margin: 0 auto 44px; }
@media (min-width: 760px) { .section-head { max-width: 34ch; } }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 6.5vw, 2.3rem); }

/* ===== How it works ===== */
.how { padding: 60px 0; background: linear-gradient(180deg, transparent, var(--rose-soft) 50%, transparent); }
.steps { list-style: none; display: grid; gap: 28px; }
.step {
  position: relative; background: var(--white);
  border-radius: var(--r-md); padding: 32px 28px 28px;
  box-shadow: var(--shadow-card); text-align: left;
}
.step-num {
  position: absolute; top: -14px; left: 26px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 16px -6px rgba(214,160,80,0.7);
}
.step-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--rose-soft); color: var(--rose);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--ink); font-size: 16px; }

/* ===== Features ===== */
.features { padding: 64px 0; }
.feature-grid { display: grid; gap: 18px; }
.feature-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 28px 24px; box-shadow: var(--shadow-card);
  border: 1px solid hsla(342 30% 70% / 0.08);
}
.feature-icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--rose-soft), var(--gold-soft));
  color: var(--rose); margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.22rem; margin-bottom: 7px; }
.feature-card p { color: var(--ink); font-size: 15.5px; }

/* ===== Trust ===== */
.trust { padding: 30px 0 12px; }
.trust-inner {
  background: linear-gradient(135deg, var(--gold-soft), var(--rose-soft));
  border-radius: var(--r-lg); padding: 30px 28px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow-card);
}
.trust-icon {
  flex: none; display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); color: var(--rose);
  box-shadow: var(--shadow-card);
}
.trust-title { font-size: 1.4rem; margin-bottom: 4px; }
.trust-inner p { color: var(--ink); font-size: 16px; }

/* ===== Faith note ===== */
.faith-note {
  text-align: center; font-family: var(--font-display); font-style: italic;
  color: var(--ink-soft); font-size: 1.05rem; padding: 36px 22px 8px;
}

/* ===== Final CTA ===== */
.final-cta { padding: 24px 0 64px; }
.final-cta-inner {
  background: linear-gradient(135deg, var(--rose), hsl(352 74% 56%));
  border-radius: var(--r-lg); padding: 54px 28px;
  text-align: center; box-shadow: var(--shadow-soft);
}
.final-cta-inner h2 { color: var(--white); font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 26px; }

/* ===== Footer ===== */
.site-footer { padding: 36px 0 48px; border-top: 1px solid hsla(342 30% 60% / 0.12); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.wordmark--footer { font-size: 18px; }
.copyright { font-size: 14px; color: var(--ink-soft); }
.footer-link { font-size: 14px; color: var(--rose-deep); text-decoration: none; font-weight: 500; }
.footer-link:hover { text-decoration: underline; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Desktop ===== */
@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 50px; }
  .hero-photo { width: min(340px, 100%); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero { padding: 64px 0 80px; }
}
@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Header nav (blog link) */
.header-nav { display: flex; align-items: center; gap: 18px; }
.nav-link { color: var(--maroon); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav-link:hover { color: var(--rose); }
