:root {
  --bg: #fff8fc;
  --bg-2: #fff1f7;
  --text: #332331;
  --muted: #7c6575;
  --line: rgba(165, 105, 141, 0.18);
  --pink: #f06cab;
  --pink-deep: #cf4a8a;
  --gold: #d8b166;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(161, 86, 126, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 56px 0; }
.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}
.glass { backdrop-filter: blur(12px); }

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.33;
}
.glow-1 { background: #ffb8d8; top: -80px; left: -100px; }
.glow-2 { background: #ffe29a; bottom: -80px; right: -80px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 252, 0.75);
  border-bottom: 1px solid rgba(165, 105, 141, 0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: white; border-radius: 14px; font-size: 22px;
  box-shadow: var(--shadow);
}
.brand-name { font-weight: 700; }
.brand-sub { font-size: 13px; color: var(--muted); }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--pink-deep); }

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 24px;
  padding: 64px 0 36px;
  align-items: stretch;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-deep);
}
.hero h1, .section-title h2, .hero-panel h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  margin: 10px 0 16px;
}
.hero h1 { font-size: clamp(42px, 6vw, 72px); }
.hero h1 span {
  background: linear-gradient(135deg, var(--pink-deep), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead { font-size: 18px; color: var(--muted); max-width: 650px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 14px; }
.hero-note { color: var(--muted); font-size: 13px; }
.hero-panel {
  background: linear-gradient(180deg, rgba(240,108,171,0.12), rgba(216,177,102,0.1));
}
.badge, .pill, .mini-label {
  display: inline-block;
  border: 1px solid rgba(207,74,138,0.25);
  background: rgba(255,255,255,0.75);
  color: var(--pink-deep);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 12px;
}
.highlight-list { padding-left: 18px; color: var(--muted); }
.highlight-list.compact li { margin-bottom: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: white;
  box-shadow: 0 16px 30px rgba(207,74,138,0.22);
}
.btn-secondary {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
}
.btn.small { padding: 12px 18px; font-size: 14px; }

.grid { display: grid; gap: 24px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.section-title { margin-bottom: 24px; }
.section-title h2 { font-size: clamp(30px, 4vw, 48px); }
.accent-card {
  background: linear-gradient(180deg, rgba(255,240,247,0.9), rgba(255,255,255,0.9));
}
.product-card, .link-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price {
  font-size: 34px;
  font-family: 'Playfair Display', serif;
  color: var(--pink-deep);
}
.price.large { font-size: 52px; }
.link-card:hover { border-color: rgba(207,74,138,0.3); transform: translateY(-2px); }
.membership {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.membership-box {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
.contact-form {
  display: grid;
  gap: 14px;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(165, 105, 141, 0.2);
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(240,108,171,0.2);
  border-color: rgba(240,108,171,0.5);
}
.form-notice { margin-top: 12px; color: var(--muted); font-size: 14px; }
.site-footer {
  padding: 24px 0 40px;
  color: var(--muted);
}
.footer-wrap {
  border-top: 1px solid rgba(165, 105, 141, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero, .membership, .two-col, .three-col, .product-grid {
    grid-template-columns: 1fr;
  }
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .nav { gap: 14px; }
}
