
:root {
  --bg: #f7f2f5;
  --bg-2: #f0f5fb;
  --card: rgba(255, 255, 255, 0.92);
  --text: #2a2630;
  --muted: #716c78;
  --line: rgba(45, 38, 52, 0.10);
  --accent: #e43b93;
  --accent-2: #2868c5;
  --accent-deep: #9d1e62;
  --accent-soft: rgba(228, 59, 147, 0.14);
  --danger: #b64e56;
  --success: #28724b;
  --shadow: 0 24px 70px rgba(39, 29, 51, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 2%, rgba(255, 255, 255, .92), transparent 27%),
    radial-gradient(circle at 100% 20%, rgba(228, 59, 147, .12), transparent 31%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 52%, #fbf7f3 100%);
}
img { display:block; width:100%; height:auto; }
a { color: inherit; }
button, input { font: inherit; }

.page-shell { min-height: 100vh; padding: 14px 0 24px; }
.page, .site-footer { width: min(100%, 430px); margin: 0 auto; }
.page { display: flex; flex-direction: column; gap: 18px; }
.section { padding: 0 14px; }
.section-intro { text-align: center; padding: 8px 16px 14px; }
.section-kicker, .hero-kicker {
  display: inline-flex; align-items: center; justify-content: center;
  width: max-content; max-width: 100%; margin-bottom: 8px; padding: 7px 12px;
  border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep);
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.section-intro h2 { margin: 0; font-size: 25px; line-height: 1.08; letter-spacing: -.04em; }

.hero { display: flex; flex-direction: column; gap: 13px; }
.hero-frame {
  position: relative; overflow: hidden; margin: 0 14px; min-height: 560px;
  border-radius: 34px; background: #ddd; box-shadow: var(--shadow);
}
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 16, .04) 0%, rgba(10, 10, 16, .10) 45%, rgba(10, 10, 16, .58) 100%);
  pointer-events: none;
}
.hero-frame > img { height: 560px; object-fit: cover; object-position: center top; }
.hero-title {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  padding: 18px; border-radius: 26px; color: #fff;
  background: rgba(27, 20, 30, .42); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
}
.hero-title h1 { margin: 0; font-size: 42px; line-height: .94; letter-spacing: -.065em; }
.hero-title p { margin: 8px 0 0; color: rgba(255,255,255,.86); line-height: 1.45; font-size: 14px; }
.hero-body {
  margin: 0 14px; padding: 20px 18px 22px; border-radius: 30px;
  background: var(--card); border: 1px solid rgba(255,255,255,.72); box-shadow: 0 14px 45px rgba(47, 38, 58, .07);
}
.lead { margin: 0; color: #4f4a56; line-height: 1.62; font-size: 16px; }
.price-row { display:flex; align-items: baseline; gap: 12px; margin: 16px 0 15px; flex-wrap: wrap; }
.price-old, .price-current { font-size: 23px; font-weight: 800; letter-spacing: -.035em; }
.price-old { text-decoration: line-through; color: rgba(89, 80, 95, .42); }
.price-current { color: var(--accent-deep); }
.button {
  display: inline-flex; justify-content: center; align-items: center; width: 100%; min-height: 54px;
  padding: 0 22px; border: 0; border-radius: 999px; text-decoration: none; cursor: pointer;
  font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 36px rgba(228, 59, 147, .24); transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 20px 42px rgba(228, 59, 147, .30); }
.button:disabled { opacity: .65; cursor: wait; }
.meta-note { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: 13px; }

.story-card {
  overflow: hidden; border-radius: 32px; background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.78); box-shadow: var(--shadow);
}
.story-photo { height: 560px; object-fit: cover; object-position: center top; }
.story-copy { padding: 22px 18px 20px; }
.story-copy p { margin: 0; color: #55505e; font-size: 15px; line-height: 1.68; }
.story-copy p + p { margin-top: 13px; }
.facts-grid { display:grid; gap: 10px; margin-top: 18px; }
.fact-item {
  padding: 15px 15px; border-radius: 20px; background: linear-gradient(180deg, rgba(247,247,255,.94), rgba(255,247,252,.88));
  border: 1px solid var(--line);
}
.fact-item strong { display:block; margin-bottom: 6px; font-size: 14px; color: #282431; }
.fact-item p { font-size: 14px; line-height: 1.55; }
.mini-note {
  margin-top: 18px; padding: 17px; border-radius: 22px; background: rgba(228,59,147,.08); border: 1px solid rgba(228,59,147,.12);
}
.mini-note h3 { margin: 0 0 7px; font-size: 17px; letter-spacing: -.025em; }
.mini-note p { font-size: 14px; }
.color-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.color-strip span { padding: 8px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: rgba(43,39,51,.06); color: #4a4352; }

.slider { position: relative; }
.slider-viewport { overflow: hidden; border-radius: 28px; }
.slider-track { display: flex; transition: transform .35s ease; }
.slider-track > * { flex: 0 0 100%; min-width: 0; }
.slider-arrow {
  position: absolute; top: 50%; z-index: 3; width: 38px; height: 38px; transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.75); border-radius: 999px; background: rgba(255,255,255,.86);
  box-shadow: 0 12px 28px rgba(31, 25, 42, .16); cursor: pointer;
}
.slider-arrow::before { content:''; display:block; width: 10px; height: 10px; margin: 13px auto; border-top: 2px solid #312a37; border-right: 2px solid #312a37; }
.slider-arrow.prev { left: 10px; }
.slider-arrow.prev::before { transform: rotate(-135deg); margin-left: 15px; }
.slider-arrow.next { right: 10px; }
.slider-arrow.next::before { transform: rotate(45deg); margin-right: 15px; }
.slider-dots { display:flex; justify-content:center; gap: 7px; margin-top: 10px; }
.slider-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(45,38,52,.22); cursor: pointer; }
.slider-dots button.is-active { width: 22px; background: var(--accent); }

.colors-card { margin: 2px 14px 0; padding: 14px; border-radius: 32px; background: rgba(255,255,255,.72); box-shadow: 0 14px 45px rgba(47, 38, 58, .07); }
.color-slide { overflow: hidden; border-radius: 24px; background: #fff; }
.color-slide img { height: 500px; object-fit: cover; object-position: center top; }
.color-caption { padding: 13px 14px 15px; }
.color-caption strong { display:block; font-size: 14px; margin-bottom: 4px; }
.color-caption span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.reviews-wrap { padding: 0 14px; }
.review-card {
  min-height: 455px; overflow: hidden; border-radius: 32px; background: #fff;
  border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow);
}
.review-card img { height: 310px; object-fit: cover; object-position: center top; }
.review-copy { padding: 16px 16px 18px; }
.review-head { display:flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-avatar { display:grid; place-items:center; width: 38px; height: 38px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-deep); font-weight: 800; }
.review-meta h3 { margin:0; font-size: 15px; }
.review-meta span { color: var(--muted); font-size: 12px; }
.review-copy p { margin: 0; color: #514c58; font-size: 14px; line-height: 1.58; }

.order-section { padding: 0 14px 2px; scroll-margin-top: 16px; }
.order-card {
  padding: 24px 18px 20px; border-radius: 32px; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,247,252,.92));
  border: 1px solid rgba(255,255,255,.78); box-shadow: var(--shadow);
}
.order-card h2 { margin: 0 0 8px; font-size: 26px; line-height: 1.06; letter-spacing: -.04em; }
.order-card > p { margin: 0 auto 18px; color: var(--muted); line-height: 1.56; }
.order-form { display: grid; gap: 12px; text-align: left; }
.field-group { display:grid; gap: 7px; }
.field-group label { font-size: 13px; font-weight: 800; color: #36313d; }
.field-group input {
  width: 100%; min-height: 52px; border: 1px solid rgba(47,38,58,.13); border-radius: 18px;
  background: rgba(255,255,255,.96); padding: 0 15px; color: var(--text); outline: none;
}
.field-group input:focus { border-color: rgba(228,59,147,.46); box-shadow: 0 0 0 4px rgba(228,59,147,.10); }
.field-group.has-error input { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(182,78,86,.10); }
.field-error { min-height: 17px; margin: -2px 0 0; color: var(--danger); font-size: 12px; line-height: 1.35; }
.privacy-note { margin: 0; color: var(--muted); text-align: center; font-size: 11px; line-height: 1.45; }
.form-success { margin: 0; color: var(--success); text-align:center; font-size: 13px; }
.form-success.is-error { color: var(--danger); }

.site-footer {
  margin-top: 18px; padding: 24px 22px 4px; color: #6f6977; font-size: 12px; line-height: 1.62; text-align: center;
}
.footer-title { margin-bottom: 8px; color: #302a38; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.site-footer p { margin: 0 0 10px; }
.footer-links { display:flex; justify-content:center; flex-wrap:wrap; gap: 7px 12px; margin: 12px 0; }
.footer-links a { color: #4d4658; text-decoration: none; border-bottom: 1px solid rgba(77,70,88,.18); }
.registry-note { color: #807a86; }

.legal-body { background: linear-gradient(180deg, #fbf7fa 0%, #eef4fb 100%); }
.legal-page { width: min(100% - 28px, 430px); margin: 18px auto; padding: 24px 20px; border-radius: 28px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.legal-page h1 { margin: 14px 0 14px; font-size: 28px; letter-spacing: -.04em; line-height: 1.08; }
.legal-page h2 { margin: 22px 0 8px; font-size: 18px; }
.legal-page p { margin: 0 0 12px; color: #575160; line-height: 1.65; }
.back-link { display: inline-flex; text-decoration: none; color: var(--accent-deep); font-weight: 800; font-size: 13px; }

@media (max-width: 374px) {
  .hero-frame, .hero-frame > img { min-height: 520px; height: 520px; }
  .hero-title h1 { font-size: 38px; }
  .story-photo { height: 520px; }
  .color-slide img { height: 470px; }
}
