/* ============================================================
   Milk & Mum Hub — design system
   Warm editorial: cream canvas, terracotta accent, serif display
   ============================================================ */

:root {
  --cream: #FDF8F0;
  --cream-2: #F7EDDF;
  --sand: #F0E2CE;
  --terra: #C75B26;
  --terra-dark: #A84A1E;
  --terra-soft: #F3D9C8;
  --ink: #33241A;
  --ink-soft: #6E5B4C;
  --sage: #8FA796;
  --white: #FFFFFF;
  --gold: #D9A44A;
  --wa: #25D366;
  --radius: 20px;
  --shadow: 0 10px 40px -12px rgba(51, 36, 26, .18);
  --shadow-lg: 0 24px 70px -20px rgba(51, 36, 26, .28);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--terra); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 18px; }
.section-lead { color: var(--ink-soft); font-size: 18px; max-width: 640px; }
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }
em.accent { font-style: italic; color: var(--terra); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--terra); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(199, 91, 38, .55);
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(199, 91, 38, .6); }
.btn-outline {
  background: transparent; color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline:hover { background: var(--terra-soft); transform: translateY(-2px); }
.btn-lg { padding: 19px 38px; font-size: 17px; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { filter: brightness(.94); transform: translateY(-2px); }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 248, 240, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 36, 26, .08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav-logo img { height: 44px; width: auto; }
.nav-logo span { font-family: var(--font-display); font-size: 19px; font-weight: 600; line-height: 1.1; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }
.nav-burger { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }
@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 18px 24px 26px;
    border-bottom: 1px solid rgba(51,36,26,.1); gap: 18px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .nav-cta .btn-outline { display: none; }
}

/* ---------------- hero ---------------- */
.hero { overflow: hidden; position: relative; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center; padding: 64px 0 72px;
}
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); margin: 14px 0 20px; }
.hero .lead { font-size: 19px; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-img {
  position: relative;
}
.hero-img img {
  border-radius: 200px 200px var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.6; object-fit: cover; width: 100%;
}
.hero-img .float-card {
  position: absolute; bottom: 26px; left: -26px;
  background: var(--white); border-radius: 16px; padding: 14px 20px;
  box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center;
  font-size: 14px; font-weight: 600;
}
.float-card .stars { color: var(--gold); letter-spacing: 2px; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 52px; gap: 36px; }
  .hero-img .float-card { left: 10px; }
}

/* stats strip */
.stats {
  background: var(--ink); color: var(--cream);
  padding: 30px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats .value { font-family: var(--font-display); font-size: 30px; color: var(--terra-soft); }
.stats .label { font-size: 13.5px; opacity: .8; letter-spacing: .04em; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------- pain section ---------------- */
.pain { background: var(--terra); color: #fff; }
.pain .section-title { color: #fff; }
.pain .section-lead { color: rgba(255,255,255,.85); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pain-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.4; object-fit: cover; }
.pain-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.pain-list li {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 14px 18px; border-radius: 14px; font-weight: 600; font-size: 15.5px;
}
.pain-list li::before { content: "✕  "; opacity: .7; }
@media (max-width: 880px) { .pain-grid { grid-template-columns: 1fr; } }

/* ---------------- product cards ---------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 48px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(51,36,26,.06);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 7px 12px; border-radius: 999px; text-transform: uppercase;
}
.card-badge.soon { background: var(--sage); }
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 24px; }
.card-body .tagline { color: var(--ink-soft); font-size: 15px; }
.card-price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 12px; }
.card-price .now { font-family: var(--font-display); font-size: 30px; color: var(--terra); font-weight: 600; }
.card-price .was { color: var(--ink-soft); text-decoration: line-through; font-size: 16px; }
.card-price .soon-label { font-family: var(--font-display); font-size: 20px; color: var(--sage); }
.card .btn { justify-content: center; }

/* ---------------- steps ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); position: relative; border-top: 4px solid var(--terra);
}
.step .num {
  font-family: var(--font-display); font-size: 46px; color: var(--terra-soft);
  font-weight: 700; line-height: 1; margin-bottom: 12px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---------------- testimonials ---------------- */
.reviews-band { background: var(--cream-2); }
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 44px; }
.tcard {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
}
.tcard .stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; }
.tcard .highlight { font-family: var(--font-display); font-size: 19px; line-height: 1.35; }
.tcard .body { color: var(--ink-soft); font-size: 14.5px; }
.tcard .who { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--sand); font-size: 14px; }
.tcard .who b { display: block; }
.tcard .who span { color: var(--ink-soft); font-size: 13px; }
.google-chip {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white);
  padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow);
  font-size: 14px; font-weight: 700;
}
.google-chip .stars { color: var(--gold); }

/* review screenshots strip */
.proof-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 34px; }
.proof-strip img {
  border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--sand);
  background: #fff; width: 100%;
}

/* ---------------- founders ---------------- */
.founders-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.founders-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.founders-grid .body p { margin-bottom: 16px; color: var(--ink-soft); }
.founders-grid .promise {
  font-family: var(--font-display); font-size: 20px; color: var(--terra);
  border-left: 3px solid var(--terra); padding-left: 18px; margin-top: 22px;
}
@media (max-width: 880px) { .founders-grid { grid-template-columns: 1fr; } }

/* ---------------- product page ---------------- */
.product-hero { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: start; padding: 56px 0; }
.product-hero .pimg img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.product-hero h1 { font-size: clamp(32px, 4.6vw, 50px); margin: 10px 0 8px; }
.product-hero .tagline { font-size: 19px; color: var(--ink-soft); margin-bottom: 22px; }
.lesson-list { list-style: none; display: grid; gap: 12px; margin: 22px 0; }
.lesson-list li {
  background: var(--white); border-radius: 14px; padding: 15px 18px;
  box-shadow: var(--shadow); font-size: 15.5px; display: flex; gap: 12px;
}
.lesson-list li b { color: var(--terra); white-space: nowrap; }
.buy-box {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-lg); border: 2px solid var(--terra-soft);
  display: grid; gap: 14px; margin-top: 24px;
}
.buy-box .price-row { display: flex; align-items: baseline; gap: 12px; }
.buy-box .now { font-family: var(--font-display); font-size: 40px; color: var(--terra); font-weight: 600; }
.buy-box .was { text-decoration: line-through; color: var(--ink-soft); font-size: 18px; }
.buy-box .note { font-size: 13.5px; color: var(--ink-soft); }
.aud-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.aud-chips span {
  background: var(--terra-soft); color: var(--terra-dark); font-size: 13px;
  font-weight: 700; padding: 6px 13px; border-radius: 999px;
}
@media (max-width: 880px) { .product-hero { grid-template-columns: 1fr; gap: 32px; } }

/* ---------------- faq ---------------- */
.faq-list { max-width: 780px; margin: 44px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow);
  overflow: hidden; border: 1px solid rgba(51,36,26,.05);
}
.faq-item summary {
  padding: 20px 24px; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--terra); flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .a { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------------- forms ---------------- */
.form-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-lg); max-width: 640px; margin: 40px auto 0;
  display: grid; gap: 16px;
}
.form-card label { font-weight: 700; font-size: 14px; display: grid; gap: 6px; }
.form-card input, .form-card textarea, .form-card select {
  font-family: var(--font-body); font-size: 15.5px; padding: 13px 15px;
  border: 1.5px solid var(--sand); border-radius: 12px; background: var(--cream);
  color: var(--ink); width: 100%;
}
.form-card input:focus, .form-card textarea:focus { outline: 2px solid var(--terra); border-color: transparent; }
.form-msg { font-weight: 600; }
.form-msg.ok { color: #2c7a4b; }
.form-msg.err { color: #b3341f; }

/* star input */
.star-input { display: flex; gap: 6px; font-size: 34px; cursor: pointer; }
.star-input span { color: #d9cfc2; transition: color .1s, transform .1s; }
.star-input span.on { color: var(--gold); }
.star-input span:hover { transform: scale(1.15); }

/* ---------------- final CTA ---------------- */
.final-cta { background: var(--ink); color: var(--cream); text-align: center; }
.final-cta .section-title { color: var(--cream); }
.final-cta .section-lead { color: rgba(253,248,240,.75); margin: 0 auto 32px; }

/* ---------------- footer ---------------- */
footer { background: #241811; color: rgba(253,248,240,.8); padding: 64px 0 32px; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
.foot-grid h4 { color: var(--cream); font-family: var(--font-display); margin-bottom: 14px; font-size: 17px; }
.foot-grid ul { list-style: none; display: grid; gap: 9px; }
.foot-grid a { color: rgba(253,248,240,.75); text-decoration: none; }
.foot-grid a:hover { color: var(--terra-soft); }
.foot-brand img { height: 52px; margin-bottom: 14px; filter: brightness(1.15); }
.foot-bottom { border-top: 1px solid rgba(253,248,240,.15); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; opacity: .7; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  background: var(--wa); color: #fff; border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; font-weight: 700; text-decoration: none; font-size: 15px;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 22px; height: 22px; }
@media (max-width: 640px) { .wa-float span { display: none; } .wa-float { padding: 14px; } }

/* misc */
.pill-note {
  display: inline-flex; gap: 8px; align-items: center;
  background: var(--terra-soft); color: var(--terra-dark);
  font-size: 13.5px; font-weight: 700; padding: 8px 16px; border-radius: 999px;
}
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 28px 32px;
  box-shadow: var(--shadow); max-width: 760px; margin: 48px auto 0;
  border: 1.5px dashed var(--terra);
}
.guarantee .icon { font-size: 42px; }
.policy-body { max-width: 760px; margin: 0 auto; }
.policy-body h2 { margin: 34px 0 10px; font-size: 24px; }
.policy-body p, .policy-body li { color: var(--ink-soft); margin-bottom: 10px; }
.policy-body ul { padding-left: 22px; }

/* subtle entrance */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
