:root {
  color-scheme: light;
  --ink: #111111;
  --offwhite: #F4F1EA;
  --pine: #2F4F3E;
  --muted: #4a4a46;
  --line: #d8d3c8;
  --paper: #faf8f3;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background: var(--offwhite);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--pine);
}

a:hover,
a:focus {
  color: var(--ink);
}

.utility-bar {
  background: var(--ink);
  color: var(--offwhite);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4rem 1rem;
}

.utility-bar span {
  opacity: 0.55;
  padding: 0 0.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--offwhite);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.wordmark img {
  display: block;
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 8px;
}

.wordmark:hover,
.wordmark:focus {
  color: var(--ink);
}

nav.site {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.9rem;
  margin: 0;
}

nav.site a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

nav.site a:hover,
nav.site a:focus {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

nav.site a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.narrow {
  max-width: 42rem;
}

h1 {
  font-size: 2.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 650;
  margin: 2rem 0 0.75rem;
}

p {
  margin: 0.75rem 0;
}

.hero {
  padding: 3.25rem 0 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  max-width: 14ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 1.5rem 0 0;
}

.btn-pine {
  display: inline-block;
  background: var(--pine);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  padding: 0.8rem 1.25rem;
}

.btn-pine:hover,
.btn-pine:focus {
  color: #fff;
  filter: brightness(1.08);
}

.btn-ghost {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.1rem;
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--pine);
  border-bottom-color: var(--pine);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0.5rem 0 2.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.trust p {
  margin: 0;
}

.preview h2 {
  margin-top: 0;
}

.kit-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
  max-width: 28rem;
}

.kit-card:hover,
.kit-card:focus {
  color: inherit;
  border-color: var(--ink);
}

.kit-card .kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.kit-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.kit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lede,
.kit-meta {
  color: var(--muted);
  margin: 0 0 1rem;
}

.disclosure {
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  background: var(--paper);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0.75rem 0 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 36rem;
  background: var(--paper);
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #ebe6db;
  font-weight: 650;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--offwhite);
}

.site-footer .footer-inner {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.35rem 1.25rem 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

@media (max-width: 40rem) {
  .wordmark img {
    height: 36px;
    width: 36px;
  }

  nav.site {
    gap: 0.75rem;
  }

  nav.site a {
    font-size: 0.78rem;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.7rem;
  }

  .hero {
    padding-top: 2rem;
  }
}

.kit-card .price {
  margin-top: 0.85rem;
  color: var(--ink);
  font-weight: 650;
  font-size: 1rem;
}

.kit-card .spec {
  margin-top: 0.25rem;
  font-size: 0.82rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
}

td:nth-child(4) {
  font-weight: 650;
  white-space: nowrap;
}

.home-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14rem;
  gap: 2.5rem;
  align-items: start;
}

.tracker {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.tracker-row {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
  font-weight: 650;
}

a.tracker-row:hover,
a.tracker-row:focus {
  color: var(--ink);
  border-color: var(--ink);
}

.tracker-row:not(a) {
  font-weight: 650;
  color: var(--muted);
}

.kits-rail {
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.kits-rail .kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kits-rail a {
  color: var(--ink);
}

@media (max-width: 52rem) {
  .home-shell {
    grid-template-columns: 1fr;
  }
  .kits-rail {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1.25rem;
  }
}

.as-of {
  margin: 0.5rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.masthead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.slogan {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.explainer {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--ink);
}

/* Product homepage 23 Aug 2026 */
:root {
  --page: #F0EEE9;
  --alpine: #1A2B3C;
  --pine: #2F4F3E;
  --ink: #1A2B3C;
  --offwhite: #F0EEE9;
  --paper: #F7F5F0;
}

body {
  background: var(--page);
  color: var(--alpine);
}

.utility-bar { display: none; }

.site-header { background: var(--page); }

.wordmark img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 8px;
}

nav.site a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  opacity: 0.72;
  text-transform: uppercase;
}

.home-hero {
  text-align: center;
  padding: 2.5rem 1.25rem 1.5rem;
}

.home-hero .lockup {
  display: block;
  margin: 0 auto 1rem;
  width: min(220px, 55vw);
  height: min(220px, 55vw);
  object-fit: contain;
  border-radius: 18px;
}

.slogan {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--alpine);
}

.explainer {
  margin: 0.5rem auto 0;
  max-width: 34rem;
  color: #4a534c;
  font-size: 0.98rem;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: 1.1rem;
  padding: 0 0 2rem;
}

.cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cat-card h2 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--alpine);
}

.picks {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pick;
}

.picks li {
  counter-increment: pick;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.picks li:first-child { border-top: 0; padding-top: 0.15rem; }

.picks .name {
  display: block;
  font-weight: 650;
  font-size: 0.98rem;
}

.picks .name::before {
  content: counter(pick) ". ";
  color: var(--pine);
}

.why {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: #4a534c;
  line-height: 1.4;
}

.price {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-buy {
  display: inline-block;
  margin-top: 0.45rem;
  background: var(--pine);
  color: var(--page) !important;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
}

.btn-buy:hover { background: var(--alpine); color: var(--page) !important; }

.mention {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a726c;
}

.seg {
  display: flex;
  gap: 0.35rem;
}

.seg button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--alpine);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
}

.seg button[aria-selected="true"] {
  background: var(--alpine);
  color: var(--page);
  border-color: var(--alpine);
}

.pane[hidden] { display: none; }

.home-shell { display: block; }
.kits-rail {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.kits-rail .kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin: 0 0 0.4rem;
}

.site-footer { background: var(--page); color: #5c635c; font-size: 0.78rem; }
.site-footer a { color: var(--pine); }

/* Lock theme (23 Aug 2026): dark RMNP field, white type, blaze trail only */
:root {
  --page: #0b0d10;
  --alpine: #e8ecef;
  --ink: #e8ecef;
  --offwhite: #0b0d10;
  --paper: #14181e;
  --pine: #ff6a00;
  --muted: #9aa3ad;
  --line: #2a313a;
  --trail: #ff6a00;
  --ice: #7ba3b5;
}

html { color-scheme: dark; }

body {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255,106,0,0.08), transparent 55%),
    url("assets/topo.svg") center top / 720px auto repeat,
    var(--page);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a { color: var(--ice); }
a:hover, a:focus { color: var(--trail); }

.site-header {
  background: rgba(11,13,16,0.92);
  border-bottom: 1px dashed rgba(255,106,0,0.45);
  backdrop-filter: blur(8px);
}

nav.site a {
  color: #d7dde3;
  opacity: 1;
  letter-spacing: 0.14em;
}
nav.site a:hover,
nav.site a:focus,
nav.site a[aria-current="page"] {
  color: var(--trail);
  text-decoration: none;
}

h1, .slogan {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.home-hero {
  padding-top: 2.75rem;
}
.home-hero .lockup {
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.85);
}
.slogan { color: #fff; }
.explainer { color: var(--muted); }

.cat-card,
.kit-card,
.disclosure,
.tracker-row,
table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
}

.cat-card h2,
.kits-rail .kicker,
.kit-card .kicker,
.mention {
  color: var(--trail);
  letter-spacing: 0.16em;
}

.picks li { border-top: 1px dashed var(--line); }
.picks .name { color: #fff; font-style: italic; }
.picks .name::before { color: var(--trail); font-style: normal; }
.why, .price, .as-of, .explainer { color: var(--muted); }
.price { color: #d7dde3; }

.btn-pine,
.btn-buy {
  background: transparent;
  color: #fff !important;
  border: 1px solid var(--trail);
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.btn-pine:hover,
.btn-buy:hover {
  background: var(--trail);
  color: #0b0d10 !important;
  filter: none;
}

.btn-ghost {
  color: #fff;
  border-bottom: 1px dashed var(--trail);
}
.btn-ghost:hover { color: var(--trail); border-bottom-color: var(--trail); }

.seg button {
  border: 1px solid var(--line);
  color: #d7dde3;
  background: transparent;
}
.seg button[aria-selected="true"] {
  background: transparent;
  color: var(--trail);
  border-color: var(--trail);
}

.trust {
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}

.kits-rail {
  border-top: 1px dashed var(--line);
  color: var(--muted);
}
.kits-rail a { color: #fff; }

.site-footer {
  background: transparent;
  border-top: 1px dashed rgba(255,106,0,0.4);
  color: var(--muted);
}
.site-footer a { color: var(--ice); }

th { background: #1c222a; color: #fff; }
