:root {
  --bg: #16110d;
  --bg-soft: #251b15;
  --panel: rgba(29, 21, 16, 0.88);
  --panel-soft: rgba(39, 28, 22, 0.76);
  --text: #f7eee5;
  --muted: #cfbba9;
  --line: rgba(255, 233, 214, 0.1);
  --accent: #dca062;
  --accent-deep: #ffcf9a;
  --shadow: 0 24px 70px 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(204,137,72,0.18), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, #1d1510 48%, var(--bg-soft) 100%);
}
a { color: inherit; }
img { display: block; width: 100%; }
.page-shell {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 14px 12px 24px;
}
.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: 520px; }
.hero-media img { height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,7,5,0.25) 0%, rgba(10,7,5,0.12) 34%, rgba(10,7,5,0.72) 100%);
}
.hero-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(18, 12, 9, 0.46);
  backdrop-filter: blur(12px);
}
.hero-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4d7b6;
  font-weight: 700;
}
.hero-copy h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 7vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero-body,
.story-section,
.reviews-section,
.order-section,
.site-footer { padding: 18px; }
.lead {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--muted);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.price-old {
  font-size: 27px;
  font-weight: 700;
  color: rgba(247, 238, 229, 0.45);
  text-decoration: line-through;
}
.price-current {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button-primary {
  width: 100%;
  background: linear-gradient(180deg, #e2aa6d 0%, #bc7840 100%);
  color: #271810;
}
.button-full { width: 100%; }
.sold-count,
.privacy-note,
.form-success,
.registry-note { margin: 10px 0 0; font-size: 12px; line-height: 1.55; color: var(--muted); }
.section-intro { margin-bottom: 16px; }
.section-intro.center { text-align: center; }
.section-intro.compact { margin-bottom: 12px; }
.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #f1c388;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-intro h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.story-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--panel-soft);
  border: 1px solid rgba(255,233,214,0.08);
}
.story-photo,
.story-photo-small { object-fit: cover; }
.story-photo { aspect-ratio: 1 / 1; }
.story-photo-small { aspect-ratio: 0.9 / 1; }
.story-copy { padding: 16px 16px 18px; }
.story-copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.66;
  color: var(--muted);
}
.feature-points {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.feature-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.58;
}
.feature-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: none;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.spec-grid {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,233,214,0.08);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.spec-row span { color: rgba(247,238,229,0.68); }
.spec-row strong { text-align: right; }
.reviews-carousel { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: 24px; }
.carousel-track { display: flex; transition: transform 0.35s ease; }
.review-card {
  min-width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel-soft);
  border: 1px solid rgba(255,233,214,0.08);
}
.review-image { aspect-ratio: 0.86 / 1; object-fit: cover; }
.review-body { padding: 14px 14px 16px; }
.review-body h3 { margin: 0 0 8px; font-size: 17px; }
.review-body p { margin: 0; font-size: 14px; line-height: 1.62; color: var(--muted); }
.carousel-arrow {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(25,18,13,0.88);
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
  cursor: pointer;
  z-index: 2;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff0df;
  border-right: 2px solid #fff0df;
  margin: 0 auto;
}
.carousel-arrow-prev { left: 10px; }
.carousel-arrow-prev::before { transform: rotate(-135deg); }
.carousel-arrow-next { right: 10px; }
.carousel-arrow-next::before { transform: rotate(45deg); }
.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,233,214,0.22);
}
.carousel-dots button.is-active { background: var(--accent); }
.order-form { display: grid; gap: 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(255,233,214,0.1);
  background: rgba(255,255,255,0.05);
  font: inherit;
  color: var(--text);
  outline: none;
}
.field-group input::placeholder { color: rgba(247,238,229,0.5); }
.field-group input:focus { border-color: rgba(220,160,98,0.55); box-shadow: 0 0 0 4px rgba(220,160,98,0.08); }
.field-group.has-error input { border-color: #ff846d; }
.field-error { min-height: 18px; margin: 6px 0 0; font-size: 12px; color: #ffab9a; }
.site-footer { text-align: center; }
.footer-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.site-footer p { margin: 0 0 10px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 12px 0 10px;
}
.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255,233,214,0.18);
}
.legal-body {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 18px 40px;
}
.legal-page h1 { margin: 10px 0 18px; font-size: 30px; }
.legal-page h2 { margin: 18px 0 10px; font-size: 20px; }
.legal-page p { margin: 0 0 10px; line-height: 1.7; color: var(--muted); }
.back-link { text-decoration: none; color: #f1c388; font-weight: 700; }
@media (min-width: 768px) {
  .page-shell { max-width: 500px; padding-top: 20px; }
}
