:root {
  --page-width: 430px;
  --bg-top: #0f1714;
  --surface-soft: rgba(255, 250, 244, 0.66);
  --text: #1f2422;
  --muted: #66706b;
  --line: rgba(93, 104, 94, 0.12);
  --shadow: 0 22px 60px rgba(15, 21, 18, 0.18);
  --accent: #ad8a51;
  --accent-dark: #866534;
  --accent-soft: rgba(173, 138, 81, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, #16211d 15%, #efe4d4 52%, #f4efe8 100%);
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 177, 111, 0.18), transparent 25%),
    radial-gradient(circle at 82% 8%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(35, 47, 41, 0.14), transparent 34%);
}
.shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 18px 12px 30px;
}
.page { display: grid; gap: 18px; }
.hero, .flow-section, .site-footer {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(250,246,240,0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.hero { padding: 10px; }
.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 0.96 / 1;
  background: #0d1210;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 7, 0.08) 0%, rgba(6, 8, 7, 0.72) 100%);
}
.hero-copy { position: absolute; inset: auto 18px 18px; color: #fffefa; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 251, 245, 0.14);
  color: #f6eee3;
  backdrop-filter: blur(8px);
}
.hero-copy h1 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 8vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero-copy p {
  margin: 0;
  max-width: 290px;
  font-size: 15px;
  line-height: 1.52;
  color: rgba(255,255,255,0.92);
}
.hero-panel { padding: 18px 10px 8px; text-align: center; }
.spotline {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.price-old {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #9b9e99;
  text-decoration: line-through;
}
.price-new {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent-dark);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.button:active { transform: translateY(1px); }
.button-primary {
  background: linear-gradient(180deg, #b89456 0%, #886738 100%);
  color: #fffefb;
  box-shadow: 0 16px 30px rgba(136, 103, 56, 0.24);
}
.button-wide { width: 100%; }
.hero-panel .button { width: 100%; margin-top: 16px; }
.sold-note { margin: 12px 0 0; font-size: 13px; color: var(--muted); }
.flow-section { padding: 22px 16px; }
.intro h2 {
  margin: 10px 0 0;
  font-size: clamp(29px, 7vw, 34px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.intro-text { margin: 12px 0 0; font-size: 14px; line-height: 1.55; color: var(--muted); }
.feature-flow { margin-top: 18px; display: grid; gap: 14px; }
.feature-main, .visual-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(72, 79, 74, 0.08);
  background: rgba(255,255,255,0.8);
}
.feature-copy p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.68;
  color: #2f3734;
}
.feature-copy p:last-of-type { margin-bottom: 0; }
.feature-points { display: grid; gap: 10px; margin-top: 16px; }
.point {
  padding: 14px 15px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid rgba(95, 107, 99, 0.1);
}
.point strong { display: block; margin-bottom: 4px; font-size: 14px; }
.point span { display: block; font-size: 13px; line-height: 1.55; color: var(--muted); }
.visual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reviews-carousel { position: relative; margin-top: 18px; padding: 0 34px 0; }
.carousel-viewport { overflow: hidden; border-radius: 24px; }
.carousel-track { display: flex; transition: transform .35s ease; }
.review-card {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 20px 18px;
  border: 1px solid rgba(89, 98, 91, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(244,239,231,0.92));
  min-height: 200px;
}
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-city {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-rating { font-size: 13px; letter-spacing: 0.08em; color: var(--accent); }
.review-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.review-card p { margin: 0; font-size: 15px; line-height: 1.66; color: #33403a; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border-radius: 50%;
  border: 1px solid rgba(84, 90, 86, 0.12);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 8px 20px rgba(20,24,22,0.08);
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-top: 2px solid #44504a;
  border-right: 2px solid #44504a;
}
.carousel-arrow-prev { left: 0; }
.carousel-arrow-prev::before { transform: rotate(-135deg); }
.carousel-arrow-next { right: 0; }
.carousel-arrow-next::before { transform: rotate(45deg); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(85, 94, 90, 0.22);
}
.carousel-dots button.is-active { width: 22px; background: var(--accent); }
.order-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(85, 96, 88, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(245,240,232,0.92));
}
.order-form { display: grid; gap: 14px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 13px; font-weight: 600; }
.field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(84, 94, 88, 0.14);
  background: rgba(255,255,255,0.88);
  color: var(--text);
  outline: none;
}
.field input:focus {
  border-color: rgba(173, 138, 81, 0.66);
  box-shadow: 0 0 0 4px rgba(173, 138, 81, 0.11);
}
.field-error { min-height: 18px; font-size: 12px; line-height: 1.4; color: #c14d4d; }
.field.has-error input {
  border-color: rgba(193, 77, 77, 0.7);
  box-shadow: 0 0 0 4px rgba(193, 77, 77, 0.08);
}
.policy-note, .form-message {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}
.form-message.is-error { color: #ba4f4f; }
.site-footer { margin-top: 18px; padding: 24px 18px 28px; text-align: center; }
.footer-title { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; color: var(--muted); }
.site-footer p { margin: 14px 0 0; font-size: 14px; line-height: 1.62; color: #394641; }
.footer-links { display: grid; gap: 10px; margin-top: 16px; }
.footer-links a { color: var(--accent-dark); font-size: 14px; }
.registry-note { font-size: 13px !important; color: var(--muted) !important; }
.legal-body { background: linear-gradient(180deg, #1c241f 0%, #f4eee4 38%, #f7f3ec 100%); }
.legal-page {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 22px 16px 40px;
  color: var(--text);
}
.back-link { display: inline-flex; margin-bottom: 18px; color: #6f7a73; font-size: 14px; }
.legal-page h1 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.legal-page h2 { margin: 24px 0 10px; font-size: 20px; line-height: 1.15; }
.legal-page p { margin: 0; font-size: 15px; line-height: 1.72; color: #36413c; }
@media (min-width: 700px) {
  .shell { padding-top: 26px; padding-bottom: 42px; }
}