:root {
  --blush: #f7e9e3;
  --rose: #d98a8a;
  --rose-dark: #b96a6a;
  --plum: #4a3640;
  --gold: #c9a24b;
  --cream: #fffaf6;
  --ink: #3a2c33;
  --shadow: 0 10px 40px rgba(74, 54, 64, 0.15);
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Segoe UI", system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 680px; }
h1, h2, h3 { color: var(--plum); line-height: 1.2; }
a { color: var(--rose-dark); }
em { font-style: normal; color: var(--rose-dark); }

/* Buttons */
.btn { display: inline-block; border: none; border-radius: 999px; font-weight: 600; cursor: pointer; text-decoration: none; text-align: center; transition: transform .12s, box-shadow .12s, background .12s; font-size: 1rem; padding: 12px 26px; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--rose); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--rose-dark); }
.btn-ghost { background: transparent; color: var(--rose-dark); box-shadow: inset 0 0 0 2px var(--rose); }
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.btn-lg { padding: 16px 34px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(255,250,246,.9); backdrop-filter: blur(8px); border-bottom: 1px solid #eaddd5; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { font-weight: 700; font-size: 1.15rem; text-decoration: none; color: var(--plum); }
.brand span { color: var(--plum); }
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a { text-decoration: none; color: var(--plum); font-weight: 600; }
.nav nav a:hover { color: var(--rose-dark); }

/* Hero */
.hero { background: linear-gradient(165deg, var(--blush), var(--cream)); padding: 70px 0 80px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .85rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin: 10px 0 18px; letter-spacing: -.5px; }
.lede { font-size: 1.18rem; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; margin: 28px 0 14px; flex-wrap: wrap; }
.reassure { color: var(--rose-dark); font-size: .95rem; }

.hero-art { display: flex; justify-content: center; }
.phone { width: 240px; height: 480px; border-radius: 36px; background: #1c1418; padding: 12px; box-shadow: var(--shadow); }
.phone-screen { width: 100%; height: 100%; border-radius: 26px; background: linear-gradient(160deg, var(--blush), var(--cream)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; text-align: center; }
.bubble { width: 60px; height: 60px; border-radius: 50%; background: var(--cream); border: 3px solid #fff; box-shadow: var(--shadow); }
.phone-h { font-weight: 700; color: var(--plum); font-size: 1.15rem; }
.phone-sub { color: var(--rose-dark); font-size: .95rem; }
.phone-btn { margin-top: 12px; background: var(--rose); color: #fff; border-radius: 999px; padding: 12px 18px; font-weight: 600; font-size: .9rem; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--blush); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); text-align: center; }
.section-sub { text-align: center; color: var(--rose-dark); max-width: 620px; margin: 12px auto 0; font-size: 1.08rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.step { background: var(--cream); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--rose); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.feature { background: var(--cream); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
/* A small typographic accent in place of the old emoji icons. */
.feature h3::before { content: ""; display: block; width: 32px; height: 3px; border-radius: 2px; background: var(--gold); opacity: .85; margin-bottom: 14px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { font-size: .98rem; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 40px auto 0; max-width: 820px; align-items: start; }
.plan { background: var(--cream); border-radius: 22px; padding: 34px; box-shadow: var(--shadow); text-align: center; border: 2px solid #eaddd5; position: relative; }
.plan.featured { border-color: var(--rose); box-shadow: 0 14px 50px rgba(217,138,138,.3); }
.plan .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--rose); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow); }
.plan-tag { color: var(--rose-dark); font-weight: 600; font-size: .9rem; margin-top: 4px; }
.price { margin: 14px 0 6px; }
.amount { font-size: 3rem; font-weight: 800; color: var(--plum); }
.per { color: var(--rose-dark); font-size: 1rem; }
.plan ul { list-style: none; text-align: left; margin: 22px 0; display: grid; gap: 10px; }
.plan li { padding-left: 28px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--rose); font-weight: 700; }
.fineprint { color: var(--rose-dark); font-size: .85rem; margin-top: 12px; }

/* Intake form */
.intake { background: var(--cream); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); margin-top: 32px; display: grid; gap: 16px; }
.intake label { display: grid; gap: 6px; font-weight: 600; color: var(--plum); }
.intake label small { font-weight: 400; color: var(--rose-dark); }
.intake input { font: inherit; padding: 12px 14px; border-radius: 10px; border: 2px solid #e3cfc6; background: #fff; }
.intake input:focus { outline: none; border-color: var(--rose); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check { flex-direction: row; display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: .95rem; }
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--rose); }
.form-status { padding: 12px; border-radius: 10px; font-weight: 600; }
.form-status.ok { background: #e7f4ea; color: #2f7a43; }
.form-status.err { background: #fcebeb; color: #b33; }

/* FAQ */
#faq details { background: var(--cream); border-radius: 12px; padding: 16px 20px; margin-top: 12px; box-shadow: 0 2px 10px rgba(74,54,64,.08); }
#faq summary { cursor: pointer; font-weight: 600; color: var(--plum); }
#faq details p { margin-top: 10px; }

/* Footer */
.footer { background: var(--plum); color: #f3e7e1; padding: 30px 0; margin-top: 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer a { color: #f3e7e1; }
.muted { opacity: .75; }

/* Value / proof bar */
.proofbar { background: var(--plum); color: var(--cream); padding: 26px 0; }
.proof-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.proof-stat { display: flex; flex-direction: column; gap: 6px; }
.proof-num { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.proof-label { font-size: .86rem; opacity: .85; line-height: 1.35; }

/* "What you keep" showcase */
.keepsakes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.keepsake { background: var(--cream); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); text-align: center; }
.keepsake h3 { margin: 14px 0 6px; font-size: 1.1rem; }
.keepsake p { font-size: .92rem; }
.ks-art { height: 110px; border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ks-book { background: linear-gradient(160deg, #fff, var(--blush)); border: 1px solid #eaddd5; color: var(--plum); font-family: Georgia, serif; font-weight: 700; font-size: 1.4rem; box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 7px var(--gold); }
.ks-film { background: #1c1418; color: #fff; font-size: 1.8rem; }
.ks-collage { background: var(--blush); display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 4px; padding: 10px; }
.ks-collage i { background: var(--rose); border-radius: 4px; opacity: .8; }
.ks-collage i:nth-child(even) { background: var(--rose-dark); }
.ks-gallery { background:
  linear-gradient(var(--cream), var(--cream)) padding-box,
  repeating-linear-gradient(var(--rose) 0 18px, var(--blush) 18px 36px); }
.center-cta { text-align: center; margin-top: 40px; }

/* Comparison table */
.compare-scroll { overflow-x: auto; margin-top: 36px; }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare th, .compare td { padding: 14px 16px; text-align: center; border-bottom: 1px solid #eee0d8; }
.compare td:first-child, .compare th:first-child { text-align: left; font-weight: 600; color: var(--plum); }
.compare thead th { background: var(--blush); font-size: .95rem; }
.compare th.us, .compare td.us { background: rgba(217,138,138,.12); color: var(--rose-dark); font-weight: 700; }
.compare tbody tr:last-child td { border-bottom: none; }

/* Testimonials (shown once real quotes are added) */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.quote { background: var(--cream); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.quote blockquote { font-style: italic; color: var(--plum); font-size: 1.02rem; }
.quote figcaption { margin-top: 14px; color: var(--rose-dark); font-weight: 600; font-size: .9rem; }

/* Pricing guarantee + trust + closing */
.guarantee { margin-top: 14px; font-size: .9rem; color: var(--plum); font-weight: 600; }
.trust { text-align: center; }
.closing { text-align: center; background: linear-gradient(165deg, var(--blush), var(--cream)); }
.founder { font-size: 1.15rem; font-style: italic; color: var(--plum); max-width: 600px; margin: 0 auto 24px; }

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .steps, .features, .keepsakes, .quotes, .pricing { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .keepsakes { grid-template-columns: repeat(2, 1fr); }
  .nav nav a:not(.btn) { display: none; }
}
@media (max-width: 560px) {
  .grid2 { grid-template-columns: 1fr; }
  .keepsakes { grid-template-columns: 1fr; }
}
