:root{
  --bg:#fff6fb;
  --bg2:#ffffff;
  --text:#201622;
  --muted:#6f5c69;
  --line: rgba(32,22,34,0.12);

  --pink:#ff3f9e;
  --pink2:#ff84c4;
  --pink3:#ffe0f1;

  --radius: 18px;
  --shadow: 0 22px 70px rgba(32,22,34,0.10);
  --shadow2: 0 14px 34px rgba(32,22,34,0.08);
}

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

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(900px 500px at 10% 5%, rgba(255,63,158,0.12), transparent 62%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,132,196,0.10), transparent 62%),
    radial-gradient(1000px 700px at 50% 100%, rgba(255,224,241,0.78), transparent 62%),
    var(--bg);
}

a{ color: inherit; }
a:hover{ text-decoration: underline; }

.container{ width:min(1100px, 92%); margin:0 auto; }
.narrow{ max-width: 760px; }

.small{ font-size: 12px; }
.muted{ color: var(--muted); }

/* Top strip */
.topstrip{
  background: rgba(255,255,255,0.60);
  border-bottom: 1px solid rgba(32,22,34,0.06);
  backdrop-filter: blur(10px);
}
.topstrip-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  padding: 10px 0;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
}
.topstrip-link{
  font-weight: 900;
  text-decoration: none;
}
.topstrip-link:hover{ text-decoration: underline; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,246,251,0.70);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32,22,34,0.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
}
.logo{
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  box-shadow: 0 18px 40px rgba(255,63,158,0.22);
}
.logo span{
  color:#fff;
  font-weight: 1000;
  font-size: 34px;
  letter-spacing: 2px;
}

.brand-name{
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
}
.brand-tag{
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* Nav */
.nav{
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content:center;
}
.nav a{
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration:none;
}
.nav a:hover{
  background: rgba(255,63,158,0.08);
  color: var(--text);
  text-decoration:none;
}

/* Buttons */
.header-cta{ display:flex; gap:10px; align-items:center; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(32,22,34,0.10);
  background: rgba(255,255,255,0.70);
  font-weight: 1000;
  text-decoration:none;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  text-decoration:none;
}
.btn.primary{
  border: none;
  color:#fff;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
}
.btn.ghost{
  background: rgba(255,255,255,0.62);
}
.btn.full{ width:100%; }

/* Hero */
.hero{ padding: 44px 0 10px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.pill-row{ display:flex; gap: 10px; flex-wrap:wrap; margin-bottom: 14px; }
.pill{
  font-weight: 1000;
  font-size: 13px;
  color:#fff;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(255,63,158,0.14);
}
.pill.soft{
  color: var(--text);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,63,158,0.22);
  box-shadow: none;
}

h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

.actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.trust{ display:flex; gap: 10px; flex-wrap: wrap; }
.chip{
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(32,22,34,0.08);
  padding: 8px 10px;
  border-radius: 999px;
}

/* Cards */
.card{
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(32,22,34,0.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card.subtle{
  background: rgba(255,255,255,0.76);
}
.card.featured, .featured{
  border: 1px solid rgba(255,63,158,0.24);
  background: linear-gradient(135deg, rgba(255,63,158,0.10), rgba(255,132,196,0.08));
}
.badge{
  display:inline-block;
  font-size: 12px;
  font-weight: 1000;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,63,158,0.12);
  border: 1px solid rgba(255,63,158,0.22);
  margin-bottom: 8px;
}

.hero-card{
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(32,22,34,0.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card h3{ margin: 0 0 6px; }
.hero-card-top{ margin-bottom: 10px; }

.spacer{ height: 14px; }

/* Sections */
.section{ padding: 54px 0; }
.section.soft{
  background: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(32,22,34,0.06);
  border-bottom: 1px solid rgba(32,22,34,0.06);
  backdrop-filter: blur(6px);
}
.section-head{ margin-bottom: 16px; }
.section-head h2{
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin: 0 0 6px;
}
.section-head p{ margin: 0; }

/* Layout grids */
.grid-4{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stack{ display:grid; gap: 10px; }

/* Lists */
.list{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }

/* Forms */
.form label{
  display:grid;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
input, select, textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(32,22,34,0.14);
  background: rgba(255,255,255,0.94);
  outline: none;
  color: var(--text);
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,63,158,0.60);
  box-shadow: 0 0 0 5px rgba(255,63,158,0.10);
}
.two{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.divider{
  height: 1px;
  background: rgba(32,22,34,0.10);
  margin: 14px 0;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(32,22,34,0.10);
  padding: 22px 0;
  background: rgba(255,255,255,0.50);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.footer-brand{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
}

/* Floating call */
.float-call{
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size: 24px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  box-shadow: 0 18px 35px rgba(32,22,34,0.18);
  z-index: 999;
  text-decoration:none;
}
.float-call:hover{
  transform: scale(1.06);
  text-decoration:none;
}

/* Responsive */
@media (max-width: 980px){
  .header-inner{ flex-direction: column; align-items: stretch; }
  .nav{ justify-content: center; }
  .header-cta{ justify-content: center; }
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr; }
  .logo{ width: 86px; height: 86px; border-radius: 26px; }
  .logo span{ font-size: 32px; }
}
@media (max-width: 520px){
  .topstrip-inner{ flex-direction: column; align-items: flex-start; }
}
