:root {
  --pink: #ff6f9c;
  --pink-deep: #e84f83;
  --cream: #fff9f4;
  --ink: #2b2230;
  --lilac: #b3a6ff;
  --mint: #7fe0ac;
  --yellow: #ffd76a;
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  margin: 0 0 0.4em;
}

em { font-style: italic; color: var(--pink-deep); }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin: 0 0 0.8em;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 111, 156, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-small { padding: 10px 20px; font-size: 0.85rem; }

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 249, 244, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--pink-deep); }
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--pink-deep); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; }
.hero-sub { font-size: 1.15rem; color: #5a4f5f; max-width: 480px; margin-bottom: 2em; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-blobs { position: absolute; inset: 0; z-index: 1; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.55; }
.blob-1 { width: 260px; height: 260px; background: var(--lilac); top: -60px; right: 10%; }
.blob-2 { width: 180px; height: 180px; background: var(--mint); bottom: -40px; right: 30%; }
.blob-3 { width: 140px; height: 140px; background: var(--yellow); top: 40%; right: -30px; }

.collection { padding: 90px 0; }
.collection h2, .trend h2, .about h2, .signup h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-sub { color: #5a4f5f; margin-bottom: 2.5em; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(43, 34, 48, 0.06);
}
.card-media {
  height: 160px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.3em; }
.card p { font-size: 0.9rem; color: #5a4f5f; margin: 0 0 0.8em; }
.price { font-weight: 700; color: var(--pink-deep); }

.trend { background: var(--ink); color: white; padding: 90px 0; }
.trend .eyebrow { color: var(--yellow); }
.trend-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.trend-copy { max-width: 500px; }
.trend-copy p { color: #d9cfe0; }
.trend-visual { font-size: 4rem; }

.about { padding: 90px 0; }
.about-inner { max-width: 700px; }
.about p { font-size: 1.05rem; color: #5a4f5f; }

.signup {
  background: linear-gradient(135deg, #ffe3ee, #fff2b8);
  padding: 90px 0;
  text-align: center;
}
.signup-inner { max-width: 500px; margin: 0 auto; }
.signup p { color: #5a4f5f; margin-bottom: 2em; }
.signup-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.signup-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.1);
  font-family: inherit;
  font-size: 0.95rem;
  min-width: 240px;
  flex: 1;
}

.site-footer { padding: 32px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #5a4f5f;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #5a4f5f; text-decoration: none; }
.footer-links a:hover { color: var(--pink-deep); }

@media (max-width: 640px) {
  .nav { display: none; }
  .hero { padding: 70px 0 90px; }
}
