:root {
  --ink: #17201d;
  --muted: #5c665f;
  --paper: #f7f2e8;
  --panel: #fffaf0;
  --green: #19483b;
  --green-2: #0f3229;
  --gold: #c38d38;
  --clay: #b96544;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(28, 43, 36, 0.16);
  font-family: Optima, Candara, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(25, 72, 59, 0.045) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(25, 72, 59, 0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

nav a:hover {
  background: rgba(25, 72, 59, 0.08);
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: 100vw;
  min-height: calc(100vh - 82px);
  padding: clamp(34px, 7vw, 88px) clamp(18px, 5vw, 64px) 40px;
}

.hero > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: min(820px, 100%);
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.96;
  font-weight: 500;
}

h1 span {
  display: block;
}

.lede {
  max-width: min(640px, 100%);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions,
.reviews-heading,
.review-topline,
.review-meta,
.source-note {
  display: flex;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fffaf0;
}

.button.secondary {
  background: rgba(255, 250, 240, 0.5);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(195, 141, 56, 0.7);
  content: "";
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1800 / 1150;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--green-2);
  color: #fffaf0;
}

.stats div {
  min-height: 132px;
  padding: clamp(22px, 4vw, 38px);
  border-right: 1px solid rgba(255, 250, 240, 0.18);
}

.stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.stats [data-count="years"] {
  font-size: 38px;
}

.stats span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.72);
}

.intent-band,
.quality-section,
.reviews-section,
.source-proof,
.source-note {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.intent-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.theme-grid article,
.review-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.78);
}

.theme-grid article {
  min-height: 260px;
  padding: 24px;
}

.theme-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.theme-grid h3 {
  margin: 56px 0 12px;
  font-size: 24px;
}

.theme-grid p,
.source-note p {
  color: var(--muted);
  line-height: 1.6;
}

.quality-section {
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.quality-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quality-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(247, 242, 232, 0.74);
}

.quality-grid span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
}

.quality-grid h3 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.quality-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.quality-grid a {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reviews-section {
  background: #efe6d7;
}

.source-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.source-proof > p {
  grid-column: 2;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.source-links a {
  display: flex;
  min-height: 62px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--green);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.source-links a:hover {
  border-color: rgba(25, 72, 59, 0.5);
  background: rgba(25, 72, 59, 0.08);
}

.reviews-heading {
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.search {
  display: grid;
  gap: 8px;
  width: min(520px, 100%);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(23, 32, 29, 0.26);
  border-radius: 4px;
  padding: 0 14px;
  background: #fffaf0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.topic-links a {
  border: 1px solid rgba(25, 72, 59, 0.28);
  border-radius: 4px;
  padding: 10px 12px;
  background: rgba(255, 250, 240, 0.68);
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.topic-links a:hover {
  border-color: var(--green);
  background: rgba(25, 72, 59, 0.08);
}

.filter {
  min-height: 38px;
  border: 1px solid rgba(23, 32, 29, 0.22);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 250, 240, 0.64);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fffaf0;
}

.results-count {
  margin: 20px 0;
  color: var(--muted);
}

.review-grid {
  column-count: 3;
  column-gap: 16px;
}

.review-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: clamp(18px, 2.5vw, 28px);
  break-inside: avoid;
  box-shadow: 0 10px 24px rgba(28, 43, 36, 0.06);
}

.review-topline {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.review-source-line {
  display: grid;
  justify-items: end;
  gap: 5px;
  text-align: right;
}

.source-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid rgba(25, 72, 59, 0.2);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.rating {
  color: var(--gold);
  font-size: 18px;
  white-space: nowrap;
}

time {
  color: var(--muted);
  font-size: 14px;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.35;
}

.review-meta {
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.tag-row span {
  border: 1px solid rgba(25, 72, 59, 0.18);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 12px;
}

details {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
}

summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  line-height: 1.55;
}

.source-note {
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.source-note h2 {
  min-width: min(420px, 100%);
}

.source-note p {
  max-width: 620px;
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero,
  .intent-band,
  .source-proof,
  .reviews-heading,
  .source-note {
    grid-template-columns: 1fr;
  }

  .reviews-heading,
  .source-proof,
  .source-note {
    display: grid;
  }

  .source-proof > p {
    grid-column: auto;
  }

  .source-links {
    grid-template-columns: 1fr;
  }

  .theme-grid,
  .quality-grid,
  .review-grid {
    column-count: 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .lede {
    width: 100%;
    max-width: calc(100vw - 50px);
  }

  .lede,
  .hero-actions {
    max-width: min(320px, calc(100vw - 50px));
  }

  .lede {
    font-size: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.03;
  }

  h2 {
    max-width: min(310px, calc(100vw - 50px));
    font-size: 28px;
    line-height: 1.08;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

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

  .stats div {
    min-height: 112px;
  }

  .stats [data-count="years"] {
    font-size: 28px;
  }

  .theme-grid {
    display: grid;
  }

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

  .review-grid {
    column-count: 1;
  }

  .review-meta {
    display: grid;
  }

  .review-topline,
  .review-source-line {
    align-items: start;
    justify-items: start;
    text-align: left;
  }

  .tag-row {
    justify-content: flex-start;
  }
}
