:root {
  --ink: #172026;
  --muted: #64717a;
  --line: #dce3e8;
  --paper: #f6f7f4;
  --panel: #ffffff;
  --accent: #0d6b61;
  --accent-strong: #084c45;
  --gold: #d99732;
  --gold-soft: #fff1d6;
  --coral: #c95d45;
  --sky: #2e6f9e;
  --shadow: 0 18px 55px rgba(23, 32, 38, 0.13);
  --radius: 8px;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 247, 244, 0.94);
  border-top: 4px solid var(--accent);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 72px;
  padding: 6px 0;
  border-bottom: 3px solid var(--ink);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: var(--radius);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
}

.brand small {
  display: none;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 5px;
  min-width: 0;
  overflow: visible;
  padding: 0;
}

.nav a,
.nav button {
  flex: 0 0 auto;
  padding: 6px 2px;
  color: #34424a;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav a:hover,
.nav button:hover,
.nav button.is-active {
  color: var(--accent-strong);
  background: #e8eeeb;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.masthead {
  padding: clamp(42px, 7vw, 78px) 0 30px;
  background:
    linear-gradient(180deg, #edf3ef 0%, rgba(246, 247, 244, 0) 74%),
    var(--paper);
}

.masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 1.14;
}

.masthead h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(48px, 8vw, 92px);
}

.masthead h1::after {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin-top: 20px;
  background: var(--coral);
}

.lede {
  max-width: 680px;
  margin: 0;
  color: #3f4e55;
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
}

.button.primary {
  color: #10211d;
  background: #ffc76d;
}

.button.secondary {
  color: var(--accent-strong);
  border-color: rgba(13, 107, 97, 0.35);
  background: white;
}

.button:hover,
.buy-button:hover {
  transform: translateY(-1px);
}

.masthead-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.masthead-photo img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
}

.trust-strip {
  margin-top: 20px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.trust-strip-inner div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px;
  background: white;
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 24px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.82fr);
  gap: 34px;
  padding: 50px 0;
}

.feature-card {
  display: grid;
  gap: 18px;
  align-items: start;
  width: 100%;
  color: inherit;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.feature-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  max-height: 520px;
  border-radius: var(--radius);
  background: #dce3e8;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.feature-card:hover img {
  transform: scale(1.025);
}

.feature-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 760px;
  padding: 0;
}

.feature-card h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.feature-card p,
.section-heading p,
.method-grid p {
  color: var(--muted);
}

.read-link {
  margin-top: 16px;
  color: var(--accent-strong);
  font-weight: 900;
}

.read-link::after {
  content: " ->";
}

.side-list {
  padding-top: 14px;
  border-top: 3px solid var(--ink);
}

.side-list h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.side-list-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  align-items: start;
  width: 100%;
  padding: 18px 0;
  color: inherit;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.feature-card:focus,
.side-list-item:focus {
  outline: none;
}

.feature-card:focus-visible,
.side-list-item:focus-visible {
  outline: 2px solid rgba(13, 107, 97, 0.45);
  outline-offset: 4px;
}

.side-list-thumb {
  width: 104px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 6px;
  background: #dce3e8;
}

.side-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-list h3 {
  margin: 4px 0 4px;
  font-size: 17px;
  line-height: 1.18;
}

.side-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.72fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2,
.method-grid h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 50px);
}

.section-heading p:last-child {
  margin: 0;
}

.chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: #34424a;
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.chip.is-active {
  color: white;
  border-color: var(--accent);
  background: var(--accent);
}

.section-block {
  padding: clamp(48px, 7vw, 78px) 0;
}

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

.review-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(220, 227, 232, 0.95);
  border-top: 4px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(23, 32, 38, 0.05);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #dce3e8;
}

.review-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

.review-card h3 {
  margin: 4px 0 8px;
  font-size: 21px;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination:empty {
  display: none;
}

.pagination button {
  min-width: 42px;
  min-height: 40px;
  padding: 8px 13px;
  color: #34424a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.pagination button:hover:not(:disabled),
.pagination button.is-active {
  color: white;
  border-color: var(--accent);
  background: var(--accent);
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: var(--radius);
  color: #294045;
  background: #edf3ef;
  font-size: 12px;
  font-weight: 900;
}

.tag.gold {
  color: #4b3210;
  background: var(--gold-soft);
}

.categories-band {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-image-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.category-image-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: white;
  text-align: left;
  background: #dce3e8;
  cursor: pointer;
}

.category-image-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.category-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 20, 0.75), rgba(8, 20, 20, 0.12));
}

.category-image-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 28px;
  align-items: start;
}

.method-grid p {
  margin: 12px 0 0;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-list article {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.method-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.method-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.method-list p {
  margin: 0;
}

.newsletter {
  padding: 62px 0;
  color: white;
  background: var(--ink);
  text-align: center;
}

.newsletter h2 {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
}

.newsletter p {
  margin: 10px auto 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.newsletter form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 8px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter button {
  padding: 12px 20px;
  color: #10211d;
  border: 0;
  border-radius: var(--radius);
  background: #ffc76d;
  font-weight: 900;
  cursor: pointer;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.pros-cons div {
  padding: 18px;
  border-radius: var(--radius);
}

.pros-cons h4 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 14px;
  text-transform: uppercase;
}

.pros-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.cons-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.buy-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 16px;
  color: white;
  background: var(--accent);
  border-radius: var(--radius);
  font-weight: 900;
}

.source-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  background: #f7f8f6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.source-list a {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.notice-box {
  margin: 24px 0;
  padding: 16px 18px;
  color: #263c3c;
  background: #edf3ef;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

.article-page-content {
  padding: 42px 0 58px;
  background: white;
}

.article-page-content .wrap {
  width: min(820px, calc(100% - 44px));
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--ink);
}

.article-single {
  max-width: 720px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 30px;
}

.article-header h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.13;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: var(--muted);
  font-size: 13px;
}

.article-hero {
  margin: 26px 0 30px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #dce3e8;
  border-radius: var(--radius);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.82;
}

.article-body > p:first-of-type {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.article-body h2 {
  margin: 40px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 28px;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body strong {
  color: var(--ink);
}

.article-body table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
}

.article-body th {
  padding: 12px 14px;
  color: var(--muted);
  text-align: left;
  text-transform: uppercase;
  background: var(--paper);
  border-bottom: 2px solid var(--line);
  font-size: 12px;
}

.article-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.article-body tr:hover td {
  background: #f7f8f6;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 34px 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-item {
  padding: 20px 14px;
  text-align: center;
  background: white;
}

.stat-value {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
}

.stat-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-pick {
  margin-bottom: 18px;
  padding: 22px 26px;
  background: white;
  border-top: 4px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(23, 32, 38, 0.07);
}

.product-pick-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pick-label {
  width: fit-content;
  padding: 4px 10px;
  color: var(--accent);
  background: rgba(13, 107, 97, 0.08);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-pick h3 {
  margin: 4px 0;
  font-size: 24px;
}

.pick-desc,
.pick-price {
  margin: 0;
  color: var(--muted);
}

.pick-price {
  color: var(--ink);
  font-weight: 900;
}

.article-tags {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-tags h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

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

.tags-list .tag {
  border: 0;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.footer {
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 46px;
  padding: 56px 0 34px;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
}

.footer-brand p {
  max-width: 420px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.footer h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

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

.footer-bottom {
  padding: 20px 0 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .masthead-grid,
  .lead-grid,
  .feature-card,
  .method-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

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

  .lead-grid {
    gap: 28px;
    padding: 34px 0;
  }

  .feature-card {
    gap: 18px;
  }

  .feature-card-body {
    justify-content: flex-start;
    padding: 0;
  }

  .feature-card h2 {
    max-width: 760px;
    font-size: clamp(28px, 6vw, 40px);
  }

  .side-list {
    padding-top: 18px;
  }

  .side-list-item {
    grid-template-columns: 132px 1fr;
    align-items: center;
  }

  .side-list-thumb {
    width: 132px;
  }
}

@media (max-width: 1170px) {
  .topbar-inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-x: visible;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav button {
    padding: 8px 10px;
    font-size: 13px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow-x: visible;
  }

  .nav.is-open {
    display: flex;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .trust-strip-inner,
  .review-grid,
  .footer-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }

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

  .lead-grid {
    gap: 24px;
    padding: 26px 0 34px;
  }

  .feature-card {
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }

  .feature-card h2 {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.12;
  }

  .feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .read-link {
    margin-top: 12px;
  }

  .side-list h2 {
    margin-bottom: 4px;
    font-size: 20px;
  }

  .side-list-item {
    grid-template-columns: 108px 1fr;
    gap: 12px;
    padding: 13px 0;
  }

  .side-list-thumb {
    width: 108px;
  }

  .side-list h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .side-list p {
    display: none;
  }

  .newsletter form {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .masthead h1 {
    font-size: 42px;
  }

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

  .category-image-grid {
    grid-template-columns: 1fr;
  }

  .side-list-item {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .side-list-thumb {
    display: none;
  }

  .side-list .eyebrow {
    margin-bottom: 2px;
  }

}
