:root {
  --bg: #f5f1e9;
  --surface: #fffdf8;
  --surface-soft: #efe8da;
  --ink: #18241f;
  --muted: #56655f;
  --line: rgba(24, 36, 31, 0.12);
  --primary: #21483d;
  --primary-strong: #16342c;
  --accent: #bb7f53;
  --accent-hot: #efaf1a;
  --accent-hot-strong: #d98f00;
  --masthead: #12231f;
  --masthead-soft: #1a302a;
  --masthead-text: rgba(255, 255, 255, 0.92);
  --masthead-muted: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 70px rgba(24, 36, 31, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(187, 127, 83, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(33, 72, 61, 0.12), transparent 26%),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
}

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

a,
button {
  -webkit-tap-highlight-color: rgba(239, 175, 26, 0.28);
}

img {
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.shell-wide {
  width: min(1240px, calc(100% - 32px));
}

.shell-narrow {
  width: min(820px, calc(100% - 32px));
}

.topbar {
  background: var(--masthead);
  color: var(--masthead-muted);
  font-size: 0.86rem;
}

.topbar p {
  margin: 0;
  padding: 0.52rem 0 0.46rem;
}

.topbar a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--masthead);
  border-bottom: 4px solid var(--accent-hot);
  box-shadow: 0 16px 34px rgba(18, 35, 31, 0.18);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  color: var(--masthead-text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #21483d, #3f6e61);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.brand-mark-image {
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--masthead-muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.55rem);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: clamp(1rem, 1vw, 1.08rem);
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.36rem;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link.is-active {
  color: #fff;
}

.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  color: var(--masthead-text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.menu-toggle-icon {
  position: relative;
  display: grid;
  gap: 5px;
  width: 22px;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.is-open,
.menu-toggle[aria-expanded="true"] {
  background: var(--accent-hot);
  border-color: var(--accent-hot-strong);
  color: #18241f;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(1),
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(2),
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(3),
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero,
.article-hero {
  padding: 4.75rem 0 2.25rem;
}

.article-hero {
  padding-bottom: 0.6rem;
}

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

.hero-grid {
  grid-template-columns: 1.6fr 0.95fr;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.disclosure-card,
.trust-panel,
.trust-card,
.criteria-card,
.article-card,
.content-block,
.author-box,
.product-card,
.faq-card {
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero .shell,
.article-hero-grid > div,
.hero-panel,
.disclosure-card,
.trust-panel,
.trust-card,
.criteria-card,
.content-block,
.author-box,
.product-card,
.faq-card {
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: 2.5rem;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1,
.section-head h2,
.footer-title,
.content-block h2,
.article-section h2,
.author-box h2,
.trust-panel-title,
.disclosure-card h3,
.hero-panel h3,
.product-card h3,
.faq-card h3,
.article-card h3 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  line-height: 1.02;
}

.hero-lead,
.page-intro,
.article-summary {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  background: var(--accent-hot);
  color: #18241f;
  box-shadow: 0 14px 32px rgba(239, 175, 26, 0.28);
}

.btn-secondary {
  background: rgba(33, 72, 61, 0.08);
  border: 1px solid rgba(33, 72, 61, 0.18);
  color: var(--primary-strong);
}

.btn-secondary:focus-visible {
  background: var(--accent-hot);
  border-color: var(--accent-hot-strong);
  color: #18241f;
  box-shadow: 0 14px 32px rgba(239, 175, 26, 0.24);
}

.hero-panel,
.disclosure-card,
.trust-panel {
  padding: 1.6rem;
}

.hero-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.hero-panel li + li,
.pros-cons li + li {
  margin-top: 0.55rem;
}

.hero-proof-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero-proof-card {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(33, 72, 61, 0.12);
  border-radius: 18px;
  background: rgba(33, 72, 61, 0.055);
}

.hero-proof-card strong,
.hero-proof-card span {
  display: block;
}

.hero-proof-card strong {
  color: var(--primary-strong);
  font-size: 0.9rem;
}

.hero-proof-card span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.trust-panel-title {
  margin: 1rem 0;
  color: var(--ink);
  font-size: 1.17rem;
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: 1.7rem 0 2.4rem;
}

.section-soft {
  padding-top: 2.6rem;
  padding-bottom: 2.8rem;
}

.article-body-section {
  padding-top: 0.7rem;
}

.article-image-section {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.section-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.08;
}

.eyebrow,
.footer-kicker,
.hero-panel-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.article-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.article-card-link {
  display: block;
  height: 100%;
}

.thumb {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: end;
  padding: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.thumb-with-image {
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #18241f;
}

.thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.thumb-with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.5));
}

.thumb span {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.tone-copper { background: linear-gradient(135deg, #21483d, #b36f46); }
.tone-sage { background: linear-gradient(135deg, #2a5347, #7c9a77); }
.tone-ink { background: linear-gradient(135deg, #12242d, #476d79); }
.tone-sky { background: linear-gradient(135deg, #2d546f, #89a9c4); }
.tone-rose { background: linear-gradient(135deg, #7e5b58, #d5a389); }
.tone-amber { background: linear-gradient(135deg, #704f29, #d0a063); }
.tone-stone { background: linear-gradient(135deg, #404240, #8a8f87); }
.tone-mint { background: linear-gradient(135deg, #295249, #76b0a0); }
.tone-ocean { background: linear-gradient(135deg, #1c4965, #5b89a3); }
.tone-clay { background: linear-gradient(135deg, #6c4a34, #c58d68); }

.article-card-body {
  padding: 1.35rem;
}

.article-card h3 {
  margin: 0.4rem 0 0.8rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card-compact .thumb {
  min-height: 132px;
}

.article-card-compact .thumb-with-image {
  min-height: 0;
}

.article-card-compact h3 {
  font-size: 1.25rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.eval-grid,
.footer-grid {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.eval-dont-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.eval-dont-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.eval-dont-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.criteria-grid,
.product-grid,
.faq-grid,
.trust-strip {
  display: grid;
  gap: 1rem;
}

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

.criteria-card,
.trust-card {
  padding: 1.35rem;
}

.page-hero .shell,
.article-hero-grid > div {
  padding: 2rem;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-hero-grid {
  grid-template-columns: 1.35fr 0.85fr;
  align-items: start;
}

.breadcrumb {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.meta-row-article {
  margin-top: 1.15rem;
}

.article-layout,
.prose-stack {
  display: grid;
  gap: 1.1rem;
}

.article-prose {
  width: min(820px, 100%);
}

.article-featured-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.article-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.content-block,
.article-section,
.product-card,
.faq-card {
  padding: 1.55rem;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.content-block h2,
.article-section h2 {
  margin: 0 0 0.85rem;
  font-size: 2rem;
}

.content-block p + p,
.article-section p + p,
.product-card p + p,
.faq-card p + p {
  margin-top: 1rem;
}

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

.product-head h3 {
  margin: 0.35rem 0 0;
  font-size: 1.55rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.pros-cons h4 {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pros-cons ul {
  margin: 0;
  padding-left: 1.1rem;
}

.product-note {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.faq-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.7rem;
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, #21483d, #b36f46);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.author-role,
.footer-copy {
  color: var(--muted);
}

.site-footer {
  margin-top: 3rem;
  padding: 2.45rem 0 1.35rem;
  background: #12231f;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer .footer-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
}

.footer-title {
  margin: 0.45rem 0 0.75rem;
  max-width: 20ch;
  font-size: clamp(1.55rem, 1.85rem, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  color: #fff;
}

.footer-copy {
  max-width: 54ch;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  justify-items: start;
}

.footer-column-title {
  margin: 0 0 0.2rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding-bottom: 0.12rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.08rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-links a:focus-visible {
  color: #fff;
}

.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.footer-bottom {
  display: grid;
  gap: 1rem;
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.footer-disclosure {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.76);
}

.footer-disclosure p,
.footer-meta {
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: #fff;
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }

  .brand:hover .brand-mark {
    filter: brightness(1.08) drop-shadow(0 0 14px rgba(239, 175, 26, 0.34));
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 0 24px rgba(239, 175, 26, 0.18);
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary:hover {
    background: var(--accent-hot);
    color: #18241f;
    box-shadow: 0 14px 32px rgba(239, 175, 26, 0.28);
  }

  .btn-secondary:hover {
    background: var(--accent-hot);
    border-color: var(--accent-hot-strong);
    color: #18241f;
    box-shadow: 0 14px 32px rgba(239, 175, 26, 0.24);
  }

  .article-card-link:hover .thumb-with-image .thumb-image {
    filter: brightness(0.84) saturate(0.95);
    transform: scale(1.025);
  }

  .footer-links a:hover {
    color: #fff;
  }

  .footer-links a:hover::after {
    transform: scaleX(1);
  }
}

@media (hover: none) and (pointer: coarse) {
  .brand:active .brand-mark {
    filter: brightness(1.12) drop-shadow(0 0 12px rgba(239, 175, 26, 0.3));
    transform: scale(0.98);
    box-shadow: 0 10px 22px rgba(239, 175, 26, 0.24);
  }

  .menu-toggle:active {
    background: var(--accent-hot);
    border-color: var(--accent-hot-strong);
    color: #18241f;
    transform: scale(0.98);
  }

  .nav-link:active {
    color: #fff;
  }

  .nav-link:active::after {
    transform: scaleX(1);
  }

  .btn:active {
    background: var(--accent-hot);
    border-color: var(--accent-hot-strong);
    color: #18241f;
    transform: scale(0.98);
  }

  .text-link:active {
    color: #8b4d2f;
    text-decoration-color: var(--accent-hot);
  }

  .article-card-link:active .thumb-with-image .thumb-image {
    filter: brightness(0.84) saturate(0.95);
    transform: scale(1.025);
  }

  .footer-links a:active,
  .footer-links [data-cookie-settings]:active {
    color: #fff;
  }

  .footer-links a:active::after,
  .footer-links [data-cookie-settings]:active::after {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .article-hero-grid,
  .eval-grid,
  .footer-grid,
  .product-grid,
  .faq-grid,
  .criteria-grid,
  .trust-strip,
  .card-grid-featured,
  .card-grid-compact,
  .card-grid-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 16px;
    left: 16px;
    top: calc(100% + 8px);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(18, 35, 31, 0.98);
    box-shadow: 0 24px 70px rgba(18, 35, 31, 0.36);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .nav-link {
    min-height: 46px;
    font-size: 1.04rem;
  }

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

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .hero-copy,
  .page-hero .shell,
  .article-hero-grid > div,
  .hero-panel,
  .disclosure-card,
  .trust-panel,
  .trust-card,
  .criteria-card,
  .content-block,
  .article-featured-image,
  .author-box,
  .product-card,
  .faq-card {
    border-radius: 22px;
  }
}

@media (max-width: 720px) {
  .article-featured-image {
    border-radius: 20px;
  }

  .article-featured-image img {
    aspect-ratio: 16 / 10;
    max-height: none;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .topbar p {
    font-size: 0.78rem;
    line-height: 1.35;
    padding: 0.4rem 0;
  }

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

  .hero-copy,
  .page-hero .shell,
  .article-hero-grid > div,
  .hero-panel,
  .disclosure-card,
  .trust-panel,
  .content-block,
  .product-card,
  .faq-card,
  .author-box {
    padding: 1.35rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .brand {
    gap: 0.72rem;
  }

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

  .brand-copy strong {
    font-size: 1rem;
  }

  .author-box {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile overflow safety (P0-3 from audit) --- */

.hero-grid > *,
.article-hero-grid > *,
.eval-grid > *,
.footer-grid > *,
.hero-copy,
.hero-panel,
.disclosure-card,
.trust-panel,
.trust-card,
.criteria-card,
.content-block,
.article-featured-image,
.author-box,
.product-card,
.faq-card,
.article-card {
  min-width: 0;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1,
.section-head h2,
.content-block h2,
.article-section h2,
.author-box h2,
.product-card h3,
.faq-card h3,
.article-card h3,
.trust-panel-title,
.disclosure-card h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.btn {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }

  .footer-title {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.1;
  }

  .section-head h2,
  .content-block h2,
  .article-section h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    line-height: 1.15;
  }

  .meta-row {
    font-size: 0.85rem;
    gap: 0.4rem 0.8rem;
  }

  .shell,
  .shell-wide,
  .shell-narrow {
    width: min(100%, calc(100% - 20px));
  }
}
