:root {
  --ink: #211b18;
  --muted: #71625a;
  --white: #ffffff;
  --forest: #2b211d;
  --forest-2: #c63d08;
  --orange: #ff5a1f;
  --orange-dark: #b93607;
  --amber: #ffbf57;
  --line: #ead9cf;
  --line-strong: #ddc3b4;
  --surface-soft: #fff7f1;
  --shadow-sm: 0 9px 24px rgba(82, 45, 25, 0.07);
  --shadow: 0 18px 48px rgba(74, 38, 20, 0.11);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1160px;
  --measure: 74ch;
  --section-space: clamp(2.25rem, 4.2vw, 3.7rem);
  --section-space-tight: clamp(1.3rem, 2.5vw, 1.8rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

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

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

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

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

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.85rem);
  letter-spacing: -0.045em;
}

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

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.42rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--forest);
  transform: translateY(-180%);
}

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

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

.narrow p,
.narrow ul,
.narrow ol {
  max-width: var(--measure);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(234, 217, 207, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(145deg, #ff6a24, #f2450d);
  box-shadow: 0 7px 16px rgba(226, 72, 12, 0.25);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.brand span:last-child {
  color: var(--muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.95rem;
}

.nav-links a,
.mobile-links a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

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

.nav-links .nav-cta {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest-2);
  box-shadow: 0 7px 16px rgba(185, 54, 7, 0.18);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: #9f2f04;
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.45rem 0.76rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
}

.mobile-menu summary::before {
  content: "\2630";
  color: var(--orange-dark);
  font-size: 1rem;
  line-height: 1;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-links {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(280px, calc(100vw - 2rem));
  display: grid;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-links a {
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
}

.mobile-links a:hover {
  background: var(--surface-soft);
}

.eyebrow,
.section-kicker,
.breadcrumbs {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs {
  margin-bottom: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.breadcrumbs a {
  color: inherit;
}

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

.search-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: clamp(2.7rem, 5vw, 4.4rem) 0 1.45rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.3) 0%, rgba(24, 19, 16, 0.22) 46%, rgba(20, 18, 16, 0.67) 100%),
    linear-gradient(90deg, rgba(21, 31, 27, 0.42), transparent 54%),
    url("/assets/search-logistics-scene.svg") center / cover no-repeat;
}

.search-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% 38%, transparent 0%, rgba(11, 16, 14, 0.2) 100%);
}

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

.search-hero-kicker {
  margin-bottom: 0.7rem;
  color: #ffe4ad;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.search-hero h1 {
  max-width: 960px;
  margin: 0 auto 0.7rem;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 4.1rem);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-shadow: 0 4px 24px rgba(0,0,0,0.36);
}

.search-hero h1 span {
  color: #ffd27c;
}

.search-hero-lede {
  max-width: 790px;
  margin: 0 auto 1.2rem;
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.97rem, 1.5vw, 1.12rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.42);
}

.hero-search {
  width: min(100%, 1040px);
  min-height: 82px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  border: 5px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(26, 17, 10, 0.35);
  overflow: hidden;
}

.hero-search-icon {
  width: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  color: #8a7970;
}

.hero-search-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.3;
}

.hero-search input {
  min-width: 0;
  min-height: 72px;
  flex: 1;
  padding: 0 0.8rem 0 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.02rem;
}

.hero-search input::placeholder {
  color: #9b8980;
}

.hero-search-type {
  flex: 0 0 auto;
  margin-right: 1rem;
  padding: 0.48rem 0.65rem;
  border: 1px dashed #d6c4b9;
  border-radius: 8px;
  color: #77675f;
  background: #fff8f3;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero-search button {
  min-height: 72px;
  align-self: stretch;
  flex: 0 0 225px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 21px;
  color: var(--white);
  background: #c63d08;
  cursor: pointer;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 850;
  transition: background 140ms ease, transform 140ms ease;
}

.hero-search button:hover {
  background: #9f2f04;
}

.hero-search button:active {
  transform: translateY(1px);
}

.search-hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.3rem;
  margin-top: 0.9rem;
}

.search-hero-links a {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

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

.search-journey li {
  position: relative;
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.search-journey li > span {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.52rem;
  border: 3px solid rgba(255,255,255,0.86);
  border-radius: 50%;
  color: var(--forest);
  background: #ffd27c;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 4px 16px rgba(0,0,0,0.28);
  font-size: 0.68rem;
  font-weight: 900;
}

.search-journey strong,
.search-journey small {
  display: block;
}

.search-journey strong {
  color: var(--white);
  font-size: 0.92rem;
}

.search-journey small {
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

.search-hero-trust {
  max-width: 870px;
  margin: 0 auto 0.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  color: rgba(255,255,255,0.82);
  background: rgba(40, 27, 21, 0.58);
  font-size: 0.77rem;
  line-height: 1.5;
  backdrop-filter: blur(7px);
}

.search-hero-trust strong {
  color: var(--white);
}

.page-lede {
  max-width: 65ch;
  color: #54463f;
  font-size: clamp(1.06rem, 1.9vw, 1.25rem);
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.7rem;
  max-width: var(--measure);
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.article-byline a {
  color: var(--ink);
  font-weight: 800;
}

.article-byline span + span::before {
  margin-right: 0.7rem;
  color: var(--orange-dark);
  content: "·";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin: 1.4rem 0 0.7rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.02rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest-2);
  box-shadow: 0 8px 18px rgba(150, 45, 4, 0.2);
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  transition: 140ms ease;
}

.button:hover {
  color: var(--white);
  background: #9f2f04;
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover {
  color: var(--orange-dark);
  background: var(--surface-soft);
}

.external-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.search-form {
  display: flex;
  gap: 0.55rem;
}

.search-form input {
  min-width: 0;
  flex: 1;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.search-form input::placeholder {
  color: #9b8980;
}

.search-form button {
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--forest-2);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: background 140ms ease, transform 140ms ease;
}

.search-form button:hover {
  background: #9f2f04;
}

.search-form button:active {
  transform: translateY(1px);
}

.catalog-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 4vw, 3.6rem) 0;
  background: var(--white);
}

.catalog-section::before,
.catalog-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 2px solid rgba(198, 92, 31, 0.11);
  transform: rotate(18deg);
}

.catalog-section::before {
  top: -70px;
  right: 5%;
  width: 180px;
  height: 180px;
}

.catalog-section::after {
  bottom: -80px;
  left: 3%;
  width: 140px;
  height: 140px;
}

.catalog-section .shell {
  position: relative;
  z-index: 1;
}

.catalog-heading {
  max-width: var(--measure);
  margin: 0 auto 1.25rem;
  text-align: center;
}

.catalog-heading > p {
  margin-bottom: 0.4rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catalog-heading h2 {
  margin-bottom: 0.65rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  font-weight: 860;
  letter-spacing: -0.045em;
}

.catalog-heading span {
  color: #594c39;
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  font-weight: 650;
}

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

.catalog-card {
  min-width: 0;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 0.6rem;
  border: 1px solid rgba(102, 79, 44, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.catalog-card:hover {
  color: var(--ink);
  border-color: rgba(232, 111, 61, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.catalog-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 20px;
  color: #e64a0c;
  background: linear-gradient(145deg, #fff9ef, #ffeadb);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.58);
}

.catalog-card:nth-child(3n + 2) .catalog-icon {
  color: #f15a19;
}

.catalog-card:nth-child(3n) .catalog-icon {
  color: #c73e0b;
}

.catalog-icon svg {
  width: 46px;
  height: 46px;
}

.catalog-card strong {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.12;
}

.catalog-card strong::after {
  content: " ↗";
  color: var(--orange-dark);
  font-size: 0.68em;
  vertical-align: 0.16em;
}

.catalog-note {
  margin: 0.95rem auto 0;
  color: #74644c;
  font-size: 0.78rem;
  text-align: center;
}

.section {
  padding: var(--section-space) 0;
}

.section.tight {
  padding-top: var(--section-space-tight);
  padding-bottom: var(--section-space-tight);
}

.section,
.quick-answer {
  background: var(--white);
}

.section-heading {
  width: 100%;
  max-width: var(--measure);
  margin-bottom: 1.15rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.quick-answer {
  padding: 1rem 1.1rem;
  border: 1px solid #efc3aa;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.quick-answer strong:first-child {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--forest-2);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.category-grid,
.card-grid,
.guide-grid,
.steps-grid {
  display: grid;
  gap: 0.7rem;
}

.category-card,
.soft-card,
.guide-card,
.step-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-card,
.guide-card,
.link-grid a {
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.category-card:hover,
.guide-card:hover,
.link-grid a:hover {
  color: var(--ink);
  border-color: rgba(255, 90, 31, 0.38);
  box-shadow: 0 14px 32px rgba(105, 54, 27, 0.11);
  transform: translateY(-2px);
}

.category-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.category-card .icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 19px;
  color: #e64a0c;
  background: linear-gradient(145deg, #fff9ef, #ffeadb);
}

.category-card:nth-child(3n + 2) .icon {
  color: #f15a19;
}

.category-card:nth-child(3n) .icon {
  color: #c73e0b;
}

.category-card .icon svg {
  width: 39px;
  height: 39px;
}

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

.category-card .check {
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px dashed var(--line);
  color: #584a43;
  font-size: 0.84rem;
}

.category-card a {
  margin-top: 0.5rem;
  font-weight: 800;
}

.steps-grid {
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding-top: 3rem;
  counter-increment: steps;
}

.step-card::before {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  content: "0" counter(steps);
  color: var(--orange-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.compare-grid {
  display: grid;
  gap: 0.7rem;
}

.compare-panel {
  padding: 1.05rem;
  border-radius: var(--radius);
}

.compare-panel.strong {
  border: 1px solid #efcd95;
  background: var(--white);
}

.compare-panel.weak {
  border: 1px solid #e8bda9;
  background: var(--white);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.pill-list li {
  margin: 0;
  padding: 0.45rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.84rem;
}

.checklist {
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  margin: 0;
  padding: 0.86rem 0 0.86rem 2.4rem;
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  position: absolute;
  top: 0.92rem;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  content: "";
  border: 2px solid var(--forest-2);
  border-radius: 4px;
  background: var(--white);
}

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

.score {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.score strong {
  display: block;
  color: var(--forest);
  font-size: 1.2rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

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

th {
  color: var(--forest);
  background: var(--white);
  font-size: 0.83rem;
  box-shadow: inset 0 -2px 0 rgba(255, 90, 31, 0.18);
}

tr:last-child td {
  border-bottom: 0;
}

.page-hero {
  padding: 2.25rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.article-layout {
  display: grid;
  gap: 1.25rem;
}

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

.article-body > section {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.article-body > section:first-child {
  padding-top: 0;
}

.article-body > section:last-child {
  border-bottom: 0;
}

.side-nav {
  align-self: start;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.side-nav strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--forest);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav a {
  display: block;
  padding: 0.35rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.side-nav a:hover {
  color: var(--orange-dark);
}

.note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
}

.callout {
  padding: 1.1rem 1.2rem;
  border: 1px solid #efc3aa;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.callout > :last-child,
.note > :last-child,
.soft-card > :last-child,
.guide-card > :last-child,
.step-card > :last-child {
  margin-bottom: 0;
}

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

.faq-list details {
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 5px 16px rgba(82, 45, 25, 0.045);
}

.faq-list summary {
  padding: 0.85rem 2rem 0.85rem 0;
  cursor: pointer;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
}

.faq-list details[open] {
  border-color: rgba(255, 90, 31, 0.38);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(92, 48, 22, 0.08);
}

.faq-list summary::marker {
  color: var(--orange);
}

.faq-list details p {
  max-width: var(--measure);
  padding-bottom: 0.85rem;
  color: #594a43;
}

.link-grid {
  display: grid;
  gap: 0.55rem;
}

.link-grid a {
  display: block;
  padding: 0.75rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 5px 16px rgba(82, 45, 25, 0.045);
  font-weight: 760;
  text-decoration: none;
}

.link-grid a span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.closing-cta::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  content: "";
  border: 2rem solid rgba(243, 199, 115, 0.15);
  border-radius: 50%;
}

.closing-cta p {
  max-width: 60ch;
}

.closing-cta .section-kicker {
  color: var(--orange-dark);
}

.site-footer {
  padding: 2.2rem 0 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.site-footer .brand span:last-child {
  color: var(--orange-dark);
}

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

.footer-intro p {
  max-width: 44ch;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-nav-group {
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.footer-nav-group strong {
  margin-bottom: 0.15rem;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--ink);
  font-size: 0.88rem;
}

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

.footer-trust {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-trust p {
  margin-bottom: 0.45rem;
}

.article-body p,
.article-body li {
  max-width: var(--measure);
}

.article-body table p,
.article-body table li {
  max-width: none;
}

.review-meta {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.5rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 650;
}

.review-meta span {
  margin-right: 0.25rem;
  color: var(--orange-dark);
  font-weight: 850;
}

@media (max-width: 759px) {
  .search-hero {
    min-height: auto;
    padding: 2.25rem 0 1.05rem;
    background-position: 43% center;
  }

  .search-hero-kicker {
    max-width: 32ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.68rem;
  }

  .search-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    letter-spacing: -0.05em;
  }

  .search-hero-lede {
    font-size: 0.92rem;
  }

  .hero-search {
    min-height: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    border-width: 4px;
    border-radius: 24px;
  }

  .hero-search-icon {
    width: 52px;
    min-height: 62px;
  }

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

  .hero-search input {
    width: 100%;
    min-height: 62px;
    padding-right: 0.65rem;
    font-size: 0.92rem;
  }

  .hero-search-type {
    display: none;
  }

  .hero-search button {
    min-height: 58px;
    grid-column: 1 / -1;
    border-radius: 0 0 18px 18px;
    font-size: 1rem;
  }

  .search-hero-links {
    display: grid;
    gap: 0.35rem;
  }

  .search-journey {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.65rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    background: rgba(42, 28, 22, 0.48);
    backdrop-filter: blur(5px);
  }

  .search-journey::before {
    display: none;
  }

  .search-journey li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    text-align: left;
  }

  .search-journey li > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .search-journey strong,
  .search-journey small {
    grid-column: 2;
  }

  .search-hero-trust {
    margin-bottom: 0.65rem;
    font-size: 0.7rem;
  }
}

@media (min-width: 600px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

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

  .footer-grid {
    grid-template-columns: 0.9fr 1.4fr;
  }
}

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

  .catalog-card {
    min-height: 178px;
  }

  .catalog-icon {
    width: 84px;
    height: 84px;
  }

  .catalog-icon svg {
    width: 52px;
    height: 52px;
  }

  .catalog-card strong {
    font-size: 1.12rem;
  }

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

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

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

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: start;
  }

  .side-nav {
    position: sticky;
    top: 96px;
  }

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

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

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

}

@media (min-width: 1100px) {
  .nav-links {
    display: flex;
    gap: 1rem;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(1.8rem, 7.4vw, 1.95rem);
    letter-spacing: -0.035em;
    text-wrap: wrap;
  }

  .search-form {
    display: grid;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

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

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

  .button:hover,
  .catalog-card:hover,
  .category-card:hover,
  .guide-card:hover,
  .link-grid a:hover {
    transform: none;
  }
}
