
:root{
  --blush:#E7BFBA;        /* Heather Pink */
  --dusty:#D4A1A0;        /* Dusty Rose */
  --mauve:#C8B0AC;        /* Mauve Gray */
  --ivory:#FAF7F6;        /* Soft Ivory */
  --charcoal:#5B5453;     /* Charcoal Gray */
  --radius:20px;
  --shadow:0 10px 30px rgba(0,0,0,.07);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--ivory);color:var(--charcoal);font-family:'Lato',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.6}
a{color:var(--dusty);text-decoration:none}
a:hover{opacity:.9}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
header{
  position:sticky;top:0;z-index:50;background:rgba(250,247,246,.8);backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid #eadfdd
}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;gap:12px;align-items:center}
.logo{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--dusty);box-shadow:var(--shadow)}
.logo svg{width:26px;height:26px;fill:#fff}
.wordmark{font-family:'Allura',cursive;font-size:28px;color:var(--charcoal)}
nav a{margin-left:18px;font-weight:600;color:var(--charcoal)}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:999px;font-weight:600;box-shadow:var(--shadow)}
.btn-primary{background:var(--dusty);color:#fff}
.btn-outline{background:#fff;border:1px solid var(--mauve);color:var(--charcoal)}
/* Hero */
.hero{padding:72px 0 48px;background:linear-gradient(180deg, #fff 0%, #fff0 55%), var(--ivory)}
.hero-wrap{display:grid;grid-template-columns:1.2fr .8fr;gap:32px;align-items:center}
.badge{display:inline-block;background:#fff;border:1px solid #eadfdd;color:var(--dusty);padding:6px 12px;border-radius:999px;font-weight:600;margin-bottom:10px}
h1{font-family:'Allura',cursive;font-size:64px;line-height:1.1;margin:0 0 10px}
.subhead{font-size:20px;opacity:.9;margin:0 0 18px}
.card{background:#fff;border:1px solid #efdfdc;border-radius:var(--radius);padding:22px;box-shadow:var(--shadow)}
.pillrow{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0}
.pill{background:var(--blush);color:#fff;padding:8px 12px;border-radius:999px;font-weight:600}
/* Sections */
section{padding:56px 0;border-top:1px solid #f0e6e4}
h2{font-family:'Poppins',sans-serif;font-weight:600;font-size:28px;margin:0 0 6px}
.eyebrow{letter-spacing:.12em;text-transform:uppercase;color:#7a6f6e;font-size:12px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.tile{background:#fff;border:1px solid #efdfdc;border-radius:16px;padding:20px;box-shadow:var(--shadow)}
.tile h3{margin:6px 0 6px;font-size:18px}
.kicker{color:#7a6f6e;font-size:14px;margin:0}
/* CTA */
.cta{background:linear-gradient(135deg, var(--blush), var(--dusty));color:#fff;border-radius:24px;padding:28px;display:grid;grid-template-columns:1fr auto;align-items:center;gap:16px}
.cta h3{margin:0;font-size:26px}
footer{padding:40px 0;color:#7a6f6e}
/* Responsive */
@media (max-width:900px){
  .hero-wrap{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  h1{font-size:48px}
}
