/* =========================================================
   B&O Review — Editorial Design System
   Built from scratch · Forest + Cream · Serif + Sans
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --ink:        #16221d;
  --ink-soft:   #2c3a33;
  --forest:     #1f3a32;
  --forest-2:   #2a5046;
  --moss:       #6f8a78;
  --cream:      #faf6ef;
  --cream-2:    #f3ecde;
  --paper:      #ffffff;
  --line:       #e3dccb;
  --line-soft:  #ece5d4;
  --muted:      #6e7a72;
  --gold:       #b8893d;
  --gold-soft:  #e9d6ad;
  --tomato:     #c0432f;
  --olive:      #4f6b34;

  /* Type */
  --serif: 'Fraunces', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(22,34,29,.06), 0 2px 8px rgba(22,34,29,.04);
  --shadow:    0 6px 24px -8px rgba(22,34,29,.18), 0 2px 6px rgba(22,34,29,.05);
  --shadow-lg: 0 24px 48px -22px rgba(22,34,29,.28), 0 6px 14px rgba(22,34,29,.06);
}

/* ---------- Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--forest-2); }
button { font-family: inherit; cursor: pointer; }
hr { border: 0; height: 1px; background: var(--line); margin: 32px 0; }

h1,h2,h3,h4,h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.container { width: 92%; max-width: var(--container); margin: 0 auto; }

/* ---------- Top Announcement ---------- */
.topbar {
  background: var(--forest);
  color: #ece4d1;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 0;
  text-align: center;
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar .topbar-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft); margin: 0 12px; vertical-align: middle; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250,246,239,.92);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 12px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink); font-family: var(--serif);
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-name .amp { color: var(--gold); font-style: italic; padding: 0 .05em; font-weight: 500; }
.brand-tag {
  margin-top: 5px;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Primary Nav ---------- */
.primary-nav {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--sans);
}
.primary-nav a {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: .005em;
  position: relative;
  transition: background .2s, color .2s;
}
.primary-nav a:hover { background: var(--cream-2); color: var(--forest); }
.primary-nav a.is-active { color: var(--forest); }
.primary-nav a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta {
  margin-left: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: #fff !important;
  padding: 11px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: .9rem !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--forest-2) !important; }
.nav-cta::before { content: "★"; color: var(--gold-soft); font-size: .85em; }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0; border-radius: 2px;
  transition: transform .2s;
}

@media (max-width: 880px) {
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 5%;
    gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: all .2s ease;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .primary-nav a { padding: 12px 16px; border-radius: 8px; }
  .nav-cta { margin: 6px 0 2px; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .site-header { position: relative; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  background-position: center right;
  opacity: 0.95;
}
.hero-bg-fade {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--cream) 0%, rgba(250,246,239,.97) 38%, rgba(250,246,239,.55) 60%, rgba(250,246,239,.15) 78%, rgba(250,246,239,0) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,34,29,.05) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--forest);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 4px;
  height: 10px;
  background: var(--gold-soft);
  z-index: -1; opacity: .55; border-radius: 2px;
}
.hero-lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--forest-2); transform: translateY(-1px); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-arrow::after { content: "→"; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* Editor's Verdict Card (replaces stats) */
.verdict-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 540px;
}
.verdict-card::before {
  content: "EDITOR'S NOTE";
  position: absolute;
  top: -12px; left: 28px;
  background: var(--cream);
  padding: 0 12px;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .25em;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  line-height: 24px;
}
.verdict-credentials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.credential { text-align: left; }
.credential-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}
.credential-label {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
}
.verdict-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.verdict-sig {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
  font-size: .85rem;
  color: var(--muted);
}
.verdict-sig-name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--forest);
  font-size: 1rem;
  font-weight: 500;
}

/* Hero visual: decorated logo */
.hero-visual {
  position: relative;
  display: grid; place-items: center;
  min-height: 460px;
}
.hero-emblem {
  position: relative;
  width: 380px; max-width: 100%;
  aspect-ratio: 1 / 1;
}
.hero-emblem-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(31,58,50,.18);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 60%);
}
.hero-emblem-ring.r2 { inset: 22px; border-style: dashed; opacity: .55; }
.hero-emblem-rotor {
  position: absolute; inset: -10px;
  animation: spin 60s linear infinite;
  pointer-events: none;
}
.hero-emblem-rotor svg { width: 100%; height: 100%; display: block; }
@keyframes spin { from {transform: rotate(0)} to {transform: rotate(360deg)} }
.hero-emblem-disk {
  position: absolute; inset: 56px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 30px 60px -20px rgba(22,34,29,.25), 0 0 0 1px var(--line);
  display: grid; place-items: center;
  padding: 32px;
}
.hero-emblem-disk img {
  width: 84%; height: auto; object-fit: contain;
}
.hero-emblem-stamp {
  position: absolute;
  top: 14px; right: 14px;
  width: 92px; height: 92px;
  background: var(--forest);
  color: var(--gold-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(8deg);
  z-index: 2;
}
.hero-emblem-stamp small {
  display: block;
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 6px;
  color: #fff;
  font-weight: 600;
}
.hero-emblem-tag {
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  z-index: 2;
}

@media (max-width: 980px) {
  .hero { padding: 50px 0 70px; }
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: 380px; }
  .hero-emblem { width: 320px; }
}

/* ---------- Disclosure bar (neutral) ---------- */
.disclosure-bar {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: .82rem;
  color: var(--ink-soft);
  text-align: center;
}
.disclosure-bar strong { color: var(--forest); margin-right: 6px; }

/* ---------- Section wrapper ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--paper); }
.section.tight { padding: 50px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-rule {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 22px auto 0;
}

/* ---------- Editor's Top Picks (Editorial layout) ---------- */
.top-picks {
  background: var(--paper);
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.picks-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.pick-hero {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.pick-hero:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pick-hero-img {
  background-size: cover; background-position: center;
  position: relative;
  min-height: 280px;
}
.pick-hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,58,50,0) 60%, rgba(31,58,50,.12) 100%);
}
.pick-hero-body {
  padding: 38px 34px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.pick-rank {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 14px;
}
.pick-rank::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.pick-superlative {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.pick-hero-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  color: var(--ink);
}
.pick-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.pick-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pick-rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.pick-rating .stars { color: var(--gold); }
.pick-brand {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.pick-link {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  color: var(--forest);
  font-weight: 600;
  font-family: var(--sans);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  font-size: .9rem;
  letter-spacing: .03em;
}
.pick-link::after { content: "→"; transition: transform .2s; }
.pick-hero:hover .pick-link::after { transform: translateX(4px); }

.picks-side { display: flex; flex-direction: column; gap: 24px; }
.pick-side {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  min-height: 220px;
  text-decoration: none;
}
.pick-side:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pick-side-img {
  background-size: cover; background-position: center;
  min-height: 200px;
}
.pick-side-body {
  padding: 22px 22px 22px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.pick-side-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 8px 0 10px;
}
.pick-side-body .pick-quote {
  font-size: .92rem;
  margin-bottom: 14px;
}

@media (max-width: 920px) {
  .picks-grid { grid-template-columns: 1fr; }
  .pick-hero { grid-template-columns: 1fr; min-height: 0; }
  .pick-hero-img { min-height: 280px; }
  .pick-side { grid-template-columns: 130px 1fr; }
  .pick-side-img { min-height: 0; }
}

/* ---------- Filter / Sort bar ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.filter-label {
  font-family: var(--sans);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--muted);
}
.filter-select {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 180px;
}
.filter-select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.filter-reset {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .85rem;
  transition: background .2s;
}
.filter-reset:hover { background: var(--cream-2); }
.filter-results {
  margin-left: auto;
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Product Grid (cards) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 1080px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 460px)  { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--moss); }

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .card-media img { transform: scale(1.04); }
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.card-rate {
  position: absolute; top: 12px; right: 12px;
  background: var(--forest);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .85rem;
  padding: 5px 11px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: var(--shadow-sm);
}
.card-rate .star { color: var(--gold-soft); }

.card-body { padding: 18px 20px 12px; flex: 1; display: flex; flex-direction: column; }
.card-cat {
  font-family: var(--sans);
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--ink);
}
.card-stars {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.card-stars .stars { color: var(--gold); letter-spacing: 1px; font-size: .9rem; }
.card-stars .num { color: var(--ink); font-weight: 600; }
.card-snippet {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  border-top: 1px dashed var(--line);
  padding: 14px 20px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.card-cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  color: var(--forest);
  letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 6px;
}
.card-cta::after { content: "→"; transition: transform .2s; }
.product-card:hover .card-cta::after { transform: translateX(3px); }

.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination button {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 9px 14px;
  min-width: 40px;
  border-radius: 8px;
  transition: background .2s, color .2s, border-color .2s;
}
.pagination button:hover { background: var(--cream-2); }
.pagination button.is-active {
  background: var(--forest); color: #fff; border-color: var(--forest);
}
.pagination button[disabled] { opacity: .4; cursor: not-allowed; }

/* ---------- Brand cloud ---------- */
.brand-cloud-section { background: var(--cream-2); padding: 60px 0; }
.brand-cloud-label {
  text-align: center;
  font-family: var(--sans);
  font-size: .72rem; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.brand-cloud-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-cloud {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 1000px; margin: 0 auto;
}
.brand-pill {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-transform: none;
  letter-spacing: 0;
}
.brand-pill:hover { background: var(--forest); color: #fff; border-color: var(--forest); transform: translateY(-1px); }
.brand-pill.active { background: var(--forest); color: #fff; border-color: var(--forest); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--forest);
  color: #fff;
  padding: 48px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.trust-item { text-align: center; }
.trust-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  color: var(--gold-soft);
  font-size: 1.4rem;
}
.trust-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cdd5d0;
  padding: 70px 0 36px;
  font-family: var(--sans);
  font-size: .92rem;
}
.site-footer a { color: #cdd5d0; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .footer-brand { grid-column: 1 / -1; } }
.footer-brand .brand-name { color: #fff; font-size: 1.4rem; }
.footer-brand .brand-tag { color: rgba(255,255,255,.55); }
.footer-brand p {
  color: #b6c2bc;
  margin: 18px 0 14px;
  max-width: 380px;
  line-height: 1.65;
}
.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom .meta-links a { margin-left: 18px; }
.footer-mark {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-mark .brand-mark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }

/* ---------- Cookie banner ---------- */
#cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  padding: 18px 22px;
  display: none;
  max-width: 720px; margin: 0 auto;
}
#cookie-banner.is-visible { display: block; animation: slideUp .3s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-inner {
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-text {
  margin: 0; font-size: .9rem; color: var(--ink-soft); flex: 1; min-width: 240px;
}
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
  border: none; padding: 9px 16px; border-radius: 8px;
  font-weight: 600; font-size: .85rem; font-family: var(--sans);
}
.cookie-accept { background: var(--forest); color: #fff; }
.cookie-accept:hover { background: var(--forest-2); }
.cookie-decline { background: var(--cream-2); color: var(--ink); }
.cookie-decline:hover { background: var(--line); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: var(--cream-2);
  padding: 30px 0 18px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* ---------- Product Page ---------- */
.product-page { padding: 40px 0 80px; }
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .product-layout { grid-template-columns: 1fr; gap: 36px; } }

.gallery {
  position: sticky; top: 100px;
}
@media (max-width: 980px) { .gallery { position: static; } }
.gallery-main {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-main img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 14px;
}
.gallery-thumb {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  transition: border-color .2s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { border-color: var(--forest); box-shadow: 0 0 0 2px var(--gold-soft); }

.product-aside { display: flex; flex-direction: column; gap: 26px; }

.p-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.p-eyebrow .p-brand-name { color: var(--gold); margin-left: 4px; }
.p-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 10px 0 16px;
  color: var(--ink);
}
.p-rating-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.p-rating {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--sans);
}
.p-rating .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 1px; }
.p-rating .score-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.p-rating .out-of { color: var(--muted); font-size: .9rem; }
.p-reviews-link {
  font-size: .82rem;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.p-reviews-link a { color: var(--forest); border-bottom: 1px solid var(--forest); }

.score-meter {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.score-meter-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: .76rem; font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .14em;
}
.score-meter-top span:last-child { color: var(--forest); font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0; text-transform: none; font-weight: 600; }
.score-meter-track {
  height: 7px; background: var(--paper);
  border-radius: 999px; overflow: hidden;
  border: 1px solid var(--line);
}
.score-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--forest) 100%);
  border-radius: 999px;
}

.verdict-block {
  background: var(--cream-2);
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  border-radius: 8px;
}
.verdict-block-label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.verdict-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.cta-rail {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.cta-rail-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.cta-rail-best {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.cta-rail-store {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--forest);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  border: none;
  box-shadow: var(--shadow);
  transition: background .2s, transform .15s;
  text-align: center;
  text-decoration: none;
}
.btn-buy:hover { background: var(--forest-2); color: #fff; transform: translateY(-1px); }
.btn-buy.alt {
  background: var(--paper); color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-buy.alt:hover { background: var(--cream-2); color: var(--forest); }
.cta-secondary {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  padding: 8px 0;
}
.cta-secondary a { color: var(--forest); border-bottom: 1px solid var(--gold); }
.cta-disclosure {
  font-size: .75rem;
  color: var(--muted);
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.5;
}

.facts {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.facts-head {
  background: var(--cream-2);
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.facts ul { list-style: none; padding: 16px 22px; margin: 0; }
.facts li {
  display: flex; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.facts li:last-child { border-bottom: none; }
.facts li::before {
  content: "■";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  font-size: .55rem;
  line-height: 1.6;
}

/* Pros / Cons */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 50px 0;
}
@media (max-width: 720px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.pc-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.pc-head .pc-icon {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9rem;
}
.pros-box .pc-icon { background: rgba(79,107,52,.15); color: var(--olive); }
.cons-box .pc-icon { background: rgba(192,67,47,.12); color: var(--tomato); }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li, .cons-box li {
  position: relative; padding-left: 24px; margin-bottom: 12px;
  font-size: .94rem; color: var(--ink-soft); line-height: 1.55;
}
.pros-box li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--olive); font-weight: 700;
}
.cons-box li::before {
  content: "✕"; position: absolute; left: 0; top: 0;
  color: var(--tomato); font-weight: 700;
}

/* Buy strip (full-width inside layout) */
.buy-strip {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin: 30px 0 50px;
}
.buy-strip-text {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.4;
  max-width: 540px;
}
.buy-strip .btn { background: var(--gold); color: var(--ink); border: none; }
.buy-strip .btn:hover { background: var(--gold-soft); color: var(--ink); }

/* Full review prose */
.product-prose {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin: 30px 0;
}
.product-prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.product-prose p {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.product-prose p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 3.4rem;
  line-height: .9;
  font-weight: 600;
  margin: 4px 10px 0 0;
  color: var(--forest);
}

/* Reviews */
.reviews-section { margin-top: 40px; }
.reviews-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.reviews-sub {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: .95rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  position: relative;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 8px; right: 18px;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-soft);
}
.review-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream-2);
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 600;
  display: grid; place-items: center;
  font-size: .9rem;
}
.reviewer-name {
  font-weight: 600; font-size: .95rem; color: var(--ink);
}
.review-date {
  font-size: .78rem; color: var(--muted);
}
.review-stars {
  color: var(--gold); margin-bottom: 8px; letter-spacing: 1px;
}
.review-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.review-text {
  font-size: .92rem; color: var(--ink-soft); line-height: 1.6;
}

/* Related products */
.related-section { padding: 70px 0; background: var(--cream-2); }
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.related-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--cream);
}
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 16px 18px 18px; }
.related-brand {
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin-bottom: 6px;
}
.related-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.related-stars {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.related-stars .num { color: var(--ink); margin-left: 4px; }
.related-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem;
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.related-link::after { content: "→"; transition: transform .2s; }
.related-card:hover .related-link::after { transform: translateX(3px); }

/* Static page (about/privacy/terms/cookies) */
.legal-page { padding: 60px 0 80px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.legal-meta {
  font-size: .85rem; color: var(--muted); margin-bottom: 30px;
  padding-bottom: 30px; border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  margin: 36px 0 14px;
}
.legal-page h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  margin: 26px 0 10px;
}
.legal-page p, .legal-page li {
  color: var(--ink-soft); line-height: 1.78; font-size: 1rem;
}
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 8px; }

/* About page extras */
.about-team {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin: 30px 0;
}
@media (max-width: 760px) { .about-team { grid-template-columns: 1fr; } }
.team-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
}
.team-name { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.team-bio { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

/* Ad placements (kept compatible) */
.ad-placement { padding: 30px 0; background: var(--cream-2); }
.ad-placement-inner {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.ad-unit {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  min-width: 300px;
}

/* Utility */
.center { text-align: center; }
.muted { color: var(--muted); }
.is-hidden { display: none !important; }
