:root {
  --ink: #231923;
  --muted: #6d5f6d;
  --cream: #fff8f1;
  --blush: #f7d8df;
  --pink: #c85f8d;
  --purple: #6e3a75;
  --gold: #c69a4a;
  --card: #ffffff;
  --line: rgba(35,25,35,.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cream), #fff, #fbedf4);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,248,241,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: .95rem;
}
.nav-links a:hover { color: var(--pink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(35,25,35,.12); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-pink { background: var(--pink); color: #fff; }

.hero, .section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 22px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--pink);
  margin: 0 0 12px;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: 1.35rem; }
.lead {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 22px 0 0;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.product-art {
  min-height: 460px;
  border-radius: 34px;
  background: radial-gradient(circle at 30% 20%, #fff 0 16%, transparent 17%), linear-gradient(145deg, var(--blush), #fff, #f4d9ff);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(35,25,35,.11);
}
.product-art img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(35,25,35,.18));
}
.placeholder-product {
  width: min(280px, 80%);
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, var(--blush));
  border: 1px solid rgba(35,25,35,.16);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--purple);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.card {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(35,25,35,.07);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.card-image-wrap {
  min-height: 220px;
  margin: -4px 0 22px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.9) 0 16%, transparent 17%), linear-gradient(145deg, #fff, #f7d8df, #f4d9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
}

.card-product-image {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(35,25,35,.16));
}

.card p, .body-copy { color: var(--muted); line-height: 1.7; }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--muted);
}
.cta-panel {
  background: linear-gradient(135deg, var(--ink), var(--purple));
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  display: grid;
  gap: 18px;
}
.cta-panel .lead { color: rgba(255,255,255,.76); margin-top: 0; }
.footer { padding: 32px 22px; text-align: center; color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 820px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; }
  .product-art { min-height: 320px; }
}
