
:root {
  --bg: #0e1216;
  --bg-soft: #141b21;
  --panel: rgba(22, 29, 35, 0.92);
  --panel-soft: rgba(31, 40, 48, 0.88);
  --text: #edf1f4;
  --muted: #b5bfc8;
  --line: rgba(233, 240, 246, 0.1);
  --accent: #d2b37a;
  --accent-2: #9cc1cb;
  --accent-text: #1d1810;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(156, 193, 203, 0.14), transparent 30%),
    linear-gradient(180deg, #0b0e12 0%, #11161b 42%, #141b21 100%);
}
a { color: inherit; }
img { display: block; width: 100%; }
button, input { font: inherit; }
.page-shell {
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
  padding: 14px 12px 26px;
}
.page {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero,
.story-section,
.reviews-section,
.order-section,
.site-footer {
  border-radius: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media {
  position: relative;
  min-height: 560px;
}
.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.08) 0%, rgba(7, 9, 12, 0.45) 46%, rgba(7, 9, 12, 0.88) 100%);
}
.hero-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 1;
}
.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eff6fb;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-copy h1,
.section-intro h2 {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.hero-body,
.story-section,
.reviews-section,
.order-section,
.site-footer {
  padding: 22px 20px;
}
.lead,
.story-copy p,
.choice-note,
.privacy-note,
.registry-note,
.legal-page p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 16px;
}
.price-old {
  color: rgba(237, 241, 244, 0.5);
  text-decoration: line-through;
  font-size: 26px;
  font-weight: 700;
}
.price-current {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.button:active { transform: translateY(1px); }
.button-primary {
  width: 100%;
  background: linear-gradient(180deg, #f0d39b 0%, #c49357 100%);
  color: var(--accent-text);
  font-weight: 800;
}
.button-full { width: 100%; }
.button[disabled] { opacity: 0.75; cursor: wait; }
.sold-count {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(237, 241, 244, 0.68);
}
.section-intro { margin-bottom: 18px; }
.section-intro.center { text-align: center; }
.section-intro.compact h2 { font-size: 29px; }
.story-card { display: grid; gap: 16px; }
.carousel-box {
  border-radius: 28px;
  background: var(--panel-soft);
  border: 1px solid rgba(233, 240, 246, 0.08);
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}
.slide-card {
  min-width: 100%;
  padding: 14px;
}
.gallery-slide img {
  aspect-ratio: 0.76 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
}
.slide-caption {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  color: #f0f5f8;
}
.carousel-controls {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  padding: 0 14px 14px;
}
.carousel-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(233, 240, 246, 0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.carousel-dots button.is-active { background: var(--accent); }
.color-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(156, 193, 203, 0.08);
  color: #d7e7ec;
  font-size: 13px;
}
.story-copy {
  display: grid;
  gap: 14px;
}
.feature-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.feature-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.feature-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.spec-grid,
.info-grid {
  display: grid;
  gap: 10px;
}
.spec-row,
.info-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(233, 240, 246, 0.08);
  font-size: 14px;
  line-height: 1.5;
}
.spec-row span,
.info-card span { color: rgba(237, 241, 244, 0.64); }
.spec-row strong,
.info-card strong { text-align: right; }
.review-slide {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.review-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(210, 179, 122, 0.16);
  color: #f4d6a6;
  font-weight: 800;
}
.review-slide h3 {
  margin: 0;
  font-size: 18px;
}
.review-slide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 15px;
}
.order-form { display: grid; gap: 14px; }
.choice-note { margin: 0 0 14px; }
.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}
.field-group input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(233, 240, 246, 0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
}
.field-group input::placeholder { color: rgba(237, 241, 244, 0.44); }
.field-group input:focus {
  border-color: rgba(210, 179, 122, 0.52);
  box-shadow: 0 0 0 4px rgba(210, 179, 122, 0.08);
}
.field-group.has-error input { border-color: #f3a18d; }
.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  font-size: 12px;
  color: #ffbaa9;
}
.privacy-note {
  font-size: 12px;
  line-height: 1.6;
}
.privacy-note a,
.footer-links a,
.back-link { color: inherit; }
.form-success {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  color: #cfe9d5;
}
.form-success.is-error { color: #ffbaa9; }
.site-footer {
  text-align: center;
}
.footer-title {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 241, 244, 0.62);
}
.site-footer p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;
  font-size: 13px;
}
.legal-body {
  background: linear-gradient(180deg, #0d1115 0%, #141b21 100%);
}
.legal-page {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 28px 18px 48px;
  color: var(--text);
}
.legal-page h1 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.1;
}
.legal-page h2 {
  margin: 22px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}
.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  text-decoration: none;
  color: rgba(237, 241, 244, 0.78);
}
@media (max-width: 360px) {
  .hero-copy h1,
  .section-intro h2 { font-size: 30px; }
  .price-old,
  .price-current { font-size: 23px; }
}
