:root {
  --bg: #fffafc;
  --bg-soft: #fff1f6;
  --surface: #ffffff;
  --surface-alt: #fff6f9;
  --text: #352833;
  --muted: #7c6674;
  --accent: #eb6f9d;
  --accent-deep: #d85083;
  --accent-soft: #ffd6e4;
  --border: rgba(173, 108, 137, 0.18);
  --shadow: 0 18px 45px rgba(160, 95, 126, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 231, 0.8), transparent 34%),
    linear-gradient(180deg, #fffdfd 0%, var(--bg) 52%, #fff7fa 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 252, 0.82);
  border-bottom: 1px solid rgba(173, 108, 137, 0.1);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a.active,
.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--accent-deep);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label,
.panel-label {
  margin: 0 0 0.75rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-copy h1,
.about-section h2,
.section-heading h2,
.section-grid h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 0.95;
  max-width: 12ch;
}

.hero-text,
.section-text,
.benefit-card p,
.product-content p,
.testimonial-card p,
.site-footer p,
.hero-card-panel p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 58ch;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.product-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #f78db5 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(223, 98, 148, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(255, 241, 246, 0.72) 40%, rgba(244, 202, 219, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.hero-card::before {
  width: 230px;
  height: 230px;
  top: 42px;
  right: -60px;
}

.hero-card::after {
  width: 180px;
  height: 180px;
  bottom: 32px;
  left: -40px;
}

.hero-card-panel {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
}

.hero-card-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.hero-card-panel p {
  margin: 0.75rem 0 0;
}

.hero-price-row,
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
}

.price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
}

.tag {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.mini-card {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(161, 96, 127, 0.1);
}

.mini-card-top {
  top: 2rem;
  left: 2rem;
}

.mini-card-bottom {
  top: 8rem;
  right: 2rem;
}

.about-section,
.benefits-section,
.featured-section,
.testimonial-section {
  padding: 2rem 0 4.5rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.section-grid h2,
.section-heading h2 {
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-heading {
  margin-bottom: 2rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.benefit-grid,
.product-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card,
.product-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(164, 104, 134, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card {
  padding: 1.4rem;
}

.benefit-card h3,
.product-content h3,
.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  overflow: hidden;
}

.product-visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.visual-rose {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 25%),
    linear-gradient(135deg, #ffdbe8, #f7aac7);
}

.visual-pearl {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(135deg, #fff0f5, #f5d0dc);
}

.visual-gold {
  background:
    radial-gradient(circle at 20% 70%, rgba(255, 248, 233, 0.8), transparent 26%),
    linear-gradient(135deg, #fce8ec, #f3c7d5);
}

.visual-berry {
  background:
    radial-gradient(circle at 65% 60%, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(135deg, #f8cad8, #eb8cb1);
}

.product-content {
  padding: 1.25rem;
}

.product-content p,
.testimonial-card p {
  margin: 0;
}

.product-meta span {
  font-weight: 800;
}

.product-meta a {
  color: var(--accent-deep);
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 1.5rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-style: normal;
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(173, 108, 137, 0.12);
  background: rgba(255, 246, 249, 0.74);
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .benefit-grid,
  .product-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .section-grid {
    gap: 1.5rem;
  }

  .product-grid,
  .benefit-grid,
  .testimonial-grid {
    gap: 1rem;
  }
}

@media (max-width: 720px) {
  .nav-bar,
  .split-heading,
  .hero-grid,
  .section-grid,
  .benefit-grid,
  .product-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-bar {
    gap: 0.75rem;
  }

  .site-nav {
    gap: 0.75rem 1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .hero-card {
    min-height: 420px;
  }

  .hero-card-panel,
  .mini-card-top,
  .mini-card-bottom {
    position: static;
    margin: 1rem;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-top: 1rem;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}
