:root {
  --bg: #fbf7fb;
  --bg-soft: #f3edf7;
  --card: rgba(255,255,255,.92);
  --text: #2d2730;
  --muted: #6f6575;
  --line: rgba(84, 56, 95, .13);
  --accent: #7a4ca0;
  --accent-deep: #51306e;
  --accent-two: #32a8bf;
  --accent-soft: rgba(122, 76, 160, .13);
  --danger: #b64d58;
  --shadow: 0 24px 70px rgba(66, 47, 82, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 24% 0%, rgba(116, 219, 238, .22), transparent 30%),
    radial-gradient(circle at 90% 14%, rgba(242, 102, 180, .14), transparent 25%),
    linear-gradient(180deg, #fbf8fb 0%, #f1eef7 48%, #fbf5f2 100%);
}
img { display:block; width:100%; height:auto; }
a { color:inherit; }
button,input { font:inherit; }
.page-shell { min-height: 100vh; padding: 12px 0 24px; }
.page,.site-footer { width: min(100%, 430px); margin: 0 auto; }
.page { display:flex; flex-direction:column; gap: 18px; }
.hero { display:flex; flex-direction:column; gap: 14px; }
.hero-photo {
  position: relative;
  margin: 0 14px;
  overflow: hidden;
  border-radius: 34px;
  background: #eee;
  box-shadow: var(--shadow);
  min-height: 520px;
  aspect-ratio: 4 / 5;
}
.hero-photo::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(32,22,40,.08) 0%, rgba(32,22,40,.04) 43%, rgba(32,22,40,.62) 100%);
  pointer-events:none;
}
.hero-photo img { width:100%; height:100%; object-fit: cover; object-position: center top; }
.hero-title {
  position:absolute; left:18px; right:18px; bottom:18px; z-index:2;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255,255,255,.77);
  border: 1px solid rgba(255,255,255,.48);
  backdrop-filter: blur(14px);
}
.hero-title span,.section-kicker {
  display:inline-flex; align-items:center; min-height:30px; padding:0 11px; border-radius:999px;
  background: var(--accent-soft); color: var(--accent-deep);
  font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em;
}
.hero-title h1 { margin: 10px 0 0; font-size: 38px; line-height:.96; letter-spacing:-.06em; color:#27202c; }
.hero-body { margin: 0 14px; padding: 0 8px 4px; }
.lead { margin:0 0 14px; font-size:15.5px; line-height:1.68; color:#554d59; }
.price-row { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; margin: 0 0 15px; }
.price-old,.price-current { font-size:28px; line-height:1; letter-spacing:-.045em; font-weight:800; }
.price-old { color: rgba(73,62,77,.43); text-decoration: line-through; text-decoration-thickness: 2px; }
.price-current { color: var(--accent-deep); }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:54px; width:100%; border:0; border-radius:999px; text-decoration:none; cursor:pointer; font-weight:800; letter-spacing:-.01em; transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease; }
.button:active { transform: translateY(1px) scale(.99); }
.button-primary { color:#fff; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-two) 100%); box-shadow: 0 16px 38px rgba(106,74,152,.24); }
.button[disabled] { opacity:.72; cursor:not-allowed; }
.sold-note { margin: 10px 0 0; text-align:center; font-size:12.5px; color:var(--muted); }
.section { padding: 4px 14px 0; }
.section-intro { padding: 0 4px 12px; text-align:center; }
.section-intro h2 { margin: 10px auto 0; max-width: 360px; font-size: 28px; line-height:1.05; letter-spacing:-.05em; }
.story-card,.order-card {
  overflow:hidden;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(66,47,82,.08);
}
.story-photo { aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.story-copy { padding: 20px 18px 18px; }
.story-copy p { margin: 0 0 13px; color:#574f5c; font-size:15px; line-height:1.65; }
.facts-grid { display:grid; grid-template-columns:1fr; gap:10px; margin: 16px 0; }
.fact-item { padding:14px; border-radius:20px; background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(247,242,252,.72)); border:1px solid var(--line); }
.fact-item strong { display:block; margin-bottom:5px; color:#2f2635; font-size:15px; }
.fact-item p { margin:0; font-size:13.5px; line-height:1.48; }
.mini-note { margin:16px 0 14px; padding:16px; border-radius:22px; background: rgba(121, 76, 160,.09); border:1px solid rgba(121,76,160,.13); }
.mini-note h3 { margin:0 0 8px; font-size:18px; letter-spacing:-.03em; }
.mini-note p { margin:0; font-size:14px; }
.color-strip { display:flex; gap:10px; overflow-x:auto; padding: 2px 2px 8px; scroll-snap-type:x mandatory; }
.color-card { flex: 0 0 138px; margin:0; scroll-snap-align:start; border-radius:22px; overflow:hidden; background:#fff; border:1px solid var(--line); }
.color-card img { aspect-ratio: 4 / 5; object-fit: cover; object-position:center top; }
.color-card figcaption { padding:10px 10px 12px; font-size:12.5px; color:#5c5360; font-weight:700; }
.reviews-carousel { position:relative; display:grid; grid-template-columns:34px 1fr 34px; align-items:center; gap:8px; }
.carousel-viewport { overflow:hidden; border-radius:28px; }
.carousel-track { display:flex; transition:transform .35s ease; }
.review-card { min-width:100%; padding:22px 18px; background: rgba(255,255,255,.9); border:1px solid var(--line); border-radius:28px; }
.review-head { display:flex; align-items:center; gap:11px; margin-bottom:14px; }
.review-avatar { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; color:#fff; font-weight:800; background: linear-gradient(135deg, var(--accent), var(--accent-two)); }
.review-head h3 { margin:0; font-size:16px; }
.review-head span { color:var(--muted); font-size:13px; }
.review-card p { margin:0; color:#514957; line-height:1.62; font-size:14.5px; }
.carousel-arrow { width:34px; height:54px; border:0; border-radius:999px; background:rgba(255,255,255,.8); box-shadow:0 10px 24px rgba(66,47,82,.08); cursor:pointer; position:relative; }
.carousel-arrow::before { content:""; position:absolute; width:10px; height:10px; border-top:2px solid var(--accent-deep); border-right:2px solid var(--accent-deep); top:22px; left:13px; }
.carousel-arrow-prev::before { transform: rotate(-135deg); left:14px; }
.carousel-arrow-next::before { transform: rotate(45deg); left:10px; }
.carousel-dots { display:flex; justify-content:center; gap:7px; margin-top:12px; }
.carousel-dots button { width:7px; height:7px; padding:0; border:0; border-radius:999px; background:rgba(81,48,110,.22); }
.carousel-dots button.is-active { width:22px; background:var(--accent-deep); }
.order-section { padding: 4px 14px 0; }
.order-card { padding:22px 18px 20px; text-align:center; }
.order-card h2 { margin: 12px 0 8px; font-size:30px; line-height:1.05; letter-spacing:-.05em; }
.order-card > p { margin:0 auto 18px; color:#5d5361; line-height:1.55; font-size:14.5px; }
.order-form { display:flex; flex-direction:column; gap:12px; text-align:left; }
.field-group { display:flex; flex-direction:column; gap:7px; }
.field-group label { font-size:13px; font-weight:800; color:#3b3340; }
.field-group input { width:100%; min-height:54px; border-radius:18px; border:1px solid rgba(80,54,90,.14); background:#fff; padding:0 16px; color:#2d2730; outline:none; }
.field-group input:focus { border-color: rgba(122,76,160,.5); box-shadow:0 0 0 4px rgba(122,76,160,.1); }
.field-group.has-error input { border-color: var(--danger); box-shadow:0 0 0 4px rgba(182,77,88,.1); }
.field-error { min-height:17px; margin:0; font-size:12px; color:var(--danger); }
.privacy-note { margin: 0; text-align:center; color:var(--muted); font-size:11.5px; line-height:1.45; }
.form-success { margin:0; text-align:center; font-size:13px; color:var(--accent-deep); }
.form-success.is-error { color:var(--danger); }
.site-footer { margin-top:18px; padding: 22px 20px 26px; color:#645a69; font-size:12.5px; line-height:1.55; text-align:center; }
.footer-title { margin-bottom:8px; color:#332a39; font-weight:800; letter-spacing:.07em; font-size:12px; }
.footer-links { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin:10px 0; }
.footer-links a { text-decoration:none; border-bottom:1px solid rgba(100,90,105,.25); }
.registry-note { margin-bottom:0; }
@media (min-width: 431px) { .page-shell { padding-top:20px; } .page,.site-footer { max-width:430px; } }
