:root {
  color-scheme: light;
  --ink: #142c2d;
  --ink-soft: #294244;
  --muted: #627273;
  --line: #dce4df;
  --line-strong: #c7d4ce;
  --paper: #fffdf9;
  --white: #ffffff;
  --cream: #f5f0e7;
  --soft: #eef5f1;
  --wash: #e8f1f2;
  --brand: #0b6266;
  --brand-dark: #08383d;
  --brand-deep: #072c30;
  --blue: #276c92;
  --green: #34745a;
  --amber: #c9792c;
  --stone: #75685b;
  --accent: #dd8a43;
  --accent-soft: #f6dec6;
  --danger-soft: #fff1ee;
  --shadow-sm: 0 12px 30px rgba(13, 54, 56, 0.07);
  --shadow: 0 24px 70px rgba(10, 46, 48, 0.12);
  --shadow-strong: 0 32px 90px rgba(7, 40, 42, 0.2);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
}

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

::selection {
  color: #fff;
  background: var(--brand);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand-deep);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(221, 138, 67, 0.7);
  outline-offset: 3px;
}

.header-shell {
  position: sticky;
  z-index: 30;
  top: 0;
  box-shadow: 0 1px 0 rgba(12, 56, 61, 0.08);
}

.utility-bar {
  color: rgba(255, 255, 255, 0.78);
  background: var(--brand-deep);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.utility-bar__inner {
  display: flex;
  width: min(1360px, calc(100% - 40px));
  min-height: 42px;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin: 0 auto;
}

.utility-link {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border: 1px solid rgba(255, 215, 170, 0.32);
  border-radius: 999px;
  color: #ffd7aa;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.utility-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.site-header {
  border-bottom: 1px solid rgba(18, 57, 59, 0.09);
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  width: min(1360px, calc(100% - 40px));
  min-height: 76px;
  align-items: center;
  gap: clamp(16px, 1.8vw, 26px);
  margin: 0 auto;
}

.brand-cluster {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--brand-dark);
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 11px;
}

.brand__copy {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.5vw, 22px);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--nav {
  min-height: 42px;
  padding: 9px 17px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(11, 98, 102, 0.2);
  white-space: nowrap;
}

.button--nav:hover,
.button--accent:hover {
  background: var(--brand-dark);
}

.button--primary {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 14px 32px rgba(8, 56, 61, 0.2);
}

.button--primary:hover {
  background: var(--brand);
  box-shadow: 0 18px 38px rgba(8, 56, 61, 0.28);
}

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

.button--ghost {
  border-color: var(--line-strong);
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.48);
}

.button--ghost:hover {
  border-color: var(--brand);
  background: #fff;
}

.button--sm,
.button--compact {
  min-height: 40px;
  padding: 8px 15px;
  font-size: 0.84rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px) 0 clamp(76px, 8vw, 112px);
  background:
    radial-gradient(circle at 5% 12%, rgba(221, 138, 67, 0.14), transparent 23rem),
    linear-gradient(120deg, #f9f5ed 0%, #f3eee4 58%, #e9f0eb 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(11, 98, 102, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1240px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
  margin: 0 auto;
}

.hero__content {
  padding: 28px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(221, 138, 67, 0.14);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--brand-deep);
  font-size: clamp(3.15rem, 5.6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  color: var(--brand);
  font-style: italic;
  font-weight: 600;
}

.is-home .hero h1 {
  font-size: clamp(3rem, 4.6vw, 4.75rem);
  line-height: 0.98;
}

.is-home .hero__inner {
  grid-template-columns: minmax(0, 0.97fr) minmax(430px, 1.03fr);
  gap: clamp(38px, 5vw, 70px);
}

.is-home .hero__visual img {
  aspect-ratio: 1.2 / 1;
  object-position: 63% center;
}

.hero__lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.68;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 27px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 750;
}

.trust-row i {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(11, 98, 102, 0.12);
  font-size: 0.7rem;
  font-style: normal;
}

.hero p.hero__note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 44%;
  height: 42%;
  border-radius: 28px;
  background: var(--accent-soft);
  content: "";
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  border: 8px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  object-position: 56% center;
}

.hero__method {
  position: absolute;
  right: 24px;
  bottom: -28px;
  display: grid;
  min-width: min(360px, calc(100% - 32px));
  gap: 3px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: #fff;
  background: rgba(7, 44, 48, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__method span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__method strong {
  font-family: var(--serif);
  font-size: 1.04rem;
}

.hero__method i {
  margin: 0 4px;
  color: #f2b273;
  font-style: normal;
}

.confidence-strip {
  position: relative;
  z-index: 2;
  width: min(1110px, calc(100% - 40px));
  margin: -38px auto 0;
  border: 1px solid rgba(13, 74, 76, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.confidence-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px 28px;
}

.confidence-strip span {
  display: grid;
  gap: 1px;
  padding: 2px 30px;
  text-align: center;
}

.confidence-strip span + span {
  border-left: 1px solid var(--line);
}

.confidence-strip strong {
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 1.06rem;
}

.confidence-strip small {
  color: var(--muted);
  font-size: 0.75rem;
}

.section {
  padding: clamp(70px, 8vw, 112px) 0;
}

.section--soft {
  background: var(--soft);
}

.section--wash {
  background: var(--wash);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.section-heading > div {
  max-width: 770px;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--center .lead {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2,
.article-header h1,
.page-hero h1,
.category-hero h1 {
  margin: 0;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.28;
  letter-spacing: -0.014em;
}

.lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.section--journey {
  padding-top: clamp(82px, 10vw, 140px);
}

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

.journey-card {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

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

.journey-card::after {
  position: absolute;
  right: -52px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.journey-card--blue {
  color: #173e50;
  background: #e7f0f4;
}

.journey-card--amber {
  color: #603b1c;
  background: #f7eadb;
}

.journey-card--green {
  color: #204838;
  background: #e6f0e9;
}

.journey-card__number {
  color: currentColor;
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
  opacity: 0.35;
}

.journey-card__label {
  margin-top: 34px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-card h3 {
  max-width: 280px;
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: 1.58rem;
}

.journey-card p {
  color: currentColor;
  font-size: 0.92rem;
  opacity: 0.82;
}

.journey-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.84rem;
}

.section--categories {
  background: var(--brand-deep);
}

.section--categories .section-heading h2,
.section--categories .section-heading .lead {
  color: #fff;
}

.section--categories .section-heading .lead {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.65);
}

.section--sanitary {
  background:
    radial-gradient(circle at 92% 12%, rgba(221, 138, 67, 0.16), transparent 26rem),
    var(--brand-deep);
}

.sanitary-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  margin-bottom: 42px;
}

.sanitary-intro h2 {
  max-width: 760px;
  color: #fff;
}

.sanitary-intro .lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.7);
}

.sanitary-intro .text-link {
  margin-top: 18px;
}

.sanitary-intro__visual {
  position: relative;
  margin: 0;
}

.sanitary-intro__visual img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  border: 6px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.sanitary-intro__visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 13px;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 44, 48, 0.88);
  font-size: 0.72rem;
  backdrop-filter: blur(10px);
}

.category-card,
.content-card,
.product-card,
.notice-panel,
.related-block,
.article-callout,
.mini-card,
.pick-card,
.offer-card,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-card,
.content-card,
.notice-panel,
.related-block,
.article-callout,
.mini-card,
.pick-card,
.offer-card,
.legal-panel {
  padding: 26px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.category-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.category-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brand);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 800;
}

.category-card--blue .category-icon {
  background: var(--blue);
}

.category-card--amber .category-icon {
  background: var(--amber);
}

.category-card--green .category-icon {
  background: var(--green);
}

.category-card--teal .category-icon {
  background: #168086;
}

.category-card--slate .category-icon {
  background: #526c79;
}

.category-card--stone .category-icon {
  background: var(--stone);
}

.category-card a,
.content-card a {
  text-decoration: none;
}

.category-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.category-card > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.category-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.category-card__footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.category-card__footer span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.section--featured {
  background: #f9f6f0;
}

.content-grid {
  align-items: stretch;
}

.content-card {
  position: relative;
  display: flex;
  min-height: 315px;
  overflow: hidden;
  flex-direction: column;
  padding-top: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 190ms ease, transform 190ms ease;
}

.content-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--brand);
  content: "";
}

.content-card--blue::before {
  background: var(--blue);
}

.content-card--amber::before {
  background: var(--amber);
}

.content-card--green::before {
  background: var(--green);
}

.content-card--slate::before {
  background: #526c79;
}

.content-card--stone::before {
  background: var(--stone);
}

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

.content-card h3 {
  margin: 4px 0 12px;
  font-family: var(--serif);
  font-size: 1.42rem;
}

.content-card > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-link {
  margin-top: auto;
}

.muted,
.card-meta,
.fine-print,
.affiliate-note {
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.77rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #e1efea;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  color: #fff;
}

.section--editorial {
  background: #fff;
}

.section--editorial .content-card:nth-child(4),
.section--editorial .content-card:nth-child(5) {
  grid-column: span 1;
}

.section--products {
  color: #fff;
  background:
    radial-gradient(circle at 95% 8%, rgba(221, 138, 67, 0.18), transparent 25rem),
    var(--brand-deep);
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light .lead {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.66);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.product-card__visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, #eef5f1, #f9f3e9);
}

.product-card__visual img {
  width: 100%;
  max-height: 190px;
  aspect-ratio: 1.05;
  object-fit: contain;
  transition: transform 200ms ease;
}

.product-card:hover .product-card__visual img {
  transform: scale(1.04);
}

.product-card__merchant {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.product-card__best {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.34rem;
}

.product-card__body > p:not(.product-card__best):not(.affiliate-note) {
  margin-bottom: 9px;
  font-size: 0.87rem;
}

.product-card .button--product {
  margin-top: auto;
}

.product-card--compact {
  grid-template-columns: 125px 1fr;
  box-shadow: none;
}

.product-card--compact .product-card__visual {
  padding: 14px;
}

.product-card--compact .product-card__body {
  padding: 20px;
}

.affiliate-note {
  margin: 10px 0 0;
  font-size: 0.69rem;
  line-height: 1.45;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.section-cta strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.section-cta p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.section--products .button--primary {
  flex: 0 0 auto;
  color: var(--brand-deep);
  background: #fff;
  box-shadow: none;
}

.section--products .button--primary:hover {
  background: var(--accent-soft);
}

.section--disclosure {
  padding: clamp(68px, 7vw, 96px) 0;
  color: var(--ink);
  background: #e8f1ed;
}

.disclosure-grid,
.local-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section--disclosure h2 {
  max-width: 580px;
}

.section--disclosure .notice-panel {
  border-color: rgba(11, 98, 102, 0.16);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-sm);
}

.section--pro {
  padding: 54px 0;
  background: #f6f0e7;
}

.pro-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 42px;
  border: 1px solid #ead8c3;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #fffaf2, #f1e3d2);
}

.pro-banner h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.pro-banner p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.pro-banner__offer {
  flex: 0 0 auto;
  text-align: right;
}

.pro-banner__offer > span {
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pro-banner__offer p {
  margin: 5px 0 14px;
  color: var(--brand-dark);
}

.pro-banner__offer del {
  margin-right: 8px;
  color: var(--muted);
}

.pro-banner__offer strong {
  font-family: var(--serif);
  font-size: 2rem;
}

.section--local {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.local-strip h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.local-strip p {
  color: var(--muted);
}

.page-hero,
.article-header,
.category-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 104px) 0 clamp(48px, 6vw, 78px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 5%, rgba(221, 138, 67, 0.15), transparent 25rem),
    linear-gradient(125deg, #f6f1e8, #edf4ef);
}

.article-header h1,
.page-hero h1,
.category-hero h1 {
  max-width: 960px;
  color: var(--brand-deep);
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs a {
  color: var(--brand-dark);
  font-weight: 750;
  text-decoration: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 44px 0 14px;
  color: var(--brand-deep);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.article-body h3 {
  margin-top: 28px;
}

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

.article-intro {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.article-body p,
.article-body li {
  font-size: 1rem;
}

.content-group + .content-group {
  margin-top: 38px;
}

.content-group > h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.article-callout {
  margin: 28px 0;
  border-color: #e8cfb2;
  background: #fff8ee;
}

.article-callout--blue {
  border-color: #c7dfe8;
  background: #edf6f8;
}

.article-callout--warning {
  border-color: #ebcfae;
  background: #fff8ec;
}

.article-callout--safety,
.safety-box {
  border-color: #efc5bd;
  background: var(--danger-soft);
}

.article-callout--quiet {
  background: var(--soft);
}

.article-callout h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.inline-link-note {
  margin: -8px 0 24px;
}

.article-callout ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.safety-box {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #efc5bd;
  border-radius: var(--radius-sm);
}

.sidebar-stack {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 18px;
}

.related-block ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.related-block a {
  color: var(--brand-dark);
  font-weight: 700;
}

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

.mini-card h3,
.pick-card h3 {
  margin: 7px 0;
}

.offer-grid {
  gap: 20px;
  margin-top: 30px;
}

.offer-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
}

.offer-card--featured {
  border-color: rgba(11, 98, 102, 0.25);
  background: linear-gradient(180deg, #edf6f2, #fff);
}

.offer-card h2,
.offer-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.offer-card p,
.offer-card ul {
  margin: 0;
}

.offer-card ul {
  padding-left: 20px;
}

.offer-card .button {
  margin-top: auto;
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  color: var(--brand-dark);
  font-weight: 800;
}

.offer-price strong {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.offer-price__old {
  color: var(--muted);
  text-decoration: line-through;
}

.pick-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: flex-start;
}

.pick-card .button {
  margin-top: auto;
}

.conversion-section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f8f5;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

.comparison-table thead th {
  color: var(--brand-dark);
  background: #e9f2ef;
  font-size: 0.82rem;
}

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

.tab-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 26px;
}

.tab-switch__item {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 850;
  text-decoration: none;
}

.tab-switch__item.is-active {
  border-color: var(--brand-dark);
  color: #fff;
  background: var(--brand-dark);
}

.problem-card-list {
  display: grid;
  gap: 20px;
}

.problem-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.problem-card__main h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.problem-card h3 a {
  text-decoration: none;
}

.problem-card__issue {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-weight: 850;
}

.problem-card__product {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.problem-card__product img {
  width: 100%;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.problem-card__product h4 {
  margin: 0 0 7px;
}

.problem-card__product-label {
  margin: 0 0 5px;
  color: var(--brand);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-card__product p {
  font-size: 0.82rem;
}

.problem-card__product .button {
  margin-top: 4px;
}

.section--symptoms {
  padding-top: clamp(92px, 11vw, 148px);
  background: #fffdf9;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.symptom-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--brand-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.symptom-card:hover {
  border-color: rgba(11, 98, 102, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.symptom-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: #e5f0ec;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 800;
}

.symptom-card > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.symptom-card strong {
  font-family: var(--serif);
  font-size: 1.13rem;
}

.symptom-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.symptom-card i {
  color: var(--amber);
  font-style: normal;
}

.section--cases {
  background:
    radial-gradient(circle at 94% 8%, rgba(221, 138, 67, 0.13), transparent 24rem),
    #f4efe6;
}

.section--cases .section-heading .lead {
  max-width: 410px;
}

.problem-card-list--home {
  gap: 24px;
}

.problem-card-list--home .problem-card {
  scroll-margin-top: 110px;
  border-color: rgba(22, 71, 72, 0.12);
  box-shadow: 0 20px 55px rgba(12, 52, 54, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.problem-card-list--home .problem-card:hover {
  border-color: rgba(11, 98, 102, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.autonomy-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
  margin: 15px 0;
}

.autonomy-meta > span {
  display: inline-grid;
  min-height: 46px;
  align-content: center;
  gap: 1px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.15;
}

.autonomy-meta > span small {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.autonomy-meta .autonomy-meta__verdict {
  border-color: rgba(52, 116, 90, 0.16);
  color: #245d46;
  background: #e5f1e8;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stop-line {
  margin: 15px 0;
  padding: 11px 13px;
  border-left: 3px solid #cc6c54;
  border-radius: 0 10px 10px 0;
  color: #704139;
  background: var(--danger-soft);
  font-size: 0.8rem;
}

.problem-card__main .stop-line strong {
  color: #9a4938;
}

.problem-card-list--home .problem-card__product {
  align-content: center;
  background: linear-gradient(145deg, #edf4ef, #f8f3e9);
}

.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 22px 26px;
  border: 1px solid rgba(11, 98, 102, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.case-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.case-footer strong {
  color: var(--brand-dark);
}

.section--field-method {
  background: #fffdf9;
}

.field-method {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.field-method__story {
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(221, 138, 67, 0.22), transparent 20rem),
    var(--brand-deep);
  box-shadow: var(--shadow-strong);
}

.field-method__story h2 {
  margin-bottom: 26px;
}

.field-method__story blockquote {
  margin: 0 0 24px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  color: #f5dfca;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  line-height: 1.45;
}

.field-method__story > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.method-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps li:first-child {
  padding-top: 0;
}

.method-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.method-steps li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--amber);
  background: #f7eadb;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 800;
}

.method-steps strong {
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.method-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section--limits {
  color: #fff;
  background:
    radial-gradient(circle at 9% 12%, rgba(221, 138, 67, 0.18), transparent 25rem),
    var(--brand-deep);
}

.section--limits .section-heading .lead {
  color: rgba(255, 255, 255, 0.66);
}

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

.limit-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.limit-card__status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.limit-card--go .limit-card__status {
  color: #bfe6cc;
  background: rgba(82, 164, 111, 0.18);
}

.limit-card--pause .limit-card__status {
  color: #f6cf9f;
  background: rgba(221, 138, 67, 0.18);
}

.limit-card--stop .limit-card__status {
  color: #ffcdc2;
  background: rgba(211, 102, 78, 0.2);
}

.limit-card h3 {
  margin: 24px 0 20px;
  font-family: var(--serif);
  font-size: 1.42rem;
}

.limit-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.static-section {
  margin-top: 32px;
}

.static-section h2 {
  font-size: 1.65rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 850;
}

.legal-panel p:last-child {
  margin-bottom: 0;
}

.offer-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

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

.site-footer__inner {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: 1.7fr 0.8fr 0.9fr 0.85fr;
  gap: 48px;
  margin: 0 auto;
  padding: 72px 0 48px;
}

.brand--footer {
  color: #fff;
  font-size: 1.18rem;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 17px;
}

.footer-column > strong {
  color: #f4bd82;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  width: min(1160px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

@media (max-width: 1080px) {
  .site-header__inner {
    gap: 18px;
  }

  .brand__copy small {
    display: none;
  }

  .main-nav {
    gap: 14px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 40px;
  }

  .site-footer__inner {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 920px) {
  .header-shell {
    position: static;
  }

  .site-header__inner {
    flex-wrap: wrap;
    padding: 13px 0;
  }

  .brand {
    margin-right: auto;
  }

  .brand-cluster {
    margin-right: auto;
  }

  .main-nav {
    order: 3;
    overflow-x: auto;
    flex-basis: 100%;
    justify-content: flex-start;
    padding: 2px 0 5px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .is-home .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__content {
    max-width: 720px;
    padding-bottom: 18px;
  }

  .hero__visual img {
    max-height: 560px;
  }

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

  .journey-card:last-child {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .article-layout,
  .disclosure-grid,
  .local-strip,
  .offer-split,
  .problem-card {
    grid-template-columns: 1fr;
  }

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

  .sanitary-intro {
    grid-template-columns: 1fr;
  }

  .sanitary-intro__visual {
    max-width: 680px;
  }

  .sidebar-stack {
    position: static;
  }

  .pro-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pro-banner__offer {
    text-align: left;
  }

  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .utility-bar__inner {
    width: min(100% - 30px, 1160px);
    justify-content: flex-end;
    text-align: right;
  }

  .utility-link {
    font-size: 0.7rem;
  }

  .site-header__inner,
  .hero__inner,
  .section-inner,
  .site-footer__inner,
  .footer-bottom {
    width: min(100% - 30px, 1160px);
  }

  .site-header .button--nav {
    order: 2;
    width: 100%;
    min-height: 40px;
    padding: 8px 13px;
    font-size: 0.78rem;
    white-space: normal;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .is-home .hero h1 {
    font-size: clamp(2.8rem, 12.5vw, 4rem);
  }

  .hero__visual::before {
    display: none;
  }

  .hero__visual img {
    min-height: 370px;
    border-width: 5px;
    border-radius: 22px;
    object-position: 64% center;
  }

  .hero__method {
    right: 14px;
    bottom: -24px;
    min-width: 0;
    padding: 14px 16px;
  }

  .confidence-strip {
    width: calc(100% - 30px);
  }

  .confidence-strip__inner {
    grid-template-columns: 1fr;
    padding: 8px 18px;
  }

  .confidence-strip span {
    padding: 15px 5px;
  }

  .confidence-strip span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .section-heading--center {
    align-items: center;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .grid--3,
  .grid--2,
  .journey-grid,
  .symptom-grid,
  .limit-grid,
  .mini-grid,
  .pick-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .journey-card,
  .journey-card:last-child {
    grid-column: auto;
    min-height: 320px;
  }

  .content-card {
    min-height: 285px;
  }

  .product-card,
  .product-card--compact {
    grid-template-columns: 1fr;
  }

  .product-card__visual {
    min-height: 220px;
  }

  .product-card--compact .product-card__visual {
    min-height: 180px;
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-method__story {
    padding: 32px 26px;
  }

  .pro-banner {
    padding: 28px 24px;
  }

  .problem-card__product {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand__copy {
    font-size: 0.95rem;
  }

  .main-nav {
    margin-right: -15px;
    padding-right: 15px;
  }

  .hero__actions,
  .hero__actions .button,
  .button-row,
  .button-row .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .section {
    padding: 66px 0;
  }

  .category-card,
  .content-card,
  .notice-panel,
  .related-block,
  .article-callout,
  .mini-card,
  .pick-card,
  .offer-card,
  .legal-panel {
    padding: 22px;
  }

  .article-header h1,
  .page-hero h1,
  .category-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
