:root {
  color-scheme: dark;
  --ink: #f4f0e8;
  --muted: #c8c0ad;
  --panel: rgba(23, 27, 21, 0.88);
  --panel-solid: #171b15;
  --line: rgba(244, 240, 232, 0.18);
  --moss: #6f7f45;
  --moss-bright: #a5ba67;
  --ember: #e1783f;
  --clay: #9b6241;
  --charcoal: #0d110d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(13, 17, 13, 0.68);
  border-bottom: 1px solid rgba(244, 240, 232, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand,
.site-nav,
.hero-actions,
.kit-stats,
.guide-list,
.sponsored-note {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: transparent;
  border: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.site-nav a,
.nav-cta {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-footer a {
  color: var(--moss-bright);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.button,
.nav-cta,
.gear-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  padding: 0 18px;
  border-color: var(--line);
  color: var(--ink);
  justify-self: end;
}

.hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 36px clamp(18px, 6vw, 82px) 44px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(rgba(13, 17, 13, 0.1), rgba(13, 17, 13, 0.34)),
    url("assets/photos/desert-road-1200.jpg") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 13, 0.9) 0%, rgba(13, 17, 13, 0.62) 44%, rgba(13, 17, 13, 0.18) 100%),
    linear-gradient(0deg, var(--charcoal) 0%, rgba(13, 17, 13, 0) 34%);
}

.hero-content {
  position: relative;
  min-width: 0;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss-bright);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy,
.section-heading p,
.sale-banner p,
.intro-grid p,
.gear-card p,
.guide-band p,
.sponsored-note p,
.site-footer p {
  color: var(--muted);
}

.associate-disclosure {
  max-width: 560px;
  padding: 12px 14px;
  background: rgba(225, 120, 63, 0.12);
  border: 1px solid rgba(225, 120, 63, 0.36);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.article-byline {
  margin: 0 0 18px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
}

.article-byline a {
  color: inherit;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section-actions {
  margin-top: 28px;
}

.button {
  min-width: 180px;
  padding: 0 22px;
}

.primary {
  background: var(--ember);
  color: #180e08;
}

.secondary {
  border-color: rgba(244, 240, 232, 0.35);
  background: rgba(244, 240, 232, 0.08);
}

.sale-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 9px clamp(14px, 4vw, 48px);
  position: sticky;
  top: var(--header-h, 77px);
  z-index: 19;
  transition: top 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  background:
    linear-gradient(135deg, rgba(111, 127, 69, 0.94), rgba(155, 98, 65, 0.92)),
    var(--moss);
  border: 1px solid rgba(244, 240, 232, 0.26);
  border-right: 0;
  border-left: 0;
  box-shadow: var(--shadow);
}

.sale-banner h2,
.sale-title {
  max-width: 920px;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.05;
}

.sale-banner p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 250, 239, 0.86);
}

body.header-hidden .sale-banner {
  top: 0;
}

.sale-button {
  min-width: 260px;
  min-height: 42px;
  padding: 0 26px;
  background: #10140f;
  color: var(--ink);
  font-size: 1rem;
  white-space: nowrap;
}

.section {
  padding: clamp(36px, 5vw, 60px) clamp(18px, 5vw, 64px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.intro-grid article {
  min-height: 0;
  padding: 22px 24px;
  background: #141811;
  border: 1px solid var(--line);
}

.icon {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ember);
  font-size: 1.05rem;
  font-weight: 900;
}

.weekly-edc {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.04), rgba(244, 240, 232, 0)),
    #10140f;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.gear-layout {
  display: grid;
  grid-template-columns: minmax(300px, min(34vw, 525px)) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.kit-panel {
  position: sticky;
  top: 96px;
  justify-self: start;
  width: 100%;
  max-width: 525px;
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.kit-panel img {
  width: 100%;
  height: clamp(275px, 27.5vw, 412px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kit-stats {
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.kit-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.kit-stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.4rem;
}

.week-countdown {
  padding: 18px 20px 20px;
  background:
    linear-gradient(135deg, rgba(225, 120, 63, 0.16), rgba(111, 127, 69, 0.2)),
    #12160e;
  border-bottom: 1px solid rgba(225, 120, 63, 0.38);
}

.week-countdown p {
  margin-bottom: 10px;
  color: var(--moss-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.countdown-grid span {
  min-width: 0;
  padding: 10px 8px;
  background: rgba(13, 17, 13, 0.64);
  border: 1px solid rgba(244, 240, 232, 0.16);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.countdown-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  line-height: 1;
}

.gear-list {
  display: grid;
  gap: 12px;
}

.gear-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.gear-type {
  margin-bottom: 6px;
  color: var(--ember);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gear-card p:last-child {
  margin-bottom: 0;
}

.gear-card h4 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.16;
}

.commerce-action {
  display: grid;
  justify-items: center;
  text-align: center;
}

.commerce-action span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gear-card a {
  width: 126px;
  background: var(--moss-bright);
  color: #12160e;
}

.core-kits {
  background:
    linear-gradient(180deg, rgba(165, 186, 103, 0.06), rgba(13, 17, 13, 0)),
    #141811;
}

.core-kit-grid {
  display: grid;
  gap: clamp(56px, 7vw, 92px);
}

.core-kit-card {
  display: grid;
  grid-template-columns: minmax(300px, min(34vw, 525px)) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: transparent;
  border: 0;
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.core-category-heading {
  grid-column: 1 / -1;
  max-width: 780px;
  margin-bottom: 0;
}

.core-category-heading h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.core-kit-media {
  position: sticky;
  top: 96px;
  justify-self: start;
  width: 100%;
  max-width: 525px;
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid var(--line);
}

.core-kit-media img {
  width: 100%;
  height: clamp(275px, 27.5vw, 412px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.core-kit-content {
  padding: 0;
}

.core-kit-content .gear-card {
  min-height: 112px;
  padding: 18px;
}

.guide-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) 1fr;
  gap: 34px;
  align-items: start;
}

.guide-list {
  flex-wrap: wrap;
  gap: 12px;
}

.guide-list a {
  min-height: 52px;
  padding: 0 18px;
  background: #171b15;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.editorial-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.editorial-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  text-decoration: none;
}

.editorial-list span {
  color: var(--ember);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.editorial-list a:hover {
  color: var(--moss-bright);
}

.content-library {
  background:
    linear-gradient(180deg, rgba(225, 120, 63, 0.06), rgba(225, 120, 63, 0)),
    #0f130e;
}

.guide-hub {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.04), rgba(244, 240, 232, 0)),
    #10140f;
}

.guides-page {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.035), transparent 420px),
    var(--charcoal);
}

.guides-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 52vh;
  align-items: end;
  padding: clamp(32px, 4vw, 52px) clamp(18px, 6vw, 82px) clamp(36px, 5vw, 60px);
  overflow: hidden;
}

.guides-hero-media,
.guides-hero-overlay {
  position: absolute;
  inset: 0;
}

.guides-hero-media {
  z-index: -2;
  background:
    linear-gradient(rgba(13, 17, 13, 0.06), rgba(13, 17, 13, 0.18)),
    url("assets/photos/forest-guides-1200.jpg") center/cover;
  transform: scale(1.015);
}

.guides-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 17, 13, 0.94) 0%, rgba(13, 17, 13, 0.72) 48%, rgba(13, 17, 13, 0.28) 100%),
    linear-gradient(0deg, #10140f 0%, rgba(13, 17, 13, 0) 42%);
}

.guides-hero-inner {
  max-width: 930px;
}

.guides-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.7rem, 9vw, 8.4rem);
}

.guides-hero .hero-copy {
  max-width: 710px;
  color: rgba(244, 240, 232, 0.86);
}

.guides-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.guides-hero-meta span {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(244, 240, 232, 0.26);
  background: rgba(13, 17, 13, 0.38);
  color: rgba(244, 240, 232, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
}

.guide-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  background:
    linear-gradient(180deg, #10140f, #121610 78%, #0f130e);
}

.guide-editorial-intro {
  position: sticky;
  top: 104px;
  max-width: 620px;
}

.guide-editorial-intro h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.96;
}

.guide-editorial-intro p:last-child,
.guide-index-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.guide-route-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.guide-route-list article {
  border-bottom: 1px solid var(--line);
}

.guide-route-list a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px 24px;
  padding: 18px 0;
  color: var(--ink);
  text-decoration: none;
}

.guide-route-list span {
  color: var(--ember);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.guide-route-list strong {
  display: block;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.04;
}

.guide-route-list em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
}

.guide-route-list a:hover strong {
  color: var(--moss-bright);
}

.guide-dossier {
  background:
    linear-gradient(180deg, rgba(225, 120, 63, 0.05), rgba(244, 240, 232, 0.025) 46%, rgba(111, 127, 69, 0.06)),
    #0f130e;
}

.guide-dossier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-dossier-grid article {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: clamp(16px, 2vw, 24px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-track-label {
  margin-bottom: 14px;
  color: var(--ember);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-dossier-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  line-height: 1.12;
}

.guide-dossier-grid ul {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.guide-dossier-grid a {
  color: var(--muted);
  font-weight: 800;
  text-decoration-color: rgba(165, 186, 103, 0.45);
  text-underline-offset: 4px;
}

.guide-dossier-grid a:hover {
  color: var(--ink);
}

.guide-index {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.04), rgba(244, 240, 232, 0)),
    #10140f;
}

.guide-index-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.68fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.guide-index-heading p:last-child {
  margin-bottom: 12px;
}

.guide-index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.guide-index-list a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 800;
  text-decoration: none;
}

.guide-index-list a:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.guide-index-list a:nth-child(even) {
  padding-left: 22px;
}

.guide-index-list span {
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-index-list a:hover {
  color: var(--moss-bright);
}

.guide-index-note {
  max-width: 860px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.guide-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-category-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.guide-category-grid h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.guide-category-grid p {
  color: var(--muted);
}

.guide-category-grid a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  background: rgba(244, 240, 232, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.guide-category-grid a:hover {
  border-color: rgba(165, 186, 103, 0.55);
  background: rgba(165, 186, 103, 0.1);
}

.guide-article {
  background: #0f130e;
}

.guide-article + .guide-article.related-guides {
  margin-top: -30px;
}

.guide-article.related-guides {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

.related-guides .section-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.related-guides h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.02;
}

.related-guides .section-heading p:last-child {
  max-width: 920px;
}

.related-guides + .guide-article {
  padding-top: clamp(28px, 4vw, 48px);
}

.article-body {
  max-width: 980px;
  color: var(--muted);
  font-size: 1.05rem;
}

.article-body h3 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 1.35rem;
}

.article-body p {
  max-width: 860px;
}

.guide-article a[href^="../best-"],
.guide-article a[href^="../weekly-"],
.guide-article a[href^="../car-emergency-kit-checklist.html"] {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin: 2px 3px;
  padding: 0 12px;
  border: 1px solid rgba(165, 186, 103, 0.45);
  background: rgba(165, 186, 103, 0.12);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  vertical-align: middle;
}

.guide-article a[href^="../best-"]:hover,
.guide-article a[href^="../weekly-"]:hover,
.guide-article a[href^="../car-emergency-kit-checklist.html"]:hover {
  border-color: rgba(200, 217, 138, 0.75);
  background: rgba(165, 186, 103, 0.2);
  color: #fffdf4;
}

.article-body ul {
  max-width: 860px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
}

.article-body li {
  margin-bottom: 8px;
}

.comparison-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  background: rgba(244, 240, 232, 0.04);
  font-weight: 900;
}

.ref-links {
  overflow-wrap: break-word;
}

.ref-links a {
  color: var(--moss-bright);
  text-decoration-color: rgba(165, 186, 103, 0.35);
  text-underline-offset: 3px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.ref-links a:hover {
  color: #c8d98a;
  text-decoration-color: rgba(165, 186, 103, 0.7);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.library-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.library-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.library-grid a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  background: rgba(244, 240, 232, 0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.library-grid a:hover {
  border-color: rgba(165, 186, 103, 0.55);
  background: rgba(165, 186, 103, 0.1);
}

.sponsored-note {
  justify-content: space-between;
  gap: 28px;
  background: #141811;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sponsored-note div {
  max-width: 460px;
}

.sponsored-note p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #0b0e0b;
}

.site-footer > * {
  min-width: 0;
}

.site-footer p {
  margin: 0;
  color: var(--moss-bright);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
    gap: 8px;
    padding: 12px 14px;
  }

  .site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 6px;
    min-width: 0;
  }

  .site-nav a,
  .nav-cta {
    min-height: 34px;
    padding: 7px 9px;
    border: 1px solid rgba(244, 240, 232, 0.14);
    background: rgba(244, 240, 232, 0.05);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .nav-cta {
    min-width: 0;
    justify-self: end;
  }

  .hero {
    min-height: 44vh;
  }

  .sale-banner,
  .intro-grid,
  .core-kit-grid,
  .guide-band,
  .sponsored-note,
  .library-grid,
  .guide-category-grid,
  .guide-editorial,
  .guide-dossier-grid,
  .guide-index-heading,
  .guide-index-list {
    grid-template-columns: 1fr;
  }

  .gear-layout,
  .core-kit-card {
    grid-template-columns: minmax(260px, min(44vw, 400px)) minmax(0, 1fr);
    gap: 18px;
  }

  .guide-editorial-intro {
    position: static;
  }

  .guide-dossier-grid {
    border-left: 0;
  }

  .guide-dossier-grid article {
    min-height: 0;
    border-left: 1px solid var(--line);
  }

  .guide-index-list a:nth-child(odd) {
    border-right: 0;
  }

  .guide-index-list a:nth-child(even) {
    padding-left: 0;
  }

  .sponsored-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .sale-button {
    width: 100%;
    min-width: 0;
  }

  .sale-banner {
    position: sticky;
    top: var(--header-h, 77px);
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .sale-banner h2,
  .sale-title {
    margin-bottom: 0;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 18px;
  }

  .site-footer p {
    line-height: 1.35;
  }

  .site-footer > a {
    width: fit-content;
  }

  .footer-copyright {
    order: -2;
  }

  .footer-contact {
    order: -1;
  }

  .intro-grid article {
    padding: 18px;
  }

  .intro-grid h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 1.05;
  }

  .intro-grid p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .kit-panel,
  .core-kit-media {
    position: sticky;
    top: calc(var(--header-h, 72px) + 16px);
    max-width: 400px;
  }

  .kit-panel img,
  .core-kit-media img {
    height: clamp(238px, 37.5vw, 325px);
  }

  .core-kit-media {
    border-right: 0;
    border-bottom: 0;
  }

  .core-kit-content {
    padding: 22px 0 0;
  }
}

@media (max-width: 560px) {
  .hero-media {
    background:
      linear-gradient(rgba(13, 17, 13, 0.1), rgba(13, 17, 13, 0.34)),
      url("assets/photos/desert-road-900.jpg") center/cover;
  }

  .guides-hero-media {
    background:
      linear-gradient(rgba(13, 17, 13, 0.06), rgba(13, 17, 13, 0.18)),
      url("assets/photos/forest-guides-900.jpg") center/cover;
  }

  .site-header {
    gap: 6px;
    padding: 10px 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 32px;
    padding: 6px 8px;
  }

  .site-nav {
    gap: 5px;
  }

  .site-nav a,
  .nav-cta {
    min-height: 32px;
    padding: 6px 7px;
    font-size: 0.7rem;
  }

  .sale-banner {
    gap: 10px;
    padding: 16px 16px 18px;
  }

  .site-footer {
    gap: 8px;
    padding: 22px 16px;
  }

  .site-footer p:first-child {
    max-width: 260px;
  }

  .site-footer a,
  .footer-contact {
    font-size: 0.82rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.35;
  }

  .footer-contact a {
    display: inline;
    margin-top: 0;
  }

  .intro-grid article {
    padding: 16px;
  }

  .intro-grid .icon {
    margin-bottom: 8px;
    font-size: 0.96rem;
  }

  .intro-grid h2 {
    margin-bottom: 8px;
    font-size: clamp(1.38rem, 7vw, 1.85rem);
  }

  .intro-grid p {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .hero {
    min-height: 40vh;
    padding: 28px 18px 36px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 280px);
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .guides-hero {
    min-height: 46vh;
    padding: 28px 18px 36px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3.4rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .guides-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .gear-layout,
  .core-kit-card {
    grid-template-columns: 1fr;
  }

  .kit-panel,
  .core-kit-media {
    position: static;
    max-width: 100%;
  }

  .kit-panel img,
  .core-kit-media img {
    height: clamp(238px, 64vw, 325px);
  }

  .guides-hero-meta span {
    width: 100%;
  }

  .guide-route-list a,
  .guide-index-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .guide-route-list em {
    grid-column: 1 / -1;
  }

  .gear-card,
  .core-kit-content .gear-card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    align-items: start;
    min-height: 0;
    padding: 14px;
  }

  .gear-card > div:first-child {
    display: contents;
  }

  .gear-card .gear-type,
  .gear-card h3,
  .gear-card h4 {
    grid-column: 1;
  }

  .gear-card .gear-type {
    margin-bottom: 0;
  }

  .gear-card h3,
  .gear-card h4 {
    margin-bottom: 0;
  }

  .gear-card > div:first-child > p:not(.gear-type) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .gear-card .commerce-action {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .gear-card a {
    width: 112px;
    min-height: 40px;
  }
}

/* ── Offer Modal ─────────────────────────────────────────────────────────── */
.offer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.offer-modal.is-open {
  display: flex;
}
.offer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 5, 0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 0;
}
.offer-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #111a11;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  padding: 40px 36px 36px;
}
.offer-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  transition: color 0.15s;
}
.offer-modal-close:hover { color: var(--ink); }

.offer-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.offer-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 0;
  margin-bottom: -1px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.offer-tab.active {
  color: var(--moss-bright);
  border-bottom-color: var(--moss-bright);
}
.offer-tab-content { display: none; }
.offer-tab-content.active { display: block; }

.offer-modal-panel h2 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.offer-modal-panel .offer-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--moss-bright);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(244,240,232,0.25); }

.form-group select option {
  background: #0f1a0f;
  color: var(--ink);
}

.offer-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  background: var(--ember);
  color: #0d110d;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s;
}
.offer-submit:hover { background: #c9692e; }

/* Buy Now / QR tab */
.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 8px 0 4px;
  text-align: center;
}
.qr-section p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 400px;
}
.qr-wrap {
  padding: 16px;
  background: #f4f0e8;
  display: inline-flex;
}
.qr-wrap img { display: block; }
.qr-note {
  font-size: 0.85rem;
  color: var(--muted);
}
.qr-note a { color: var(--moss-bright); text-decoration: none; }
.qr-note a:hover { color: #c8d98a; }
.qr-price-note {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.6;
  text-align: center;
  margin-top: 16px;
}

/* ── Footer contact ──────────────────────────────────────────────────────── */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--moss-bright);
  overflow-wrap: anywhere;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.35;
  }

  .footer-contact a {
    display: inline;
    margin-top: 0;
  }
}

/* ───────────────────────────── Key takeaways and FAQ ───────────────────────────── */
.key-takeaways {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.key-takeaways li {
  position: relative;
  padding: 14px 18px 14px 44px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--moss-bright, #6f9560);
  border-radius: 6px;
  line-height: 1.5;
}

.key-takeaways li::before {
  content: "\2713";
  position: absolute;
  left: 14px;
  top: 14px;
  font-weight: 700;
  color: var(--moss-bright, #6f9560);
}

.faq-list {
  display: grid;
  gap: 22px;
}

.faq-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--moss-bright, #d6e0c8);
}

.faq-answer {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .key-takeaways li {
    padding: 12px 14px 12px 38px;
  }
  .faq-item {
    padding: 14px 16px;
  }
}
