:root {
  --ink: #152c31;
  --ink-2: #30484b;
  --paper: #fffaf2;
  --paper-2: #fff0dc;
  --cream: #fffdf8;
  --orange: #f47516;
  --orange-dark: #c34a18;
  --mint: #a8d8d0;
  --yellow: #f2bd18;
  --blue: #16a7d1;
  --blue-accessible: #006f8f;
  --line: #ead9c7;
  --muted: #657477;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-warm: rgba(255, 240, 220, 0.72);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(96, 55, 7, 0.12);
  --shadow-soft: 0 12px 32px rgba(96, 55, 7, 0.075);
  --shadow-lift: 0 18px 42px rgba(96, 55, 7, 0.13);
  --site-width: 1140px;
  --page-gutter: 40px;
  --text-width: 720px;
  --wide-text-width: 820px;
  --section-space: clamp(28px, 4vw, 44px);
  --feature-space: clamp(26px, 4vw, 40px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(21, 44, 49, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 32px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 92% 7%, rgba(233, 103, 62, 0.12), transparent 24rem);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

img,
svg {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(var(--site-width), calc(100% - var(--page-gutter)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-main {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-decoration: none;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 41px;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 8px;
  background: linear-gradient(145deg, #ff7217, #f2bc18);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(196, 83, 8, 0.2);
}

.brand-mark i {
  border-radius: 99px;
  background: #fff;
}

.brand-mark i:nth-child(2) {
  background: rgba(255, 255, 255, 0.72);
}

.brand-mark::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange-dark);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--orange);
  color: var(--white);
}

.nav-wrap {
  border-top: 1px solid rgba(207, 196, 178, 0.72);
}

.primary-nav {
  min-height: 48px;
  display: flex;
  align-items: stretch;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--ink);
}

.primary-nav a.active {
  box-shadow: inset 0 -3px var(--orange);
}

.primary-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 220, 72, 0.55), transparent 35%),
    linear-gradient(112deg, #f47516 0%, #f38a10 44%, #e8b900 100%);
  color: #fff;
}

.search-hero__inner {
  position: relative;
  padding-top: clamp(36px, 4.5vw, 50px);
  padding-bottom: 20px;
}

.search-hero__inner::before,
.search-hero__inner::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.search-hero__inner::before {
  top: -190px;
  left: -250px;
  width: 500px;
  height: 500px;
}

.search-hero__inner::after {
  right: -180px;
  bottom: -310px;
  width: 510px;
  height: 510px;
}

.search-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

.search-hero__copy .eyebrow {
  margin-bottom: 10px;
  color: #fff7cf;
}

.search-hero__copy h1 {
  max-width: none;
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.search-hero__copy > p:last-child {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-search-form {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 34px minmax(160px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: 0 auto;
  padding: 9px 10px 9px 20px;
  background: #fff;
  border: 1px solid rgba(23, 42, 42, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
}

.search-lens {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #f28d00;
  border-radius: 50%;
}

.search-lens::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  background: #f28d00;
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.hero-search-form input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 10px 8px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 1rem;
  outline: 0;
}

.hero-search-form input::placeholder {
  color: #7b8587;
  opacity: 1;
}

.search-modes {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 0 6px;
}

.search-modes__label {
  width: 46px;
  color: #4f6164;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.source-mode {
  min-width: 42px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: #4f6164;
  text-align: center;
}

.source-mode b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #59696b;
  border-radius: 50%;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.source-mode--1688 b {
  font-size: 0.52rem;
  letter-spacing: -0.02em;
}

.source-mode small {
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1;
}

.source-mode--image b {
  position: relative;
  background: #fff8df;
  border: 2px solid #ffc20d;
  border-radius: 5px;
}

.source-mode--image b::before {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 6px;
  height: 6px;
  background: #ffc20d;
  border-radius: 50%;
  content: "";
}

.source-mode--image b::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  left: 5px;
  height: 13px;
  background: #ffc20d;
  clip-path: polygon(0 100%, 38% 35%, 57% 64%, 76% 40%, 100% 100%);
  content: "";
}

.hero-search-form button {
  min-width: 138px;
  min-height: 58px;
  padding: 12px 22px;
  background: linear-gradient(110deg, #ffae09, #ff7217);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-search-form button:hover {
  background: var(--ink);
}

.search-hero__links {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 10px auto 20px;
  padding-inline: 8px;
  font-size: 0.75rem;
}

.search-hero__links span {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
}

.search-hero__links a {
  color: #fff;
  font-weight: 800;
}

.search-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.search-steps article {
  min-width: 0;
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 13px;
  align-items: start;
}

.search-steps article > span,
.home-trust > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--blue-accessible);
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.search-steps h2 {
  margin: 2px 0 6px;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.search-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.55;
}

.search-steps > i {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 300;
}

.home-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 12px;
  padding: 14px 17px;
  background: rgba(23, 42, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.home-trust > span {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-family: var(--serif);
}

.home-trust p {
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.55;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: 30px;
  margin-top: 14px;
  margin-bottom: 12px;
  padding-top: clamp(34px, 4.5vw, 48px);
  padding-right: clamp(30px, 5vw, 64px);
  padding-bottom: 30px;
  padding-left: clamp(30px, 5vw, 64px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: clamp(2.65rem, 6.4vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 800px;
  color: var(--ink);
  font-size: clamp(1.86rem, 3.7vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -250px;
  z-index: -1;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(244, 117, 22, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero .eyebrow {
  color: var(--orange-dark);
}

.page-hero .hero-lede {
  color: var(--ink-2);
}

.page-hero .trust-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  color: var(--ink);
}

h2 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: clamp(1.14rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button--ink {
  background: var(--ink);
  color: var(--white);
}

.button--ink:hover {
  background: var(--orange-dark);
}

.button--outline {
  border-color: var(--ink);
  background: transparent;
}

.button--paper {
  background: var(--paper);
  color: var(--ink);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-aside {
  align-self: center;
}

.field-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.field-card::before {
  position: absolute;
  top: -13px;
  left: calc(50% - 42px);
  width: 84px;
  height: 26px;
  background: rgba(234, 203, 115, 0.76);
  content: "";
  transform: rotate(-3deg);
}

.field-card__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.field-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-card blockquote {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.25;
}

.field-lines {
  display: grid;
  gap: 22px;
}

.field-lines i {
  border-bottom: 1px solid var(--line);
}

.stamp {
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 11px 13px;
  border: 3px double var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-10deg);
}

.trust-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  background: rgba(169, 200, 180, 0.22);
  border-left: 4px solid var(--ink);
}

.trust-note span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.trust-note p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.55;
}

.content-wrap {
  padding-bottom: 42px;
}

.content-wrap > * {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.editorial-review {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: -18px;
  margin-bottom: 30px;
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.76rem;
}

.editorial-review span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.editorial-review a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: var(--orange-dark);
  font-weight: 900;
}

.quick-answer {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.quick-answer__label {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quick-answer h2 {
  margin-bottom: 10px;
  font-size: clamp(1.38rem, 2.05vw, 1.82rem);
}

.quick-answer p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 1.02rem;
}

.page-quick {
  margin-bottom: 8px;
}

.section {
  padding-block: var(--section-space);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 3.5vw, 42px);
}

.split > div:first-child h2 {
  max-width: 440px;
}

.prose {
  max-width: var(--text-width);
  font-family: var(--sans);
  font-size: 1.04rem;
  line-height: 1.76;
}

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

.note-line {
  padding: 18px 20px;
  background: var(--white);
  border-left: 3px solid var(--orange);
  font-family: var(--sans);
  font-size: 0.91rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.52fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  color: var(--muted);
}

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

.category-card {
  min-height: 326px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.category-card__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.category-card h3 {
  font-family: var(--sans);
  font-size: 1.65rem;
  font-weight: 800;
}

.category-card p {
  margin-bottom: 12px;
  color: var(--ink-2);
  font-size: 0.87rem;
  line-height: 1.6;
}

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

.directory-section {
  --directory-peach: #fff2e9;
  --directory-border: #f0d8c8;
  padding-top: clamp(30px, 4.5vw, 46px);
}

.directory-heading {
  max-width: var(--wide-text-width);
  margin: 0 auto clamp(22px, 3.5vw, 32px);
  text-align: center;
}

.directory-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
}

.directory-heading .eyebrow i {
  width: 28px;
  height: 5px;
  display: inline-block;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 99px;
}

.directory-heading h2 {
  margin: 14px 0 12px;
  font-family: var(--sans);
  font-size: clamp(1.65rem, 2.9vw, 2.38rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.directory-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.directory-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 25px 18px 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--directory-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.directory-card::before {
  position: absolute;
  inset: auto -25% -54% 24%;
  height: 90%;
  background: radial-gradient(circle, rgba(234, 203, 115, 0.18), transparent 67%);
  content: "";
  pointer-events: none;
}

.directory-card:hover {
  border-color: #efb489;
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.directory-card__icon {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fffaf6, var(--directory-peach));
  border: 1px solid #f5ccb4;
  border-radius: var(--radius-md);
  box-shadow: inset 0 -8px 18px rgba(233, 103, 62, 0.055), 0 8px 18px rgba(184, 66, 36, 0.07);
}

.directory-card__icon i {
  width: 48px;
  height: 48px;
  display: block;
  background: var(--orange);
  -webkit-mask: var(--directory-icon) center / contain no-repeat;
  mask: var(--directory-icon) center / contain no-repeat;
}

.directory-card--blue .directory-card__icon i {
  background: #19a9db;
}

.directory-card--yellow .directory-card__icon i {
  background: #efa910;
}

.directory-card__icon b {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 11px;
  height: 11px;
  background: #19a9db;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(23, 42, 42, 0.14);
}

.directory-card--blue .directory-card__icon b {
  background: #f0b020;
}

.directory-card strong {
  position: relative;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.directory-card__arrow {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.directory-card:hover .directory-card__arrow,
.directory-card:focus-visible .directory-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.directory-note {
  max-width: var(--wide-text-width);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.87rem;
  text-align: center;
}

.directory-note a {
  color: var(--ink);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: underline;
  text-transform: uppercase;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  list-style: none;
}

.step-grid li {
  min-height: 290px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.step-grid li + li {
  border-left: 0;
}

.step-grid li:nth-child(2) {
  background: var(--white);
  box-shadow: inset 0 4px var(--mint);
}

.step-grid span {
  display: block;
  margin-bottom: 68px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.step-grid h3 {
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 800;
}

.step-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.check-panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.tick-list,
.cross-list {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.tick-list li,
.cross-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.tick-list li span,
.cross-list li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.search-lab,
.source-board,
.weight-board,
.red-flags {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 48px);
  margin-block: var(--feature-space);
  padding: clamp(35px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.search-lab {
  background: var(--surface-warm);
}

.source-board,
.weight-board,
.red-flags {
  background: var(--white);
}

.search-lab h2,
.source-board h2,
.weight-board h2,
.red-flags h2 {
  font-size: clamp(1.44rem, 2.2vw, 1.98rem);
}

.search-lab__copy > p {
  max-width: 560px;
}

.search-box {
  align-self: center;
  padding: 27px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.search-box label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-box > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.search-box input {
  min-width: 0;
  min-height: 54px;
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-right: 0;
  color: var(--ink);
}

.search-box button {
  min-height: 54px;
  padding: 12px 18px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.reading-index {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 4vw, 50px);
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reading-grid a {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.reading-grid a:hover {
  background: var(--surface-warm);
}

.reading-grid span {
  margin-bottom: 26px;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reading-grid strong {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 800;
}

.reading-grid em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.closing {
  margin-top: var(--feature-space);
  padding: clamp(38px, 8vw, 82px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.closing .eyebrow {
  color: var(--orange-dark);
}

.closing h2 {
  max-width: 720px;
}

.closing p {
  max-width: 640px;
  color: var(--muted);
}

.closing .button--paper {
  background: var(--ink);
  color: var(--white);
}

.closing .button--ghost-light {
  border-color: var(--ink);
  color: var(--ink);
}

.ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.ledger > div {
  min-height: 220px;
  padding: 27px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ledger > div > span {
  display: block;
  margin-bottom: 50px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ledger > div p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.source-grid article {
  min-height: 200px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-grid strong {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 800;
}

.source-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.compare article {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.compare__good {
  background: var(--white);
  border-left: 5px solid var(--mint);
}

.compare__weak {
  background: var(--white);
  border-left: 5px solid var(--orange);
}

.compare article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare h3 {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 800;
}

.compare ul,
.red-flags ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.microcopy {
  margin-top: 16px !important;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.75rem;
}

.related {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 3px double var(--line);
}

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

.related__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.query-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.query-examples span {
  padding: 8px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans);
}

.checklist-sheet {
  padding: clamp(30px, 6vw, 60px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.checklist-sheet__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px double var(--line);
}

.score-stamp {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 2px solid var(--orange);
  color: var(--orange-dark);
  font-size: 1.1rem;
  font-weight: 900;
  transform: rotate(4deg);
}

.large-checklist {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.large-checklist li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.large-checklist .box {
  width: 25px;
  height: 25px;
  border: 2px solid var(--ink);
}

.large-checklist p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius-md);
}

.score-grid > div {
  min-height: 210px;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.score-grid > div + div {
  border-left: 0;
}

.score-grid strong {
  display: block;
  margin-bottom: 42px;
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
}

.score-grid span {
  display: block;
  font-weight: 800;
}

.score-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.rule-card {
  margin-block: var(--feature-space);
  padding: clamp(35px, 6vw, 68px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.rule-card blockquote {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.weight-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.weight-list article {
  padding: 22px 25px;
  background: var(--white);
}

.weight-list span {
  color: var(--orange-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.weight-list h3 {
  margin: 5px 0;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 800;
}

.weight-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.notice {
  margin-block: 24px;
  padding: 25px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-md);
}

.notice strong {
  display: block;
  margin-bottom: 6px;
}

.notice p {
  margin-bottom: 0;
}

.red-flags ul {
  margin: 0;
  padding: 26px 26px 26px 47px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.faq-list {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-block: 14px 26px;
  box-shadow: var(--shadow-soft);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
}

.faq-list h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

.faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-list summary i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > div {
  max-width: var(--wide-text-width);
  padding: 0 30px 22px 84px;
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 1.08rem;
}

.faq-list details > div p {
  margin-bottom: 0;
}

.legal-copy {
  width: 100%;
  max-width: none;
  margin: 24px auto 44px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-copy > * {
  width: min(var(--wide-text-width), 100%);
  margin-right: auto;
  margin-left: auto;
}

.legal-copy h2 {
  margin-top: 38px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 1.48rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  font-family: var(--sans);
  font-size: 1.04rem;
  line-height: 1.8;
}

.not-found {
  width: min(720px, calc(100% - 40px));
  min-height: 72vh;
  display: grid;
  align-content: center;
  margin: auto;
  padding-block: 70px;
}

.not-found h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.not-found .button {
  justify-self: start;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  padding-block: 34px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand-mark {
  background: linear-gradient(145deg, #ff7217, #f2bc18);
}

.brand--footer .brand-mark i {
  background: #fff;
}

.brand--footer .brand-mark i:nth-child(2) {
  background: rgba(255, 255, 255, 0.72);
}

.brand--footer small {
  color: var(--mint);
}

.footer-top > div > p {
  max-width: 470px;
  margin: 18px 0 0;
  color: #cbd6d1;
  font-size: 0.84rem;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 8px 30px;
}

.footer-top nav a {
  min-height: 38px;
  color: #dfe6e2;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-top nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-block: 20px;
  border-top: 1px solid #415250;
  color: #aebbb6;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

#fatobuy-whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 100;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(9, 46, 28, 0.3);
  color: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

#fatobuy-whatsapp-float:hover,
#fatobuy-whatsapp-float:focus-visible {
  box-shadow: 0 16px 36px rgba(9, 46, 28, 0.38);
  color: var(--white);
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  transform: translateY(-2px) scale(1.04);
}

.whatsapp-float__mark {
  width: 32px;
  height: 32px;
  display: block;
  background: url("/assets/icons/whatsapp-mark.svg") center / contain no-repeat;
}

.whatsapp-float__label {
  position: absolute;
  top: 50%;
  right: 68px;
  width: max-content;
  max-width: 210px;
  padding: 0.55rem 0.7rem;
  visibility: hidden;
  background: var(--ink);
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--white);
  font: 600 13px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease, visibility 180ms ease;
}

#fatobuy-whatsapp-float:hover .whatsapp-float__label,
#fatobuy-whatsapp-float:focus-visible .whatsapp-float__label {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 600px) {
  #fatobuy-whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .whatsapp-float__label {
    display: none;
  }
}

@media print {
  #fatobuy-whatsapp-float {
    display: none !important;
  }
}

@media (max-width: 920px) {
  .search-modes {
    display: none;
  }

  .search-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .search-steps > i {
    display: none;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-aside {
    max-width: 430px;
  }

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

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

  .reading-index,
  .search-lab,
  .source-board,
  .weight-board,
  .red-flags {
    grid-template-columns: 1fr;
  }

  .step-grid,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .step-grid li + li,
  .score-grid > div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .step-grid li {
    min-height: 220px;
  }

  .step-grid span,
  .score-grid strong {
    margin-bottom: 30px;
  }
}

@media (max-width: 700px) {
  :root {
    --page-gutter: 28px;
    --section-space: 30px;
    --feature-space: 20px;
  }

  body {
    font-size: 15.5px;
  }

  .header-main {
    min-height: 75px;
  }

  .brand {
    font-size: 0.83rem;
  }

  .brand-mark {
    width: 36px;
  }

  .header-cta {
    font-size: 0.67rem;
  }

  .primary-nav {
    gap: 24px;
  }

  .search-hero__inner {
    padding-top: 30px;
    padding-bottom: 16px;
  }

  .search-hero__copy {
    margin-bottom: 16px;
    text-align: left;
  }

  .search-hero__copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .search-hero__copy > p:last-child {
    font-size: 0.98rem;
  }

  .hero-search-form {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    padding: 10px 12px 12px 16px;
    border-radius: var(--radius-sm);
  }

  .hero-search-form input {
    min-height: 50px;
    font-size: 0.9rem;
  }

  .hero-search-form button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
  }

  .search-hero__links {
    display: grid;
    margin-bottom: 14px;
    padding-inline: 0;
  }

  .search-steps {
    padding-block: 16px;
  }

  .home-trust {
    grid-template-columns: 26px 1fr;
    padding: 13px;
  }

  .page-hero {
    margin-top: 8px;
    margin-bottom: 10px;
    gap: 18px;
    padding-top: 28px;
    padding-right: 22px;
    padding-bottom: 24px;
    padding-left: 22px;
    border-radius: var(--radius-lg);
  }

  .page-hero h1 {
    font-size: clamp(1.72rem, 7.3vw, 2.2rem);
    line-height: 1.04;
  }

  .page-hero .hero-aside {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .field-card {
    min-height: 340px;
    padding: 24px;
    transform: rotate(1deg);
  }

  .field-card__head {
    margin-bottom: 45px;
  }

  .trust-note {
    grid-template-columns: 24px 1fr;
  }

  .quick-answer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 25px;
  }

  .content-wrap {
    padding-bottom: 32px;
  }

  .editorial-review {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -10px;
    margin-bottom: 24px;
    padding: 16px 18px;
  }

  .editorial-review a {
    margin-left: 0;
  }

  .split,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .category-grid,
  .ledger,
  .source-grid,
  .compare,
  .reading-grid,
  .footer-top,
  .footer-top nav {
    grid-template-columns: 1fr;
  }

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

  .directory-card {
    min-height: 176px;
    padding-inline: 10px;
  }

  .directory-card__icon {
    width: 78px;
    height: 78px;
  }

  .directory-card__icon i {
    width: 43px;
    height: 43px;
  }

  .category-card {
    min-height: 300px;
  }

  .category-card__top {
    margin-bottom: 32px;
  }

  .source-grid article {
    min-height: 170px;
  }

  .search-lab,
  .source-board,
  .weight-board,
  .red-flags {
    margin-block: var(--feature-space);
    margin-inline: 0;
    padding: 30px 22px;
  }

  .search-box > div {
    grid-template-columns: 1fr;
  }

  .search-box input {
    border-right: 1px solid var(--ink);
    border-bottom: 0;
  }

  .reading-grid a {
    min-height: 150px;
    border-left: 0;
  }

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

  .faq-list summary {
    grid-template-columns: 32px 1fr 20px;
    gap: 10px;
    padding-inline: 18px;
  }

  .faq-list details > div {
    padding-right: 18px;
    padding-left: 60px;
  }

  .legal-copy {
    padding: 24px 20px;
  }

  .footer-top {
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

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