:root {
  --ink: #241f1b;
  --muted: #69615c;
  --paper: #f8f7f5;
  --surface: #ffffff;
  --surface-soft: #fff8f3;
  --line: #eadfd7;
  --line-strong: #ddcec4;
  --green: #c8400e;
  --green-2: #a92f08;
  --lime: #ffb96a;
  --orange: #c8400e;
  --orange-soft: #fff0e8;
  --shadow-soft: 0 8px 24px rgba(83, 45, 25, 0.06);
  --shadow: 0 16px 42px rgba(83, 45, 25, 0.1);
  --shadow-hover: 0 16px 34px rgba(83, 45, 25, 0.13);
  --radius-sm: 14px;
  --radius-card: 18px;
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--green); text-underline-offset: 0.18em; }
a:hover { color: var(--green-2); }
img { max-width: 100%; height: auto; }
button, input { font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(83, 45, 25, 0.035);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
  font-size: 1.3rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: white;
  background: linear-gradient(145deg, #e85b24, var(--orange));
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(208, 57, 9, 0.22);
  font-size: 0;
  letter-spacing: 0;
}

.brand-mark img {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
}

.brand small {
  padding: 3px 7px;
  border: 1px solid #f0d7ca;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav { display: flex; min-width: 0; flex-wrap: nowrap; justify-content: flex-end; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.primary-nav::-webkit-scrollbar { display: none; }
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 7px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--green-2); border-color: #f2d9ca; background: var(--orange-soft); }

.language-menu { position: relative; flex: 0 0 auto; }
.language-menu summary {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-size: 0.74rem;
  line-height: 1;
  list-style: none;
  white-space: nowrap;
}
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary::after { content: "▾"; color: var(--orange); font-size: 0.7rem; }
.language-menu[open] summary::after { transform: rotate(180deg); }
.language-menu summary span { color: var(--muted); font-weight: 650; }
.language-menu summary strong { font-weight: 850; }
.language-panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  right: 0;
  width: min(560px, calc(100vw - 32px));
  max-height: min(520px, 72vh);
  padding: 12px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.language-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
.language-grid a {
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}
.language-grid a:hover, .language-grid a[aria-current="page"] { color: var(--green-2); background: var(--orange-soft); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 44px) 0 clamp(26px, 3vw, 34px);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 245, 213, 0.92), transparent 27rem),
    radial-gradient(circle at 88% 14%, rgba(255, 102, 47, 0.25), transparent 24rem),
    linear-gradient(135deg, #f8c773 0%, #f4ac57 48%, #ec8b42 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 270px;
  height: 210px;
  right: -38px;
  top: 68px;
  border: 1px solid rgba(91, 49, 21, 0.16);
  border-radius: 28px;
  background: rgba(255, 207, 124, 0.35);
  box-shadow: -78px 96px 0 rgba(132, 75, 34, 0.08);
  transform: rotate(-7deg);
}

.hero::after {
  width: 190px;
  height: 190px;
  left: -86px;
  bottom: -80px;
  border: 38px solid rgba(238, 75, 22, 0.1);
  border-radius: 50%;
}

.hero-search-layout {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-search-layout h1 {
  max-width: 880px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.hero-search-layout .lede {
  max-width: 850px;
  color: #4d3a2f;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.hero-search-form {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 1000px);
  margin-top: clamp(20px, 2.5vw, 28px);
  padding: 6px;
  border: 1px solid rgba(91, 49, 21, 0.13);
  border-radius: 999px;
  background: white;
  box-shadow: 0 24px 56px rgba(91, 49, 21, 0.18);
}

.hero-search-form input {
  min-width: 0;
  width: 100%;
  padding: 15px 12px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-search-form input::placeholder { color: #8f948f; opacity: 1; }

.hero-search-form button {
  min-width: 210px;
  min-height: 60px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(180, 55, 14, 0.23);
  cursor: pointer;
  font-weight: 850;
}

.hero-search-form button:hover { background: var(--green-2); }
.hero-search-form button span { margin-left: 7px; }

.search-icon {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  margin-left: 15px;
  border: 3px solid #98a09b;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  right: -8px;
  bottom: -4px;
  border-radius: 4px;
  background: #98a09b;
  transform: rotate(45deg);
}

.hero-search-note {
  margin: 11px 0 0;
  color: rgba(60, 42, 30, 0.78);
  font-size: 0.78rem;
}

.actions.hero-actions { justify-content: center; margin-top: 14px; }
.hero-actions .button-secondary { border-color: rgba(117, 60, 27, 0.38); background: rgba(255, 253, 248, 0.34); }
.hero-actions .button-quiet:hover { background: rgba(255, 253, 248, 0.34); }

.hero-search-layout .trust-note {
  max-width: 880px;
  margin: 16px 0 0;
  border-left: 0;
  padding: 10px 14px;
  border-radius: 12px;
  color: #523b2a;
  background: rgba(255, 250, 235, 0.42);
  font-size: 0.82rem;
}

.search-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 880px);
  margin-top: 22px;
}

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

.search-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 28px 12px 0;
  color: #412f22;
}

.search-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 3px;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(72, 40, 20, 0.25);
}

.search-stage span { color: #7c4a2a; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; }
.search-stage strong { font-size: 0.92rem; }
.search-stage small { max-width: 210px; color: rgba(65, 47, 34, 0.74); font-size: 0.72rem; line-height: 1.4; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { max-width: 760px; margin: 0 0 24px; font-size: clamp(2.55rem, 6.3vw, 5.1rem); }
h2 { margin: 0 0 20px; font-size: clamp(1.55rem, 2.6vw, 2.25rem); }
h3 { margin: 0 0 10px; font-size: 1.16rem; }
p { margin: 0 0 1.1em; }

.lede { max-width: 700px; color: #3f4944; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.trust-note {
  max-width: 760px;
  margin: 26px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  color: #4e5853;
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
}

.actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  color: white;
  background: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(177, 48, 9, 0.2);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover { color: white; border-color: var(--green-2); background: var(--green-2); box-shadow: 0 12px 26px rgba(154, 42, 8, 0.24); transform: translateY(-1px); }
.button-secondary { color: var(--green); border-color: #e7bca7; background: var(--surface); box-shadow: none; }
.button-secondary:hover { color: white; }
.button-quiet { border-color: transparent; color: var(--ink); background: transparent; box-shadow: none; }
.button-quiet:hover { color: var(--green-2); background: var(--orange-soft); }
.external-note { margin: 12px 0 0; color: var(--muted); font-size: 0.78rem; }

.section { padding: clamp(36px, 5vw, 56px) 0; background: var(--surface); }
.section + .section { border-top: 1px solid var(--line); }
.section-tint, .section-dark { color: var(--ink); background: var(--surface); }
.section-dark .eyebrow { color: var(--orange); }
.section-dark p { color: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 24px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.quick-answer {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.quick-answer h2 { margin: 0; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.quick-answer p { margin: 0; font-size: clamp(1.2rem, 2.4vw, 1.65rem); line-height: 1.45; }

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.card p { color: var(--muted); font-size: 0.92rem; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: flex; flex-direction: column; color: inherit; text-decoration: none; transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease; }
.card-link:hover { color: inherit; border-color: var(--green); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-link .text-link { margin-top: auto; padding-top: 12px; color: var(--green); font-weight: 850; }
.category-tag { width: fit-content; margin-bottom: 18px; padding: 4px 9px; border-radius: 999px; color: var(--green-2); background: var(--orange-soft); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.07em; text-transform: uppercase; }
.check-line { color: var(--ink) !important; }

.reference-list {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.reference-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.reference-list summary::-webkit-details-marker { display: none; }
.reference-list summary::after { content: "+"; color: var(--orange); font-size: 1.35rem; line-height: 1; }
.reference-list[open] summary { border-bottom: 1px solid var(--line); }
.reference-list[open] summary::after { content: "−"; }
.reference-list-body { padding: 18px; }
.reference-list-body > :last-child { margin-bottom: 0; }
.reference-columns { display: grid; gap: 10px; margin: 0 0 16px; padding-left: 1.2em; }
.reference-columns li { color: var(--muted); }

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

.directory-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.directory-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.directory-heading .eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 99px;
  background: #f25422;
}

.directory-heading h2 { margin-bottom: 14px; }
.directory-heading > p:last-child { max-width: 720px; margin: 0; color: var(--muted); }

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

.directory-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 208px;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.directory-card:hover {
  color: var(--ink);
  border-color: rgba(200, 64, 14, 0.62);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.directory-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
  border: 1px solid #f2d9ca;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #fff8f3, #ffe5d6);
}

.directory-icon img {
  width: 43px;
  height: 43px;
  opacity: 0.9;
  filter: invert(38%) sepia(98%) saturate(2899%) hue-rotate(351deg) brightness(98%) contrast(91%);
}

.directory-card strong {
  margin-bottom: 7px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.directory-card small {
  color: #7e746c;
  font-size: 0.72rem;
  line-height: 1.35;
}

.directory-card-more {
  border-color: #e9bda6;
  background: linear-gradient(160deg, #fff 35%, #fff0df 100%);
}

.directory-card-more .directory-icon {
  border-color: rgba(242, 84, 34, 0.2);
  background: #ffd6ad;
}

.directory-card-more .directory-icon img {
  opacity: 0.9;
  filter: invert(38%) sepia(98%) saturate(2899%) hue-rotate(351deg) brightness(98%) contrast(91%);
}

.directory-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.directory-footer p { margin: 0; }
.directory-footer a { flex: none; font-weight: 800; }

.product-showcase {
  content-visibility: auto;
  contain-intrinsic-size: auto 980px;
  background: var(--surface);
}

.product-showcase-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.product-showcase-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.product-showcase-heading .eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f25422;
  box-shadow: 0 0 0 5px rgba(242, 84, 34, 0.12);
}

.product-showcase-heading h2 { margin-bottom: 14px; }
.product-showcase-heading > p:last-child { max-width: 760px; margin: 0; color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  color: var(--ink);
  border-color: rgba(200, 64, 14, 0.65);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.product-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid rgba(112, 85, 65, 0.13);
  background-color: #eef8f6;
  background-image: url("products/findsindex-catalog-preview.webp");
  background-repeat: no-repeat;
  background-size: 764.7% auto;
}

.product-media-1 { background-position: 16.4% 27.8%; }
.product-media-2 { background-position: 33.2% 27.8%; }
.product-media-3 { background-position: 49.6% 27.8%; }
.product-media-4 { background-position: 66% 27.8%; }
.product-media-5 { background-position: 82.4% 27.8%; }
.product-media-6 { background-position: 16.4% 100%; }
.product-media-7 { background-position: 33.2% 100%; }
.product-media-8 { background-position: 49.6% 100%; }
.product-media-9 { background-position: 66% 100%; }
.product-media-10 { background-position: 82.4% 100%; }

.product-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 16px 17px;
}

.product-category {
  margin-bottom: 8px;
  color: #6e766f;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-card-copy strong {
  min-height: 3.5em;
  font-size: 0.93rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.product-status {
  margin-top: 14px;
  color: var(--green-2);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 850;
}

.product-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-showcase-footer p { max-width: 780px; margin: 0; }
.product-showcase-footer .button { flex: none; }

.steps { counter-reset: steps; }
.step { position: relative; padding-top: 64px; }
.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.save-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.save-list li { position: relative; padding: 15px 17px 15px 46px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); box-shadow: var(--shadow-soft); }
.save-list li::before { content: "✓"; position: absolute; left: 17px; color: var(--green); font-weight: 900; }

.search-panel { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 28px; padding: 10px; border: 1px solid var(--line-strong); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow-soft); }
.search-panel input { min-width: 0; padding: 10px 12px; border: 0; color: var(--ink); background: transparent; }
.search-panel button { cursor: pointer; }

.link-grid a { color: inherit; text-decoration: none; }
.link-grid a:hover { color: inherit; border-color: var(--green); }
.link-grid .arrow { color: var(--orange); font-weight: 900; }

.article-hero { padding: clamp(34px, 4.5vw, 52px) 0 24px; border-bottom: 1px solid var(--line); background: var(--surface); }
.article-hero h1 { max-width: 900px; font-size: clamp(1.8rem, 3.3vw, 3rem); }
.article-hero .lede { max-width: 760px; }
.article-review {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 16px 0 0;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
}
.article-review time { color: var(--ink); font-variant-numeric: tabular-nums; }
.article-hero + .section { padding-top: clamp(28px, 3.8vw, 38px); }
.breadcrumbs { margin-bottom: 16px; color: var(--muted); font-size: 0.82rem; }
.breadcrumbs a { color: inherit; }

.article { display: grid; grid-template-columns: minmax(0, 760px) minmax(220px, 1fr); gap: clamp(32px, 5.5vw, 68px); align-items: start; }
.article > * { min-width: 0; }
.prose > section { margin-bottom: 36px; }
.prose h2 { font-size: clamp(1.38rem, 2vw, 1.78rem); }
.prose .quick-answer h2 { font-size: 0.82rem; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: #554d48; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li + li { margin-top: 8px; }
.aside { position: sticky; top: 92px; }
.aside .card { background: var(--surface); }
.aside .card h2 { font-size: 1.08rem; line-height: 1.18; letter-spacing: -0.02em; }
.aside .card + .card { margin-top: 14px; }
.aside ul { margin: 0; padding: 0; list-style: none; }
.aside li + li { margin-top: 8px; }
.aside a { font-size: 0.9rem; }

.callout { padding: 24px; border: 1px solid #f0d3c4; border-left: 4px solid var(--orange); border-radius: 0 var(--radius-card) var(--radius-card) 0; background: #fff3ec; }
.callout p:last-child { margin-bottom: 0; }
.example { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow-soft); }
.example.good { border-top: 5px solid #d74a17; }
.example.weak { border-top: 5px solid var(--orange); }
.label { display: inline-block; margin-bottom: 12px; color: var(--green); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.weak .label { color: #a94322; }

.checklist { overflow: hidden; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow-soft); list-style: none; }
.checklist li { position: relative; padding: 14px 14px 14px 48px; border-bottom: 1px solid var(--line); }
.checklist li::before { content: ""; position: absolute; left: 10px; top: 18px; width: 19px; height: 19px; border: 2px solid var(--green); border-radius: 5px; background: white; }

.score-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.score { padding: 17px; border: 1px solid #f0d3c4; border-radius: var(--radius-sm); background: #fff3ec; }
.score strong { display: block; font-size: 1.25rem; }

.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow-soft); }
.faq-item h2 { font-size: 1.02rem; }
.faq-item p:last-child { margin-bottom: 0; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--shadow-soft); }
table { width: 100%; border-collapse: collapse; border: 0; background: var(--surface); }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--green-2); background: #fff0e8; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }

.closing { padding: clamp(30px, 5vw, 54px); border: 1px solid #efc4ad; border-radius: calc(var(--radius) + 4px); background: var(--surface); box-shadow: var(--shadow); }
.closing h2 { max-width: 760px; }
.closing p { max-width: 720px; color: #39443e; }

.site-footer { padding: 36px 0 26px; border-top: 3px solid var(--orange); color: var(--ink); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 52px; align-items: start; }
.site-footer .brand { color: var(--ink); }
.site-footer .brand small { color: var(--muted); border-color: var(--line); }
.footer-trust { max-width: 650px; margin-top: 18px; color: var(--muted); font-size: 0.84rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 18px; }
.footer-links a { color: var(--ink); font-size: 0.84rem; text-decoration: none; }
.footer-links a:hover { color: var(--green-2); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.75rem; }

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #25d366;
  border: 2px solid #267a56;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(9, 46, 28, 0.3);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms 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, 0.38);
}

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

.whatsapp-label {
  position: absolute;
  top: 50%;
  right: 68px;
  width: max-content;
  max-width: 210px;
  padding: 0.55rem 0.7rem;
  color: #fff;
  background: #17231d;
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0, 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 180ms ease, visibility 180ms ease;
}

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

@media (max-width: 900px) {
  .header-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 4px 10px; padding: 10px 0 0; }
  .brand { align-self: flex-start; min-height: 44px; }
  .primary-nav { grid-column: 1 / -1; grid-row: 2; flex-wrap: nowrap; justify-content: flex-start; width: 100%; overflow-x: auto; padding-bottom: 7px; scrollbar-width: thin; scrollbar-color: #e7bca7 transparent; }
  .language-menu { grid-column: 2; grid-row: 1; }
  .primary-nav::-webkit-scrollbar { display: block; height: 4px; }
  .primary-nav::-webkit-scrollbar-track { background: transparent; }
  .primary-nav::-webkit-scrollbar-thumb { background: #e7bca7; border-radius: 999px; }
  .primary-nav a { flex: none; }
  .article, .footer-grid { grid-template-columns: 1fr; }
  .aside { position: static; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 30px); margin-inline: auto; }
  .brand small { display: none; }
  .primary-nav { gap: 4px; }
  .primary-nav a { min-height: 44px; padding: 9px 11px; font-size: 0.8rem; }
  .language-menu summary span { display: none; }
  .language-panel { width: min(520px, calc(100vw - 30px)); }
  .language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding-top: 30px; }
  .hero-search-layout h1 { margin-bottom: 13px; font-size: clamp(1.95rem, 8.6vw, 2.65rem); }
  .hero-search-layout .lede { font-size: 1rem; line-height: 1.55; }
  .hero-search-form { grid-template-columns: 42px minmax(0, 1fr); border-radius: 19px; }
  .hero-search-form input { padding: 14px 8px; font-size: 0.95rem; }
  .hero-search-form button { grid-column: 1 / -1; min-width: 0; min-height: 54px; margin-top: 5px; border-radius: 14px; }
  .search-icon { margin-left: 10px; }
  .actions.hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 8px; }
  .actions.hero-actions .button { width: auto; min-height: 44px; padding: 9px 8px; font-size: 0.76rem; }
  .actions.hero-actions .button:first-child { grid-column: 1 / -1; }
  .search-journey { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 24px; }
  .search-journey::before { left: 16%; right: 16%; }
  .search-stage { padding: 30px 3px 0; text-align: center; }
  .search-stage span { font-size: 0.62rem; }
  .search-stage strong { font-size: 0.76rem; line-height: 1.2; }
  .search-stage small { display: none; }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .directory-card { min-height: 178px; padding: 15px 8px; border-radius: var(--radius-card); }
  .directory-icon { width: 66px; height: 66px; margin-bottom: 12px; border-radius: var(--radius-sm); }
  .directory-icon img { width: 38px; height: 38px; }
  .directory-card strong { font-size: 0.92rem; }
  .directory-card small { font-size: 0.65rem; }
  .directory-footer { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card { border-radius: var(--radius-card); }
  .product-card-copy { padding: 15px 12px 14px; }
  .product-card-copy strong { min-height: 0; font-size: 0.86rem; }
  .product-category { font-size: 0.6rem; }
  .product-status { font-size: 0.78rem; }
  .product-link { font-size: 0.66rem; }
  .product-showcase-footer { align-items: flex-start; flex-direction: column; }
  .prose > section { margin-bottom: 32px; }
  .card, .faq-item, .example { padding: 20px; }
  h1 { font-size: clamp(2.2rem, 10.5vw, 3.25rem); }
  .quick-answer { grid-template-columns: 1fr; gap: 12px; }
  .grid-2, .grid-3, .grid-4, .save-list, .score-grid { grid-template-columns: 1fr; }
  .search-panel { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-links a { display: flex; align-items: center; min-height: 44px; }
  .directory-footer a { display: inline-flex; align-items: center; min-height: 44px; }
  .actions:not(.hero-actions) .button { width: 100%; }
  .site-footer { padding-bottom: 82px; }
  .whatsapp-float { right: max(10px, env(safe-area-inset-right)); bottom: max(10px, env(safe-area-inset-bottom)); width: 48px; height: 48px; }
  .whatsapp-float img { width: 28px; height: 28px; }
  .whatsapp-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

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