:root {
  --ink: #0e2a3a;
  --ink-soft: #1c4254;
  --gold: #c8a46a;
  --gold-2: #e2c48a;
  --sand: #f4f1ea;
  --paper: #fbfaf7;
  --line: rgba(14, 42, 58, 0.12);
  --white: #fff;
  --muted: #5b6d76;
  --shadow: 0 24px 60px rgba(14, 42, 58, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: var(--ink);
  color: #d7e2e8;
  font-size: 13px;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 8px 0;
}
.topbar b { color: var(--gold-2); font-weight: 700; }

header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 250, 247, .88);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 40px; height: 40px; }
.brand strong { display: block; font-size: 17px; letter-spacing: .08em; }
.brand span { display: block; font-size: 11px; color: var(--muted); letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 999px; padding: 12px 20px;
  font-weight: 700; border: 0; cursor: pointer;
}
.btn-gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--ink); }
.btn-line { border: 1px solid var(--ink); background: transparent; }
.btn-white { background: #fff; color: var(--ink); }
.menu-btn { display: none; background: none; border: 0; font-size: 26px; }

.hero {
  position: relative; min-height: 86vh;
  display: grid; place-items: end start;
  color: #fff;
  background: #0e2a3a url("images/hero.jpg") center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,22,31,.82) 0%, rgba(8,22,31,.28) 62%, rgba(8,22,31,.12) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 90px 0 72px; max-width: 680px; }
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--gold-2); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; line-height: 1.12; }
h1 { font-size: clamp(42px, 7vw, 76px); margin: 16px 0 18px; font-weight: 600; }
.hero p { font-size: 18px; max-width: 540px; color: #e8eef1; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px; margin-top: 42px; max-width: 560px;
}
.hero-meta b { display: block; font-size: 22px; color: var(--gold-2); }
.hero-meta span { font-size: 13px; color: #d5dee3; }

.section { padding: 88px 0; }
.center { text-align: center; }
.lead { color: var(--muted); max-width: 640px; margin: 12px auto 0; }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: 28px; }

.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.cat {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(14,42,58,.05);
}
.cat img { width: 100%; height: 168px; object-fit: cover; }
.cat div { padding: 16px 18px 20px; }
.cat small { color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }

.grid-5 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 40px; }
.card {
  background: #fff; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.card:nth-child(1), .card:nth-child(2) { grid-column: span 6; }
.card:nth-child(3), .card:nth-child(4), .card:nth-child(5) { grid-column: span 4; }
.card img { width: 100%; height: 320px; object-fit: cover; background: #eef1f3; }
.card-body { padding: 22px; }
.sku { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.price { margin-top: 10px; font-weight: 800; font-size: 18px; }
.specs { margin: 12px 0 16px; padding-left: 18px; color: var(--muted); font-size: 14px; }
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.why { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.why img { border-radius: 28px; height: 460px; width: 100%; object-fit: cover; }
.points { display: grid; gap: 14px; margin-top: 22px; }
.point { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.point b { display: block; margin-bottom: 4px; }

.faq { display: grid; gap: 10px; margin-top: 28px; }
details {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 700; }
details p { margin-top: 8px; color: var(--muted); }

.cta {
  background: var(--ink); color: #fff; border-radius: 28px; padding: 48px;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; align-items: center;
}
.cta p { color: #c9d6dc; margin-top: 10px; }
form { display: grid; gap: 10px; }
input, textarea, select {
  width: 100%; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: #fff;
  border-radius: 12px; padding: 12px 14px; font: inherit;
}
input::placeholder, textarea::placeholder { color: #b7c4ca; }

footer { background: #0a1d28; color: #c5d2d8; padding: 48px 0 24px; margin-top: 20px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
footer a:hover { color: var(--gold-2); }
.copy { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; font-size: 13px; color: #8fa0a8; }

.badge {
  display: inline-block; background: rgba(200,164,106,.15); color: #8a6a32;
  border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 74px;
    background: var(--paper); padding: 16px 20px 20px; border-bottom: 1px solid var(--line);
  }
  .cats, .why, .cta, .foot, .hero-meta { grid-template-columns: 1fr; }
  .card, .card:nth-child(n) { grid-column: span 12; }
  .hero { min-height: 78vh; }
  .cta { padding: 28px; }
}
