:root {
  --pink: #ff7eb6;
  --lav: #f4d9ff;
  --mint: #dff7f1;
  --peach: #ffe4d6;
  --ink: #2f2536;
  --bg: #fff9fb;
  --shadow: 0 20px 40px rgba(60, 40, 80, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8vw;
}
.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #c33b82;
}
.cta {
  background: var(--pink);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.ghost {
  border: 2px solid #d9b4f2;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #a25dc9;
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 40px 8vw 20px;
  align-items: center;
}
.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
}
.hero-text p {
  font-size: 16px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.note { color: #7a6a87; font-size: 13px; }
.hero-card {
  background: linear-gradient(135deg, var(--lav), var(--peach));
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.swatch-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.swatch {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.s1 { background: #f59ab9; }
.s2 { background: #ffcf9e; }
.s3 { background: #ffd6e8; }
.s4 { background: #f4b3d2; }
.hero-card-inner h3 { margin: 0 0 6px; }
.hero-card-inner button {
  background: #6c5ce7;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
}
.section {
  padding: 40px 8vw;
}
.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.pastel { background: linear-gradient(135deg, var(--mint), var(--lav)); }
.faq details {
  background: white;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.note { background: var(--peach); }
.install {
  text-align: center;
  background: linear-gradient(135deg, var(--lav), var(--mint));
}
.install .fine { font-size: 12px; color: #7a6a87; }
footer {
  text-align: center;
  padding: 20px;
  color: #8c7a94;
}
