:root {
  --bg: #f5ecdf;
  --paper: #fffaf3;
  --paper-strong: #fffdf9;
  --ink: #23323a;
  --muted: #48575f;
  --line: rgba(35, 50, 58, 0.12);
  --canyon: #944624;
  --canyon-soft: #eec2a8;
  --sage: #677257;
  --sage-soft: #dce2d1;
  --gold: #c8963e;
  --gold-soft: #f1dfb7;
  --ink-soft: #d7e3e8;
  --shadow: 0 24px 60px rgba(52, 42, 28, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --headline: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(201, 150, 62, 0.18), transparent 28rem),
    radial-gradient(circle at left 18%, rgba(185, 91, 51, 0.12), transparent 24rem),
    linear-gradient(180deg, #f8f1e7 0%, var(--bg) 58%, #f2e7d8 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 239, 0.84);
  border-bottom: 1px solid rgba(35, 50, 58, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: 52px;
}

.brand-text {
  font-family: var(--headline);
  font-size: 1.08rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.96rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink);
}

.top-nav a:hover,
.top-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--canyon);
}

.hero,
.page-hero {
  padding: 4.25rem 0 2rem;
}

.hero-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.85fr;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.pick-card,
.score-panel,
.faq-card,
.info-card {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.4rem;
}

.hero-panel {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(35, 50, 58, 0.96), rgba(35, 50, 58, 0.88)),
    linear-gradient(135deg, rgba(201, 150, 62, 0.24), transparent 55%);
  color: #f8f5ef;
}

.hero-shot,
.editorial-shot {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.hero-shot {
  margin-bottom: 1.15rem;
  aspect-ratio: 16 / 11;
}

.editorial-shot {
  margin-top: 1.25rem;
  aspect-ratio: 16 / 10;
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow,
.panel-label,
.pick-label {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.panel-label {
  color: #f0d5ab;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  font-family: var(--headline);
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.45rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary {
  background: var(--canyon);
  color: #fff8f3;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(35, 50, 58, 0.14);
  color: var(--ink);
}

.btn-block {
  width: 100%;
  margin-top: 1rem;
}

.hero-points,
.feature-list,
.prose-list {
  padding-left: 1.2rem;
}

.hero-points li,
.feature-list li,
.prose-list li {
  margin-bottom: 0.55rem;
}

.mini-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.mini-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-card strong,
.score-row strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.notice-band {
  padding: 0 0 1rem;
}

.notice-copy {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(185, 91, 51, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 240, 0.82);
  color: #5f4638;
}

.notice-copy a {
  color: var(--canyon);
}

.section {
  padding: 1.5rem 0 2.6rem;
}

.section-soft {
  padding-top: 0.2rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

.pick-grid,
.faq-grid,
.criteria-grid {
  display: grid;
  gap: 1.2rem;
}

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

.pick-card {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.pick-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: var(--canyon);
}

.accent-canyon::before {
  background: var(--canyon);
}

.accent-sage::before {
  background: var(--sage);
}

.accent-ink::before {
  background: var(--ink);
}

.accent-gold::before {
  background: var(--gold);
}

.text-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 700;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.16em;
}

.split-grid {
  grid-template-columns: 1.1fr 0.85fr;
  align-items: start;
}

.score-panel {
  padding: 1.5rem;
}

.score-row,
.fit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.score-row:first-of-type,
.fit-row:first-of-type {
  border-top: 0;
}

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

.faq-card,
.info-card {
  padding: 1.35rem;
}

.page-hero .narrow {
  padding: 0 0 0.5rem;
}

.prose p,
.prose li,
.section-head p,
.score-panel,
.pick-card p,
.faq-card p {
  color: var(--muted);
}

.criteria-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0 1.4rem;
}

.fit-table {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 253, 249, 0.9);
}

.fit-head {
  background: rgba(35, 50, 58, 0.05);
  font-weight: 700;
  color: var(--ink);
}

.also-consider {
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 1.2rem 0 2.2rem;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: start;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(35, 50, 58, 0.1);
}

.brand-footer {
  margin-bottom: 0.6rem;
}

.footer-copy {
  max-width: 34rem;
  color: var(--muted);
}

.footer-disclosure {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

@media (max-width: 920px) {
  .hero-grid,
  .pick-grid,
  .split-grid,
  .faq-grid,
  .criteria-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-nav {
    gap: 0.85rem;
    font-size: 0.92rem;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .nav-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav,
  .hero-actions,
  .footer-links {
    width: 100%;
  }

  .brand-mark {
    height: 46px;
  }

  .top-nav {
    justify-content: space-between;
  }

  .hero,
  .page-hero {
    padding-top: 3.3rem;
  }

  .hero-copy,
  .hero-panel,
  .pick-card,
  .faq-card,
  .info-card,
  .score-panel {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .btn {
    width: 100%;
  }
}
