:root {
  --navy: #16324d;
  --navy-2: #1c3d5c;
  --navy-3: #245178;
  --gold: #c9a227;
  --gold-2: #e0c36a;
  --paper: #eaf3fb;
  --ink: #1b2a38;
  --line: #c5d7e8;
  --card: #ffffff;
  --serif: "Playfair Display", "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
}
a { color: var(--navy-3); }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(740px, 100%); margin: 0 auto; }

.adbar {
  background: var(--navy);
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-pill {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f7f4ee;
  background:
    linear-gradient(180deg, rgba(8,18,34,.55) 0%, rgba(8,18,34,.62) 45%, rgba(8,18,34,.78) 100%),
    url("hero.jpg") center 58% / cover no-repeat;
}
.hero-inner { width: min(860px, calc(100% - 36px)); padding: 72px 0 120px; }
.kicker {
  color: var(--gold-2);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 28px;
}
.kicker span { padding: 0 10px; }
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: 1.08;
  margin: 0 0 26px;
  letter-spacing: -0.02em;
}
h1 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 500;
}
.lede {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(247,244,238,.88);
  max-width: 680px;
  margin: 0 auto 28px;
}
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pill {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  color: #f7f4ee;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
}
.pill i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: 1px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: #f3ead8;
}
.stat {
  padding: 26px 16px 24px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.08);
}
.stat:first-child { border-left: 0; }
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold-2);
  font-weight: 500;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243,234,216,.7);
}

.section { padding: 64px 0; }
.section + .section { border-top: 1px solid var(--line); }
.sec-num {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 14px;
  line-height: 1.2;
}
h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 8px; }
p { margin: 0 0 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0 0 18px;
  overflow: hidden;
}
.tile img { width: 100%; height: 168px; object-fit: cover; }
.tile h3, .tile p { padding: 0 18px; }
.tile h3 { margin-top: 14px; }
.tile p:last-child { margin: 0; }
.figure { margin: 22px auto 0; max-width: 740px; }
.figure img { width: 100%; height: 280px; object-fit: cover; border: 1px solid var(--line); }
.figure figcaption { font-size: 13px; color: #6b645c; margin-top: 8px; }
.small { font-size: 16px; color: #3f4a44; }
.note {
  font-family: var(--serif);
  font-style: italic;
  color: #3b4540;
  border-left: 2px solid var(--gold);
  padding: 2px 0 2px 16px;
  margin: 28px auto 0;
  max-width: 740px;
}

.models { display: grid; gap: 14px; margin-top: 28px; }
.model {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 12px 16px 12px 12px;
  display: grid;
  grid-template-columns: 72px 132px 1fr auto;
  gap: 16px;
  align-items: center;
}
.model img {
  width: 132px;
  height: 92px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.model .rank {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
}
.model h3 { margin: 0 0 4px; font-size: 22px; }
.model p { margin: 0; }
.ghost {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 9px 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

footer {
  background: var(--navy);
  color: #e8dfd0;
  padding: 42px 0 24px;
  font-size: 15px;
}
footer a { color: #e8dfd0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 24px; padding-top: 16px; color: #b7ae9f; font-size: 13px; }

.cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 24px));
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  padding: 18px 18px 16px;
  z-index: 40;
}
.cookie h4 { font-family: var(--sans); font-size: 16px; margin: 0 0 8px; }
.cookie p { font-size: 14px; color: #555; }
.cookie-actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookie button {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}
.cookie .ok { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }
.cookie.hidden { display: none; }

.page { padding: 48px 0 72px; }
.page h1 { font-size: 42px; color: var(--navy); }
.legal-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a7f93;
  margin-bottom: 10px;
}
.contact-block { margin: 28px 0; }
.contact-block h2 { font-size: 24px; }
.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin: 24px 0 32px;
}
.product-hero img { width: 100%; border: 1px solid var(--line); }
.facts { width: 100%; background: var(--card); border-collapse: collapse; font-size: 16px; }
.facts th, .facts td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.facts th { width: 38%; background: #f3f8fc; }
.btn-retail {
  display: inline-block;
  background: var(--navy);
  color: #f3f8fc;
  text-decoration: none;
  padding: 12px 18px;
  margin-top: 8px;
}
.back { font-size: 14px; }
@media (max-width: 800px) {
  .product-hero { grid-template-columns: 1fr; }
}

header.site { background: var(--navy); color: #f3ead8; }
header.site .wrap { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
header.site a { color: #f3ead8; text-decoration: none; }
.brand { display: flex; gap: 10px; align-items: center; }
.mark { width: 34px; height: 34px; border: 1px solid var(--gold); display: grid; place-items: center; font-family: var(--serif); color: var(--gold); }
.brand strong { display: block; letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; }
.brand span { display: block; font-size: 12px; color: #cbbd9e; }
header.site nav a { margin-left: 18px; font-size: 14px; }

@media (max-width: 800px) {
  .stats, .grid-3, .foot-grid { grid-template-columns: 1fr 1fr; }
  .model { grid-template-columns: 40px 1fr; }
  .model img, .ghost { grid-column: 2; }
  .model img { width: 100%; height: 140px; }
}
@media (max-width: 560px) {
  .stats, .grid-3, .foot-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}
