:root {
  --ink: #292c31;
  --ink-soft: #565c66;
  --paper: #ffffff;
  --paper-deep: #f2eee4;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-warm: #fffdf6;
  --surface-highlight: #fff8d6;
  --line: #e4dfd3;
  --line-dark: #a19c90;
  --card-border: #e5dcc4;
  --card-border-accent: #dfbd3f;
  --amber: #d68400;
  --amber-dark: #8a5600;
  --sun: #ffdc22;
  --sun-deep: #f4be00;
  --sun-soft: #fff5bd;
  --mint: #fff8d8;
  --mint-ink: #765000;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-soft: 0 6px 18px rgba(73, 55, 16, .06);
  --shadow-card: 0 12px 28px rgba(82, 59, 11, .08);
  --shadow-hover: 0 16px 34px rgba(82, 59, 11, .13);
  --title-section: clamp(26px, 3vw, 38px);
  --title-article: clamp(23px, 2.7vw, 31px);
  --title-page: clamp(32px, 4vw, 48px);
  --title-card: 19px;
  --title-small: 16px;
  --max: 1180px;
  --content-max: calc(var(--max) - 48px);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
p, h1, h2, h3, ul, ol, dl { margin-top: 0; }
img { max-width: 100%; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #1f2937; outline-offset: 3px; }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  letter-spacing: .02em;
  flex: 0 0 auto;
}
.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--ink);
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(115, 78, 0, .14), 0 5px 14px rgba(137, 93, 0, .14);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.08em;
}
.brand-mark::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 8px;
  left: 50%;
  top: -5px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  transform: translateX(-50%);
}
.brand strong { display: block; line-height: 1; font-size: 16px; font-weight: 900; letter-spacing: .015em; }
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 19px;
  flex-wrap: wrap;
}
.top-nav a {
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}
.top-nav a:hover, .top-nav a[aria-current="page"] { color: #8a5600; border-bottom-color: var(--sun-deep); }

main { overflow: hidden; }
.header-inner,
.quick-answer,
.section,
.closing-cta,
.page-hero,
.breadcrumbs,
.article-shell,
.footer-inner,
.footer-base { width: 100%; }
.hero {
  position: relative;
  max-width: none;
  margin: 0 auto;
  padding: 48px max(24px, calc((100% - var(--max)) / 2 + 24px)) 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, .8fr);
  align-items: center;
  gap: clamp(34px, 5vw, 60px);
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 17%, rgba(255, 255, 255, .78) 0 4%, transparent 4.2%),
    linear-gradient(112deg, #fff6c6 0%, #ffe47b 52%, #ffc928 100%);
  border-bottom: 1px solid #e6b800;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  width: 860px;
  height: 290px;
  right: -180px;
  bottom: -205px;
  border-radius: 50%;
  border: 42px solid rgba(242, 154, 0, .55);
  box-shadow: 0 0 0 34px rgba(255, 220, 44, .72);
}
.hero::after {
  width: 520px;
  height: 520px;
  right: 6%;
  top: -330px;
  border-radius: 50%;
  border: 1px solid rgba(20, 35, 58, .12);
  box-shadow: 0 0 0 54px rgba(255, 255, 255, .13);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow, .section-kicker {
  color: var(--amber-dark);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { display: flex; gap: 14px; margin-bottom: 16px; }
.eyebrow span + span::before { content: "•"; margin-right: 16px; color: var(--line-dark); }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 850;
  letter-spacing: -.045em;
}
h1 { max-width: 800px; margin-bottom: 20px; font-size: clamp(43px, 6.4vw, 76px); line-height: .99; }
h2 { margin-bottom: 14px; font-size: var(--title-section); line-height: 1.08; }
h3 { margin-bottom: 9px; font-size: var(--title-small); line-height: 1.28; }
.search-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: clamp(38px, 4.7vw, 60px);
  font-weight: 850;
  line-height: 1.01;
  letter-spacing: -.05em;
}
.hero-lede {
  max-width: 690px;
  margin-bottom: 18px;
  color: #4c5667;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}
.trust-note {
  max-width: 720px;
  margin: 0 0 22px;
  padding-left: 18px;
  border-left: 3px solid var(--amber);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
.trust-note strong { color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 6px 16px rgba(41, 44, 49, .14); }
.button-primary:hover { background: #1f2329; box-shadow: 0 9px 20px rgba(41, 44, 49, .18); }
.button-secondary { background: transparent; }
.button-secondary:hover { background: var(--white); }
.text-link {
  min-height: 32px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  text-decoration-color: var(--amber);
  text-underline-offset: 5px;
  font-size: 13px;
  font-weight: 800;
}
.external-note { margin: 13px 0 0; color: #667183; font-size: 12px; }
.finds-search {
  max-width: 780px;
  margin: 22px 0 12px;
  padding: 7px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: var(--white);
  border: 2px solid #e8b900;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.finds-search:focus-within { outline: 3px solid #1f2937; outline-offset: 3px; }
.search-field {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: text;
}
.search-mark {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid #596273;
  border-radius: 50%;
}
.search-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: #596273;
  transform: rotate(45deg);
  transform-origin: left center;
}
.finds-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}
.finds-search input::placeholder { color: #667183; opacity: 1; }
.finds-search button {
  min-width: 148px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--sun);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}
.search-button-icon {
  position: relative;
  width: 17px;
  height: 17px;
  margin-left: 8px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50%;
  vertical-align: -3px;
}
.search-button-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -5px;
  bottom: -2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}
.finds-search button:hover { background: #ffcb00; }
.finds-search button:active { transform: translateY(1px); }
.search-shortcuts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #5f6877;
  font-size: 12px;
}
.search-shortcuts > span { margin-right: 3px; font-weight: 750; }
.search-shortcuts a {
  padding: 5px 10px;
  border: 1px solid rgba(20, 35, 58, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  text-decoration: none;
  font-weight: 750;
}
.search-shortcuts a:hover { background: var(--white); border-color: var(--ink); }
.search-hero .external-note { margin-top: 13px; color: #515c6e; }
.search-hero .trust-note {
  max-width: 780px;
  margin: 19px 0 0;
  border-left-color: #a56a00;
  color: #515c6e;
}
.search-visual {
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: grid;
  place-items: center;
}
.visual-orbit {
  position: absolute;
  border: 1px dashed rgba(20, 35, 58, .2);
  border-radius: 50%;
}
.orbit-one { width: 520px; height: 240px; transform: rotate(-14deg); }
.orbit-two { width: 400px; height: 400px; transform: rotate(26deg); }
.finder-board {
  position: relative;
  width: min(100%, 470px);
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(20, 35, 58, .35);
  border-radius: var(--radius-lg);
  box-shadow: 14px 18px 0 rgba(213, 147, 0, .18);
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.finder-board-head {
  padding: 19px 22px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(20, 35, 58, .22);
  font-size: 10px;
  letter-spacing: .11em;
}
.finder-cards {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.finder-cards > div {
  min-height: 132px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  border: 1px solid rgba(20, 35, 58, .18);
  border-radius: var(--radius-md);
}
.finder-icon {
  position: relative;
  width: 34px;
  height: 34px;
  margin-bottom: auto;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--sun);
  color: var(--ink);
}
.finder-cards strong { margin-top: 17px; font-family: var(--sans); font-size: var(--title-small); font-weight: 850; letter-spacing: -.025em; }
.finder-cards small { margin-top: 2px; color: #677183; font-size: 10px; }
.finder-board-foot {
  padding: 17px 21px;
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 11px;
  align-items: start;
  border-top: 1px solid rgba(20, 35, 58, .22);
}
.finder-board-foot p { margin: 0; color: #667183; font-size: 11px; line-height: 1.5; }
.finder-board-foot strong { display: block; color: var(--ink); }
.status-dot { width: 9px; height: 9px; margin-top: 4px; border-radius: 50%; background: #2b9a68; box-shadow: 0 0 0 4px #dcece3; }

.quick-answer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--card-border-accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.quick-answer .section-kicker { margin: 4px 0 0; color: var(--mint-ink); }
.quick-answer > p:last-child { max-width: 860px; margin: 0; font-family: var(--sans); font-size: clamp(19px, 2.2vw, 25px); font-weight: 720; line-height: 1.42; }
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 60px); }
.prose { max-width: 680px; color: var(--ink-soft); font-size: 17px; }
.prose p:last-child { margin-bottom: 0; }
.section-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-heading > p { max-width: 520px; margin: 0 0 8px; color: var(--ink-soft); }
.section-heading h2 { margin-bottom: 0; }
.section-heading.compact { margin-bottom: 18px; }
.category-section { padding-top: 50px; }
.directory-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}
.directory-heading .section-kicker { margin-bottom: 10px; color: #9b6500; }
.directory-heading h2 { margin-bottom: 12px; font-family: var(--sans); font-weight: 850; letter-spacing: -.045em; }
.directory-heading > p:last-child { margin: 0; color: var(--ink-soft); font-size: 16px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.category-card {
  min-width: 0;
  min-height: 264px;
  padding: 19px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-accent);
  box-shadow: var(--shadow-hover);
}
.category-icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 15px;
  border: 1px solid #efca70;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff9dd, #fff0ad);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .68);
}
.category-card-featured .category-icon { background: linear-gradient(145deg, #ffe97d, #ffc928); border-color: #e1a900; }
.category-icon::before, .category-icon::after,
.finder-icon::before, .finder-icon::after,
.review-icon::before, .review-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
}
.icon-shoes::before {
  width: 58%;
  height: 30%;
  border-left: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  border-radius: 0 0 18px 9px;
  transform: translate(-50%, -42%) rotate(-7deg);
}
.icon-shoes::after {
  width: 63%;
  height: 4px;
  border-radius: 4px;
  background: var(--ink);
  transform: translate(-49%, 470%) rotate(-4deg);
}
.icon-tshirts::before, .icon-hoodies::before, .icon-jackets::before, .icon-jerseys::before {
  width: 60%;
  height: 58%;
  background: var(--ink);
  clip-path: polygon(18% 0, 36% 0, 42% 10%, 58% 10%, 64% 0, 82% 0, 100% 24%, 81% 38%, 74% 29%, 74% 100%, 26% 100%, 26% 29%, 19% 38%, 0 24%);
  transform: translate(-50%, -50%);
}
.icon-hoodies::after {
  width: 30%;
  height: 24%;
  border: 4px solid var(--sun);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translate(-50%, -116%);
}
.icon-jackets::after {
  width: 3px;
  height: 52%;
  background: var(--sun);
  transform: translate(-50%, -46%);
}
.icon-jerseys::after {
  content: "10";
  color: var(--sun);
  font: 900 11px/1 var(--sans);
  transform: translate(-50%, -15%);
}
.icon-pants::before, .icon-shorts::before {
  width: 54%;
  height: 64%;
  background: var(--ink);
  clip-path: polygon(15% 0, 85% 0, 78% 100%, 54% 100%, 50% 38%, 46% 100%, 22% 100%);
  transform: translate(-50%, -50%);
}
.icon-shorts::before { height: 45%; clip-path: polygon(10% 0, 90% 0, 82% 100%, 56% 100%, 50% 48%, 44% 100%, 18% 100%); }
.icon-bags::before {
  width: 58%;
  height: 48%;
  border: 5px solid var(--ink);
  border-radius: 5px 5px 11px 11px;
  transform: translate(-50%, -34%);
}
.icon-bags::after {
  width: 31%;
  height: 25%;
  border: 5px solid var(--ink);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  transform: translate(-50%, -106%);
}
.icon-headwear::before {
  width: 55%;
  height: 32%;
  border: 5px solid var(--ink);
  border-bottom: 0;
  border-radius: 40px 40px 4px 4px;
  transform: translate(-50%, -42%);
}
.icon-headwear::after {
  width: 66%;
  height: 5px;
  border-radius: 5px;
  background: var(--ink);
  transform: translate(-40%, 235%) rotate(-6deg);
}
.icon-watches::before {
  width: 23%;
  height: 72%;
  border-radius: 7px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
.icon-watches::after {
  width: 43%;
  height: 43%;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--sun-soft);
  transform: translate(-50%, -50%);
}
.icon-electronics::before {
  width: 56%;
  height: 63%;
  border: 5px solid var(--ink);
  border-radius: 9px;
  transform: translate(-50%, -50%);
}
.icon-electronics::after {
  width: 22%;
  height: 4px;
  border-radius: 4px;
  background: var(--ink);
  transform: translate(-50%, 550%);
}
.icon-all::before {
  width: 55%;
  height: 52%;
  border: 5px solid var(--ink);
  border-radius: 5px;
  transform: translate(-50%, -42%) rotate(2deg);
}
.icon-all::after {
  width: 43%;
  height: 43%;
  border-left: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  transform: translate(-50%, -80%) rotate(45deg);
}
.icon-source::before, .icon-source::after {
  width: 48%;
  height: 26%;
  border: 4px solid var(--ink);
  border-radius: 999px;
}
.icon-source::before { transform: translate(-71%, -66%) rotate(-35deg); }
.icon-source::after { transform: translate(-29%, -34%) rotate(-35deg); }
.category-card h3 { margin: 0 0 6px; font-family: var(--sans); font-size: var(--title-small); font-weight: 850; letter-spacing: -.025em; }
.category-card p { margin: 0; color: #687282; font-size: 12px; line-height: 1.48; }
.category-action {
  margin-top: auto;
  padding-top: 12px;
  color: #8e5d00;
  font-size: 11px;
  font-weight: 850;
}
.category-note { max-width: 760px; margin: 18px auto 0; color: #667183; font-size: 12px; text-align: center; }
.article-content .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-content .category-card { min-height: 250px; }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); list-style: none; }
.process-grid li { min-height: 220px; padding: 22px; display: grid; grid-template-columns: 36px 1fr; gap: 12px; border-right: 1px solid var(--card-border); background: var(--surface); }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { color: var(--amber-dark); font-family: var(--serif); font-size: 24px; }
.process-grid h3 { font-family: var(--sans); font-size: 20px; font-weight: 850; letter-spacing: -.035em; }
.process-grid p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.evidence-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 60px); }
.evidence-copy > p:not(.section-kicker) { color: var(--ink-soft); }
.check-list { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.check-list li { padding: 13px 0; display: grid; grid-template-columns: 52px 1fr; border-bottom: 1px solid var(--line); }
.check-list span { color: var(--amber-dark); font-family: var(--serif); }
.search-preview { background: var(--white); color: var(--ink); max-width: none; padding-left: max(24px, calc((100% - var(--max)) / 2 + 24px)); padding-right: max(24px, calc((100% - var(--max)) / 2 + 24px)); }
.search-preview .section-kicker { color: var(--amber-dark); }
.search-preview > div:first-child { width: 100%; max-width: var(--content-max); margin-left: auto; margin-right: auto; }
.search-preview h2 { max-width: 760px; }
.search-lanes { width: 100%; max-width: var(--content-max); margin: 22px auto 18px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--card-border); border-left: 1px solid var(--card-border); }
.search-lanes article { min-height: 190px; padding: 21px; border-right: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: var(--surface); }
.search-lanes span { color: var(--amber-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.search-lanes h3 { margin-top: 20px; font-family: var(--sans); font-size: 21px; font-weight: 820; }
.search-lanes p { color: var(--ink-soft); font-size: 14px; }
.search-preview .button-secondary { border-color: var(--ink); color: var(--ink); }
.search-preview .button-secondary:hover { background: var(--surface-highlight); color: var(--ink); }
.article-showcase { max-width: none; padding-left: max(24px, calc((100% - var(--max)) / 2 + 24px)); padding-right: max(24px, calc((100% - var(--max)) / 2 + 24px)); background: var(--white); }
.article-showcase .section-heading, .article-showcase .article-card-grid { width: 100%; max-width: var(--content-max); margin-left: auto; margin-right: auto; }
.article-showcase .article-library-link { margin-left: 0; }
.article-card-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.article-teaser {
  min-height: 330px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.article-teaser:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-accent);
  box-shadow: var(--shadow-hover);
}
.article-number {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #e2b800;
  border-radius: var(--radius-sm);
  background: var(--sun);
  font-size: 12px;
  font-weight: 900;
}
.article-label { margin-bottom: 9px; color: #936100; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.article-teaser h3 { margin-bottom: 11px; font-family: var(--sans); font-size: var(--title-card); font-weight: 850; line-height: 1.2; letter-spacing: -.035em; }
.article-teaser p { margin-bottom: 16px; color: var(--ink-soft); font-size: 13px; line-height: 1.58; }
.article-meta { margin-top: auto; padding-top: 15px; border-top: 1px solid #e7ddc6; color: #825700; font-size: 11px; font-weight: 850; }
.article-library-link { margin-top: 20px; }
.article-content .article-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-content .article-teaser { min-height: 330px; }
.reading-path { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.reading-path article { padding: 18px; border: 1px solid var(--card-border); border-top: 4px solid var(--sun-deep); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.reading-path span { width: 34px; height: 34px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 10px; background: var(--sun-soft); color: #765000; font-size: 12px; font-weight: 900; }
.reading-path h3 { margin-top: 0; }
.reading-path p { margin-bottom: 0; font-size: 14px; }
.template-box { margin: 18px 0; padding: 18px 20px; border: 1px solid var(--card-border-accent); border-left: 5px solid var(--sun-deep); border-radius: var(--radius-md); background: var(--surface-highlight); }
.template-box .section-kicker { margin-bottom: 8px; color: #805500; }
.template-box p:last-child { margin-bottom: 0; color: var(--ink); }
.data-table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.data-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13px; }
.data-table th, .data-table td { padding: 12px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th:last-child, .data-table td:last-child { border-right: 0; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table th { background: var(--surface-highlight); color: var(--ink); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.status-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.status-grid article { padding: 18px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.status-grid article > span { display: inline-block; margin-bottom: 16px; padding: 4px 8px; border-radius: 999px; background: var(--sun-soft); color: #7c5300; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.status-grid h3 { margin-top: 0; }
.status-grid p { margin-bottom: 0; font-size: 13px; }
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.review-grid article { min-height: 200px; padding: 18px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.review-grid article > span { position: relative; width: 56px; height: 56px; margin-bottom: 16px; display: block; border: 1px solid #efca70; border-radius: var(--radius-md); background: var(--sun-soft); }
.review-grid h3 { margin-top: 0; }
.review-grid p { margin-bottom: 0; font-size: 14px; }
.compact-checks li { grid-template-columns: 52px 1fr; }
.compact-checks strong { color: var(--ink); }
.route-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; background: var(--card-border); border: 1px solid var(--card-border); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.route-grid a { min-height: 150px; padding: 18px; display: flex; flex-direction: column; background: var(--white); text-decoration: none; }
.route-grid a:hover { background: var(--surface-highlight); }
.route-grid span { color: var(--amber-dark); font-family: var(--serif); }
.route-grid strong { margin-top: 18px; font-family: var(--serif); font-size: var(--title-card); font-weight: 500; }
.route-grid small { margin-top: 6px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.closing-cta { max-width: var(--max); margin: 0 auto; padding: 54px 24px 60px; background: var(--white); text-align: center; }
.closing-cta h2 { max-width: 880px; margin-left: auto; margin-right: auto; }
.closing-cta > p:not(.section-kicker) { max-width: 670px; margin: 0 auto 20px; color: var(--ink-soft); }
.closing-cta .button-row { justify-content: center; }

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .6fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: end;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}
.page-hero h1 { max-width: 860px; margin-bottom: 16px; font-size: var(--title-page); line-height: 1.04; }
.page-hero .hero-lede { margin-bottom: 0; font-size: 18px; }
.editorial-meta {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}
.editorial-meta span,
.editorial-meta time { display: inline-flex; align-items: center; }
.editorial-meta time::before { content: "•"; margin-right: 16px; color: var(--line-dark); }
.editorial-meta a { color: var(--amber-dark); font-weight: 750; text-underline-offset: 3px; }
.editorial-method { scroll-margin-top: 24px; }
.page-hero .trust-note { margin-bottom: 0; }
.page-hero .trust-note { padding: 16px 18px; border: 1px solid var(--card-border); border-left: 4px solid var(--sun-deep); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.breadcrumbs { max-width: var(--max); margin: 0 auto; padding: 12px 24px 0; background: var(--white); font-size: 12px; color: var(--ink-soft); }
.breadcrumbs ol { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-dark); }
.article-shell { max-width: var(--max); margin: 0 auto; padding: 0 24px 54px; display: grid; grid-template-columns: 240px minmax(0, 760px); gap: clamp(28px, 5vw, 64px); background: var(--white); }
.article-rail { padding-top: 36px; }
.article-rail-inner { position: sticky; top: 24px; }
.article-rail p { margin-bottom: 10px; color: var(--amber-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-rail a { padding: 7px 8px; display: block; border-bottom: 1px solid var(--line); border-radius: 8px; color: var(--ink-soft); text-decoration: none; font-size: 12px; }
.article-rail a:hover { color: var(--amber-dark); background: var(--surface-highlight); }
.article-content { padding-top: 32px; }
.article-content > section { padding: 0 0 26px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-content > section:last-child { margin-bottom: 0; border-bottom: 0; }
.article-content h2 { font-size: var(--title-article); }
.article-content h3 { margin-top: 16px; font-family: var(--serif); font-size: var(--title-card); font-weight: 500; }
.article-content p, .article-content li { color: var(--ink-soft); }
.article-content strong { color: var(--ink); }
.article-content ul, .article-content ol { padding-left: 22px; }
.article-content li + li { margin-top: 9px; }
.answer-box { padding: 20px 22px; background: var(--surface-highlight); border: 1px solid var(--card-border-accent); border-left: 4px solid var(--mint-ink); border-radius: var(--radius-md); }
.answer-box .section-kicker { margin-bottom: 8px; color: var(--mint-ink); }
.answer-box p:last-child { margin-bottom: 0; color: var(--ink); font-family: var(--serif); font-size: 20px; line-height: 1.5; }
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.compare-card { padding: 18px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.compare-card.good { border-top: 4px solid var(--mint-ink); }
.compare-card.weak { border-top: 4px solid #a8563c; }
.compare-card h3 { margin-top: 0; }
.score-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-top: 1px solid var(--card-border); border-left: 1px solid var(--card-border); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.score-grid div { padding: 15px; border-right: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: var(--surface); }
.score-grid strong { display: block; font-family: var(--serif); font-size: 23px; }
.score-grid span { color: var(--ink-soft); font-size: 12px; }
.source-grid, .small-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.source-grid article, .small-card-grid article { padding: 18px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.source-grid h3, .small-card-grid h3 { margin-top: 0; }
.term { display: inline-block; padding: 3px 8px; border-radius: 999px; background: var(--paper-deep); color: var(--amber-dark); font-size: 12px; font-weight: 800; }
.inline-note { padding: 18px 20px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--surface-warm); font-size: 14px; }
.related-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.related-links a { padding: 12px 14px; background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); text-decoration: none; font-size: 13px; font-weight: 800; transition: transform .18s ease, border-color .18s ease, color .18s ease; }
.related-links a:hover { transform: translateY(-1px); border-color: var(--card-border-accent); color: var(--amber-dark); }
.faq-list details { border-top: 1px solid var(--card-border); }
.faq-list details:last-child { border-bottom: 1px solid var(--card-border); }
.faq-list summary { padding: 16px 34px 16px 10px; border-radius: var(--radius-sm); cursor: pointer; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.faq-list summary:hover { background: var(--surface-highlight); }
.faq-list details p { padding: 0 10px 16px; margin: 0; }
.contact-card { padding: 21px; border: 1px solid var(--card-border); border-top: 4px solid var(--sun-deep); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-soft); }
.contact-card p:last-child { margin-bottom: 0; font-family: var(--serif); font-size: 22px; color: var(--ink); }

.site-footer { border-top: 1px solid var(--line); background: var(--white); color: var(--ink); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 34px 24px 24px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 42px; }
.footer-brand { display: inline-block; margin-bottom: 12px; color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 900; letter-spacing: .08em; }
.footer-brand span { color: var(--amber-dark); }
.footer-inner p { max-width: 480px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 26px; align-content: start; }
.footer-links a { padding: 4px 0; color: var(--ink-soft); text-decoration: none; font-size: 12px; }
.footer-links a:hover { color: var(--amber-dark); }
.footer-base { max-width: var(--max); margin: 0 auto; padding: 14px 24px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2147483000;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(9, 46, 28, .3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(9, 46, 28, .38);
}
.whatsapp-mark {
  width: 32px;
  height: 32px;
  display: block;
  background: url("/whatsapp-mark.svg") center / contain no-repeat;
}
.whatsapp-label {
  position: absolute;
  right: 68px;
  top: 50%;
  width: max-content;
  max-width: 210px;
  padding: .55rem .7rem;
  border-radius: 9px;
  background: #17231d;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .18s ease, visibility .18s ease;
}
.whatsapp-float:hover .whatsapp-label,
.whatsapp-float:focus-visible .whatsapp-label { opacity: 1; visibility: visible; }

@media (max-width: 940px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 13px; }
  .top-nav { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .search-visual { max-width: 620px; width: 100%; }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .article-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { grid-template-columns: 1fr; }
  .article-shell { grid-template-columns: 1fr; gap: 0; }
  .article-rail { padding-top: 22px; }
  .article-rail-inner { position: static; display: flex; gap: 5px 15px; flex-wrap: wrap; }
  .article-rail p { width: 100%; }
  .article-rail a { border: 0; padding: 4px 6px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .header-inner { padding: 11px 18px 13px; }
  .top-nav { width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3px 7px; overflow: visible; }
  .top-nav a { min-width: 0; padding: 7px 2px; text-align: center; white-space: nowrap; font-size: 11px; }
  .hero { padding: 30px 18px 32px; gap: 24px; }
  .eyebrow { flex-wrap: wrap; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .button-row { align-items: stretch; flex-direction: column; }
  .button, .button-row .text-link { width: 100%; }
  .finds-search { grid-template-columns: 1fr; padding: 7px; border-radius: var(--radius-lg); }
  .search-field { padding: 0 14px; }
  .finds-search button { width: 100%; min-height: 50px; border-radius: var(--radius-sm); }
  .search-shortcuts { align-items: flex-start; }
  .search-visual { min-height: 390px; }
  .finder-board { width: 100%; border-radius: var(--radius-lg); box-shadow: 10px 14px 0 rgba(213, 147, 0, .16); }
  .finder-cards > div { min-height: 116px; padding: 13px; }
  .quick-answer { margin: 0 18px; padding: 16px; grid-template-columns: 1fr; gap: 5px; }
  .section { padding: 38px 18px; }
  .split-intro, .evidence-section { grid-template-columns: 1fr; gap: 18px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .directory-heading { margin-bottom: 20px; text-align: left; }
  .category-grid, .article-content .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category-card, .article-content .category-card { min-height: 218px; padding: 15px 11px 13px; border-radius: var(--radius-md); }
  .category-icon { width: 78px; height: 78px; margin-bottom: 15px; border-radius: var(--radius-lg); }
  .category-card h3 { font-size: 15px; }
  .category-card p { font-size: 11px; }
  .process-grid, .search-lanes { grid-template-columns: 1fr; }
  .process-grid li { border-right: 0; border-bottom: 1px solid var(--card-border); min-height: 0; }
  .process-grid li:last-child { border-bottom: 0; }
  .search-preview { padding-left: 18px; padding-right: 18px; }
  .search-lanes article { min-height: 0; }
  .article-showcase { padding-left: 18px; padding-right: 18px; }
  .article-card-grid, .article-content .article-card-grid, .reading-path, .status-grid, .review-grid { grid-template-columns: 1fr; }
  .article-teaser, .article-content .article-teaser { min-height: 0; }
  .article-number { margin-bottom: 20px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-grid a { min-height: 140px; }
  .closing-cta { padding: 42px 18px; text-align: left; }
  .closing-cta h2, .closing-cta > p:not(.section-kicker) { margin-left: 0; }
  .closing-cta .button-row { justify-content: flex-start; }
  .page-hero { padding: 28px 18px 22px; }
  .page-hero h1 { font-size: clamp(29px, 8.2vw, 40px); }
  .editorial-meta { gap: 4px 10px; }
  .editorial-meta time::before { margin-right: 10px; }
  .breadcrumbs { padding-left: 18px; padding-right: 18px; }
  .article-shell { padding: 0 18px 40px; }
  .article-content { padding-top: 22px; }
  .compare-grid, .source-grid, .small-card-grid, .related-links, .score-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 28px 18px 22px; grid-template-columns: 1fr; gap: 22px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-base { padding-left: 18px; padding-right: 18px; }
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
  .whatsapp-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .category-card, .article-teaser, .related-links a, .whatsapp-float, .whatsapp-label { transition: none; }
  .button:hover, .category-card:hover, .article-teaser:hover, .related-links a:hover, .whatsapp-float:hover { transform: none; }
}

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