:root {
  --paper: #f7f1e8;
  --ink: #241711;
  --muted: #6c5545;
  --line: #decbb8;
  --cream: #f3d6a2;
  --amber: #9b5f2b;
  --dark: #1d130f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
}

.nav-inner,
.section,
.hero-inner,
.footer-inner {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: #fff;
  font-size: 14px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
}

.pill-primary {
  background: var(--cream);
  color: var(--ink);
}

.pill-ghost {
  border: 1px solid rgb(255 255 255 / 0.48);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.45), rgb(0 0 0 / 0.3), rgb(29 19 15 / 0.9));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 92vh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px 0 56px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 7.8vw, 96px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

h3 {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  padding-top: 20px;
  color: rgb(255 255 255 / 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
}

.copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.74);
  padding: 24px;
  box-shadow: 0 10px 30px rgb(36 23 17 / 0.06);
}

.card strong,
.label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.keyword {
  display: inline-block;
  margin-top: 18px;
  border-radius: 999px;
  background: #f2e4d2;
  padding: 9px 12px;
  color: #6b3e1d;
  font-size: 12px;
  font-weight: 800;
}

.dark {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.dark .section {
  color: #fff;
}

.table-wrap {
  margin-top: 42px;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

th,
td {
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  padding: 18px 16px 18px 0;
  color: rgb(255 255 255 / 0.86);
}

th {
  color: rgb(255 255 255 / 0.72);
  font-weight: 800;
}

.mobile-compare {
  display: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.price {
  margin: 0;
  color: var(--amber);
  font-size: 14px;
  font-weight: 800;
}

dl {
  margin: 20px 0 0;
}

dt {
  font-weight: 800;
}

dd {
  margin: 4px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.offer {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--ink);
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.band {
  background: #efe0cf;
}

.guide {
  border: 1px solid #d3bea8;
  border-radius: 8px;
  background: #f8efe5;
  padding: 20px;
  font-size: 18px;
  font-weight: 800;
  transition: background 160ms ease;
}

.guide:hover {
  background: #fff;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

details + details {
  margin-top: 14px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner strong {
  color: var(--ink);
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .nav-inner,
  .section,
  .hero-inner,
  .footer-inner {
    width: min(100% - 40px, 1280px);
  }

  .hero-inner {
    padding-bottom: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-notes,
  .split,
  .grid-2,
  .grid-3,
  .section-head,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-notes,
  .split,
  .section-head,
  .footer-inner {
    display: grid;
  }

  .table-wrap {
    display: none;
  }

  .mobile-compare {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .compare-card {
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 8px;
    background: rgb(255 255 255 / 0.06);
    padding: 20px;
  }

  .compare-card dl {
    margin-top: 16px;
  }

  .compare-card div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    padding: 10px 0;
  }

  .compare-card div:last-child {
    border-bottom: 0;
  }

  .compare-card dt,
  .compare-card dd {
    margin: 0;
    color: rgb(255 255 255 / 0.84);
  }

  .compare-card dt {
    color: rgb(255 255 255 / 0.58);
  }
}

@media (max-width: 430px) {
  .brand {
    letter-spacing: 0.18em;
  }

  .pill {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  h1 {
    font-size: 48px;
  }
}


.page-nav {
  position: absolute;
}

.mini-hero {
  position: relative;
  min-height: 58vh;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.mini-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.62), rgb(29 19 15 / 0.88));
}

.mini-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
  padding: 128px 0 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  color: rgb(255 255 255 / 0.72);
  font-size: 13px;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: start;
}

.article-section {
  margin-top: 64px;
}

.affiliate-box {
  border: 1px solid #d3bea8;
  border-radius: 8px;
  background: #fff8ef;
  padding: 20px;
  color: var(--muted);
}

.affiliate-box strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}

.meta-line {
  margin: 28px 0;
  color: var(--amber);
  font-weight: 800;
}

.quick-take {
  margin: 28px 0 0;
  border: 1px solid #cfb59d;
  border-radius: 8px;
  background: #fffaf3;
  padding: 24px;
}

.quick-take strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-take p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}

.product-grid {
  margin-top: 26px;
}

.check-list {
  margin: 22px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.number-list {
  margin: 22px 0 0;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--amber);
  font-weight: 800;
}

.compact-link {
  margin-top: 10px;
}

.small-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.side-rail {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.78);
  padding: 20px;
}

.side-rail strong {
  color: var(--ink);
}

.side-rail a {
  color: var(--muted);
  font-weight: 700;
}

.side-rail hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.route-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.route-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.8);
  padding: 24px;
}

.route-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-inner p {
  max-width: 460px;
  margin: 8px 0 0;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  font-weight: 800;
}

.dark-card {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.16);
  color: #fff;
}

.dark-card .copy {
  color: rgb(255 255 255 / 0.76);
}

@media (max-width: 920px) {
  .article-layout,
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .side-rail {
    position: static;
  }

  .route-actions,
  .footer-links {
    justify-content: flex-start;
  }
}
