@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Instrument+Sans:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

/* Gear Reviews - compact editorial theme inspired by the supplied reference. */
:root {
  --paper: #f5f1e8;
  --paper-deep: #ebe4d5;
  --paper-light: #fbf9f3;
  --ink: #171b18;
  --muted: #60645f;
  --forest: #14271b;
  --forest-2: #1e3626;
  --deep: #091710;
  --brass: #a79d4f;
  --brass-soft: #d8d19a;
  --line: #cbc4b6;
  --white: #fffdf7;
  --danger: #8d3e31;
  --display: "Barlow Condensed", "PT Sans Narrow", Impact, "Arial Narrow", sans-serif;
  --mono: "Instrument Sans", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --editorial: "Newsreader", Georgia, "Times New Roman", serif;
  --site: min(1440px, calc(100% - clamp(48px, 7.42vw, 108px)));
  --reading: min(820px, calc(100% - 48px));
  --shadow: 0 18px 46px rgba(20, 31, 23, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: url('../images/paper-noise.png');
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--brass-soft); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }

.sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 9px 13px;
  background: var(--ink);
  color: #fff;
  font: 600 0.802rem var(--mono);
}
.skip:focus { transform: none; }
.site-width { width: var(--site); margin-inline: auto; }
.section { padding: 58px 0; }
.section.alt { background: rgba(235, 228, 213, 0.72); }
.section.dark { background: var(--deep); color: #fff; }
.eyebrow {
  margin: 0 0 10px;
  font: 600 0.802rem/1.2 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}
p { margin-top: 0; }
.display { text-transform: uppercase; letter-spacing: -0.035em; }
.line {
  width: 54px;
  height: 2px;
  border: 0;
  margin: 16px 0 16px;
  background: var(--forest);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}
.section-head h2 {
  font-size: clamp(2.25rem, 3.6vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.section-head p { max-width: 58ch; margin: 0; color: var(--muted); }

.btn, .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font: 600 0.791rem/1 var(--mono);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn {
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid transparent;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--forest-2); }
.btn::after, .arrow::after { content: "→"; font-size: 1.25em; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.arrow { padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.arrow::after { transition: transform 0.18s ease; }
.arrow:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: 98px;
  background: rgba(245, 241, 232, 0.97);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  position: sticky;
  top: 0;
  height: 78px;
  border-color: var(--line);
  box-shadow: 0 5px 22px rgba(15, 28, 20, 0.08);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: var(--site);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 210px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}
.brand img { width: 29px; height: 42px; }
.brand span {
  font: 700 1rem/1.04 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav { justify-self: center; }
.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 43px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: 600 0.802rem/1 var(--mono);
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--forest);
  transition: right 0.18s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav-chevron {
  width: 8px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { min-height: 37px; padding-inline: 16px; }
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.icon-btn svg { width: 20px; }
.menu-btn { display: none; }

/* Search dialog */
.search-dialog {
  width: min(660px, calc(100% - 30px));
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.search-dialog::backdrop { background: rgba(8, 16, 11, 0.76); backdrop-filter: blur(4px); }
.search-inner { padding: 28px; }
.search-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.search-top h2 { font-size: 2.4rem; text-transform: uppercase; }
.search-form { display: grid; grid-template-columns: 1fr auto; }
.search-form input {
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid var(--ink);
  border-right: 0;
  background: #fff;
}
.quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.quick a { padding: 7px 9px; border: 1px solid var(--line); font: 0.779rem var(--mono); text-decoration: none; }

/* Home hero */
.hero { overflow: hidden; }
.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: clamp(500px, 48.8vw, 690px) 1fr;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 24px max(38px, calc((100vw - 1440px) / 2));
}
.hero h1 {
  width: 520px;
  max-width: none;
  font-size: clamp(4.55rem, 7.2vw, 7.35rem);
  font-weight: 900;
  line-height: 0.91;
}
.hero-deck {
  max-width: 39ch;
  margin: 0;
  font: 400 0.968rem/1.65 var(--mono);
}
.hero-actions { display: flex; align-items: center; gap: 36px; margin-top: 21px; }
.hero-media { position: relative; min-height: 520px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 59% center; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(245, 241, 232, 0.95) 8%, rgba(245, 241, 232, 0.62) 19%, transparent 36%),
    linear-gradient(0deg, rgba(8, 19, 12, 0.16), transparent 40%);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 465px;
  margin-top: 31px;
}
.stat { display: grid; grid-template-columns: 30px 1fr; gap: 8px; align-items: center; min-width: 0; }
.stat svg { width: 30px; fill: none; stroke: var(--forest); stroke-width: 1.65; }
.stat strong { display: block; font: 600 1.18rem/1 var(--display); white-space: nowrap; }
.stat small { display: block; margin-top: 3px; font: 600 0.58rem/1.25 var(--mono); text-transform: uppercase; }

/* Category band */
.category-band {
  position: relative;
  height: 140px;
  padding: 22px 0 16px;
  background: var(--forest) url('../images/topography.svg');
  color: #fff;
}
.category-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 15px;
  background: var(--forest);
  clip-path: polygon(0 48%, 5% 31%, 11% 55%, 18% 40%, 24% 56%, 31% 39%, 39% 55%, 46% 41%, 53% 57%, 61% 38%, 69% 55%, 77% 39%, 84% 57%, 92% 38%, 100% 50%, 100% 100%, 0 100%);
}
.category-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.category-head h2 { font-size: 1.02rem; font-weight: 600; letter-spacing: 0.035em; text-transform: uppercase; }
.category-head .arrow { border: 0; padding: 0; }
.category-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); }
.category-link {
  min-height: 82px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.19);
  color: #fff;
  text-decoration: none;
}
.category-link:last-child { border-right: 1px solid rgba(255, 255, 255, 0.19); }
.category-link:hover { background: rgba(255, 255, 255, 0.055); color: var(--brass-soft); }
.category-link svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--brass-soft);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.category-link span { font: 600 0.708rem/1.1 var(--mono); text-transform: uppercase; text-align: center; }

/* Home latest area */
.home-latest { padding: 25px 0 18px; }
.home-latest .section-head { margin-bottom: 13px; }
.home-latest .section-head h2 { font-size: 1.12rem; font-weight: 600; letter-spacing: 0.045em; }
.latest-layout { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr); gap: 30px; }
.latest-list { border-top: 0; }
.latest-item {
  display: grid;
  grid-template-columns: 49% 1fr;
  gap: 22px;
  min-height: 115px;
  padding: 0 0 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--line);
}
.latest-img { position: relative; height: 112px; overflow: hidden; background: var(--paper-deep); }
.latest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.latest-item:hover img { transform: scale(1.025); }
.badge {
  display: inline-flex;
  padding: 5px 8px;
  background: var(--brass-soft);
  color: var(--ink);
  font: 600 0.614rem/1 var(--mono);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.latest-img .badge, .card-media .badge { position: absolute; left: 10px; top: 10px; }
.latest-body { padding-top: 1px; }
.latest-body h3 { font-size: 1.45rem; font-weight: 600; line-height: 1.02; }
.latest-body h3 a { text-decoration: none; }
.latest-body p { max-width: 37ch; margin: 7px 0 10px; font: 400 0.732rem/1.55 var(--mono); }
.rating { display: flex; align-items: center; gap: 7px; font: 500 0.708rem/1 var(--mono); }
.stars { color: #999139; letter-spacing: 0.06em; }
.byline { font: 600 0.625rem/1 var(--mono); letter-spacing: 0.03em; text-transform: uppercase; }
.latest-layout > div > p { margin: 8px 0 0; }
.feature-stack { display: grid; align-content: stretch; }
.guide-feature { height: 472px; display: grid; grid-template-columns: 61% 39%; overflow: hidden; background: var(--ink); color: #fff; }
.guide-copy { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.guide-copy h3 { margin: 4px 0 11px; font-size: 2.05rem; font-weight: 700; text-transform: uppercase; }
.guide-copy p { margin: 0 0 15px; font: 400 0.732rem/1.55 var(--mono); }
.guide-copy .arrow { width: max-content; }
.guide-photo { position: relative; }
.guide-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--ink), transparent 46%); }
.guide-photo img { width: 100%; height: 100%; object-fit: cover; }


/* Newsletter */
.newsletter-section { padding: 6px 0 10px; }
.newsletter {
  min-height: 82px;
  display: grid;
  grid-template-columns: 120px 1fr 1.35fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(23, 27, 24, 0.25);
  padding: 10px 20px;
}
.seal {
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px dashed var(--brass);
  border-radius: 50%;
  font: 600 0.58rem/1.35 var(--mono);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
}
.newsletter h2 { font-size: 1.48rem; font-weight: 600; text-transform: uppercase; }
.newsletter p { margin: 5px 0 0; font: 400 0.708rem/1.55 var(--mono); }
.newsletter-form { position: relative; display: grid; grid-template-columns: 1fr auto; }
.newsletter-form input { min-width: 0; padding: 11px 14px; border: 1px solid var(--line); border-right: 0; background: #fff; }
.newsletter-form .btn { min-width: 170px; }
.form-status { position: absolute; left: 0; top: calc(100% + 6px); margin: 0; color: var(--forest); font-size: 0.661rem; }

/* Shared page hero */
.page-hero { overflow: hidden; border-top: 1px solid rgba(0, 0, 0, 0.03); }
.page-hero-grid { min-height: 360px; display: grid; grid-template-columns: 45% 55%; }
.page-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px 38px max(38px, calc((100vw - 1440px) / 2));
}
.page-copy h1 { font-size: clamp(4.1rem, 6.4vw, 6.6rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.035em; }
.page-copy > p:last-child { max-width: 43ch; margin: 18px 0 0; font-size: 0.885rem; }
.page-media { position: relative; min-height: 360px; }
.page-media img { width: 100%; height: 100%; object-fit: cover; }
.page-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper), transparent 34%); }

/* Review archive and cards */
.filters { margin-bottom: 24px; padding: 18px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.22); }
.filter-top { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.search-box { min-width: 0; display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 9px; padding: 0 12px; border: 1px solid rgba(0, 0, 0, 0.24); background: #fff; }
.search-box svg { width: 18px; }
.search-box input { width: 100%; min-width: 0; padding: 11px 0; border: 0; outline: 0; background: transparent; }
.sort { display: flex; align-items: center; gap: 9px; font: 600 0.72rem var(--mono); text-transform: uppercase; }
.sort select { min-width: 145px; padding: 10px 32px 10px 10px; border: 1px solid rgba(0, 0, 0, 0.24); background: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.chip {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: transparent;
  font: 600 0.649rem/1 var(--mono);
  text-transform: uppercase;
  cursor: pointer;
}
.chip:hover, .chip.active { border-color: var(--forest); background: var(--forest); color: #fff; }
.filter-meta { display: flex; justify-content: space-between; gap: 18px; margin-top: 12px; font-size: 0.708rem; }
.reset { border: 0; border-bottom: 1px solid currentColor; padding: 0; background: transparent; font: 600 0.684rem var(--mono); text-transform: uppercase; cursor: pointer; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.17);
  background: rgba(255, 255, 255, 0.27);
}
.review-card[hidden] { display: none; }
.card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--forest); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.28s ease; }
.review-card:hover .card-media img { transform: scale(1.025); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.cat { margin: 0 0 7px; color: var(--muted); font: 500 0.637rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.card-body h2, .card-body h3 { font-size: 1.65rem; font-weight: 600; line-height: 0.96; }
.card-body h2 a, .card-body h3 a { text-decoration: none; }
.card-body > p:not(.cat) { margin: 9px 0 12px; font: 400 0.72rem/1.5 var(--mono); }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 11px; border-top: 1px solid var(--line); font: 500 0.614rem/1 var(--mono); text-transform: uppercase; }
.card-foot .arrow { font-size: 0.614rem; }
.empty { display: none; padding: 50px; text-align: center; }
.empty.show { display: block; }
.empty h2 { font-size: 2.8rem; text-transform: uppercase; }

/* Guide archive */
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.guide-card { overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.18); background: rgba(255, 255, 255, 0.26); }
.guide-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.guide-card-body { padding: 18px; }
.guide-card h2, .guide-card h3 { font-size: 1.8rem; font-weight: 600; text-transform: uppercase; }
.guide-card p { margin: 10px 0 14px; font-size: 0.755rem; }

/* Review article */
.progress { position: fixed; z-index: 500; top: 0; left: 0; width: 0; height: 3px; background: var(--brass); }
.article-hero { background: var(--deep); color: #fff; overflow: hidden; }
.article-hero-grid { min-height: 420px; display: grid; grid-template-columns: 49% 51%; }
.article-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 42px 42px max(38px, calc((100vw - 1440px) / 2));
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; padding: 0; list-style: none; font: 500 0.625rem var(--mono); text-transform: uppercase; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--brass-soft); }
.article-copy .badge { width: max-content; }
.article-copy h1 { max-width: 10ch; margin: 12px 0 12px; font-size: clamp(3.9rem, 6vw, 6.2rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.035em; }
.article-deck { max-width: 49ch; margin: 0 0 18px; font-size: 0.826rem; }
.meta { display: flex; flex-wrap: wrap; gap: 11px 18px; color: rgba(255, 255, 255, 0.82); font: 500 0.637rem var(--mono); text-transform: uppercase; }
.article-media { min-height: 420px; }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { width: var(--site); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 38px; padding: 52px 0 62px; }
.article-main { max-width: 760px; font-size: 0.92rem; }
.article-main > p:first-child { font-size: 0.968rem; }
.article-main h2 { scroll-margin-top: 100px; margin: 39px 0 12px; font-size: 2.35rem; font-weight: 600; text-transform: uppercase; }
.article-main figure { margin: 28px 0; }
.article-main figure img { width: 100%; max-height: 420px; object-fit: cover; }
.article-main figcaption { margin-top: 7px; color: var(--muted); font-size: 0.625rem; }
.article-main blockquote { margin: 25px 0; padding: 15px 18px; border-left: 3px solid var(--brass); background: var(--paper-deep); font-size: 0.802rem; }
.article-side { min-width: 0; }
.sidebar-sticky { position: sticky; top: 98px; display: grid; gap: 12px; }
.side-card { padding: 18px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.26); }
.side-card h2 { margin-bottom: 11px; font-size: 1.45rem; font-weight: 600; text-transform: uppercase; }
.score-big { display: flex; align-items: flex-end; gap: 5px; margin-bottom: 10px; }
.score-big strong { font: 700 3.7rem/0.82 var(--display); }
.side-card p, .toc a { font: 400 0.696rem/1.55 var(--mono); }
.toc ol { margin: 0; padding: 0; list-style: none; }
.toc li + li { border-top: 1px solid var(--line); }
.toc a { display: block; padding: 7px 0; text-decoration: none; }
.tools { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.tools button { padding: 8px; border: 1px solid rgba(0, 0, 0, 0.23); background: transparent; font: 600 0.661rem var(--mono); text-transform: uppercase; cursor: pointer; }
.tools button:hover { background: var(--forest); color: #fff; }
.template-note { margin: 0; padding: 12px 18px; background: var(--brass-soft); border-bottom: 1px solid rgba(0, 0, 0, 0.18); font: 500 0.755rem var(--mono); text-align: center; }
.quick-verdict { margin: 27px 0; padding: 21px; background: var(--forest); color: #fff; }
.quick-verdict h3 { font-size: 1.9rem; font-weight: 600; text-transform: uppercase; }
.quick-verdict p { margin: 7px 0 0; font-size: 0.779rem; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 27px 0; }
.pc { padding: 19px; border: 1px solid rgba(0, 0, 0, 0.23); }
.pc.good { border-top: 4px solid var(--forest-2); }
.pc.bad { border-top: 4px solid var(--danger); }
.pc h3 { font-size: 1.55rem; font-weight: 600; text-transform: uppercase; }
.specs { width: 100%; margin: 22px 0; border-collapse: collapse; }
.specs th, .specs td { padding: 11px 9px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font: 400 0.732rem var(--mono); }
.specs th { width: 34%; font-weight: 600; text-transform: uppercase; }
.notice { padding: 14px 16px; border-left: 3px solid var(--brass); background: var(--paper-deep); font-size: 0.732rem; }
.score-list { display: grid; gap: 11px; margin: 22px 0; }
.score-row { display: grid; grid-template-columns: 130px 1fr 34px; gap: 11px; align-items: center; }
.score-row span { font: 500 0.708rem var(--mono); text-transform: uppercase; }
.score-track { height: 7px; background: var(--line); }
.score-fill { width: var(--score); height: 100%; background: var(--forest); }
.related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

/* About page */
.about-hero { position: relative; min-height: 470px; overflow: hidden; }
.about-hero-grid { min-height: 470px; display: grid; grid-template-columns: 48% 52%; }
.about-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 36px 46px max(38px, calc((100vw - 1440px) / 2));
}
.about-hero-copy h1 { width: 9.5ch; font-size: clamp(4.6rem, 7.1vw, 7.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; }
.about-hero-copy > p:last-of-type { max-width: 43ch; margin: 18px 0 0; font-size: 0.85rem; }
.about-hero-actions { display: flex; gap: 30px; margin-top: 22px; }
.about-hero-media { position: relative; min-height: 470px; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.about-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper) 0%, rgba(245, 241, 232, 0.82) 12%, transparent 38%); }
.manifesto-band { position: relative; background: var(--forest) url('../images/topography.svg'); color: #fff; }
.manifesto-band::before { content: ""; position: absolute; left: 0; right: 0; top: -11px; height: 12px; background: var(--forest); clip-path: polygon(0 55%, 7% 32%, 14% 55%, 22% 38%, 31% 58%, 40% 35%, 50% 54%, 60% 36%, 70% 58%, 80% 37%, 90% 56%, 100% 42%, 100% 100%, 0 100%); }
.manifesto-grid { min-height: 126px; display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); align-items: stretch; }
.manifesto-lead { display: flex; align-items: center; padding-right: 36px; }
.manifesto-lead h2 { font-size: 2rem; font-weight: 600; text-transform: uppercase; }
.manifesto-point { display: flex; flex-direction: column; justify-content: center; padding: 22px 24px; border-left: 1px solid rgba(255, 255, 255, 0.17); }
.manifesto-point strong { color: var(--brass-soft); font: 700 2.2rem/1 var(--display); }
.manifesto-point span { margin-top: 7px; font: 500 0.661rem/1.4 var(--mono); text-transform: uppercase; }
.about-story { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.about-story-media { position: relative; min-height: 410px; }
.about-story-media img { width: 100%; height: 100%; object-fit: cover; }
.about-story-media::after { content: "FIELD NOTES / 01"; position: absolute; right: -14px; bottom: 24px; padding: 8px 10px; background: var(--brass-soft); font: 600 0.614rem var(--mono); letter-spacing: 0.06em; }
.about-story-copy h2 { margin-bottom: 19px; font-size: clamp(3.5rem, 5vw, 5.2rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.035em; }
.about-story-copy p { max-width: 54ch; font-size: 0.85rem; }
.about-quote { margin: 24px 0 0; padding: 18px 0 0; border-top: 2px solid var(--forest); font: 600 1.35rem/1.15 var(--display); text-transform: uppercase; }
.about-principles { padding: 50px 0 54px; background: rgba(235, 228, 213, 0.73); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle { position: relative; min-height: 220px; padding: 25px 22px 22px; border-top: 3px solid var(--forest); background: rgba(255, 255, 255, 0.28); }
.principle b { color: var(--brass); font: 600 0.802rem var(--mono); }
.principle h3 { margin: 34px 0 11px; font-size: 2rem; font-weight: 600; text-transform: uppercase; }
.principle p { margin: 0; font-size: 0.767rem; }
.testing-band { background: var(--deep); color: #fff; }
.testing-wrap { padding: 52px 0 56px; }
.testing-head { display: grid; grid-template-columns: 1fr 0.8fr; gap: 40px; align-items: end; margin-bottom: 28px; }
.testing-head h2 { font-size: clamp(3.4rem, 5vw, 5rem); font-weight: 800; text-transform: uppercase; }
.testing-head p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.802rem; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255, 255, 255, 0.22); }
.step { min-height: 205px; padding: 23px; border-right: 1px solid rgba(255, 255, 255, 0.22); }
.step:last-child { border-right: 0; }
.step strong { display: block; margin-bottom: 30px; color: var(--brass-soft); font: 600 2.9rem/1 var(--display); }
.step h3 { font-size: 1.65rem; font-weight: 600; text-transform: uppercase; }
.step p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.75); font-size: 0.708rem; }
.independence { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 46px; align-items: center; }
.independence h2 { font-size: clamp(3.3rem, 5vw, 5.1rem); font-weight: 800; text-transform: uppercase; }
.independence-copy p { font-size: 0.826rem; }
.independence-card { padding: 28px; border: 1px solid var(--line); background: var(--brass-soft) url('../images/topography.svg'); }
.independence-card p { margin: 0; font: 600 1.6rem/1.15 var(--display); text-transform: uppercase; }
.independence-card .arrow { margin-top: 22px; }
.team-section { padding-top: 8px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team { min-height: 215px; padding: 22px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.28); }
.avatar { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 50%; background: var(--forest); color: #fff; font: 600 1.45rem var(--display); }
.team h3 { font-size: 1.7rem; font-weight: 600; }
.role { margin: 7px 0 10px; color: var(--brass); font: 600 0.637rem var(--mono) !important; text-transform: uppercase; }
.team p { font-size: 0.72rem; }

/* Legacy split/value classes retained for other generated pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split-media { min-height: 420px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin-bottom: 18px; font-size: clamp(3rem, 4.8vw, 4.8rem); text-transform: uppercase; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { padding: 22px 0; border-top: 3px solid var(--forest); }
.value b { color: var(--brass); font-family: var(--mono); }
.value h3 { margin: 17px 0 9px; font-size: 1.8rem; text-transform: uppercase; }
.value p { font-size: 0.767rem; }

/* Policies and contact */
.policy { width: var(--reading); margin-inline: auto; padding: 58px 0 82px; }
.policy h1 { font-size: clamp(4rem, 7.5vw, 6.5rem); font-weight: 800; text-transform: uppercase; }
.effective { margin: 14px 0 34px; color: var(--muted); font-size: 0.767rem; }
.policy h2 { scroll-margin-top: 100px; margin: 38px 0 11px; font-size: 2.15rem; font-weight: 600; text-transform: uppercase; }
.policy nav { margin: 25px 0 34px; padding: 18px; border: 1px solid var(--line); }
.policy nav ol { columns: 2; margin: 0; padding-left: 20px; }
.policy nav a { font-size: 0.732rem; }
.policy p, .policy li { font-size: 0.85rem; }
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; padding: 34px; border: 1px solid var(--line); }
.contact h2 { font-size: 3.2rem; font-weight: 700; text-transform: uppercase; }
.contact-form { display: grid; gap: 13px; }
.field { display: grid; gap: 5px; }
.field label { font: 600 0.684rem var(--mono); text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 13px; border: 1px solid rgba(0, 0, 0, 0.24); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 18px 0 10px;
  background: var(--deep);
  color: #fff;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  opacity: 0.2;
  background: linear-gradient(135deg, transparent 25%, var(--forest-2) 25% 27%, transparent 27%) 0 0 / 76px 76px;
}
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 38px; }
.footer-brand .brand img { filter: brightness(0) invert(1); }
.footer-brand p { max-width: none; margin: 8px 0; font: 400 0.637rem/1.4 var(--mono); }
.footer-title { margin: 0 0 9px; font: 600 0.684rem var(--mono); text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 5px; }
.footer-links a { color: rgba(255, 255, 255, 0.85); font: 400 0.673rem var(--mono); text-decoration: none; }
.footer-links a:hover { color: var(--brass-soft); text-decoration: underline; }
.social { display: flex; gap: 7px; }
.social a { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.3); text-decoration: none; }
.social svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; margin-top: 12px; padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, 0.15); font: 400 0.59rem var(--mono); }
.footer-bottom p { margin: 0; }

.error { min-height: 68vh; display: grid; place-items: center; text-align: center; }
.error strong { display: block; color: var(--brass); font: clamp(8rem, 24vw, 17rem)/0.75 var(--display); }
.error h1 { margin: 21px 0 13px; font-size: 3.3rem; text-transform: uppercase; }
.error p { max-width: 50ch; margin: 0 auto 24px; }

/* Laptop / narrow desktop: keep the supplied desktop composition intact at 1024px. */
@media (max-width: 1120px) {
  :root { --site: calc(100% - 76px); }
  .header-inner { grid-template-columns: 190px minmax(260px, 1fr) auto; gap: 10px; }
  .nav ul { gap: 28px; }
  .header-actions { gap: 5px; }
  .header-actions .btn { padding-inline: 13px; }
  .hero-grid { grid-template-columns: 500px 1fr; }
  .hero h1 { font-size: 5.25rem; }
  .latest-layout { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 28px; }
  .latest-item { gap: 20px; }
  .guide-copy { padding: 21px; }
  .guide-copy h3 { font-size: 1.85rem; }
  .newsletter { grid-template-columns: 112px 1fr 1.35fr; gap: 20px; padding-inline: 18px; }
  .newsletter-form .btn { min-width: 150px; }
  .footer-grid { gap: 27px; }
}

@media (max-width: 900px) {
  :root { --site: calc(100% - 40px); }
  .site-header { height: 78px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav {
    position: fixed;
    inset: 78px 0 0;
    z-index: 150;
    display: none;
    justify-self: stretch;
    padding: 28px 24px;
    background: var(--deep);
    color: #fff;
    overflow: auto;
  }
  .nav-open .nav { display: block; }
  .nav ul { display: grid; gap: 0; }
  .nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.17); }
  .nav a { display: flex; justify-content: space-between; padding: 17px 4px; font-size: 1.003rem; }
  .nav a::after { display: none; }
  .header-actions .btn { display: none; }
  .menu-btn { display: grid; }
  .hero-grid { min-height: 500px; grid-template-columns: 46% 54%; }
  .hero-copy { padding-left: 20px; }
  .hero h1 { width: 470px; font-size: 4.2rem; }
  .stats { width: 420px; gap: 9px; }
  .stat { grid-template-columns: 27px 1fr; gap: 6px; }
  .stat svg { width: 27px; }
  .category-band { height: auto; min-height: 140px; }
  .latest-layout { grid-template-columns: 1fr; }
  .feature-stack { grid-template-columns: 1fr; }
  .guide-feature { height: 360px; min-height: 360px; }
  .newsletter { grid-template-columns: 84px 1fr; }
  .newsletter-form { grid-column: 1 / -1; }
  .page-hero-grid, .article-hero-grid, .about-hero-grid { grid-template-columns: 1fr 1fr; }
  .page-copy, .article-copy, .about-hero-copy { padding-left: 20px; }
  .review-grid, .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 230px; gap: 27px; }
  .about-story, .independence { gap: 32px; }
  .manifesto-grid { grid-template-columns: 1fr repeat(3, 0.8fr); }
  .manifesto-point { padding-inline: 16px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --site: calc(100% - 28px); --reading: calc(100% - 28px); }
  body { font-size: 16px; }
  .section { padding: 46px 0; }
  .brand span { font-size: 0.968rem; letter-spacing: 0.17em; }
  .brand img { width: 26px; }
  .header-actions { gap: 0; }
  .hero-grid, .page-hero-grid, .article-hero-grid, .about-hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .page-copy, .article-copy, .about-hero-copy { width: var(--site); margin-inline: auto; padding: 42px 0 38px; }
  .hero h1, .about-hero-copy h1 { width: auto; font-size: clamp(3.8rem, 17vw, 5.5rem); }
  .hero-deck { font-size: 0.873rem; }
  .hero-actions, .about-hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .btn, .about-hero-actions .btn { width: 100%; }
  .hero-actions .arrow, .about-hero-actions .arrow { width: max-content; }
  .hero-media, .page-media, .article-media, .about-hero-media { min-height: 340px; }
  .hero-media::after, .page-media::after, .article-media::after, .about-hero-media::after { background: linear-gradient(0deg, rgba(8, 19, 12, 0.28), transparent 50%); }
  .stats { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .category-head, .section-head { align-items: flex-start; flex-direction: column; }
  .category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
  .category-link { min-width: 112px; scroll-snap-align: start; }
  .latest-item { grid-template-columns: 1fr; }
  .latest-img { height: 210px; }
  .feature-stack { grid-template-columns: 1fr; }
  .guide-feature { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .guide-photo { min-height: 235px; order: -1; }
  .guide-photo::before { background: linear-gradient(0deg, var(--ink), transparent 53%); }
  .newsletter { grid-template-columns: 1fr; padding: 20px 16px; }
  .seal { display: none; }
  .newsletter-form { grid-template-columns: 1fr; gap: 8px; }
  .newsletter-form input { border-right: 1px solid var(--line); }
  .newsletter-form .btn { min-width: 0; }
  .page-copy h1, .article-copy h1 { font-size: clamp(3.5rem, 15vw, 5rem); }
  .filter-top { grid-template-columns: 1fr; }
  .sort { justify-content: space-between; }
  .review-grid, .guide-grid, .related { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; padding-top: 38px; }
  .article-side { order: -1; }
  .sidebar-sticky { position: static; grid-template-columns: 1fr 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 95px 1fr 32px; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-lead { grid-column: 1 / -1; padding: 24px 0; }
  .manifesto-point:nth-child(2), .manifesto-point:nth-child(4) { border-left: 0; }
  .about-story, .independence { grid-template-columns: 1fr; }
  .about-story-media { min-height: 330px; }
  .principles-grid, .team-grid { grid-template-columns: 1fr; }
  .testing-head { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
  .policy nav ol { columns: 1; }
  .contact { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .search-form { grid-template-columns: 1fr; gap: 8px; }
  .search-form input { border-right: 1px solid var(--ink); }
}

@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
  .step:last-child { border-bottom: 0; }
  .sidebar-sticky { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media print {
  .site-header, .site-footer, .article-side, .newsletter-section, .progress { display: none !important; }
  body { background: #fff; }
  .article-hero { background: #fff; color: #000; }
  .article-hero-grid, .article-layout { width: 100%; display: block; }
  .article-media { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* Reduced information architecture and launch pages */
.nav-community { display: none; }
.archive-note { margin: -9px 0 22px; color: var(--muted); font-size: 0.732rem; }
.cta-band { padding: 42px 0; background: var(--brass-soft) url('../images/topography.svg'); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-inner h2 { max-width: 780px; font-size: clamp(2.5rem, 4.2vw, 4.3rem); text-transform: uppercase; }
.cta-actions { display: flex; align-items: center; gap: 26px; flex: none; }
.helper-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.helper-card { min-height: 205px; padding: 24px; border-top: 3px solid var(--forest); background: rgba(255, 255, 255, 0.34); }
.helper-card > span { color: var(--brass); font: 700 2.3rem/1 var(--display); }
.helper-card h2, .helper-card h3 { margin: 36px 0 10px; font-size: 1.8rem; text-transform: uppercase; }
.helper-card p { margin: 0; font-size: 0.755rem; }
.helper-cards.compact { grid-template-columns: 1fr; margin-top: 30px; }
.helper-cards.compact .helper-card { min-height: 175px; padding: 20px; }
.helper-cards.compact .helper-card h3 { margin-top: 24px; }
.contact-details { margin-top: 28px; padding-top: 21px; border-top: 1px solid var(--line); }
.contact-details p { font-size: 0.802rem; }
.contact-form { align-content: start; }
.form-note { color: var(--muted); font-size: 0.684rem !important; }
.form-status-static { position: static; min-height: 1.4em; margin-top: 0; }
.partner-grid, .community-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 46px; align-items: start; }
.partner-copy h2, .community-grid > div > h2 { margin-bottom: 18px; font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; }
.partner-copy > p, .community-grid > div > p { font-size: 0.826rem; }
.partner-form, .community-form { padding: 28px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.3); }
.decision-list { margin: 20px 0 24px; padding: 0; list-style: none; }
.decision-list li { position: relative; margin: 0; padding: 11px 0 11px 29px; border-bottom: 1px solid var(--line); font-size: 0.791rem; }
.decision-list li::before { content: '→'; position: absolute; left: 0; top: 10px; color: var(--brass); font-weight: 700; }
.consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; font-size: 0.708rem; }
.consent input { margin-top: 3px; }
.interest-field { display: grid; gap: 8px; margin: 0; padding: 16px; border: 1px solid var(--line); }
.interest-field legend { padding: 0 6px; font: 600 0.684rem var(--mono); text-transform: uppercase; }
.interest-field label { font-size: 0.732rem; }
.community-hero .about-hero-copy h1 { width: 11ch; }
.legal-callout { margin: 22px 0; padding: 16px 18px; border-left: 3px solid var(--brass); background: var(--paper-deep); }
.policy strong { font-weight: 600; }
.policy a { overflow-wrap: anywhere; }
.article-main ul { padding-left: 20px; }
.article-main li { margin: 7px 0; }
.footer-grid { grid-template-columns: 1.55fr repeat(4, 1fr); }

@media (max-width: 900px) {
  .nav-community { display: list-item; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .partner-grid, .community-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-actions { width: 100%; align-items: stretch; flex-direction: column; gap: 14px; }
  .cta-actions .btn { width: 100%; }
  .cta-actions .arrow { width: max-content; }
  .helper-cards { grid-template-columns: 1fr; }
  .partner-form, .community-form { padding: 22px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Preserve the reference hero's deliberate three-line lockup on desktop. */
.hero h1 { white-space: nowrap; }
@media (max-width: 720px) {
  .hero h1 { white-space: normal; }
}

/* Homepage refinement: calmer gutters, streamlined hero, and Lucide line icons. */
:root {
  --site: min(1320px, calc(100% - clamp(96px, 10vw, 168px)));
}

.hero-grid { min-height: 540px; grid-template-columns: clamp(500px, 49vw, 690px) 1fr; }
.hero-copy {
  padding-left: max(clamp(48px, 5vw, 84px), calc((100vw - 1320px) / 2));
  padding-right: 26px;
}
.hero h1 { width: 500px; }
.hero-deck { max-width: 48ch; font-size: 0.991rem; }
.hero-actions { margin-top: 22px; }
.hero-actions .btn { min-width: 154px; }
.hero-media { min-height: 540px; }

.stats {
  width: min(540px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 35px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}
.stat {
  min-height: 56px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 11px;
  padding: 0 15px;
  border-left: 1px solid var(--line);
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-icon-wrap {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 39, 27, 0.38);
  border-radius: 50%;
}
.stat .stat-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-copy { min-width: 0; }
.stat strong { font-size: 1.48rem; font-weight: 700; line-height: 0.9; }
.stat-number { display: inline-block; min-width: 2ch; font-variant-numeric: tabular-nums; }
.stat small { margin-top: 6px; font-size: 0.58rem; line-height: 1.25; letter-spacing: 0.01em; }

.category-head { margin-bottom: 15px; }
.category-link svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.category-link { gap: 10px; }

@media (max-width: 1120px) {
  :root { --site: calc(100% - 96px); }
  .hero-copy { padding-left: 48px; padding-right: 20px; }
  .stats { width: 470px; }
  .stat { grid-template-columns: 38px minmax(0, 1fr); gap: 8px; padding-inline: 10px; }
  .stat-icon-wrap { width: 36px; height: 36px; }
  .stat .stat-icon-wrap svg { width: 20px; height: 20px; }
  .stat strong { font-size: 1.34rem; }
}

@media (max-width: 900px) {
  :root { --site: calc(100% - 48px); }
  .hero-copy { padding-left: 24px; }
  .stats { width: 420px; }
}

@media (max-width: 720px) {
  :root { --site: calc(100% - 36px); --reading: calc(100% - 36px); }
  .hero-copy { padding-left: 0; padding-right: 0; }
  .hero h1 { width: auto; }
  .hero-deck { max-width: 45ch; }
  .hero-actions { align-items: flex-start; }
  .hero-actions .btn { width: auto; min-width: 168px; }
  .stats { width: 100%; grid-template-columns: 1fr; gap: 0; padding-top: 0; border-top: 0; }
  .stat {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 66px;
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .stat:last-child { border-bottom: 1px solid var(--line); }
  .stat-icon-wrap { width: 42px; height: 42px; }
  .stat strong { font-size: 1.5rem; }
  .stat small { font-size: 0.625rem; }
}

/* Final narrow-screen guard: prevent the desktop hero tracks from forcing horizontal overflow. */
@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-copy {
    width: var(--site);
    min-width: 0;
    margin-inline: auto;
  }
  .hero-media {
    width: 100%;
    min-width: 0;
    min-height: 340px;
  }
  .stats {
    min-width: 0;
    max-width: 100%;
  }
}


/* v5 deployment hardening: self-hosted icon files and user-supplied hero photography. */
.stat .stat-icon-wrap img {
  width: 22px;
  height: 22px;
  display: block;
}
.category-link img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}
.hero-media img {
  object-position: 48% center;
}
@media (max-width: 1120px) {
  .stat .stat-icon-wrap img { width: 20px; height: 20px; }
}


/* v6 readability, navigation balance, and lighter line-art icons. */
body { font-size: 16px; }
.nav a { font-size: 0.78rem; }
.header-actions .btn { font-size: 0.74rem; }
.hero-deck { max-width: 43ch; font-size: 1rem; line-height: 1.55; }
.stat strong { font-size: 1.58rem; }
.stat small { font-size: 0.66rem; line-height: 1.3; }
.category-head h2 { font-size: 1.12rem; }
.category-link span { font-size: 0.69rem; letter-spacing: 0.015em; }
.home-latest .section-head h2 { font-size: 1.24rem; }
.latest-body h3 { font-size: 1.56rem; }
.latest-body p { font-size: 0.74rem; }
.rating { font-size: 0.7rem; }
.byline { font-size: 0.62rem; }
.guide-copy p { font-size: 0.73rem; }
.newsletter p { font-size: 0.72rem; }
.footer-brand p { font-size: 0.64rem; }
.footer-title { font-size: 0.68rem; }
.footer-links a { font-size: 0.67rem; }
.footer-bottom { font-size: 0.6rem; }
.page-copy > p:last-child, .about-hero-copy > p:last-of-type { font-size: 0.88rem; }
.article-deck { font-size: 0.84rem; }
.article-main { font-size: 0.9rem; }
.article-main > p:first-child { font-size: 0.96rem; }
.policy p, .policy li { font-size: 0.86rem; }
.partner-copy > p, .community-grid > div > p { font-size: 0.84rem; }
.contact-details p { font-size: 0.8rem; }
.form-note { font-size: 0.68rem !important; }
.decision-list li { font-size: 0.78rem; }
.consent, .interest-field label { font-size: 0.72rem; }

/* Keep four text links visually balanced in the desktop header. */
@media (min-width: 901px) {
  .header-inner { grid-template-columns: 210px minmax(390px, 1fr) auto; }
  .nav ul { gap: clamp(22px, 2.3vw, 36px); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero-deck { font-size: 0.96rem; }
  .nav a { font-size: 0.95rem; }
  .stat small { font-size: 0.7rem; }
  .category-link span { font-size: 0.72rem; }
}


/* v8 hero artwork positioning. */
.hero-media img { object-position: 58% center; }

/* v9: softer desktop hero transition. Let the photograph bleed underneath the copy
   and use a long, multi-stop fade so there is no visible vertical seam. */
@media (min-width: 721px) {
  .hero-media {
    margin-left: -128px;
    z-index: 1;
  }
  .hero-copy {
    z-index: 2;
  }
  .hero-media::after {
    background:
      linear-gradient(90deg,
        var(--paper) 0%,
        rgba(245, 241, 232, 0.99) 10%,
        rgba(245, 241, 232, 0.93) 20%,
        rgba(245, 241, 232, 0.78) 30%,
        rgba(245, 241, 232, 0.56) 40%,
        rgba(245, 241, 232, 0.33) 49%,
        rgba(245, 241, 232, 0.14) 57%,
        rgba(245, 241, 232, 0.04) 63%,
        transparent 68%),
      linear-gradient(0deg, rgba(8, 19, 12, 0.10), transparent 42%);
  }
}

/* v11: premium editorial typography. Display type stays rugged and condensed,
   utility text stays technical, while reading copy moves to an optical serif. */
body {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.58;
  font-optical-sizing: auto;
}

.hero h1 {
  width: 540px;
  font-size: clamp(4.35rem, 6.4vw, 6.7rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
}
.hero-deck {
  max-width: 34ch;
  font-family: var(--editorial);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

/* Editorial reading copy */
.section-head p,
.latest-body p,
.guide-copy p,
.newsletter p,
.page-copy > p:last-child,
.about-hero-copy > p:last-of-type,
.about-story-copy p,
.principle p,
.testing-head p,
.step p,
.independence-copy p,
.team p,
.value p,
.policy p,
.policy li,
.card-body > p:not(.cat),
.guide-card p,
.side-card p,
.article-main,
.article-deck,
.partner-copy > p,
.community-grid > div > p,
.contact-details p,
.footer-brand p {
  font-family: var(--editorial);
  font-optical-sizing: auto;
}

.latest-body p { font-size: 0.88rem; line-height: 1.42; }
.guide-copy p { font-size: 0.92rem; line-height: 1.45; }
.newsletter p { font-size: 0.88rem; line-height: 1.42; }
.page-copy > p:last-child,
.about-hero-copy > p:last-of-type { font-size: 1.04rem; line-height: 1.48; }
.card-body > p:not(.cat) { font-size: 0.92rem; line-height: 1.45; }
.guide-card p { font-size: 0.94rem; line-height: 1.48; }
.about-story-copy p { font-size: 1rem; line-height: 1.55; }
.principle p { font-size: 0.94rem; line-height: 1.48; }
.testing-head p { font-size: 0.96rem; line-height: 1.5; }
.step p { font-size: 0.9rem; line-height: 1.48; }
.independence-copy p { font-size: 0.98rem; line-height: 1.5; }
.team p { font-size: 0.9rem; line-height: 1.48; }
.value p { font-size: 0.94rem; line-height: 1.5; }
.policy p,
.policy li { font-size: 1rem; line-height: 1.6; }
.article-main { font-size: 1.04rem; line-height: 1.65; }
.article-main > p:first-child { font-size: 1.14rem; line-height: 1.58; }
.article-deck { font-size: 1.06rem; line-height: 1.5; }
.partner-copy > p,
.community-grid > div > p { font-size: 1rem; line-height: 1.52; }
.contact-details p { font-size: 0.96rem; line-height: 1.5; }
.footer-brand p { font-size: 0.84rem; line-height: 1.45; }

/* Give the serif copy a little more air without disturbing compact utility labels. */
.latest-body h3,
.guide-copy h3,
.card-body h2,
.card-body h3,
.guide-card h2,
.guide-card h3,
.about-story-copy h2,
.principle h3,
.step h3,
.team h3 {
  letter-spacing: -0.018em;
}

@media (max-width: 1120px) {
  .hero h1 { font-size: 5.35rem; width: 470px; }
  .hero-deck { font-size: 1.1rem; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .hero h1 { font-size: clamp(4rem, 19vw, 5.7rem); line-height: 0.86; }
  .hero-deck { font-size: 1.08rem; line-height: 1.42; }
}

/* v12 premium editorial refinement.
   The body and interface now use Manrope for a cleaner magazine-like voice.
   DM Serif Display is reserved for high-impact editorial accents. */
:root {
  --paper: #f7f3ea;
  --paper-deep: #ece5d8;
  --paper-light: #fffdf8;
  --ink: #111713;
  --muted: #59615b;
  --forest: #10271a;
  --forest-2: #193824;
  --deep: #07140d;
  --brass: #9f9250;
  --brass-soft: #ddd4a0;
  --line: rgba(17, 23, 19, 0.16);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --mono: "Instrument Sans", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --editorial: "DM Serif Display", Georgia, serif;
}

body {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -0.012em;
  background-color: var(--paper);
}

/* Refined interface type: less typewriter, more premium publication. */
.eyebrow,
.btn,
.arrow,
.nav a,
.brand span,
.badge,
.byline,
.rating,
.cat,
.card-foot,
.sort,
.reset,
.meta,
.crumbs ol,
.field label,
.footer-title,
.footer-links a,
.footer-bottom,
.quick a,
.seal,
.stat small,
.category-link span {
  font-family: var(--mono);
}

.brand span {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.19em;
}
.nav a {
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.065em;
}
.btn, .arrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.075em;
}
.btn {
  min-height: 44px;
  padding: 12px 20px;
}

/* Hero: stronger legibility and a more considered editorial scale. */
.hero h1 {
  font-weight: 900;
  letter-spacing: -0.042em;
  line-height: 0.88;
}
.hero-deck {
  max-width: 38ch;
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.022em;
  color: #273029;
}
.line {
  width: 48px;
  height: 1px;
  margin-block: 19px;
}
.hero-actions { margin-top: 24px; }
.stats {
  margin-top: 38px;
  padding-top: 22px;
}
.stat {
  min-height: 60px;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  padding-inline: 18px;
}
.stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-color: rgba(16, 39, 26, 0.27);
}
.stat strong {
  font-family: var(--display);
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.015em;
}
.stat small {
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: 0.035em;
}

/* Category band: hairline details, cleaner labels, more breathing room. */
.category-band {
  min-height: 154px;
  height: auto;
  padding: 27px 0 19px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.category-head { margin-bottom: 15px; }
.category-head h2 {
  font-family: var(--display);
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.category-head .arrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.category-link {
  min-height: 87px;
  gap: 10px;
  border-color: rgba(255,255,255,0.15);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.category-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.04);
}
.category-link img { width: 32px; height: 32px; opacity: 0.92; }
.category-link span {
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.045em;
}

/* Homepage review feed: editorial hierarchy instead of small utility text. */
.home-latest { padding: 34px 0 26px; }
.home-latest .section-head { margin-bottom: 18px; }
.home-latest .section-head h2 {
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.latest-layout { gap: 34px; }
.latest-item {
  gap: 24px;
  min-height: 132px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-color: rgba(17,23,19,0.14);
}
.latest-img { height: 128px; }
.latest-body h3 {
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.018em;
}
.latest-body p {
  max-width: 38ch;
  margin: 8px 0 11px;
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 450;
  line-height: 1.55;
  color: #303832;
}
.rating {
  margin-top: 2px;
  font-size: 0.73rem;
  font-weight: 700;
}
.byline {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.badge {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 6px 9px;
}

/* Premium feature treatment: one cinematic image, rather than a hard split card. */
.guide-feature {
  position: relative;
  display: block;
  height: 472px;
  min-height: 472px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 18px 44px rgba(11, 22, 14, 0.12);
}
.guide-photo {
  position: absolute;
  inset: 0;
}
.guide-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,20,13,0.96) 0%, rgba(7,20,13,0.87) 34%, rgba(7,20,13,0.42) 66%, rgba(7,20,13,0.08) 100%),
    linear-gradient(0deg, rgba(7,20,13,0.30), transparent 46%);
}
.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.92) contrast(1.03);
}
.guide-copy {
  position: relative;
  z-index: 2;
  width: min(68%, 540px);
  height: 100%;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.guide-copy .eyebrow {
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  color: rgba(255,255,255,0.8);
}
.guide-copy h3 {
  max-width: 9.5ch;
  margin: 0 0 26px;
  font-size: clamp(3rem, 4vw, 4.35rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.guide-copy .arrow { font-size: 0.75rem; }

/* Magazine-style cards and archive text. */
.review-card,
.guide-card,
.helper-card,
.partner-form,
.community-form,
.side-card {
  border-color: rgba(17,23,19,0.14);
  background: rgba(255,255,255,0.38);
}
.review-card,
.guide-card {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.review-card:hover,
.guide-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.58);
  box-shadow: 0 18px 44px rgba(11,22,14,0.09);
}
.card-body h2,
.card-body h3 {
  font-size: 1.9rem;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.card-body > p:not(.cat),
.guide-card p,
.helper-card p,
.side-card p,
.toc a {
  font-family: var(--mono);
  font-size: 0.84rem;
  line-height: 1.62;
  color: #303832;
}
.cat,
.card-foot {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

/* Inner pages: clean sans for reading, serif only as a deliberate accent. */
.page-copy > p:last-child,
.about-hero-copy > p:last-of-type,
.article-deck,
.partner-copy > p,
.community-grid > div > p,
.contact-details p,
.policy p,
.policy li,
.article-main,
.article-main p,
.article-main li,
.about-story-copy p,
.principle p,
.step p,
.team-card p,
.split-copy p,
.value p {
  font-family: var(--mono);
  color: #303832;
}
.page-copy > p:last-child,
.about-hero-copy > p:last-of-type,
.article-deck {
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.018em;
}
.article-main {
  font-size: 1rem;
  line-height: 1.72;
}
.article-main > p:first-child {
  font-family: var(--editorial);
  font-size: 1.32rem;
  line-height: 1.48;
  color: var(--ink);
}
.article-main blockquote,
.about-quote {
  font-family: var(--editorial);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.015em;
}
.article-main blockquote { font-size: 1.2rem; line-height: 1.5; }
.about-quote { font-size: 1.55rem; line-height: 1.35; }
.manifesto-lead p {
  font-family: var(--editorial);
  font-size: 1.35rem;
  line-height: 1.5;
}
.independence-card p {
  font-family: var(--editorial);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.3;
  text-transform: none;
}

/* Forms and legal pages should feel intentionally typeset, not browser-default. */
.field label,
.interest-field legend,
.consent,
.interest-field label {
  font-family: var(--mono);
}
.field label,
.interest-field legend {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
input, select, textarea {
  font-family: var(--mono);
  font-size: 0.9rem;
}
.policy p,
.policy li { font-size: 0.96rem; line-height: 1.72; }

/* Newsletter and footer: increase polish and readability. */
.newsletter {
  min-height: 100px;
  padding: 15px 24px;
  background: rgba(255,255,255,0.22);
  border-color: rgba(17,23,19,0.16);
}
.newsletter h2 { font-size: 1.72rem; }
.newsletter p {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.5;
  color: #303832;
}
.newsletter-form input { font-size: 0.84rem; }
.footer-brand p { font-size: 0.74rem; line-height: 1.55; }
.footer-title { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.07em; }
.footer-links a { font-size: 0.74rem; line-height: 1.55; }
.footer-bottom { font-size: 0.65rem; }

/* Subtle editorial dividers. */
.section-head h2,
.category-head h2,
.home-latest .section-head h2 {
  position: relative;
}
.home-latest .section-head h2::after,
.category-head h2::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-left: 13px;
  vertical-align: 0.32em;
  background: currentColor;
  opacity: 0.45;
}

@media (max-width: 1120px) {
  .hero-deck { font-size: 1.05rem; }
  .stat { padding-inline: 12px; }
  .stat small { font-size: 0.64rem; }
  .guide-copy { padding: 38px 34px; }
  .guide-copy h3 { font-size: 3.25rem; }
}

@media (max-width: 720px) {
  .hero-deck { font-size: 1.04rem; }
  .stat { grid-template-columns: 48px minmax(0, 1fr); }
  .stat small { font-size: 0.69rem; }
  .category-head h2 { font-size: 1.25rem; }
  .category-link span { font-size: 0.7rem; }
  .latest-body p { font-size: 0.9rem; }
  .guide-feature { height: 390px; min-height: 390px; }
  .guide-copy { width: 88%; padding: 34px 26px; }
  .guide-copy h3 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .guide-photo::before {
    background: linear-gradient(90deg, rgba(7,20,13,0.94) 0%, rgba(7,20,13,0.74) 58%, rgba(7,20,13,0.18) 100%);
  }
  .article-main { font-size: 1rem; }
  .article-main > p:first-child { font-size: 1.18rem; }
}

/* v12.1 final type calibration after visual review. */
.hero-deck {
  font-size: 1.18rem;
  line-height: 1.52;
  font-weight: 500;
  max-width: 36ch;
}
.stat small {
  font-size: 0.74rem;
  line-height: 1.22;
  letter-spacing: 0.045em;
}
.category-link span {
  font-size: 0.74rem;
  line-height: 1.18;
  letter-spacing: 0.05em;
}
.category-head h2 { font-size: 1.42rem; }

/* A deliberate serif contrast in editorial content, never in utility copy. */
.latest-body h3,
.review-card .card-body h2,
.review-card .card-body h3,
.guide-card h2,
.guide-card h3,
.newsletter h2 {
  font-family: var(--editorial);
  font-weight: 400;
  letter-spacing: -0.022em;
  text-transform: none;
}
.latest-body h3 {
  font-size: 1.72rem;
  line-height: 1.04;
}
.review-card .card-body h2,
.review-card .card-body h3 { font-size: 1.9rem; line-height: 1.05; }
.guide-card h2,
.guide-card h3 { font-size: 2rem; line-height: 1.04; }
.newsletter h2 { font-size: 1.78rem; line-height: 1.08; }

/* More dimensional but still restrained image treatment. */
.latest-img,
.card-media,
.guide-card > img {
  box-shadow: inset 0 0 0 1px rgba(17,23,19,0.05);
}
.latest-img img,
.card-media img,
.guide-card > img {
  filter: saturate(0.94) contrast(1.025);
}

@media (max-width: 1120px) {
  .hero-deck { font-size: 1.1rem; }
  .stat small { font-size: 0.69rem; }
  .category-link span { font-size: 0.71rem; }
}
@media (max-width: 720px) {
  .hero-deck { font-size: 1.06rem; }
  .stat small { font-size: 0.72rem; }
  .category-link span { font-size: 0.72rem; }
}

/* v13: restore the super-heavy homepage masthead while keeping every word legible. */
.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4.7rem, 7vw, 7.35rem);
  line-height: 0.92;
  letter-spacing: -0.012em;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: geometricPrecision;
  width: 570px;
}

@media (max-width: 1120px) {
  .hero h1 {
    width: 500px;
    font-size: 5.45rem;
    line-height: 0.92;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    width: auto;
    font-size: clamp(4.15rem, 18vw, 5.8rem);
    line-height: 0.93;
    letter-spacing: -0.008em;
  }
}

/* v14: premium alpine editorial typography.
   Direction: technical grotesk for navigation/utility text, rugged condensed display
   for campaign-scale headlines, and a restrained editorial serif only where long-form
   reading benefits from it. */
:root {
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --mono: "Instrument Sans", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --editorial: "Newsreader", Georgia, "Times New Roman", serif;
}

body {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: -0.008em;
}

/* Navigation and controls: wider, cleaner, less typewriter-like. */
.brand span {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
}
.nav a {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}
.btn,
.arrow {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}
.btn {
  min-height: 46px;
  padding: 13px 22px;
}
.header-actions .btn { font-size: 0.8rem; }

/* Hero keeps the heavy campaign face, while the deck becomes a refined editorial serif. */
.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.92;
}
.hero-deck {
  font-family: var(--editorial);
  max-width: 35ch;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: #202720;
}

/* Stats: sentence-case labels and open proportions give a more product-brand feel. */
.stat strong {
  font-family: var(--display);
  font-size: 1.82rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.stat small {
  font-family: var(--mono);
  margin-top: 7px;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-transform: none;
}

/* Category rail: replace condensed utility lettering with a clean alpine grotesk. */
.category-head h2 {
  font-family: var(--mono);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.category-head .arrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}
.category-link span {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* Section labels and metadata: one consistent technical type voice. */
.eyebrow,
.badge,
.byline,
.rating,
.cat,
.card-foot,
.sort,
.reset,
.meta,
.crumbs ol,
.field label,
.interest-field legend,
.consent,
.interest-field label,
.quick a,
.footer-title,
.footer-links a,
.footer-bottom,
.seal {
  font-family: var(--mono);
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.075em;
}
.badge,
.byline,
.cat,
.card-foot {
  font-weight: 650;
  letter-spacing: 0.035em;
}

/* Editorial hierarchy outside the hero: less condensed shouting, more publication polish. */
.home-latest .section-head h2,
.newsletter h2 {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: none;
}
.home-latest .section-head h2 { font-size: 1.45rem; }
.newsletter h2 { font-size: 1.72rem; }
.latest-body h3,
.review-card .card-body h2,
.review-card .card-body h3,
.guide-card h2,
.guide-card h3 {
  font-family: var(--editorial);
  font-weight: 600;
  letter-spacing: -0.018em;
}
.latest-body h3 { font-size: 1.72rem; line-height: 1.06; }

/* Reading copy uses the technical sans for clarity, with serif used only for deliberate leads/quotes. */
.latest-body p,
.guide-copy p,
.newsletter p,
.card-body > p:not(.cat),
.guide-card p,
.helper-card p,
.side-card p,
.toc a,
.page-copy > p:last-child,
.about-hero-copy > p:last-of-type,
.partner-copy > p,
.community-grid > div > p,
.contact-details p,
.policy p,
.policy li,
.article-main,
.article-main p,
.article-main li,
.about-story-copy p,
.principle p,
.step p,
.team-card p,
.split-copy p,
.value p,
.footer-brand p {
  font-family: var(--mono);
}
.article-main > p:first-child,
.article-main blockquote,
.about-quote,
.manifesto-lead p,
.independence-card p {
  font-family: var(--editorial);
}

/* Small details that make the system feel intentional rather than browser-default. */
input,
select,
textarea { font-family: var(--mono); }
.footer-title { font-weight: 700; letter-spacing: 0.045em; }
.footer-links a { font-weight: 450; }
.rating { font-weight: 600; }

@media (max-width: 1120px) {
  .hero-deck { font-size: 1.12rem; }
  .stat small { font-size: 0.71rem; }
  .category-link span { font-size: 0.72rem; }
}

@media (max-width: 720px) {
  .hero-deck { font-size: 1.08rem; }
  .nav a { font-size: 0.96rem; }
  .stat small { font-size: 0.74rem; }
  .category-head h2 { font-size: 1.02rem; }
  .category-link span { font-size: 0.74rem; }
}


/* v15: real review content and corrected editorial font stack. */
.arc-review-hero .article-copy { padding-right: clamp(28px, 4vw, 70px); }
.arc-product-media {
  display: grid;
  place-items: center;
  padding: clamp(32px, 5vw, 72px);
  background:
    radial-gradient(circle at 52% 45%, rgba(255,255,255,0.10), transparent 42%),
    linear-gradient(145deg, #1d3124 0%, #0b1710 72%);
}
.arc-product-media figure { margin: 0; text-align: center; }
.arc-product-media img {
  width: min(360px, 78%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  margin-inline: auto;
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}
.arc-product-media figcaption {
  margin-top: 12px;
  color: rgba(255,255,255,0.68);
  font: 500 0.72rem/1.4 var(--mono);
}
.article-main .quick-verdict h2,
.article-main .pc h2 {
  margin: 0;
  scroll-margin-top: 0;
  color: inherit;
  font-family: var(--display);
  text-transform: uppercase;
}
.article-main .quick-verdict h2 { font-size: 1.9rem; }
.article-main .pc h2 { font-size: 1.55rem; }
.article-main .quick-verdict p { color: rgba(255,255,255,0.92); font-size: 1rem; line-height: 1.62; }
.article-main .pc li { font-size: 0.96rem; line-height: 1.55; }
.author-box,
.review-sources {
  margin: 40px 0 0;
  padding: 28px;
  border: 1px solid rgba(20,39,27,0.18);
  background: rgba(255,255,255,0.34);
}
.author-box h2,
.review-sources h2 { margin-top: 0; }
.review-sources ul { margin-bottom: 0; }
.review-sources a { text-decoration-thickness: 1px; }
.legal-note { margin-top: 24px; }
.article-main .specs th,
.article-main .specs td { font-family: var(--mono); font-size: 0.86rem; line-height: 1.45; }
.article-main .score-row span { font-family: var(--mono); font-size: 0.82rem; }
.article-main .notice { font-size: 0.88rem; line-height: 1.55; }
.article-copy .meta a { text-decoration: underline; text-decoration-thickness: 1px; }
@media (max-width: 900px) {
  .arc-product-media { min-height: 360px; }
}
@media (max-width: 720px) {
  .arc-review-hero .article-media { display: grid; min-height: auto; padding: 26px; }
  .arc-product-media img { width: min(280px, 82vw); }
  .author-box, .review-sources { padding: 22px; }
}
.arc-card-media,
.arc-latest-img { background: #d9d1c2; }
.arc-card-media img,
.arc-latest-img img { object-fit: cover; object-position: center; }
.reviewer-spotlight { border-top: 1px solid var(--line); }
.reviewer-profile {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.reviewer-profile h2 { font-size: clamp(2.7rem, 5vw, 5rem); text-transform: uppercase; }
.reviewer-profile p { max-width: 58ch; font-size: 1.05rem; }
@media (max-width: 720px) { .reviewer-profile { grid-template-columns: 1fr; gap: 18px; } }


/* v16: long-form field photography */
.article-main .field-photo {
  margin: 2.35rem 0 2.75rem;
}
.article-main .field-photo img {
  display: block;
  width: 100%;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(20,39,27,.14);
  box-shadow: 0 18px 42px rgba(20,39,27,.08);
}
.article-main .field-photo figcaption {
  margin-top: .65rem;
  font-family: var(--mono);
  font-size: .78rem;
  line-height: 1.45;
  color: rgba(20,39,27,.66);
}
.article-main .field-photo--portrait {
  max-width: 31rem;
  margin-left: auto;
  margin-right: auto;
}
.article-main .field-photo--portrait img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #ecece7;
}
.arc-review-hero .arc-product-media img {
  object-position: center;
}
.author-box p + p {
  margin-top: .85rem;
}
@media (max-width: 720px) {
  .article-main .field-photo { margin: 1.8rem 0 2.15rem; }
  .article-main .field-photo figcaption { font-size: .74rem; }
}
