:root {
  --ink: #241b17;
  --ink-soft: #6b5d56;
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fff2e8;
  --line: #eadcd2;
  --forest: #c2410c;
  --forest-dark: #9f2f08;
  --mint: #ffe4d2;
  --coral: #c94716;
  --orange: #c2410c;
  --orange-dark: #9f2f08;
  --success: #57ad73;
  --shadow-soft: 0 8px 24px rgba(102, 48, 17, 0.055);
  --shadow-hover: 0 14px 32px rgba(102, 48, 17, 0.1);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --content: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--forest);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--forest-dark);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: inherit;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.35rem, 7vw, 4.9rem);
  max-width: 14ch;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  color: #fff;
  background: var(--forest-dark);
  font-weight: 800;
}

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

.wrap {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: var(--content);
}

.narrow.prose > :where(p, ul, ol, blockquote),
.faq-list details > :where(p, ul, ol) {
  max-width: 75ch;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(234, 220, 210, 0.9);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 7px 24px rgba(90, 43, 16, 0.055);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding-block: 0.45rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span span {
  color: var(--orange);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.1rem 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.52rem 0.68rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--orange-dark);
  background: var(--mint);
}

.search-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: clamp(2.6rem, 4.5vw, 4rem) 0 1.2rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(62, 34, 22, 0.95) 0%, rgba(88, 45, 22, 0.87) 35%, rgba(165, 76, 21, 0.72) 72%, rgba(238, 112, 24, 0.58) 100%),
    radial-gradient(circle at 77% 18%, #ffd47a 0, #c7752a 35%, #4b2c20 78%);
  overflow: hidden;
}

.search-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 75%);
  content: "";
}

.search-hero::after {
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -15rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 195, 92, 0.46), rgba(255, 145, 51, 0.08) 55%, transparent 70%);
  content: "";
}

.search-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

.search-hero .eyebrow {
  justify-content: center;
  color: #ffe9c9;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.search-hero h1 {
  max-width: 18ch;
  margin-bottom: 0.85rem;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  font-weight: 820;
  letter-spacing: -0.052em;
  text-shadow: 0 7px 28px rgba(47, 21, 8, 0.28);
}

.search-hero .lead {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.26);
}

.logistics-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.scene-globe {
  position: absolute;
  right: -8rem;
  top: -17rem;
  width: 41rem;
  height: 41rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(255, 255, 255, 0.11) 49%, rgba(255, 255, 255, 0.11) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.14) 50%, transparent 50.5%),
    rgba(255, 196, 91, 0.12);
  box-shadow: inset 0 0 90px rgba(255, 188, 75, 0.12);
}

.scene-plane {
  position: absolute;
  left: -4rem;
  bottom: 3.5rem;
  width: min(46vw, 650px);
  height: 180px;
  opacity: 0.38;
  background: linear-gradient(100deg, #fff6e6, #f8d6a0 60%, #fff5dd);
  clip-path: polygon(0 43%, 48% 35%, 70% 0, 77% 2%, 68% 36%, 100% 42%, 97% 57%, 63% 52%, 31% 96%, 21% 94%, 42% 52%, 0 58%);
  filter: drop-shadow(0 24px 24px rgba(26, 18, 12, 0.38));
  transform: rotate(-3deg);
}

.scene-box {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 240, 206, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(118deg, transparent 49.2%, rgba(112, 55, 16, 0.38) 50%, transparent 51%),
    linear-gradient(42deg, #f0a640, #bd671f);
  box-shadow: -30px 34px 55px rgba(31, 18, 10, 0.35), inset 0 0 40px rgba(255, 222, 160, 0.16);
  opacity: 0.55;
  transform: rotate(8deg);
}

.scene-box::before {
  position: absolute;
  width: 26%;
  height: 100%;
  left: 37%;
  background: rgba(255, 221, 153, 0.42);
  content: "";
}

.scene-box-one {
  right: 8%;
  top: 6%;
  width: 260px;
  height: 230px;
}

.scene-box-two {
  right: -2rem;
  bottom: 3rem;
  width: 180px;
  height: 150px;
  opacity: 0.32;
  transform: rotate(-5deg);
}

.scene-route {
  position: absolute;
  right: 13%;
  bottom: 20%;
  width: 44%;
  height: 24%;
  border-top: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-search-form {
  max-width: 1040px;
  margin: 1.1rem auto 0;
}

.hero-search-box {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto 220px;
  align-items: center;
  min-height: 82px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0 24px 55px rgba(75, 31, 10, 0.32);
  overflow: hidden;
}

.hero-search-icon {
  display: grid;
  place-items: center;
  color: #a09791;
}

.hero-search-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hero-search-box input {
  width: 100%;
  min-width: 0;
  min-height: 68px;
  padding: 0.7rem 1rem 0.7rem 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.08rem;
}

.hero-search-box input::placeholder {
  color: #776a63;
}

.hero-search-box input:focus-visible {
  border-radius: 8px;
  outline: 3px solid var(--coral);
  outline-offset: -4px;
}

.search-destination {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 0.8rem;
  padding: 0.48rem 0.7rem;
  border: 1px dashed #d8ccc5;
  border-radius: 10px;
  color: #776a63;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.search-destination span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.hero-search-box button {
  align-self: stretch;
  min-width: 220px;
  padding: 0.8rem 1.5rem;
  border: 0;
  border-radius: 0 999px 999px 0;
  color: #fff;
  background: var(--orange);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease;
}

.hero-search-box button:hover {
  background: var(--orange-dark);
}

.hero-search-note {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.hero-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.hero-tools a {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(73, 30, 10, 0.24);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.hero-tools a:hover {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(73, 30, 10, 0.46);
}

.search-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin: 1.05rem auto 0;
  padding: 0;
  list-style: none;
}

.search-journey::before {
  position: absolute;
  top: 8px;
  right: 16.66%;
  left: 16.66%;
  height: 2px;
  background: rgba(255, 255, 255, 0.44);
  content: "";
}

.search-journey li {
  position: relative;
  padding: 1.2rem 0.75rem 0;
}

.search-journey li::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
  content: "";
  transform: translateX(-50%);
}

.search-journey h2 {
  margin-bottom: 0.15rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.search-journey p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
}

.hero-trust {
  max-width: 880px;
  margin: 0.85rem auto 0;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 2px;
  background: var(--coral);
  content: "";
}

.page-hero .lead {
  max-width: 64ch;
  color: #5f514b;
  font-size: clamp(1.08rem, 2.3vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.74rem 1.1rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 9px 20px rgba(213, 72, 15, 0.18);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  background: var(--orange-dark);
}

.button.secondary {
  border-color: #e3a27d;
  color: var(--orange-dark);
  background: transparent;
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--mint);
}

.button.tertiary {
  border-color: transparent;
  color: var(--orange-dark);
  background: transparent;
  box-shadow: none;
}

.button.tertiary:hover {
  background: var(--surface-soft);
}

.external-note {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.55rem;
  border: 1px solid #ffc7aa;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff0e8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  padding: clamp(2.1rem, 4vw, 3.4rem) 0;
  background: #fff;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section.tint {
  background: #fff;
}

.section.dark {
  color: var(--ink-soft);
  background: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: var(--ink);
}

.section.dark a {
  color: var(--orange-dark);
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: clamp(1.1rem, 2.2vw, 1.7rem);
}

.section-heading p {
  max-width: 64ch;
  color: var(--ink-soft);
}

.section.dark .section-heading p {
  color: var(--ink-soft);
}

.quick-answer {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
  border: 1px solid #f1c9ad;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quick-answer .tag {
  margin-bottom: 0.1rem;
}

.quick-answer p {
  max-width: 75ch;
  font-size: 1.07rem;
}

.directory-band {
  position: relative;
  padding: clamp(2.3rem, 4vw, 3.5rem) 0;
  border-top: 1px solid #ead6be;
  border-bottom: 1px solid #e4cdb2;
  background: #fff;
  overflow: hidden;
}

.directory-band::before {
  position: absolute;
  top: -7rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(225, 110, 29, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.1), 0 0 0 104px rgba(225, 110, 29, 0.035);
  content: "";
}

.directory-band-page {
  padding-top: clamp(2.2rem, 3.6vw, 3.3rem);
  padding-bottom: clamp(2.2rem, 3.6vw, 3.3rem);
}

.directory-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto clamp(1.1rem, 2.2vw, 1.7rem);
  text-align: center;
}

.directory-heading .eyebrow {
  justify-content: center;
  color: #a23b11;
}

.directory-heading h2 {
  margin-bottom: 0.55rem;
  font-family: inherit;
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.directory-heading p {
  max-width: 62ch;
  margin-inline: auto;
  color: #655c52;
  font-size: 1rem;
}

.product-directory {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-directory-card {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 0.75rem;
  border: 1px solid #e2cdb5;
  border-radius: var(--radius);
  color: #241f1a;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.product-directory-card::after {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  color: var(--orange-dark);
  content: "↗";
  font-size: 0.75rem;
  font-weight: 900;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.product-directory-card:hover {
  color: #1c1713;
  border-color: #ee9b62;
  background: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-directory-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.directory-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 166, 94, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fff0e5 100%);
  box-shadow: var(--shadow-soft);
  color: var(--orange);
  line-height: 1;
}

.directory-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-directory-card strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.product-directory-card.more-finds {
  border-color: #ec9a62;
  background: #fff;
}

.product-directory-card.more-finds .directory-icon {
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(145deg, #ffbf78, #ff7540);
  color: #fff;
}

.directory-note {
  position: relative;
  z-index: 1;
  margin: 1.15rem auto 0;
  color: #75685b;
  font-size: 0.82rem;
  text-align: center;
}

.directory-note a {
  font-weight: 850;
}

.grid-2,
.grid-3,
.category-grid,
.link-grid,
.comparison-grid {
  display: grid;
  gap: 0.85rem;
}

.card {
  height: 100%;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card p,
.card li {
  color: #665851;
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.category-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.category-code {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 0.75rem;
  place-items: center;
  border-radius: 13px;
  color: var(--forest-dark);
  background: var(--mint);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.category-card h3 {
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.category-card .check-label {
  margin-top: auto;
  color: var(--ink);
  font-weight: 780;
}

.category-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 850;
}

.category-card a::after {
  content: "↗";
}

.steps {
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 0 0 1.5rem 4rem;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  left: 0;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-dark);
  background: var(--mint);
  content: counter(steps, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 900;
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 3rem;
  bottom: 0.3rem;
  left: 1.35rem;
  width: 1px;
  background: #e8c2aa;
  content: "";
}

.steps h3 {
  padding-top: 0.35rem;
}

.check-list,
.plain-list,
.red-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.red-list li {
  position: relative;
  padding: 0.52rem 0 0.52rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before,
.plain-list li::before,
.red-list li::before {
  position: absolute;
  left: 0;
  color: var(--forest);
  content: "✓";
  font-weight: 900;
}

.plain-list li::before {
  content: "→";
}

.red-list li::before {
  color: #b94734;
  content: "×";
}

.checklist-form {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.check-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.check-item input {
  width: 20px;
  height: 20px;
  margin: 0.2rem 0 0;
  accent-color: var(--forest);
}

.score-grid {
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.score-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row strong {
  color: var(--forest-dark);
}

.comparison-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.comparison-card.good {
  border-top: 5px solid var(--success);
}

.comparison-card.weak {
  border-top: 5px solid var(--coral);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

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

.data-table th {
  color: var(--forest-dark);
  background: var(--surface-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}

.search-panel {
  padding: clamp(1.25rem, 3vw, 1.9rem);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--forest-dark);
}

.search-panel h2,
.search-panel p,
.search-panel label {
  color: #fff;
}

.search-panel p {
  color: #ffe3d2;
}

.search-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.search-row input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #efb58f;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.search-row button {
  min-height: 50px;
  padding: 0.75rem 1.2rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

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

.article-layout {
  display: grid;
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3.2rem);
}

.article-layout > * {
  min-width: 0;
}

.toc {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.toc strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  display: block;
  padding: 0.35rem 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-decoration: none;
}

.toc a:hover {
  color: var(--forest);
}

.prose > * + * {
  margin-top: 1rem;
}

.prose h2 {
  margin-top: 2.4rem;
  scroll-margin-top: 1rem;
}

.prose h3 {
  margin-top: 1.5rem;
}

.prose p,
.prose li {
  color: #5f514b;
}

.prose .search-panel p {
  color: #ffe3d2;
}

.prose blockquote {
  margin: 1.35rem 0;
  padding: 1.05rem 1.2rem;
  border-left: 5px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  font-weight: 650;
  font-size: 1.16rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.page-hero {
  padding: clamp(2rem, 3.6vw, 3.2rem) 0 clamp(1.7rem, 3vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
}

.page-meta {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  color: var(--ink);
  font-weight: 820;
  cursor: pointer;
}

.faq-list details p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.link-card {
  display: block;
  min-height: 132px;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.link-card:hover {
  color: var(--forest-dark);
  border-color: #ef9a67;
  box-shadow: var(--shadow-hover);
}

.link-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.callout {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.callout h2 {
  max-width: 20ch;
}

.site-footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 1.1rem;
}

.footer-brand {
  max-width: 580px;
}

.footer-brand .brand {
  margin-bottom: 0.7rem;
  color: var(--ink);
}

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

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-block: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--orange-dark);
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 0.86rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 720;
}

.term-index {
  display: grid;
  gap: 1rem;
}

.term-index .card {
  align-self: stretch;
}

.term-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.term-list li {
  padding: 0.38rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 720;
}

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

@media (min-width: 700px) {
  .wrap {
    width: min(calc(100% - 3rem), var(--content));
  }

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

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

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

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

  .section-heading {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    align-items: end;
  }
}

@media (min-width: 920px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .article-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .toc {
    position: sticky;
    top: 1rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
    align-items: start;
  }
}

@media (min-width: 1040px) {
  .product-directory {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .search-destination {
    display: none;
  }

  .hero-search-box {
    grid-template-columns: 54px minmax(0, 1fr) 190px;
  }

  .hero-search-box button {
    min-width: 190px;
  }
}

@media (max-width: 520px) {
  .main-nav a {
    padding: 0.4rem 0.52rem;
    font-size: 0.8rem;
  }

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

  .search-row {
    grid-template-columns: 1fr;
  }

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

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

  .directory-band {
    padding-block: 2rem;
  }

  .directory-heading {
    margin-bottom: 1.05rem;
  }

  .product-directory {
    gap: 0.65rem;
  }

  .product-directory-card {
    min-height: 124px;
    gap: 0.6rem;
    padding: 0.75rem 0.45rem;
    border-radius: 16px;
  }

  .directory-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    font-size: 1.72rem;
  }

  .product-directory-card strong {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .search-hero {
    min-height: auto;
    padding: 2.3rem 0 1.45rem;
  }

  .search-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .search-hero .lead {
    font-size: 0.98rem;
  }

  .hero-search-form {
    margin-top: 0.9rem;
  }

  .hero-search-box {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0;
    padding: 7px;
    border-width: 4px;
    border-radius: 25px;
    overflow: visible;
  }

  .hero-search-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-search-box input {
    min-height: 54px;
    padding-right: 0.4rem;
    font-size: 0.94rem;
  }

  .hero-search-box button {
    grid-column: 1 / -1;
    min-width: 0;
    min-height: 54px;
    margin-top: 5px;
    border-radius: 17px;
    font-size: 1rem;
  }

  .hero-search-note {
    max-width: 34ch;
    margin-inline: auto;
  }

  .hero-tools {
    gap: 0.4rem;
  }

  .hero-tools a {
    padding: 0.36rem 0.6rem;
    font-size: 0.75rem;
  }

  .search-journey {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 330px;
    margin-top: 1rem;
    text-align: left;
  }

  .search-journey::before {
    top: 8px;
    bottom: 8px;
    left: 7px;
    width: 2px;
    height: auto;
  }

  .search-journey li {
    min-height: 48px;
    padding: 0 0 0 2.1rem;
  }

  .search-journey li::before {
    top: 2px;
    left: 7px;
  }

  .search-journey h2 {
    font-size: 0.9rem;
  }

  .scene-plane {
    left: -10rem;
    bottom: 20%;
    width: 590px;
    height: 160px;
    opacity: 0.12;
  }

  .scene-box-one {
    right: -7rem;
    top: 4rem;
    width: 210px;
    height: 180px;
    opacity: 0.28;
  }

  .scene-box-two {
    display: none;
  }

  .scene-globe {
    right: -17rem;
    top: -14rem;
    width: 34rem;
    height: 34rem;
  }

  .hero-trust {
    margin-top: 1.1rem;
    font-size: 0.75rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
