/* ============================================================
   HomeVirtus — Deep Navy & Gold Editorial Theme
   Palette: warm cream · rich gold · midnight navy
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:           #F6F4EF;
  --cream-deep:      #ECEAE3;
  --ivory:           #E2DDD4;
  --warm-white:      #FDFCF9;
  --amber-pale:      #F2F5FF;
  --amber-light:     #E4EDFB;
  --amber:           #C49820;
  --amber-deep:      #9E7A10;
  --sienna:          #0D2C50;
  --terracotta:      #1A4268;
  --brick:           #081C38;
  --espresso:        #0A1E3C;
  --mahogany:        #142D4E;
  --warm-brown:      #1E4268;
  --tan:             #4A6A8A;
  --warm-gray:       #7A8E9E;
  --warm-gray-light: #A8B8C8;
  --warm-gray-pale:  #CCD8E4;
  --border:          #DDD5C8;
  --border-soft:     #E8E2D8;
  --border-strong:   #C8BEB0;
  --gold:            #C49820;
  --gold-soft:       #EEE4A8;
  --pos:             #1A6B38;
  --pos-soft:        #E0EEE6;
  --neg:             #8B2020;
  --neg-soft:        #F2E2E2;

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'Courier New', monospace;

  --wrap:     1200px;
  --article:  780px;
  --gap:      clamp(20px, 3vw, 40px);
  --radius:   10px;
  --radius-sm: 6px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
::selection { background: var(--amber); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--espresso); color: #fff;
  padding: 10px 16px; z-index: 1000; font-size: 14px;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
  background: var(--espresso);
  color: rgba(230,240,255,0.6);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tb-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 8px var(--gap);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tb-badge {
  background: var(--amber);
  color: #fff;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,247,241,0.96);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.25s ease;
}
.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(10,24,48,0.10);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
}
.nb-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--sienna) 100%);
  border-radius: 8px;
  position: relative;
  flex: none;
}
.nb-icon::before {
  content: "";
  position: absolute;
  inset: 7px 8px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 2px;
}
.nb-icon::after {
  content: "";
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-brown);
  padding: 8px 0;
  position: relative;
  transition: color 0.15s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: #fff;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--amber-deep); color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 12px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 1px;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  border-top: 1px solid var(--border-soft);
  background: var(--warm-white);
  padding: 12px var(--gap) 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
  font-weight: 500;
  color: var(--warm-brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-cta-mobile {
  margin-top: 8px;
  background: var(--amber) !important;
  color: #fff !important;
  padding: 14px 20px !important;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600 !important;
  border-bottom: none !important;
  justify-content: center !important;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; height: 62px; padding: 0 18px; gap: 16px; }
}

/* ============================================================
   Hero — full-width background image
   ============================================================ */
.site-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 79%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(10,24,48,0.88) 0%,
    rgba(10,24,48,0.68) 45%,
    rgba(10,24,48,0.28) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px,9vw,120px) var(--gap) clamp(48px,6vw,80px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
  justify-content: center;
  flex: 1;
}
.hero-content { min-width: 0; text-align: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--amber);
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px,5.5vw,66px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #EEF3FF;
  max-width: 17ch;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
  font-feature-settings: "ss01";
}

.hero-sub {
  font-size: clamp(16px,1.8vw,19px);
  line-height: 1.65;
  color: rgba(230,240,255,0.75);
  max-width: 50ch;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(230,240,255,0.88);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hb-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex: none;
}

/* ---- CTA Form card ---- */
.hero-form-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.38);
  position: sticky;
  top: 90px;
  align-self: start;
}
.hfc-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}
.hfc-head h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-bottom: 6px;
}
.hfc-head p {
  font-size: 13.5px;
  color: var(--warm-gray);
  line-height: 1.5;
}
.hfc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hfc-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hfc-field label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-brown);
}
.hfc-field input,
.hfc-field select {
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--espresso);
  background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.hfc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E8870' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.hfc-field input:focus,
.hfc-field select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,150,42,0.15);
}
.hfc-field input::placeholder { color: var(--warm-gray-light); }

.hfc-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.hfc-submit:hover { background: var(--amber-deep); transform: translateY(-1px); }

.hfc-success {
  background: var(--pos-soft);
  color: var(--pos);
  border: 1px solid #b8d8c0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  display: none;
}
.hfc-privacy {
  font-size: 12px;
  color: var(--warm-gray);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.hfc-privacy a { color: var(--amber-deep); text-decoration: underline; }

/* ---- Stats bar ---- */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(10,24,48,0.88);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hsb-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.hsb-stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hsb-stat:last-child { border-right: none; }
.hsb-num {
  font-family: var(--serif);
  font-size: clamp(18px,2.2vw,26px);
  font-weight: 500;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.hsb-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(230,240,255,0.45);
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { position: static; max-width: 480px; }
  .hero-headline { max-width: 100%; }
}
@media (max-width: 640px) {
  .site-hero { min-height: auto; }
  .hsb-inner { grid-template-columns: repeat(2,1fr); }
  .hsb-stat:nth-child(2) { border-right: none; }
  .hsb-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .hsb-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
}

/* ============================================================
   Guide — two-column with sticky sidebar TOC
   ============================================================ */
.guide-section {
  background: var(--cream);
  padding: clamp(48px,7vw,96px) var(--gap);
}
.guide-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px,5vw,80px);
  align-items: start;
}
.guide-sidebar {
  position: sticky;
  top: 90px;
}
.gsi-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-gray);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.guide-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.guide-toc a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-brown);
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}
.guide-toc a:hover { background: var(--amber-light); color: var(--sienna); }
.toc-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber);
  font-weight: 500;
  flex: none;
  margin-top: 1px;
}

.guide-content { min-width: 0; }
.guide-content p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--mahogany);
  margin-bottom: 20px;
}
.guide-content p em { font-style: italic; color: var(--espresso); }

.guide-section-head {
  margin: 72px 0 28px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.guide-section-head:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.gsh-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.guide-section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px,3.2vw,38px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--espresso);
  margin-bottom: 8px;
}
.gsh-sub {
  font-size: 14.5px;
  color: var(--warm-gray);
  font-style: italic;
}

/* Rating cards */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin: 28px 0;
}
.rating-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}
.rating-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--sienna) 100%);
}
.rt-tier {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-deep);
  margin-bottom: 8px;
  display: block;
}
.rating-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
}
.rating-card p { font-size: 14px; color: var(--warm-brown); line-height: 1.55; margin: 0; }

/* Pull quote */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px,2.2vw,24px);
  line-height: 1.5;
  color: var(--espresso);
  background: var(--amber-pale);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Match list */
.match-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.match-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ml-key {
  background: var(--amber-light);
  padding: 16px 18px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--sienna);
  display: flex;
  align-items: center;
}
.ml-val {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--warm-brown);
  line-height: 1.55;
  display: flex;
  align-items: center;
}

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14.5px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table thead th {
  background: var(--espresso);
  color: var(--amber-light);
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
}
.data-table tbody tr { border-bottom: 1px solid var(--border-soft); transition: background 0.12s; }
.data-table tbody tr:hover { background: var(--amber-pale); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table td { padding: 13px 18px; color: var(--mahogany); line-height: 1.5; }
.data-table .mono { font-family: var(--mono); font-size: 13px; }
.inline-tag {
  background: var(--amber-light);
  color: var(--sienna);
  padding: 2px 8px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Mistake list */
.mistake-list {
  list-style: none;
  counter-reset: mistake;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}
.mistake-list li {
  counter-increment: mistake;
  display: flex;
  gap: 16px;
  padding: 15px 18px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  color: var(--mahogany);
  line-height: 1.6;
  align-items: flex-start;
}
.mistake-list li::before {
  content: counter(mistake, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  flex: none;
  margin-top: 1px;
}

/* Guide figures */
.guide-figure {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.guide-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-figure figcaption {
  background: var(--espresso);
  color: rgba(230,240,255,0.6);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 12px 18px;
}

@media (max-width: 900px) {
  .guide-inner { grid-template-columns: 1fr; }
  .guide-sidebar { display: none; }
  .rating-grid { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 600px) {
  .match-list li { grid-template-columns: 1fr; }
  .ml-key { border-bottom: 1px solid var(--border); }
}

/* ============================================================
   Picks Banner
   ============================================================ */
.picks-banner {
  background: linear-gradient(138deg, var(--espresso) 0%, var(--terracotta) 100%);
  padding: clamp(48px,7vw,88px) var(--gap);
  position: relative;
  overflow: hidden;
}
.picks-banner::before {
  content: "";
  position: absolute;
  top: -100px; right: -60px;
  width: 320px; height: 320px;
  background: var(--amber);
  opacity: 0.04;
  border-radius: 50%;
}
.picks-banner::after {
  content: "";
  position: absolute;
  bottom: -140px; left: 80px;
  width: 420px; height: 420px;
  background: var(--sienna);
  opacity: 0.06;
  border-radius: 50%;
}
.pb-inner {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.pb-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pb-eyebrow::before {
  content: "";
  display: inline-block;
  width: 16px; height: 1.5px;
  background: var(--amber);
}
.pb-title {
  font-family: var(--serif);
  font-size: clamp(28px,4vw,48px);
  font-weight: 500;
  color: #EEF3FF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pb-sub {
  font-size: 15.5px;
  color: rgba(230,240,255,0.6);
  max-width: 56ch;
  line-height: 1.65;
}
.pb-count { text-align: right; flex: none; }
.pb-count-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 500;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.pb-count-lbl {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(230,240,255,0.35);
}

@media (max-width: 600px) {
  .pb-inner { grid-template-columns: 1fr; }
  .pb-count { display: none; }
}

/* ============================================================
   At a Glance — horizontal card strip
   ============================================================ */
.glance-section {
  background: var(--cream-deep);
  padding: clamp(48px,7vw,80px) 0;
}
.glance-header {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.glance-title {
  font-family: var(--serif);
  font-size: clamp(22px,2.5vw,30px);
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
.glance-hint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.glance-scroll {
  overflow-x: auto;
  padding: 0 var(--gap) 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.glance-scroll::-webkit-scrollbar { height: 4px; }
.glance-scroll::-webkit-scrollbar-track { background: transparent; }
.glance-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.glance-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px,1fr));
  gap: 16px;
  min-width: 1100px;
}
.glance-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.glance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(10,24,48,0.13);
}
.gc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.gc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.glance-card:hover .gc-img img { transform: scale(1.05); }
.gc-rank {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--espresso);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
}
.gc-body {
  padding: 16px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gc-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
  align-self: flex-start;
}
.gc-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.3;
  flex: 1;
}
.gc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
}
.gc-score {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-deep);
}
.gc-price {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--espresso);
}

/* Tag colours */
.tag-ed      { background: var(--amber-light); color: var(--sienna); }
.tag-fire    { background: #e8f4f8; color: #1a5070; }
.tag-cert    { background: #e4eef8; color: #1a3d6a; }
.tag-warranty{ background: #ece8f4; color: #3a2870; }
.tag-value   { background: var(--pos-soft); color: var(--pos); }

/* ============================================================
   Product Reviews — staggered alternating layout
   ============================================================ */
.reviews-section {
  background: var(--cream);
  padding: clamp(48px,7vw,88px) var(--gap);
}
.reviews-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.review-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.review-card:nth-child(even) {
  grid-template-columns: 1fr 340px;
}
.review-card:nth-child(even) .rv-image-col { order: 2; }
.review-card:nth-child(even) .rv-content-col { order: 1; }

.rv-image-col {
  background: var(--cream-deep);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  position: relative;
}
.rv-img-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.rv-rank-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--espresso);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.rv-score-panel {
  background: var(--espresso);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rv-score-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rv-score-num small {
  font-size: 17px;
  color: rgba(230,240,255,0.35);
  font-family: var(--mono);
}
.rv-score-info { text-align: right; }
.rv-stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; display: block; margin-bottom: 4px; }
.rv-score-meta { font-size: 11.5px; color: rgba(230,240,255,0.45); font-family: var(--mono); }

.rv-content-col {
  padding: clamp(24px,3vw,40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.rv-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.rv-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px,2.5vw,28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin-bottom: 5px;
}
.rv-sub {
  font-size: 14px;
  color: var(--warm-gray);
  font-style: italic;
  line-height: 1.5;
}
.rv-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: var(--amber-pale);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.rv-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.rv-price-now {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
}
.rv-price-was {
  font-size: 14px;
  color: var(--warm-gray);
  text-decoration: line-through;
}
.rv-price-save {
  background: var(--pos-soft);
  color: var(--pos);
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  flex: none;
}
.btn-primary:hover { background: var(--amber-deep); color: #fff; transform: translateY(-1px); }

.rv-prosncons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rv-pc {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
}
.rv-pc h4 {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.rv-pc-pros h4 { color: var(--pos); }
.rv-pc-cons h4 { color: var(--neg); }
.rv-pc ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.rv-pc ul li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--mahogany);
  line-height: 1.5;
  align-items: flex-start;
}
.rv-pc-pros li::before { content: "+"; font-family: var(--mono); font-weight: 700; color: var(--pos); flex: none; margin-top: 1px; }
.rv-pc-cons li::before { content: "−"; font-family: var(--mono); font-weight: 700; color: var(--neg); flex: none; margin-top: 1px; }

.rv-desc p { font-size: 15px; line-height: 1.7; color: var(--warm-brown); margin-bottom: 10px; }
.rv-desc p:last-child { margin-bottom: 0; }

.rv-specs {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.rv-spec {
  background: var(--warm-white);
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rv-spec dt { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-gray); }
.rv-spec dd { font-size: 13px; color: var(--espresso); font-weight: 500; }

.rv-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.rv-vat { font-size: 11.5px; color: var(--warm-gray-light); font-family: var(--mono); }
.rv-link { font-size: 13px; font-weight: 600; color: var(--amber-deep); display: flex; align-items: center; gap: 4px; transition: color 0.15s; }
.rv-link:hover { color: var(--sienna); }

@media (max-width: 880px) {
  .review-card,
  .review-card:nth-child(even) { grid-template-columns: 1fr; }
  .review-card:nth-child(even) .rv-image-col { order: 0; }
  .review-card:nth-child(even) .rv-content-col { order: 0; }
  .rv-image-col { min-height: 280px; }
  .rv-prosncons { grid-template-columns: 1fr; }
  .rv-price-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .rv-specs { grid-template-columns: 1fr; }
}

/* ============================================================
   Methodology — vertical timeline
   ============================================================ */
.methodology-section {
  background: var(--espresso);
  padding: clamp(48px,7vw,96px) var(--gap);
  position: relative;
  overflow: hidden;
}
.methodology-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(232,150,42,0.04));
  pointer-events: none;
}
.meth-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(48px,6vw,80px);
  align-items: start;
}
.meth-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.meth-eyebrow::before {
  content: "";
  display: inline-block;
  width: 16px; height: 1.5px;
  background: var(--amber);
}
.meth-title {
  font-family: var(--serif);
  font-size: clamp(28px,3.5vw,40px);
  font-weight: 500;
  color: #EEF3FF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.meth-sub {
  font-size: 15px;
  color: rgba(230,240,255,0.5);
  line-height: 1.65;
}
.meth-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.meth-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  position: relative;
}
.meth-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px; left: 27px;
  bottom: 0; width: 2px;
  background: rgba(255,255,255,0.06);
}
.ms-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.ms-circle {
  width: 44px; height: 44px;
  background: rgba(232,150,42,0.14);
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  flex: none;
}
.ms-content { padding: 0 0 40px; }
.ms-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 8px;
}
.ms-content h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: #EEF3FF;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ms-content p { font-size: 15px; color: rgba(230,240,255,0.55); line-height: 1.65; }

@media (max-width: 800px) {
  .meth-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Disclosure
   ============================================================ */
.disclosure {
  background: var(--ivory);
  border-top: 1px solid var(--border);
}
.disc-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px var(--gap);
}
.disc-tag {
  background: var(--amber-light);
  color: var(--sienna);
  font-family: var(--mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  font-weight: 600;
  flex: none;
  margin-top: 2px;
}
.disc-inner p {
  margin: 0 auto;
  padding: 18px clamp(18px,3vw,32px);
  background: var(--warm-white);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 26px rgba(10,24,48,0.08);
  color: var(--espresso);
  font-family: var(--mono);
  font-size: clamp(12px,1.5vw,14px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   Footer — three-row warm dark
   ============================================================ */
.site-footer { background: var(--espresso); }

.footer-brand-row {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 44px var(--gap) 32px;
}
.fbr-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fb-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--sienna) 100%);
  border-radius: 10px;
  position: relative;
  flex: none;
}
.fb-icon::before {
  content: "";
  position: absolute;
  inset: 8px 9px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 2px;
}
.fb-icon::after {
  content: "";
  position: absolute;
  bottom: 9px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}
.fb-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #EEF3FF;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(230,240,255,0.4);
  max-width: 38ch;
  line-height: 1.55;
}

.footer-links-row {
  padding: 36px var(--gap);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flr-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-col-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}
.footer-contact p {
  font-size: 14px;
  color: rgba(230,240,255,0.5);
  line-height: 1.75;
}
.footer-contact a { color: var(--amber-light); transition: color 0.15s; }
.footer-contact a:hover { color: var(--amber); }
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(230,240,255,0.5);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--amber-light); }
.footer-links a::before { content: "→"; font-size: 10px; color: var(--amber); opacity: 0.5; }

.footer-bottom {
  padding: 18px var(--gap);
}
.fbot-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.fbot-copy {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(230,240,255,0.28);
  letter-spacing: 0.04em;
}
.fbot-legal { font-size: 12px; color: rgba(230,240,255,0.22); }

@media (max-width: 768px) {
  .flr-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .flr-inner { grid-template-columns: 1fr; }
  .fbr-inner { flex-direction: column; align-items: flex-start; }
  .fbot-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Cookie Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px; right: 24px;
  max-width: 380px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 44px rgba(10,24,48,0.18);
  z-index: 999;
  padding: 20px 22px;
}
.cb-text strong { font-size: 15px; font-weight: 600; color: var(--espresso); display: block; margin-bottom: 8px; }
.cb-text p { font-size: 13px; color: var(--warm-gray); line-height: 1.5; margin-bottom: 16px; }
.cb-text p a { color: var(--amber-deep); text-decoration: underline; }
.cb-actions { display: flex; gap: 10px; }
.cb-btn { padding: 9px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.15s, color 0.15s; }
.cb-btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--warm-brown); }
.cb-btn-ghost:hover { background: var(--cream-deep); }
.cb-btn-solid { background: var(--amber); border: 1.5px solid var(--amber); color: #fff; flex: 1; }
.cb-btn-solid:hover { background: var(--amber-deep); border-color: var(--amber-deep); }

@media (max-width: 480px) {
  .cookie-banner { bottom: 16px; right: 16px; left: 16px; max-width: none; }
}

/* ============================================================
   Contact / inner pages
   ============================================================ */
.page-hero {
  background: linear-gradient(138deg, var(--espresso) 0%, var(--terracotta) 100%);
  padding: clamp(48px,7vw,80px) var(--gap);
  text-align: center;
}
.ph-inner { max-width: 640px; margin: 0 auto; }
.ph-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 14px;
}
.ph-title {
  font-family: var(--serif);
  font-size: clamp(28px,4vw,44px);
  font-weight: 500;
  color: #EEF3FF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ph-sub { font-size: 16px; color: rgba(230,240,255,0.6); }

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(40px,6vw,72px) var(--gap);
}
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.form-group label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-brown);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--espresso);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,150,42,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.form-submit:hover { background: var(--amber-deep); transform: translateY(-1px); }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.form-alert-success { background: var(--pos-soft); color: var(--pos); border: 1px solid #b8d8c0; }
.form-alert-error   { background: var(--neg-soft); color: var(--neg); border: 1px solid #d8b8b8; }

/* Prose pages (privacy, terms, cookies) */
.prose-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px,6vw,72px) var(--gap);
}
.prose-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(22px,2.5vw,28px);
  font-weight: 500;
  color: var(--espresso);
  margin: 36px 0 14px;
  letter-spacing: -0.015em;
}
.prose-wrap h2:first-child { margin-top: 0; }
.prose-wrap p { font-size: 16px; color: var(--mahogany); line-height: 1.75; margin-bottom: 16px; }
.prose-wrap a { color: var(--amber-deep); text-decoration: underline; }
.prose-wrap ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.prose-wrap ul li { font-size: 16px; color: var(--mahogany); line-height: 1.7; margin-bottom: 6px; }
