:root {
  --ink: #0a1211;
  --muted: #4a5e5a;
  --line: #d8e2e0;
  --gold: #c5a46e;
  --gold-dark: #9a7f4f;
  --gold-soft: #f5eddf;
  --deep: #0f2a24;
  --deep-2: #1a3c35;
  --paper: #fafbf9;
  --white: #ffffff;
  --product-bg: #f4f7f5;
  --shadow: 0 24px 70px rgba(10,18,17,.09);
  --shadow-soft: 0 16px 40px rgba(10,18,17,.06);
  --shadow-hover: 0 28px 74px rgba(10,18,17,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: 
    radial-gradient(circle at 15% 6%, rgba(197,164,110,.08), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(197,164,110,.05), transparent 24rem),
    linear-gradient(180deg, var(--paper) 0%, #f0f3f1 100%);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(197,164,110,.45);
  outline-offset: 3px;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  letter-spacing: -.025em;
  font-size: 21px;
}
.brand img { box-shadow: 0 8px 22px rgba(10,18,17,.09); border-radius: 12px; }
nav { display: flex; gap: 26px; color: var(--muted); font-size: 15px; font-weight: 500; }
nav a { transition: color .16s ease; }
nav a:hover { color: var(--deep); }

main { max-width: 1180px; margin: 0 auto; padding: 52px 28px 90px; }
.section { margin-top: 64px; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:22px; }
.section-head h2 { margin:0; font-size: clamp(24px, 4.2vw, 32px); letter-spacing: -.025em; }
.text-link { font-size:14px; color:var(--deep); font-weight:700; }
.text-link:hover { color: var(--gold-dark); }

.hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
  align-items: center;
  gap: 56px;
  padding: 68px 58px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,251,249,.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.042em;
  font-weight: 800;
}
.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 28px;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .16s ease;
  text-decoration: none;
}
.button.accent {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}
.button.accent:hover {
  background: var(--deep-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.button.secondary {
  background: transparent;
  color: var(--deep);
  border-color: var(--line);
}
.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.trust-bar {
  margin-top: 28px;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--deep-2);
}
.trust-pill span { color: var(--gold-dark); font-weight: 800; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 22px;
}
.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.ruo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(197,164,110,.35);
}
.product-img {
  width: 100%;
  height: 186px;
  object-fit: contain;
  background: var(--product-bg);
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(216,226,224,.6);
}
.product h3 { margin: 0 0 4px; font-size: 18px; font-weight: 750; letter-spacing: -.01em; }
.product .meta { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.product .price { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.product .desc { font-size: 14px; color: var(--muted); line-height: 1.45; flex: 1; margin-bottom: 16px; }
.card-actions { display: flex; gap: 10px; }
.card-actions .button { flex: 1; font-size: 14px; padding: 11px 18px; }

.featured-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

footer {
  max-width: 1180px;
  margin: 80px auto 0;
  padding: 36px 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding: 44px 28px; min-height: 0; }
  .hero-visual { display: none; }
  nav { gap: 16px; font-size: 14px; }
}