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

:root {
  --rose: #a02e5a;
  --rose-light: #c4567e;
  --blush: #fdf8f5;
  --dusty: #f0d5e0;
  --cream: #faf0e8;
  --charcoal: #3d2b2b;
  --muted: #7a5c65;
  --border: #e8cdd8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--rose);
  letter-spacing: 0.8px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(240,213,224,0.35);
  border: 1px solid rgba(160,46,90,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-logo:hover {
  transform: translateY(-1px);
  background: rgba(240,213,224,0.55);
  box-shadow: 0 10px 24px rgba(160,46,90,0.12);
}
.nav-logo img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(160,46,90,0.18);
  box-shadow: 0 8px 22px rgba(160,46,90,0.14);
}
.nav-logo h1 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.nav-cta {
  background: var(--rose); color: white;
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--rose-light); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5% 4rem;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text { max-width: 520px; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.25rem;
  padding: 0.35rem 0.9rem;
  background: var(--dusty); border-radius: 100px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

h1 em {
  color: var(--rose);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--rose); color: white;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.3px;
  transition: all 0.2s; display: inline-block;
  box-shadow: 0 4px 20px rgba(160,46,90,0.25);
}
.btn-primary:hover {
  background: var(--rose-light);
  box-shadow: 0 6px 28px rgba(160,46,90,0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--rose); font-size: 0.9rem;
  text-decoration: none; font-weight: 400;
  display: flex; align-items: center; gap: 0.4rem;
}
.btn-ghost:hover { text-decoration: underline; }

.price-tag {
  margin-top: 1.25rem;
  font-size: 0.85rem; color: var(--muted);
}
.price-tag strong { color: var(--rose); font-size: 1.1rem; }

/* JOURNAL MOCKUP */
.img-parent {
  display: flex; 
  justify-content: center;
  position: relative;
}

.img-visual {
  width: 100%;
  max-width: 560px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* SOCIAL PROOF STRIP */
.proof-strip {
  background: var(--dusty);
  padding: 1.25rem 5%;
  display: flex; justify-content: center; gap: 3rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--muted); font-weight: 400;
}
.proof-item span { font-size: 1rem; }

/* SIGNATURE QUOTE SECTION */
.quote-section {
  padding: 5rem 5%;
  background: var(--rose);
  position: relative; overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute; top: -2rem; left: 3%;
  font-family: 'Playfair Display', serif;
  font-size: 18rem; color: rgba(255,255,255,0.06);
  line-height: 1; pointer-events: none;
}

.quote-inner {
  max-width: 780px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}

.big-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: white; line-height: 1.5;
  font-style: italic; font-weight: 400;
  margin-bottom: 1.5rem;
}

.quote-attribution {
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
  letter-spacing: 2px; text-transform: uppercase;
}

/* FOR YOU SECTION */
.for-you {
  padding: 6rem 5%;
  max-width: 1100px; margin: 0 auto;
}

.section-label {
  font-size: 0.72rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 0.75rem; font-weight: 500;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--charcoal); line-height: 1.25;
  margin-bottom: 1rem; font-weight: 500;
}

.section-body {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; max-width: 560px;
  font-weight: 300; margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: transparent;
  border: 1px solid rgba(232,205,216,0.55);
  border-radius: 16px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(160,46,90,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px; height: 40px;
  background: var(--dusty); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--charcoal);
  margin-bottom: 0.5rem; font-weight: 500;
}

.card p {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.65; font-weight: 300;
}

/* WHAT'S INSIDE */
.inside {
  padding: 6rem 5%;
  background: var(--cream);
}

.inside-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.week-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.week-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: transparent; border-radius: 12px;
  border: 1px solid rgba(232,205,216,0.55);
}

.week-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--rose); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: white; font-weight: 500;
}

.week-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--charcoal);
  margin-bottom: 0.2rem; font-weight: 500;
}
.week-info p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }

.inside-right {

}

.day-preview {
  background: transparent; border-radius: 16px;
  border: 1px solid rgba(232,205,216,0.55);
  padding: 1.75rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.preview-badge {
  display: inline-block;
  background: var(--dusty); color: var(--rose);
  font-size: 0.68rem; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 0.25rem 0.7rem;
  border-radius: 100px; margin-bottom: 0.75rem;
  font-weight: 500;
}

.preview-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--charcoal);
  margin-bottom: 0.2rem; font-weight: 500;
}

.preview-theme {
  font-size: 0.75rem; color: var(--rose);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1rem; font-weight: 400;
}

.preview-scripture {
  border-left: 2px solid var(--rose);
  padding: 0.6rem 0.9rem;
  background: var(--dusty);
  border-radius: 0 6px 6px 0;
  margin-bottom: 1rem;
}

.preview-scripture p {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem; color: var(--charcoal);
  font-style: italic; line-height: 1.6;
  margin-bottom: 0.25rem;
}

.preview-scripture span {
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 1px;
}

.preview-lines { margin: 1rem 0; }
.preview-line {
  border-bottom: 1px solid var(--border);
  height: 10px; margin-bottom: 10px;
}

.preview-affirmation {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem; color: var(--rose);
  text-align: center; font-style: italic;
  margin-top: 0.75rem;
}

.preview-notes {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.preview-notes strong {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
}

/* TESTIMONIALS */
.testimonials {
  padding: 6rem 5%;
  max-width: 1100px; margin: 0 auto;
}

.testimonials-header { text-align: center; margin-bottom: 3rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testi-card {
  background: transparent; border: 1px solid rgba(232,205,216,0.55);
  border-radius: 16px; padding: 1.75rem;
}

.stars { color: var(--rose); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

.testi-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--charcoal);
  font-style: italic; line-height: 1.65;
  margin-bottom: 1rem; font-weight: 400;
}

.testi-name {
  font-size: 0.78rem; color: var(--muted);
  font-weight: 500; letter-spacing: 0.5px;
}

/* CTA SECTION */
.cta-section {
  padding: 7rem 5%;
  background: linear-gradient(135deg, #fdf0f5 0%, #f5e0eb 100%);
  text-align: center;
  position: relative; overflow: hidden;
}

.cta-section::before {
  content: '♡';
  position: absolute; bottom: -2rem; right: 5%;
  font-size: 16rem; color: rgba(160,46,90,0.04);
  pointer-events: none;
}

.cta-inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }

.cta-section .section-title { margin-bottom: 1rem; }

.cta-section .section-body {
  margin: 0 auto 2rem; text-align: center; max-width: 480px;
}

.cta-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; color: var(--rose);
  margin-bottom: 0.25rem;
}

.cta-price-label {
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 2rem; letter-spacing: 1px;
}

.cta-features {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cta-feature {
  background: transparent; border: 1px solid rgba(232,205,216,0.55);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.8rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.4rem;
}

.cta-feature::before { content: '✓'; color: var(--rose); font-weight: 600; }

.cta-guarantee {
  margin-top: 1.5rem;
  font-size: 0.82rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}

.cta-button {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* FOOTER */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.5);
  padding: 2.5rem 5%; text-align: center;
  font-size: 0.8rem; letter-spacing: 0.5px;
}

footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: white; }

footer .footer-brand {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.7);
  font-size: 1rem; margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 5.5rem 5% 2.5rem;
    gap: 1rem;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
    width: 100%;
    justify-self: center;
  }
  .hero-actions { justify-content: center; }
  .img-parent {
    order: -1;
    width: 100%;
    justify-self: center;
  }
  .inside-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .proof-strip { gap: 1.5rem; }
  nav { padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
