:root {
  --bg: #111513;
  --bg-soft: #1b211d;
  --panel: rgba(24, 30, 27, 0.88);
  --panel-soft: rgba(34, 42, 38, 0.84);
  --text: #edf1eb;
  --muted: #b9c4bc;
  --line: rgba(227, 238, 227, 0.1);
  --accent: #c9a36c;
  --accent-deep: #ebc48b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
* { 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(115, 145, 97, 0.18), transparent 32%),
    linear-gradient(180deg, #0f1311 0%, var(--bg) 45%, 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: 560px; }
.hero-media img { height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.2) 0%, rgba(9, 12, 10, 0.16) 30%, rgba(8, 11, 9, 0.82) 100%);
}
.hero-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(12, 18, 15, 0.45);
  backdrop-filter: blur(12px);
}
.hero-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e5c290;
  font-weight: 700;
}
.hero-copy h1 {
  margin: 8px 0 0;
  font-size: clamp(28px, 7vw, 39px);
  line-height: 1.02;
  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(237, 241, 235, 0.42);
  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, var(--accent-deep) 0%, #b78348 100%);
  color: #25180f;
}
.button-full { width: 100%; }
.sold-count,
.privacy-note,
.form-success,
.registry-note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.58;
  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: #e5c290;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-intro h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.story-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--panel-soft);
  border: 1px solid rgba(227, 238, 227, 0.08);
}
.story-photo { aspect-ratio: 0.9 / 1; object-fit: cover; }
.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(227, 238, 227, 0.08);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.spec-row span { color: rgba(237, 241, 235, 0.65); }
.spec-row strong { text-align: right; }
.reviews-grid {
  display: grid;
  gap: 12px;
}
.text-review-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 24px;
  background: var(--panel-soft);
  border: 1px solid rgba(227, 238, 227, 0.08);
}
.review-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 163, 108, 0.16);
  color: #f0d2a5;
  font-weight: 800;
}
.text-review-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.text-review-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: var(--muted);
}
.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(227, 238, 227, 0.12);
  background: rgba(255,255,255,0.05);
  font: inherit;
  color: var(--text);
  outline: none;
}
.field-group input::placeholder { color: rgba(237, 241, 235, 0.45); }
.field-group input:focus { border-color: rgba(201, 163, 108, 0.55); box-shadow: 0 0 0 4px rgba(201, 163, 108, 0.08); }
.field-group.has-error input { border-color: #ff8d77; }
.field-error { min-height: 18px; margin: 6px 0 0; font-size: 12px; color: #ffb09c; }
.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(227, 238, 227, 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: #e5c290; font-weight: 700; }
@media (min-width: 768px) {
  .page-shell { max-width: 500px; padding-top: 20px; }
}
