:root {
  --bg: #f6f0e6;
  --bg-2: #efe6d8;
  --card: #fffcf7;
  --ink: #1c1712;
  --muted: #6e6358;
  --line: #e0d4c4;
  --accent: #b4532a;
  --accent-soft: #e8c4a8;
  --wood: #8b5e3c;
  --ok: #2f6b4f;
  --radius: 4px;
  --max: 1080px;
  --shadow: 0 18px 40px rgba(40, 28, 16, 0.08);
  --font: "Segoe UI", system-ui, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 35%, #f3ebe0 100%);
  line-height: 1.55;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 240, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.logo em { font-style: normal; color: var(--accent); }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; }
nav a:hover { color: var(--ink); }

.hero { padding: 48px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 700;
}
.hero h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  font-weight: 600;
}
.lead { margin: 0 0 22px; color: var(--muted); font-size: 1.08rem; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.badge-note {
  margin: 0; font-size: 0.88rem; color: var(--muted);
  border-left: 3px solid var(--accent-soft); padding-left: 12px; max-width: 42ch;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: var(--radius);
  background: var(--accent); color: #fff;
  padding: 13px 22px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; text-decoration: none;
  letter-spacing: 0.03em;
}
.btn:hover { filter: brightness(1.05); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-block { width: 100%; }
.btn-sm { width: 100%; padding: 11px 14px; font-size: 0.9rem; margin-top: 6px; }

.hero-visual {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-section, .products-section, .steps-section, .reviews-section, .feedback-section {
  padding: 36px 0 12px;
}
h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
}
.section-sub { margin: 0 0 24px; color: var(--muted); }

.player {
  position: relative; background: #111; border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 16/9; overflow: hidden;
}
.player video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.tap-play {
  position: absolute; inset: 0; border: 0;
  background: rgba(28, 23, 18, 0.4); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; cursor: pointer; font: inherit;
}
.tap-play[hidden] { display: none; }
.play-icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); font-size: 1.3rem;
}

.products {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.product {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 220px;
}
.product img {
  width: 100%; height: 100%; min-height: 220px;
  object-fit: cover; display: block; background: #ddd;
}
.product-body {
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.product-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}
.product-body p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.specs { margin: 0; padding-left: 1.1em; color: var(--muted); font-size: 0.86rem; }
.price {
  margin: 6px 0 0 !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  font-family: var(--serif);
}
.price span { font-size: 0.8rem; font-weight: 500; color: var(--muted); font-family: var(--font); }
.stock { font-size: 0.85rem !important; }
.stock-ok { color: var(--ok) !important; }
.stock-wait { color: var(--accent) !important; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px 16px;
}
.step strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.step h3 { margin: 0 0 6px; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.reviews { display: grid; gap: 14px; max-width: 780px; margin: 0 auto; }
.reviews-section h2, .reviews-section .section-sub { text-align: center; }
.review {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--accent-soft);
}
.meta {
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  align-items: baseline; margin-bottom: 6px; font-size: 0.9rem;
}
.meta span { color: var(--muted); }
.stars { color: var(--accent); letter-spacing: 1px; }
.review p { margin: 0 0 10px; }
.shot {
  display: block; width: min(100%, 240px); max-height: 150px;
  object-fit: cover; border: 1px solid var(--line);
}

.feedback-card {
  max-width: 640px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px 24px 30px;
}
.feedback-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.feedback-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.86rem; font-weight: 600; color: var(--muted);
}
.feedback-form label.full { grid-column: 1 / -1; }
.feedback-form label.check {
  flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400;
}
.feedback-form input,
.feedback-form textarea,
.feedback-form select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit; font-weight: 400;
}
.feedback-form .btn { grid-column: 1 / -1; }
.form-note, .form-ok { grid-column: 1 / -1; margin: 0; font-size: 0.88rem; }
.form-ok { color: var(--ok); font-weight: 700; }
.contact-line {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-line p { margin: 4px 0; }
.contact-line strong { color: var(--ink); }

.footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: #ebe3d6;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-between; align-items: flex-start;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 16px; }
.footer-links a { color: var(--muted); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.muted-sm { color: var(--muted); font-size: 0.88rem; margin: 6px 0 0; }

.legal-page { padding: 36px 0 60px; }
.legal-card {
  max-width: 800px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.legal-card h1 { margin-top: 0; font-family: var(--serif); }
.legal-card h2 { font-size: 1.15rem; margin-top: 1.3em; }
.legal-card p, .legal-card li { color: #3d342c; }

@media (max-width: 900px) {
  .hero-grid, .product { grid-template-columns: 1fr; }
  .product img { min-height: 200px; max-height: 240px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .products { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .feedback-form { grid-template-columns: 1fr; }
}
