:root {
  --paper: #f5f5f7;
  --paper-deep: #ececef;
  --surface: #ffffff;
  --ink: #323232;
  --muted: #686868;
  --line: #e2e3e6;
  --green: #ef8410;
  --green-dark: #d64a08;
  --green-soft: #fff0e7;
  --orange: #f74705;
  --orange-soft: #ffe5d8;
  --yellow: #ffb33c;
  --shadow: 0 14px 38px rgba(50, 50, 50, 0.09);
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 30px;
  --content: 1200px;
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

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

a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--green);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

p,
ul,
ol {
  margin-top: 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
}

h2 {
  max-width: 24ch;
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

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

.reading-width {
  width: min(100%, var(--reading));
}

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

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 16px rgba(50, 50, 50, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f79400 0%, #f70709 100%);
  box-shadow: 0 7px 16px rgba(247, 71, 5, 0.22);
  color: #fff;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  content: "";
}

.brand-mark::before {
  top: 0.35rem;
  right: 0.43rem;
}

.brand-mark::after {
  bottom: 0.32rem;
  left: 0.38rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.site-nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  color: #35413c;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(23, 107, 83, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.hero-copy {
  max-width: 650px;
  margin: 1.3rem 0 0;
  color: #3e4a45;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

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

.button-primary {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.button-primary:hover {
  background: var(--green);
  color: #fff;
}

.external-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-note {
  margin-top: 1.6rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 253, 248, 0.78);
  color: #4a544f;
  font-size: 0.88rem;
}

.field-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 12px 12px 0 var(--green-soft);
  transform: rotate(1deg);
}

.field-card::before {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 88px;
  height: 24px;
  background: rgba(240, 199, 94, 0.66);
  content: "";
  transform: translateX(-50%) rotate(-3deg);
}

.field-card h2 {
  max-width: none;
  margin-bottom: 1.2rem;
  font-size: 1.45rem;
}

.field-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.field-list li {
  display: grid;
  grid-template-columns: 1.65rem 1fr;
  gap: 0.65rem;
  align-items: start;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--line);
  color: #3f4a45;
  font-size: 0.9rem;
}

.field-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.field-list strong {
  color: var(--ink);
}

.field-number {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: #793918;
  font-size: 0.73rem;
  font-weight: 900;
}

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

.home-page .site-header {
  border-color: #e8e9e7;
  background: rgba(255, 255, 255, 0.96);
}

.hero-search-layout {
  min-height: 720px;
  padding: clamp(3.8rem, 7vw, 6.5rem) 0 3.2rem;
  border-color: #e6e9e8;
  background: #fcfdfd;
}

.hero-search-layout::before {
  position: absolute;
  z-index: 0;
  top: 5%;
  right: -7%;
  width: 58%;
  height: 74%;
  border: 1px solid rgba(39, 113, 99, 0.08);
  border-radius: 50% 15% 45% 35%;
  background:
    radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.98) 0 8%, rgba(220, 239, 243, 0.76) 9% 42%, rgba(232, 244, 241, 0.5) 43% 64%, transparent 65%),
    linear-gradient(135deg, rgba(231, 241, 247, 0.7), rgba(218, 237, 230, 0.42));
  content: "";
  transform: skewX(-10deg);
  pointer-events: none;
}

.hero-search-layout::after {
  position: absolute;
  z-index: 0;
  top: -18%;
  right: 10%;
  width: 520px;
  height: 520px;
  border: 84px solid rgba(23, 107, 83, 0.035);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-search-layout .container {
  position: relative;
  z-index: 1;
}

.hero-stage {
  display: grid;
  min-height: 330px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}

.hero-search-layout h1 {
  max-width: 12ch;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 3.65vw, 3.35rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-search-layout .hero-copy {
  max-width: 620px;
  margin-top: 1.45rem;
  color: #3c4240;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-route-visual {
  position: relative;
  z-index: 1;
  min-height: 340px;
}

.route-line {
  position: absolute;
  display: block;
  border-top: 2px dashed rgba(23, 107, 83, 0.28);
  border-radius: 50%;
}

.route-line-one {
  top: 29%;
  right: 12%;
  width: 75%;
  height: 45%;
  transform: rotate(-12deg);
}

.route-line-two {
  right: 4%;
  bottom: 14%;
  width: 62%;
  height: 34%;
  transform: rotate(18deg);
}

.route-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(33, 52, 47, 0.16);
  color: #1d4439;
  font-size: 0.76rem;
  font-weight: 850;
}

.route-bubble-main {
  top: 18%;
  left: 21%;
  width: 220px;
  height: 220px;
  align-content: center;
  background: radial-gradient(circle at 30% 24%, #fff 0 8%, #d9edf0 28%, #9dcfc3 72%, #6caf9f 100%);
  color: #123d33;
}

.route-bubble-main strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.route-bubble-main small {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.route-bubble-shoes {
  top: 0;
  right: 5%;
  width: 78px;
  height: 78px;
  background: #f8d976;
}

.route-bubble-bags {
  right: 0;
  bottom: 12%;
  width: 66px;
  height: 66px;
  background: #f3b987;
}

.route-bubble-layers {
  bottom: 0;
  left: 5%;
  width: 72px;
  height: 72px;
  background: #dcebe4;
}

.hero-product-search {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(100%, var(--content));
  min-height: 92px;
  grid-template-columns: auto minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: -1.5rem;
  padding: 0.7rem 0.75rem 0.7rem 1.35rem;
  border: 1px solid #e6e8e7;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(28, 41, 37, 0.2);
}

.hero-product-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 22px 48px rgba(28, 41, 37, 0.18), 0 0 0 4px rgba(23, 107, 83, 0.12);
}

.hero-search-symbol {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 0.2rem;
  border: 3px solid #81908a;
  border-radius: 50%;
}

.hero-search-symbol::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: #81908a;
  content: "";
  transform: rotate(45deg);
}

.hero-product-search input {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  padding: 0 0.35rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  outline: 0;
}

.hero-product-search input::placeholder {
  color: #929894;
  opacity: 1;
}

.hero-source-tags {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-source-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: #e6e8e7;
  color: #606966;
  font-size: 0.68rem;
  font-weight: 850;
}

.hero-product-search button {
  min-width: 164px;
  min-height: 68px;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(115deg, #ff7a00, #ed2c19);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(223, 64, 26, 0.24);
}

.hero-product-search button:hover {
  background: linear-gradient(115deg, #ed6700, #ce2517);
}

.hero-search-note {
  margin: 1rem 1.5rem 0;
  color: #67716d;
  font-size: 0.8rem;
}

.hero-utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-utility-grid a {
  display: grid;
  min-height: 104px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid #ff9e29;
  border-radius: 22px;
  background: linear-gradient(115deg, #ff8700, #ef3217);
  color: #fff;
  box-shadow: 0 10px 25px rgba(230, 83, 25, 0.14);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-utility-grid a:hover {
  color: #fff;
  box-shadow: 0 14px 28px rgba(230, 83, 25, 0.22);
  transform: translateY(-2px);
}

.hero-utility-grid strong,
.hero-utility-grid small {
  display: block;
}

.hero-utility-grid strong {
  font-size: 0.98rem;
}

.hero-utility-grid small {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
}

.utility-number {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  font-size: 0.69rem;
  font-weight: 900;
}

.hero-trust-note {
  max-width: 920px;
  margin: 1.55rem auto 0;
  border-left-color: #d95122;
  background: #fff;
  box-shadow: 0 8px 24px rgba(32, 43, 39, 0.06);
  text-align: center;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 2.6rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 20ch;
  font-size: clamp(2.25rem, 5vw, 3.65rem);
}

.page-intro {
  max-width: 700px;
  margin: 1.15rem 0 0;
  color: #46514c;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.35rem;
  color: #8f968f;
  content: "/";
}

.breadcrumb a {
  color: inherit;
}

.quick-answer {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 1.25rem 0;
  border-bottom: 1px solid #bfcfc6;
  background: var(--green-soft);
}

.quick-answer .container {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.2rem;
}

.quick-label {
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-answer p {
  max-width: 860px;
  margin: 0;
  color: #243d34;
  font-weight: 650;
}

.section {
  padding: clamp(3.8rem, 8vw, 6.5rem) 0;
}

.section-compact {
  padding: clamp(2.8rem, 6vw, 4.6rem) 0;
}

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

.section-alt {
  background: rgba(255, 253, 248, 0.66);
}

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

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark a {
  color: #bfe1d2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

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

.section-dark .section-heading p {
  color: #bac6c0;
}

.section-dark .kicker {
  color: #f2ad77;
}

.kicker {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prose {
  max-width: var(--reading);
}

.prose h2 {
  margin: 2.8rem 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

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

.prose h3 {
  margin: 2rem 0 0.7rem;
}

.prose p,
.prose li {
  color: #3f4a45;
}

.prose p {
  margin-bottom: 1.1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.5rem;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 2px 0 rgba(24, 35, 31, 0.04);
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p,
.card li {
  color: #56615c;
  font-size: 0.91rem;
}

.card-link {
  display: inline-flex;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  font-weight: 850;
}

.directory-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 132, 0, 0.08), transparent 21rem),
    radial-gradient(circle at 92% 76%, rgba(255, 23, 0, 0.06), transparent 22rem),
    #fff;
}

.directory-heading {
  align-items: end;
}

.directory-heading .kicker {
  color: var(--orange);
}

.directory-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 4.6vw, 4.3rem);
  letter-spacing: -0.055em;
}

.directory-heading > p {
  max-width: 620px;
}

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

.product-directory-card {
  display: flex;
  min-width: 0;
  min-height: 240px;
  align-items: center;
  flex-direction: column;
  padding: 1.35rem 0.9rem 1rem;
  border: 1px solid #dedbd4;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(35, 33, 31, 0.07);
  color: var(--ink);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-directory-card:hover,
.product-directory-card:focus-visible {
  border-color: rgba(255, 52, 0, 0.62);
  box-shadow: 0 20px 42px rgba(255, 63, 0, 0.14);
  color: var(--ink);
  transform: translateY(-5px);
}

.product-directory-card:focus-visible {
  outline: 3px solid rgba(255, 91, 0, 0.24);
  outline-offset: 3px;
}

.product-directory-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 117, 0, 0.12);
  border-radius: 25px;
  background: linear-gradient(145deg, #fff3df, #ffd7b3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: 3.3rem;
  line-height: 1;
}

.product-directory-card:nth-child(3n + 2) .product-directory-icon {
  background: linear-gradient(145deg, #fff0e7, #ffc7ad);
}

.product-directory-card:nth-child(3n + 3) .product-directory-icon {
  background: linear-gradient(145deg, #fff7e8, #ffe1a8);
}

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

.product-directory-card small {
  margin-top: auto;
  padding-top: 1rem;
  color: #66706b;
  font-size: 0.72rem;
  font-weight: 850;
}

.product-directory-card small span {
  color: var(--orange);
}

.product-directory-card-all {
  border-color: rgba(255, 76, 0, 0.44);
}

.product-directory-card-all .product-directory-icon {
  background: linear-gradient(145deg, #ff8900, #ff2300);
  box-shadow: 0 12px 24px rgba(255, 60, 0, 0.22);
}

.directory-note {
  margin: 1.5rem auto 0;
  color: #66706b;
  font-size: 0.88rem;
  text-align: center;
}

.directory-note a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 0.18em;
}

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

.article-preview-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(28, 32, 30, 0.07);
}

.article-preview-card:nth-child(2n) {
  background: #fff8ef;
}

.article-preview-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 17px;
  background: linear-gradient(145deg, #ff8a00, #ff2b00);
  box-shadow: 0 10px 22px rgba(255, 72, 0, 0.2);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86rem;
  font-weight: 900;
}

.article-preview-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  line-height: 1.14;
}

.article-preview-card p {
  color: #58635e;
  font-size: 0.92rem;
}

.article-preview-card .card-link {
  margin-top: auto;
  padding-top: 1.2rem;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.article-meta-row span {
  padding: 0.38rem 0.65rem;
  border: 1px solid #e3ded6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #64706a;
  font-size: 0.73rem;
  font-weight: 800;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.article-lead-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.article-lead-panel > div {
  padding: 1rem;
  border-radius: 16px;
}

.article-lead-panel > div:first-child {
  background: linear-gradient(145deg, #ff8a00, #ff2a00);
  color: #fff;
}

.article-lead-panel h2,
.article-lead-panel h3 {
  margin-bottom: 0.6rem;
}

.article-lead-panel > div:first-child p {
  color: rgba(255, 255, 255, 0.88);
}

.decision-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.8rem;
  border: 1px solid #e4e0d9;
  border-radius: 14px;
  background: #fff;
}

.decision-list li > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #fff0df;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.decision-list strong {
  display: block;
  margin-bottom: 0.18rem;
}

.decision-list small {
  color: #5d6963;
  font-size: 0.84rem;
}

.related-reading {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.related-reading a {
  display: flex;
  min-height: 138px;
  justify-content: space-between;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.related-reading a:hover {
  border-color: var(--orange);
  color: var(--ink);
}

.related-reading small {
  color: #c83f05;
  font-size: 0.72rem;
  font-weight: 850;
}

.related-reading strong {
  font-size: 1rem;
  line-height: 1.25;
}

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

.step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.2rem;
  border-top: 1px solid var(--ink);
  counter-increment: steps;
}

.step::before {
  position: absolute;
  top: 1.35rem;
  left: 0;
  color: var(--orange);
  content: "0" counter(steps);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 0.55rem;
}

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

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

.check-grid li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: #3f4a45;
  font-size: 0.92rem;
}

.check-grid li::before {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.search-panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--yellow);
}

.search-panel h2 {
  margin-bottom: 0.7rem;
}

.search-panel p {
  max-width: 680px;
  color: #4c432c;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.search-form input {
  min-width: 0;
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.search-form button {
  min-height: 50px;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
}

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

.directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.directory a {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.64);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.directory a:hover {
  background: var(--surface);
}

.directory small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.compare-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.compare-card.strong {
  border-top: 5px solid var(--green);
}

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

.compare-card h3 {
  margin-bottom: 0.8rem;
}

.compare-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #4d5853;
  font-size: 0.92rem;
}

.compare-card li + li {
  margin-top: 0.45rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.9rem;
}

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

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

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

.score-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.score-list li {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.85rem;
}

.score-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.callout {
  margin: 1.5rem 0;
  padding: 1.2rem 1.3rem;
  border: 1px solid #e2b488;
  border-radius: var(--radius);
  background: var(--orange-soft);
  color: #58351f;
}

.callout strong {
  color: #452713;
}

.quote-rule {
  margin: 2rem 0;
  padding: 1.4rem 0 1.4rem 1.4rem;
  border-left: 4px solid var(--green);
  color: #2f423a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.35;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h2 {
  max-width: 34ch;
  margin-bottom: 0.65rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.faq-item p {
  max-width: 780px;
  color: #46514c;
}

.faq-item p:first-of-type strong {
  color: var(--ink);
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.link-cloud a {
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.link-cloud a:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.closing {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 10px 10px 0 var(--orange-soft);
}

.closing p {
  max-width: 680px;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: #e9e2d3;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
}

.footer-trust {
  max-width: 620px;
  margin-top: 1rem;
  color: #515d57;
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.footer-links a {
  color: #34413b;
  font-size: 0.82rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ccc3b1;
  color: #68726d;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .header-row {
    display: block;
    padding: 0.8rem 0 0.65rem;
  }

  .site-nav {
    margin: 0.55rem -0.35rem 0;
    padding-bottom: 0.1rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-search-layout {
    min-height: 0;
    padding-bottom: 2.8rem;
  }

  .hero-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy-block {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-route-visual {
    min-height: 250px;
    margin-top: -1rem;
  }

  .route-bubble-main {
    top: 10%;
    left: 44%;
    width: 180px;
    height: 180px;
  }

  .route-bubble-shoes {
    right: 18%;
  }

  .route-bubble-bags {
    right: 12%;
  }

  .route-bubble-layers {
    left: 24%;
  }

  .hero-product-search {
    min-height: 112px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin-top: -2.4rem;
    border-radius: 34px;
  }

  .hero-search-symbol {
    grid-row: 1 / 3;
  }

  .hero-product-search input {
    grid-column: 2;
    min-height: 48px;
  }

  .hero-source-tags {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-product-search button {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .field-card {
    max-width: 560px;
    transform: none;
  }

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

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

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

  .article-lead-panel {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  body {
    font-size: 0.96rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.65rem);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-search-layout {
    padding-top: 2.8rem;
  }

  .hero::after {
    display: none;
  }

  .hero-search-layout::before {
    top: 25%;
    right: -35%;
    width: 105%;
    height: 38%;
    opacity: 0.76;
  }

  .hero-search-layout h1 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 8.4vw, 2.25rem);
    line-height: 1;
  }

  .hero-search-layout .hero-copy {
    font-size: 1rem;
  }

  .hero-route-visual {
    min-height: 190px;
    margin-top: -0.5rem;
  }

  .route-bubble-main {
    top: 15%;
    left: 37%;
    width: 126px;
    height: 126px;
    border-width: 6px;
  }

  .route-bubble-main strong {
    font-size: 1.55rem;
  }

  .route-bubble-main small {
    font-size: 0.58rem;
  }

  .route-bubble-shoes,
  .route-bubble-bags,
  .route-bubble-layers {
    width: 52px;
    height: 52px;
    border-width: 5px;
    font-size: 0.58rem;
  }

  .route-bubble-shoes {
    right: 6%;
  }

  .route-bubble-bags {
    right: 2%;
    bottom: 9%;
  }

  .route-bubble-layers {
    left: 8%;
  }

  .hero-product-search {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: -1rem;
    padding: 0.85rem;
    border-radius: 26px;
  }

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

  .hero-product-search input {
    grid-column: 1;
    grid-row: auto;
    min-height: 54px;
    padding: 0 0.4rem;
    border-bottom: 1px solid #e1e5e3;
    font-size: 1rem;
  }

  .hero-source-tags {
    grid-column: 1;
    grid-row: auto;
    flex-wrap: wrap;
    padding: 0 0.35rem;
  }

  .hero-product-search button {
    width: 100%;
    min-height: 58px;
    grid-column: 1;
    grid-row: auto;
  }

  .hero-search-note {
    margin-inline: 0.25rem;
  }

  .hero-utility-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.4rem;
  }

  .hero-utility-grid a {
    min-height: 86px;
  }

  .hero-trust-note {
    margin-top: 1.25rem;
    text-align: left;
  }

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

  .button {
    width: 100%;
  }

  .quick-answer .container {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .grid-2,
  .grid-3,
  .compare,
  .check-grid,
  .step-grid,
  .directory,
  .score-list {
    grid-template-columns: 1fr;
  }

  .directory-heading {
    align-items: start;
  }

  .directory-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

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

  .article-index-grid,
  .related-reading {
    grid-template-columns: 1fr;
  }

  .article-preview-card {
    min-height: 0;
  }

  .product-directory-card {
    min-height: 176px;
    padding: 0.8rem 0.55rem 0.75rem;
    border-radius: 18px;
  }

  .product-directory-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 0.75rem;
    border-radius: 20px;
    font-size: 2.55rem;
  }

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

  .product-directory-card small {
    padding-top: 0.65rem;
    font-size: 0.67rem;
  }

  .step {
    padding: 1.25rem 0 1.25rem 3rem;
  }

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

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

  .data-table {
    display: block;
    overflow-x: auto;
  }

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

/* Final Okeyhaul-inspired visual system: original editorial UI, not the official mark. */
.home-page .site-header {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.brand {
  color: #323232;
  letter-spacing: 0.055em;
}

.site-nav a {
  color: #4f5154;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #fff0e7;
  color: #d64a08;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-color: var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(247, 71, 5, 0.08), transparent 25rem),
    linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.page-hero::after {
  position: absolute;
  top: -9rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border: 4.5rem solid rgba(239, 132, 16, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-search-layout {
  border-color: var(--line);
  background: #fff;
}

.hero-search-layout::before {
  border-color: rgba(247, 71, 5, 0.08);
  background:
    radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.99) 0 8%, rgba(255, 235, 218, 0.9) 9% 42%, rgba(245, 245, 247, 0.78) 43% 64%, transparent 65%),
    linear-gradient(135deg, rgba(255, 241, 229, 0.9), rgba(238, 238, 241, 0.58));
}

.hero-search-layout::after {
  border-color: rgba(247, 71, 5, 0.035);
}

.hero-search-layout h1 {
  color: #282828;
}

.hero-search-layout .hero-copy,
.prose p,
.prose li,
.card p,
.card li,
.article-preview-card p,
.faq-item p {
  color: #595b5f;
}

.eyebrow {
  color: #d64a08;
}

.eyebrow::before {
  background: linear-gradient(90deg, #f79400, #f70709);
}

.route-line {
  border-top-color: rgba(247, 71, 5, 0.26);
}

.route-bubble {
  box-shadow: 0 12px 30px rgba(50, 50, 50, 0.14);
  color: #3a3a3a;
}

.route-bubble-main {
  background: radial-gradient(circle at 30% 24%, #fff 0 8%, #fff0df 28%, #ffc66e 72%, #ef8410 100%);
  color: #3b2d23;
}

.route-bubble-main strong {
  font-family: Inter, ui-sans-serif, sans-serif;
  font-weight: 900;
}

.route-bubble-shoes {
  background: #ffd36d;
}

.route-bubble-bags {
  background: #ffae75;
}

.route-bubble-layers {
  background: #eeeef1;
}

.hero-product-search {
  border-color: #e1e2e5;
  box-shadow: 0 20px 42px rgba(50, 50, 50, 0.19);
}

.hero-product-search:focus-within {
  border-color: #ef8410;
  box-shadow: 0 20px 42px rgba(50, 50, 50, 0.16), 0 0 0 4px rgba(239, 132, 16, 0.15);
}

.hero-search-symbol {
  border-color: #8f9094;
}

.hero-search-symbol::after {
  background: #8f9094;
}

.hero-source-tags span {
  border: 1px solid #e4e4e6;
  background: #f0f0f2;
  color: #696a6d;
}

.hero-product-search button,
.hero-utility-grid a,
.search-form button,
.button-primary {
  border-color: transparent;
  background: linear-gradient(133deg, #f79400 0%, #f70709 100%);
  color: #fff;
}

.hero-product-search button:hover,
.hero-utility-grid a:hover,
.search-form button:hover,
.button-primary:hover {
  background: linear-gradient(133deg, #e97e00 0%, #d90709 100%);
  color: #fff;
}

.utility-number {
  width: 2.65rem;
  height: 2.65rem;
  border-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.25rem;
}

.quick-answer {
  border-color: #ffd2bd;
  background: linear-gradient(90deg, #fff0e7, #fff8f4);
}

.quick-answer p {
  color: #4d4039;
}

.section-alt {
  background: #fff;
}

.section-dark {
  background: #404448;
  color: #f3f3f3;
}

.section-dark .section-heading p,
.section-dark .decision-list small {
  color: #d5d7da;
}

.section-dark a {
  color: #ffc07b;
}

.kicker,
.directory-heading .kicker,
.card-link {
  color: #9f3408;
}

.section-dark .kicker {
  color: #ffb36a;
}

.section-dark a.button {
  color: #323232;
}

.section-dark a.button-primary {
  color: #fff;
}

.card,
.article-preview-card,
.article-lead-panel,
.related-reading a,
.compare-card,
.faq-item,
.closing {
  border-color: #e2e3e6;
}

.card,
.article-preview-card,
.related-reading a,
.compare-card,
.closing {
  box-shadow: 0 10px 28px rgba(50, 50, 50, 0.07);
}

.article-preview-card:nth-child(2n) {
  background: #fff;
}

.article-preview-card,
.related-reading a,
.card,
.compare-card {
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.article-preview-card:hover,
.related-reading a:hover,
.card:hover,
.compare-card:hover {
  border-color: rgba(239, 132, 16, 0.55);
  box-shadow: 0 16px 34px rgba(50, 50, 50, 0.1);
  transform: translateY(-3px);
}

.product-directory-card {
  border-color: #e1e2e5;
  background: #fff;
  box-shadow: 0 12px 30px rgba(50, 50, 50, 0.075);
}

.product-directory-icon,
.product-directory-card:nth-child(3n + 2) .product-directory-icon,
.product-directory-card:nth-child(3n + 3) .product-directory-icon {
  border-color: rgba(239, 132, 16, 0.16);
  background: linear-gradient(145deg, #fff5eb, #ffd8b5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(247, 71, 5, 0.08);
}

.product-directory-card-all .product-directory-icon {
  background: linear-gradient(133deg, #f79400 0%, #f70709 100%);
}

.article-preview-icon,
.decision-list li > span:first-child {
  background: linear-gradient(133deg, #f79400 0%, #f70709 100%);
  color: #fff;
}

.article-lead-panel > div:first-child {
  background: linear-gradient(133deg, #f79400 0%, #f70709 100%);
}

.data-table {
  overflow: hidden;
  border-radius: 14px;
}

.data-table th {
  background: #fff0e7;
  color: #bd420c;
}

.search-panel {
  overflow: hidden;
  border-color: #e78321;
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 255, 255, 0.72), transparent 13rem),
    linear-gradient(135deg, #ffcf7a, #ffead8);
  box-shadow: 0 16px 34px rgba(247, 71, 5, 0.12);
}

.search-panel p {
  color: #54443a;
}

.directory a {
  background: #fff;
}

.directory a:hover {
  background: #fff5ee;
}

.callout {
  border-color: #ffc48e;
  background: #fff0e4;
  color: #573d2f;
}

.quote-rule {
  border-left-color: #ef8410;
  color: #44464a;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-weight: 700;
}

.closing {
  border-color: #d9dadd;
  box-shadow: 10px 10px 0 #ffe4d5;
}

.site-footer {
  border-top-color: #4d5155;
  background: #404448;
  color: #fff;
}

.site-footer .brand,
.site-footer .footer-links a {
  color: #fff;
}

.site-footer .footer-links a:hover {
  color: #ffb45d;
}

.footer-trust,
.footer-meta {
  color: #d4d6d8;
}

.footer-meta {
  border-top-color: rgba(255, 255, 255, 0.16);
}

/* Coordinated compact spacing pass. */
.hero-search-layout {
  min-height: 520px;
  padding: clamp(2rem, 3.7vw, 3.05rem) 0 1.6rem;
}

.hero-stage {
  min-height: 240px;
  gap: clamp(1.6rem, 4vw, 3.5rem);
}

.hero-copy-block {
  padding-bottom: 1.25rem;
}

.hero-search-layout .hero-copy {
  margin-top: 1.1rem;
}

.hero-route-visual {
  min-height: 300px;
}

.hero-product-search {
  margin-top: -1.2rem;
}

.hero-search-note {
  margin-top: 0.75rem;
}

.hero-utility-grid {
  gap: 0.8rem;
  margin-top: 0.75rem;
}

.hero-utility-grid a {
  min-height: 92px;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
}

.hero-trust-note {
  margin-top: 0.75rem;
}

.page-hero {
  padding: clamp(1.5rem, 3vw, 2.3rem) 0 1.2rem;
}

.page-intro {
  margin-top: 0.85rem;
}

.breadcrumb {
  margin-bottom: 0.9rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
}

.article-meta-row {
  margin-top: 0.75rem;
}

.trust-note {
  margin-top: 1.1rem;
  padding: 0.85rem 1rem;
}

.quick-answer {
  padding: 0.58rem 0;
}

.quick-answer .container {
  gap: 0.9rem;
}

.section {
  padding: clamp(1.65rem, 2.95vw, 2.45rem) 0;
}

.section-compact {
  padding: clamp(1.25rem, 2.15vw, 1.8rem) 0;
}

.section-heading {
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.kicker {
  margin-bottom: 0.45rem;
}

.prose h2 {
  margin: 1.3rem 0 0.5rem;
}

.prose h3 {
  margin: 1.1rem 0 0.45rem;
}

.prose p {
  margin-bottom: 0.9rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.grid-2,
.grid-3,
.article-index-grid,
.compare {
  gap: 0.8rem;
}

.card,
.compare-card {
  padding: 1.15rem;
}

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

.directory-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.product-directory-grid {
  gap: 0.72rem;
}

.product-directory-card {
  min-height: 210px;
  padding: 1.05rem 0.8rem 0.85rem;
}

.product-directory-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 0.8rem;
  border-radius: 22px;
  font-size: 2.9rem;
}

.product-directory-card small {
  padding-top: 0.7rem;
}

.directory-note {
  margin-top: 1rem;
}

.article-preview-card {
  min-height: 280px;
  padding: 1.15rem;
}

.article-preview-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0.85rem;
}

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

.article-preview-card .card-link {
  padding-top: 0.8rem;
}

.article-lead-panel {
  gap: 0.8rem;
  padding: 0.8rem;
}

.article-lead-panel > div {
  padding: 0.85rem;
}

.decision-list {
  gap: 0.5rem;
}

.decision-list li {
  gap: 0.65rem;
  padding: 0.68rem;
}

.related-reading {
  gap: 0.65rem;
}

.related-reading a {
  min-height: 116px;
  padding: 0.85rem;
}

.step {
  padding: 1.1rem 1.1rem 1.1rem 3.7rem;
}

.step::before {
  top: 1rem;
}

.check-grid li,
.score-list li {
  padding: 0.8rem;
}

.search-panel {
  padding: clamp(1.25rem, 3vw, 1.9rem);
}

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

.directory a {
  min-height: 102px;
  padding: 0.85rem;
}

.data-table th,
.data-table td {
  padding: 0.72rem 0.82rem;
}

.callout {
  margin: 1.1rem 0;
  padding: 0.95rem 1.05rem;
}

.quote-rule {
  margin: 1.45rem 0;
  padding: 1.05rem 0 1.05rem 1.1rem;
}

.faq-item {
  padding: 1.15rem 0;
}

.faq-item h2 {
  margin-bottom: 0.45rem;
}

.closing {
  padding: clamp(1.05rem, 2.3vw, 1.55rem);
}

.closing p {
  margin-top: 0.65rem;
}

.site-footer {
  padding: 1.55rem 0;
}

.footer-grid {
  gap: 2rem;
}

.footer-trust {
  margin-top: 0.75rem;
}

.footer-meta {
  margin-top: 1.4rem;
  padding-top: 1rem;
}

/* Unified component system across every page. */
:root {
  --paper: #f6f6f7;
  --paper-deep: #ededf0;
  --surface: #ffffff;
  --ink: #303033;
  --muted: #66686c;
  --line: #e1e2e5;
  --green-dark: #b53a07;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --content: 1120px;
  --reading: 820px;
  --shadow: 0 9px 26px rgba(48, 48, 51, 0.075);
}

body {
  background: var(--paper);
  line-height: 1.65;
}

.container,
.container.prose,
.site-header > .container,
main > section > .container,
.site-footer > .container {
  width: min(calc(100% - 2rem), var(--content));
  max-width: var(--content);
  margin-inline: auto;
}

.container.prose > :where(h2, h3, p, ul, ol, blockquote) {
  max-width: var(--reading);
}

h2 {
  font-size: clamp(1.36rem, 2vw, 1.8rem);
}

h3 {
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
}

.page-hero h1 {
  font-size: clamp(1.62rem, 2.9vw, 2.22rem);
}

.page-intro,
.quick-answer p,
.faq-item p,
.search-panel p,
.closing p {
  max-width: var(--reading);
}

.hero-trust-note {
  width: 100%;
  max-width: var(--content);
}

.page-hero .trust-note.reading-width {
  width: 100%;
  max-width: var(--content);
}

.section-heading h2 {
  max-width: 22ch;
}

.directory-heading h2 {
  max-width: 15ch;
  font-size: clamp(1.56rem, 2.35vw, 2.1rem);
  letter-spacing: -0.045em;
}

.site-nav a {
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: #ffd7c3;
  color: #b53a07;
}

.button,
.search-form input,
.search-form button {
  min-height: 46px;
}

.button {
  padding-inline: 1.1rem;
}

.field-card {
  padding: 1.25rem;
  border-color: var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: none;
}

.field-card::before {
  display: none;
}

.field-card h2 {
  margin-bottom: 0.9rem;
  font-size: 1.14rem;
}

.prose h2 {
  font-size: clamp(1.32rem, 1.75vw, 1.62rem);
}

.card,
.article-preview-card,
.article-lead-panel,
.related-reading a,
.compare-card,
.product-directory-card,
.faq-item,
.closing,
.search-panel {
  border-color: var(--line);
}

.card,
.article-preview-card,
.related-reading a,
.compare-card,
.product-directory-card,
.closing {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-lead-panel,
.search-panel,
.closing {
  border-radius: var(--radius-lg);
}

.card h3,
.article-preview-card h3,
.compare-card h3 {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.2;
}

.card p,
.card li,
.article-preview-card p,
.compare-card li,
.related-reading strong {
  line-height: 1.55;
}

.card,
.article-preview-card,
.related-reading a,
.compare-card,
.product-directory-card {
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.card:hover,
.article-preview-card:hover,
.related-reading a:hover,
.compare-card:hover,
.product-directory-card:hover {
  border-color: rgba(239, 132, 16, 0.5);
  box-shadow: 0 13px 30px rgba(48, 48, 51, 0.1);
  transform: translateY(-2px);
}

.article-preview-icon,
.utility-number,
.decision-list li > span:first-child {
  border-radius: var(--radius-sm);
}

.article-lead-panel > div {
  border-radius: 15px;
}

.decision-list li,
.data-table,
.check-grid li,
.score-list li {
  border-radius: var(--radius-sm);
}

.data-table {
  box-shadow: 0 6px 20px rgba(48, 48, 51, 0.045);
}

.data-table th {
  font-size: 0.74rem;
  letter-spacing: 0.055em;
}

.score-list strong {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 850;
}

.quote-rule {
  border-left-width: 3px;
  font-size: clamp(1.15rem, 2.1vw, 1.42rem);
}

.faq-item h2 {
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.22;
}

.closing {
  box-shadow: var(--shadow);
}

.section-dark {
  background: #3f4246;
}

.section-dark .card,
.section-dark .compare-card,
.section-dark .decision-list li,
.section-dark .check-grid li {
  border-color: #5d6166;
  background: #4a4e53;
  box-shadow: 0 8px 24px rgba(25, 26, 28, 0.18);
}

.section-dark .card h3,
.section-dark .compare-card h3,
.section-dark .decision-list strong {
  color: #ffffff;
}

.section-dark .card p,
.section-dark .card li,
.section-dark .compare-card li,
.section-dark .decision-list small,
.section-dark .check-grid li {
  color: #e2e4e6;
}

.section-dark .decision-list li > span:first-child,
.section-dark .check-grid li::before {
  background: linear-gradient(133deg, #f79400 0%, #f74705 100%);
  color: #fff;
}

.section-dark .compare-card.strong {
  border-top: 4px solid #f79400;
}

.section-dark .compare-card.weak {
  border-top: 4px solid #f74705;
}

.section-dark .card:hover,
.section-dark .compare-card:hover,
.section-dark .decision-list li:hover,
.section-dark .check-grid li:hover {
  border-color: rgba(255, 179, 106, 0.7);
  box-shadow: 0 12px 28px rgba(25, 26, 28, 0.24);
}

.site-footer .brand-mark {
  box-shadow: 0 7px 18px rgba(247, 71, 5, 0.28);
}

.footer-links a {
  text-decoration: none;
}

/* White content surfaces; search areas retain the brand treatment. */
body,
.page-hero,
.quick-answer,
.section,
.section-alt,
.section-dark,
.section-compact,
.directory-section,
.site-footer {
  background: #ffffff;
}

.page-hero {
  background-image: none;
}

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

.page-hero .eyebrow {
  color: #c83f05;
}

.quick-answer {
  border-color: var(--line);
}

.quick-answer p {
  color: #4c4d50;
}

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

.section-dark h2,
.section-dark h3,
.section-dark .card h3,
.section-dark .compare-card h3,
.section-dark .decision-list strong {
  color: var(--ink);
}

.section-dark .section-heading p,
.section-dark .card p,
.section-dark .card li,
.section-dark .compare-card li,
.section-dark .decision-list small,
.section-dark .check-grid li {
  color: var(--muted);
}

.section-dark .kicker {
  color: #9f3408;
}

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

.section-dark .card,
.section-dark .compare-card,
.section-dark .decision-list li,
.section-dark .check-grid li {
  border-color: var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.section-dark .card:hover,
.section-dark .compare-card:hover,
.section-dark .decision-list li:hover,
.section-dark .check-grid li:hover {
  border-color: rgba(239, 132, 16, 0.5);
  box-shadow: 0 13px 30px rgba(48, 48, 51, 0.1);
}

.site-footer {
  border-top-color: var(--line);
  color: var(--ink);
}

.site-footer .brand,
.site-footer .footer-links a {
  color: var(--ink);
}

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

.footer-trust,
.footer-meta {
  color: var(--muted);
}

.footer-meta {
  border-top-color: var(--line);
}

/* Search fields use the orange form-level focus state without a black rectangle. */
.hero-product-search input:focus,
.hero-product-search input:focus-visible {
  outline: none;
  box-shadow: none;
}

.search-form input:focus,
.search-form input:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(247, 71, 5, 0.14);
}

/* Site-wide WhatsApp contact entry, matched to the KakoHub reference. */
#whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(9, 46, 28, 0.3);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

#whatsapp-float img {
  display: block;
  width: 32px;
  height: 32px;
}

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

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

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

  #whatsapp-float .whatsapp-float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #whatsapp-float,
  #whatsapp-float .whatsapp-float-label {
    transition: none;
  }
}

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

@media (max-width: 900px) {
  .site-header {
    position: relative;
  }

  .header-row {
    gap: 0.6rem;
  }

  .hero-search-layout {
    padding-bottom: 2.1rem;
  }

  .section-heading {
    gap: 0.75rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .site-nav {
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: #d64a08 #f1f1f3;
  }

  .site-nav::-webkit-scrollbar {
    display: block;
    height: 4px;
  }

  .site-nav::-webkit-scrollbar-track {
    border-radius: 999px;
    background: #f1f1f3;
  }

  .site-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #d64a08;
  }
}

@media (max-width: 640px) {
  .container,
  .container.prose,
  .site-header > .container,
  main > section > .container,
  .site-footer > .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .hero,
  .hero-search-layout {
    padding-top: 2.1rem;
  }

  .hero-route-visual {
    min-height: 170px;
  }

  .hero-utility-grid {
    margin-top: 1rem;
  }

  .hero-utility-grid a {
    min-height: 78px;
    padding: 0.8rem 0.9rem;
  }

  .hero-trust-note {
    margin-top: 0.9rem;
  }

  .page-hero {
    padding: 1.35rem 0 1.05rem;
  }

  .quick-answer {
    padding: 0.52rem 0;
  }

  .section {
    padding: 1.35rem 0;
  }

  .section-compact {
    padding: 1.1rem 0;
  }

  .section-heading {
    margin-bottom: 0.65rem;
  }

  .product-directory-card {
    min-height: 162px;
  }

  .product-directory-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 0.6rem;
    font-size: 2.3rem;
  }

  .site-footer {
    padding: 1.25rem 0 calc(5.25rem + env(safe-area-inset-bottom));
  }
}

@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;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .search-panel {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .section-compact {
    padding: 2rem 0;
  }
}
