:root {
  --paper: #f7f7f5;
  --surface: #ffffff;
  --ink: #171b19;
  --muted: #65706a;
  --line: #e7e4dc;
  --soft: #f1efe9;
  --brand: #186b52;
  --brand-dark: #114a39;
  --accent: #e8b24f;
  --blue: #315fd6;
  --youtube: #ff0033;
  --instagram: #c13584;
  --tiktok: #111111;
  --amazon: #ff9900;
  --rakuten: #bf0000;
  --shadow: 0 16px 48px rgba(23, 27, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.menu-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  color: #444c48;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(23, 27, 25, 0.06);
  outline: none;
}

.menu-toggle {
  display: none;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.button {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button.amazon {
  background: var(--amazon);
  color: #1f1700;
}

.button.rakuten {
  background: var(--rakuten);
  color: #fff;
}

.button.video {
  background: var(--blue);
  color: #fff;
}

.button.youtube {
  background: var(--youtube);
  color: #fff;
}

.button.instagram {
  background: var(--instagram);
  color: #fff;
}

.button.tiktok {
  background: var(--tiktok);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 17, 14, 0.82), rgba(10, 17, 14, 0.22)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions,
.card-actions,
.affiliate-strip,
.social-list,
.tag-list,
.video-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 76px;
}

.blog-home {
  padding-top: 34px;
}

.home-intro {
  margin-bottom: 28px;
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--line);
}

.home-intro h1 {
  margin-bottom: 10px;
  font-size: 3.2rem;
}

.home-intro p {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #303733;
  font-size: 0.9rem;
  font-weight: 800;
}

.category-nav a:hover,
.category-nav a:focus-visible {
  border-color: var(--brand);
  color: var(--brand-dark);
  outline: none;
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.home-primary,
.home-sidebar {
  display: grid;
  gap: 26px;
}

.home-sidebar {
  position: sticky;
  top: 96px;
}

.featured-review {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 27, 25, 0.05);
}

.featured-media {
  display: block;
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-review h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  line-height: 1.32;
}

.featured-review p {
  color: var(--muted);
  line-height: 1.8;
}

.home-section {
  display: grid;
  gap: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.section-title span {
  font-size: 1.45rem;
  font-weight: 900;
}

.section-title a {
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.new-post-list,
.mini-card-grid {
  display: grid;
  gap: 12px;
}

.compact-post {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compact-media {
  overflow: hidden;
  background: var(--soft);
  border-radius: 6px;
  aspect-ratio: 4 / 3;
}

.compact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-post h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.profile-panel h2 {
  font-size: 1.25rem;
}

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

.section-head h2 {
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1.16;
}

.section-head p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 27, 25, 0.06);
}

.post-card.hidden {
  display: none;
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d8ded8;
}

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

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

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(23, 116, 91, 0.1);
  color: var(--brand-dark);
}

.post-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.post-card p {
  color: var(--muted);
  line-height: 1.68;
}

.card-actions {
  margin-top: auto;
  padding-top: 6px;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 54px;
  align-items: stretch;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.panel h2,
.panel h3 {
  margin-bottom: 12px;
  line-height: 1.25;
}

.panel p {
  color: var(--muted);
  line-height: 1.72;
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: var(--brand);
  outline: none;
}

.filters {
  margin-bottom: 24px;
}

.search {
  width: min(420px, 100%);
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--ink);
  color: #fff;
  outline: none;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}

.article {
  min-width: 0;
}

.legal-page {
  max-width: 860px;
}

.article-hero {
  margin-bottom: 28px;
}

.article-hero img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: var(--surface);
  border-radius: 8px;
}

.article h1 {
  max-width: 880px;
  color: var(--ink);
  font-size: 3rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

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

.article-section h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
  line-height: 1.25;
}

.article-section p,
.article-section li {
  color: #2f3935;
  font-size: 1rem;
  line-height: 1.85;
}

.article-section ul {
  padding-left: 1.25rem;
}

.mobile-toc,
.mobile-purchase-separator {
  display: none;
}

.article-image {
  margin: 0 0 18px;
}

.article-image img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.shop-product-card {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 12px solid #f2f3f3;
  border-radius: 8px;
}

.shop-product-image {
  min-height: 250px;
  overflow: hidden;
  background: #fff;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-product-copy {
  min-width: 0;
  padding: 18px 8px 18px 0;
}

.shop-product-copy h3 {
  margin-bottom: 18px;
  font-size: 1.55rem;
  line-height: 1.35;
}

.shop-product-brand {
  margin-bottom: 30px;
  color: #303432;
  font-size: 1.15rem;
}

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

.shop-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 62px;
  padding: 0 18px 0 22px;
  border-radius: 4px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(23, 27, 25, 0.12);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

.shop-link.amazon {
  background: #f7a34c;
}

.shop-link.rakuten {
  background: #dd6669;
}

.shop-link b {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.shop-link:hover,
.shop-link:focus-visible {
  filter: brightness(0.96);
  outline: none;
  transform: translateY(-1px);
}

.shop-product-copy small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.video-section {
  display: grid;
  justify-items: center;
}

.video-section h2 {
  justify-self: start;
}

.shorts-frame {
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #101513;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 27, 25, 0.12);
}

.shorts-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-actions {
  justify-content: center;
  margin-top: 16px;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.summary-box {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.summary-box h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.summary-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.summary-box li {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.62;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.spec-table th,
.spec-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--muted);
  font-size: 0.88rem;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.sticky-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.contact-page {
  background: var(--paper);
}

.contact-hero-band {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 246, 240, 0.9) 54%, rgba(255, 245, 220, 0.92)),
    var(--paper);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 42px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
}

.contact-hero-copy {
  min-width: 0;
}

.contact-hero-copy .lead,
.contact-visual-caption strong,
.contact-form-head p,
.contact-info-panel p,
.contact-direct-note {
  overflow-wrap: anywhere;
}

.contact-kicker,
.form-kicker,
.side-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  margin-bottom: 18px;
  font-size: 3.45rem;
  line-height: 1.04;
}

.contact-hero-copy .lead {
  max-width: 660px;
  margin-bottom: 22px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(23, 116, 91, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-visual {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 116, 91, 0.18);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 27, 25, 0.1);
}

.contact-visual-image {
  min-height: 224px;
  background:
    linear-gradient(180deg, rgba(10, 17, 14, 0.04), rgba(10, 17, 14, 0.2)),
    var(--contact-image);
  background-position: center;
  background-size: cover;
}

.contact-visual-caption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.contact-visual-caption span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-visual-caption strong {
  display: block;
  line-height: 1.55;
}

.contact-main {
  padding-top: 42px;
}

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

.contact-form {
  min-width: 0;
  display: grid;
  gap: 20px;
  padding: 30px;
}

.contact-form-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-form-head h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.contact-form-head p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-size: 0.78rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fbfcfa;
  color: var(--ink);
  font: inherit;
}

.field input {
  min-height: 50px;
}

.field textarea {
  min-height: 220px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(23, 116, 91, 0.16);
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.form-footer .button {
  min-width: 148px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-side {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.contact-info-panel {
  padding: 22px;
}

.contact-info-panel h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.contact-email {
  display: inline-flex;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  margin-top: 4px;
  padding: 0 12px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(23, 116, 91, 0.22);
  border-radius: 8px;
  background: rgba(23, 116, 91, 0.08);
  color: var(--brand-dark);
  font-weight: 900;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--brand);
  outline: none;
}

.contact-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  line-height: 1.62;
}

.contact-check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(23, 116, 91, 0.11);
}

.contact-direct-note {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: rgba(246, 183, 60, 0.13);
  color: #5f4a11;
  line-height: 1.72;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.plain-list {
  margin: 0;
  padding-left: 1.1rem;
}

.plain-list li {
  margin-bottom: 9px;
  color: var(--muted);
  line-height: 1.65;
}

.result-panel {
  max-width: 760px;
}

.result-eyebrow {
  border-color: var(--line);
  color: var(--brand-dark);
  margin-bottom: 18px;
}

.site-footer {
  background: #101513;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
}

.footer-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

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

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    width: 100%;
    padding: 14px 16px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav a,
  .nav .button {
    width: 100%;
  }

  .hero {
    min-height: 520px;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 40px 0;
  }

  .contact-visual {
    max-width: 520px;
  }

  h1,
  .article h1 {
    font-size: 2.65rem;
  }

  .contact-hero-copy h1 {
    font-size: 2.65rem;
  }

  .grid,
  .feature-band,
  .home-layout,
  .featured-review,
  .article-shell,
  .contact-layout,
  .summary-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .home-sidebar,
  .sticky-side {
    position: static;
  }

  .desktop-toc {
    display: none;
  }

  .mobile-toc {
    display: block;
    margin-top: 26px;
  }

  .section-head,
  .section-title {
    display: block;
  }

  .section-title a {
    display: inline-flex;
    margin-top: 8px;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .main,
  .hero-content,
  .contact-hero-inner,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding-top: 106px;
    padding-bottom: 48px;
  }

  h1,
  .home-intro h1,
  .article h1 {
    font-size: 2.15rem;
  }

  .hero p,
  .lead {
    font-size: 1rem;
  }

  .main {
    padding-top: 38px;
  }

  .contact-main {
    padding-top: 32px;
  }

  .contact-hero-copy h1 {
    font-size: 2.15rem;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .button,
  .nav a,
  .menu-toggle {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .card-body,
  .panel,
  .summary-box {
    padding: 18px;
  }

  .home-intro {
    padding-top: 8px;
  }

  .featured-review {
    padding: 14px;
  }

  .featured-review h2 {
    font-size: 1.45rem;
  }

  .compact-post {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .compact-post h3 {
    font-size: 0.95rem;
  }

  .article-primary-actions .mobile-purchase-separator {
    display: flex;
    flex: 0 0 100%;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .article-primary-actions .mobile-purchase-separator::before,
  .article-primary-actions .mobile-purchase-separator::after {
    height: 1px;
    flex: 1;
    background: var(--line);
    content: "";
  }

  .article-primary-actions .purchase-button {
    flex: 1 1 calc(50% - 5px);
  }

  .shop-product-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    border-width: 8px;
  }

  .shop-product-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .shop-product-copy {
    padding: 8px;
  }

  .shop-product-copy h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .shop-product-brand {
    margin-bottom: 18px;
  }

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

  .shop-link {
    min-height: 56px;
  }
}
