:root {
  --bg: #0f1412;
  --bg-soft: #171d1a;
  --card: #1c2420;
  --ink: #f3f0ea;
  --muted: #a8b0aa;
  --line: rgba(243, 240, 234, 0.12);
  --accent: #d4a574;
  --accent-2: #7eb8a2;
  --radius: 18px;
  --max: 1040px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(126, 184, 162, 0.18), transparent 60%),
    radial-gradient(700px 400px at 90% 0%, rgba(212, 165, 116, 0.14), transparent 55%),
    var(--bg);
  line-height: 1.55;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(15, 20, 18, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.25rem;
}
.logo span { color: var(--accent); }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 0.95rem; text-decoration: none; }
nav a:hover { color: var(--ink); }

.hero { padding: 40px 0 20px; }
.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #b8844f);
  color: #1a120a;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25);
}
.btn:hover { filter: brightness(1.06); text-decoration: none; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-sm {
  padding: 10px 16px;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 4px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.badge-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 42ch;
}

.products-section { padding: 36px 0 16px; }
.products-section h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.products {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #111;
}
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { margin: 0; font-size: 1.1rem; }
.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: 4px 0 0 !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}
.price span { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.stock { font-size: 0.85rem !important; }
.stock-ok { color: var(--accent-2) !important; }
.stock-wait { color: var(--accent) !important; }

.form-err {
  grid-column: 1 / -1;
  margin: 0;
  color: #f0a0a0;
  font-weight: 600;
}
.feedback-form select {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}
.feedback-form label.check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: var(--muted);
}
.feedback-form label.check input { margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 16px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }
.muted-sm { color: var(--muted); font-size: 0.88rem; margin: 6px 0 0; }
.footer-inner { align-items: flex-start; }

.hero-visual {
  border-radius: calc(var(--radius) + 4px);
  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 { padding: 28px 0 12px; }
.video-section h2,
.gallery-section h2,
.feedback-section h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.section-sub {
  margin: 0 0 22px;
  color: var(--muted);
}

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

.gallery-section { padding: 40px 0 20px; }
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
}
.tile {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  min-height: 180px;
}
.tile img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}
.tile-lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}
.tile-lg img { min-height: 100%; height: 100%; }
.tile-wide { grid-column: span 2; }

.reviews-section { padding: 40px 0 12px; }
.reviews-section h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  text-align: center;
}
.reviews-section .section-sub { text-align: center; }
.reviews {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.review {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a332e;
  border: 2px solid rgba(212, 165, 116, 0.35);
}
.review .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.review .meta span { color: var(--muted); }
.review .stars { color: var(--accent); letter-spacing: 1px; }
.review p { margin: 0 0 12px; color: #e4e0d8; }
.review .shot {
  display: block;
  width: min(100%, 260px);
  max-height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
@media (max-width: 560px) {
  .review { grid-template-columns: 44px 1fr; }
  .review .avatar { width: 44px; height: 44px; }
}

.legal-page { padding: 32px 0 64px; }
.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}
.legal-card h1 { margin-top: 0; font-size: 1.6rem; }
.legal-card h2 { margin-top: 1.4em; font-size: 1.1rem; }
.legal-card p, .legal-card li { color: #d8d4cc; }
.legal-card a { color: var(--accent); }

.feedback-section { padding: 36px 0 64px; }
.feedback-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.feedback-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 20px;
}
.feedback-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.feedback-form label.full { grid-column: 1 / -1; }
.feedback-form input,
.feedback-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
  font-weight: 400;
  outline: none;
}
.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: rgba(212, 165, 116, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}
.feedback-form .btn { grid-column: 1 / -1; margin-top: 4px; }
.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
.form-ok {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent-2);
  font-weight: 600;
}
.contact-line {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-line p { margin: 4px 0; }
.contact-line strong { color: var(--ink); }

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-logo { font-size: 1.05rem; }
.footer p { margin: 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .tile-lg { grid-column: span 2; grid-row: span 1; min-height: 240px; }
  .tile-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .tile-lg, .tile-wide { grid-column: span 1; }
  .feedback-form { grid-template-columns: 1fr; }
}
