:root {
  --bg: #fafafa;
  --paper: #ffffff;
  --ink: #0c1612;
  --muted: #6a7380;
  --line: #dfe4ea;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(72rem, calc(100% - 2.5rem)); margin: 0 auto; }
.nav {
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 0 1.25rem;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.menu-btn { display: none; }
.mobile-panel {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: .6rem 1.25rem 1rem;
}
.mobile-panel a {
  display: block;
  padding: .7rem 0;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-panel.open { display: block; }
.nav-links { display: flex; gap: 1.4rem; font-size: .9rem; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-end { justify-self: end; display: flex; gap: .6rem; }
.btn, button.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.75rem; padding: 0 1.2rem; border-radius: 999px; border: 0;
  font-weight: 600; cursor: pointer; text-decoration: none; font-family: inherit;
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #24332c; }
.btn-line { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.hero {
  position: relative; overflow: hidden; text-align: center; padding: 3rem 1rem 3.5rem;
  background:
    radial-gradient(ellipse 55% 45% at 12% 28%, #f8d7e8 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 88% 22%, #f8e4b0 0%, transparent 58%),
    radial-gradient(ellipse 45% 40% at 50% 8%, #d9f0e2 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 78% 78%, #dce8f8 0%, transparent 60%),
    #fff;
}
.wordmark { position: relative; display: inline-block; font-family: "Playfair Display", serif; font-size: clamp(3rem, 8vw, 5.4rem); font-weight: 600; letter-spacing: -.03em; }
.word-bloom {
  position: absolute; inset: -40% -18% -30%; z-index: -1; pointer-events: none; filter: blur(18px);
  background:
    radial-gradient(circle at 22% 50%, rgb(243 183 210 / .55) 0%, transparent 42%),
    radial-gradient(circle at 55% 20%, rgb(158 212 168 / .5) 0%, transparent 40%),
    radial-gradient(circle at 78% 60%, rgb(142 192 240 / .5) 0%, transparent 42%),
    radial-gradient(circle at 48% 80%, rgb(246 201 138 / .45) 0%, transparent 38%);
}
.mark-o { position: relative; }
.mark-o svg { position: absolute; width: .42em; height: .42em; left: 50%; top: -.08em; transform: translateX(-50%); }
.hero p { color: var(--muted); font-size: 1.15rem; margin: .8rem 0 0; }
.em { font-style: italic; position: relative; }
.em::after {
  content: ""; position: absolute; left: -.08em; right: -.08em; bottom: .04em; height: .32em; z-index: -1;
  border-radius: 99px; background: linear-gradient(90deg, rgb(243 183 210 / .45), rgb(246 201 138 / .45), rgb(158 212 168 / .45));
}
.stage { position: relative; height: 280px; max-width: 52rem; margin: 1.2rem auto 0; }
.stage img {
  position: absolute; bottom: 8%; object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(20,28,36,.18));
  animation: bob 7s ease-in-out infinite;
}
.stage .v1 { left: 2%; width: 16%; animation-delay: 0s; }
.stage .v2 { left: 18%; width: 22%; animation-delay: .35s; }
.stage .v3 { left: 50%; width: 28%; transform: translateX(-50%); animation-delay: .15s; z-index: 2; }
.stage .v4 { right: 18%; width: 22%; animation-delay: .55s; }
.stage .v5 { right: 2%; width: 16%; animation-delay: .75s; }
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
.hero-actions { display: flex; justify-content: center; gap: 1rem; align-items: center; margin-top: 1.6rem; flex-wrap: wrap; }
.hero-actions a.quiet { color: var(--muted); text-decoration: none; }
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.kicker::before {
  content: ""; width: 1.75rem; height: 2px; border-radius: 99px;
  background: linear-gradient(90deg, #ef9fc4, #f6c98a, #9ed4a8, #8ec0f0);
}
.section { padding: 4rem 0; }
h2 { font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 4vw, 2.4rem); margin: .35rem 0 1.3rem; letter-spacing: -.03em; }
.grid { display: grid; gap: 1.25rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: 1fr 1fr; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.05rem; }
.well {
  background: linear-gradient(155deg, #f4f7f8, #eef6f1 48%, #eef3f8);
  border-radius: 14px; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden;
}
.well.tall { aspect-ratio: 4/5; min-height: 22rem; }
.well img { height: 86%; width: auto; object-fit: contain; transition: transform .3s ease; }
.well:hover img { transform: scale(1.1); }
.cat { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: .95rem 0 0; }
.card h3 { font-family: "Playfair Display", serif; margin: .15rem 0; font-size: 1.65rem; }
.card h3 a { text-decoration: none; }
.muted { color: var(--muted); }
.row { display: flex; justify-content: space-between; gap: 1rem; }
.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.uk { text-align: center; border: 1px solid var(--line); border-radius: 14px; padding: 1rem; margin-top: 1rem; background: #fff; letter-spacing: .08em; }
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.notice { font-size: .8rem; color: var(--muted); padding: 0 0 3rem; line-height: 1.5; }
.err { color: #8f2d24; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty button { width: 2.5rem; height: 2.5rem; border: 0; background: none; cursor: pointer; }
.mass { display: flex; gap: .45rem; flex-wrap: wrap; margin: 1rem 0; }
.mass button { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .45rem .9rem; cursor: pointer; }
.mass button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.product { display: grid; grid-template-columns: 45% 1fr; gap: 3rem; align-items: start; margin-top: 1.5rem; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.4rem; margin: 1.4rem 0; }
.specs div { border-top: 1px solid var(--line); padding-top: .6rem; font-size: .92rem; }
.specs b { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: .15rem; }
.crumb { font-size: .85rem; color: var(--muted); }
.price { font-size: 1.15rem; margin: .4rem 0 1rem; }
.actions { display: flex; gap: .6rem; flex-wrap: wrap; margin: 1.2rem 0; }
.line { border-bottom: 1px solid var(--line); padding: 1.1rem 0; display: flex; align-items: center; gap: 1rem; }
@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; min-height: 2.4rem; padding: 0 .9rem; }
  .cards-3, .cards-2, .promise, .product, .specs { grid-template-columns: 1fr; }
  .stage { height: 220px; }
  .stage .v1, .stage .v5 { display: none; }
  .stage .v2 { left: 4%; width: 30%; }
  .stage .v3 { width: 38%; }
  .stage .v4 { right: 4%; width: 30%; }
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1rem; margin: 1.4rem 0; }
.form-grid label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.form-grid input, .form-grid select {
  width: 100%; min-height: 2.7rem; border: 1px solid var(--line); border-radius: 12px;
  padding: 0 .8rem; font: inherit; background: #fff;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }
