/* Nutrametric — shared stylesheet (mobile-first, no JS) */

:root {
  --green-dark: #14492f;
  --green: #1e6b48;
  --green-light: #e6f0ea;
  --gold: #b8862f;
  --gold-dark: #8f6720;
  --orange: #b8862f;
  --orange-dark: #8f6720;
  --ink: #14181a;
  --ink-soft: #565f5a;
  --ink-faint: #8d968f;
  --border: #e4e1d6;
  --bg: #f6f4ee;
  --surface: #ffffff;
  --bg-alt: #ffffff;
  --amber-bg: #fbf3e6;
  --amber-border: #ecd9b3;
  --peach: #f3ece0;
  --peach-border: #e6dac5;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 26, 0.05);
  --shadow-lift: 0 20px 44px -28px rgba(20, 24, 26, 0.3);
  --sans: "Avenir Next", "Century Gothic", "Futura", "Trebuchet MS", -apple-system, "Segoe UI", Roboto, sans-serif;
  max-width: 100%;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { letter-spacing: -0.01em; font-weight: 800; }

a { color: var(--green); text-decoration-thickness: 1.5px; }

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

.wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Topbar (thin context strip above header) */
.topbar {
  background: var(--peach);
  border-bottom: 1px solid var(--peach-border);
  font-size: 0.75rem;
  color: var(--ink);
  padding: 0.4rem 0;
  font-weight: 600;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar strong { font-weight: 800; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-faint);
  padding: 0.9rem 0 0;
  font-weight: 600;
}
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { margin: 0 0.4rem; color: var(--border); }
.breadcrumb .current { color: var(--ink); font-weight: 700; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 244, 238, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 0.75rem;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.brand-icon {
  flex-shrink: 0;
  background: linear-gradient(155deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 7px;
  padding: 3px;
  box-shadow: var(--shadow-sm);
}
.lang-switch {
  display: flex;
  gap: 0.35rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.lang-switch a {
  padding: 0.32rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-soft);
  white-space: nowrap;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lang-switch a[aria-current="true"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  font-weight: 700;
}

/* Region/language picker — prominent version used on the homepages only
   (header .lang-switch stays compact everywhere else). */
.region-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin: 0 0 1.5rem;
  box-shadow: var(--shadow-sm);
}
.region-picker-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-right: 0.25rem;
}
.region-picker-option {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg);
}
.region-picker-option:hover { border-color: var(--green); }
.region-picker-option.is-current {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Primary nav — a single "Categories" (or current-niche) dropdown trigger,
   so long DE/FR labels never fight the language switcher for space. Opens
   on hover/focus with pure CSS; a small script also toggles it on tap for
   touch devices where :hover doesn't apply. */
.primary-nav {
  flex: 1 1 100%;
  order: 3;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 700;
}
.nav-dropdown {
  position: relative;
  display: block;
  width: 100%;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
}
.nav-dropdown-trigger .caret {
  font-size: 0.7em;
  color: var(--ink-faint);
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--green);
  border-color: var(--green);
}
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  padding: 0.4rem;
  z-index: 30;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}
/* Invisible bridge that closes the gap between the trigger and the menu,
   so a mouse moving diagonally toward the menu never loses :hover and the
   dropdown never flickers shut before the user reaches it. */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.nav-dropdown-group {
  display: flex;
  flex-direction: column;
}
.nav-dropdown-group-label {
  padding: 0.55rem 0.85rem 0.15rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
}
.nav-dropdown-menu a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  border-radius: 7px;
  font-weight: 600;
}
.nav-dropdown-menu a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}
.nav-dropdown-menu a[aria-current="true"] {
  color: var(--green-dark);
  background: var(--green-light);
  font-weight: 800;
}
.nav-dropdown-menu .menu-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.35rem 0.25rem;
}
@media (min-width: 640px) {
  .site-header .wrap { flex-wrap: nowrap; }
  .primary-nav { flex: 1; order: 0; }
  .nav-dropdown { display: inline-block; width: auto; }
  .nav-dropdown-trigger {
    display: inline-flex;
    width: auto;
    padding: 0.3rem 0;
    border: none;
    border-radius: 0;
  }
  .nav-dropdown:hover .nav-dropdown-trigger,
  .nav-dropdown.is-open .nav-dropdown-trigger { border-color: transparent; }
  .nav-dropdown-menu {
    left: 0;
    right: auto;
    min-width: 200px;
  }
  .nav-dropdown-menu a { padding: 0.55rem 0.75rem; white-space: nowrap; }
}
@media (min-width: 860px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    columns: 2;
    column-gap: 0.25rem;
    min-width: 480px;
    padding: 0.5rem;
  }
  .nav-dropdown-group { break-inside: avoid; }
  .nav-dropdown-menu > a,
  .nav-dropdown-menu .menu-divider {
    break-inside: avoid;
  }
  .nav-dropdown-menu .menu-divider { margin: 0.35rem 0.25rem; }
}

/* Hero */
.hero {
  background: var(--bg);
  padding: 3rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-weight: 800;
}
.hero .sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.ad-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

/* Sections */
section.block {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
section.block h2 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-top: 0;
  font-weight: 800;
}
.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.benefits li {
  padding-left: 1.8rem;
  position: relative;
}
.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* FAQ (native details/summary, no JS) */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.15rem 1rem;
  margin-bottom: 0.75rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 1rem; color: var(--ink-soft); }

/* CTA */
.cta-box {
  text-align: center;
  padding: 2.25rem 1rem;
  background: var(--green-light);
  border-radius: var(--radius);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow-sm), 0 10px 24px -12px rgba(30, 107, 72, 0.55);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm), 0 14px 28px -12px rgba(20, 73, 47, 0.55);
}
.cta-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.75rem;
}
.cta-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cta-btn-group .cta-btn { width: 100%; justify-content: center; }
.mid-cta {
  text-align: center;
  padding: 1.5rem 1rem;
  margin: 1.5rem 0;
  background: var(--green-light);
  border-radius: var(--radius);
}
.mid-cta .cta-note { margin-top: 0.6rem; }

/* Product hero (breadcrumb + gallery + buy box) */
.product-hero-section {
  padding: 1.25rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.product-hero-section .wrap { max-width: 980px; }
.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 1rem;
}
@media (min-width: 760px) {
  .product-hero { grid-template-columns: 320px 1fr; align-items: start; }
}

.product-gallery { position: relative; }
.gallery-placeholder {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-size: 0.85rem;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder .icon { font-size: 2.4rem; }

.product-photo {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.product-photo img { max-height: 100%; width: auto; margin: 0 auto; }

.badge-circle {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 0.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.badge-circle.badge-circle-new { background: var(--green); }

.buy-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow-lift);
}
@media (min-width: 760px) {
  .buy-box { position: sticky; top: 5.5rem; }
}
.buy-box h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

.score-box {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  margin: 0.75rem 0 1.1rem;
}
.score-box .stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 1.05rem;
  font-weight: 700;
}
.score-box .score-label {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.3;
}

.buy-box .cta-btn { display: flex; justify-content: center; width: 100%; }
.buy-box .cta-note { text-align: center; }

.quick-summary {
  grid-column: 1 / -1;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  background: var(--green-light);
  margin-top: 0.5rem;
}
.quick-summary h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0 0 0.5rem;
  font-weight: 800;
}
.quick-summary p { margin: 0 0 0.5rem; }
.quick-summary p:last-child { margin-bottom: 0; }
.quick-summary-jump { font-size: 0.85rem; }
.quick-summary-jump a { color: var(--green); font-weight: 700; }
.quick-summary-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.75rem 0;
}
.quick-summary-cols h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0 0 0.35rem;
  font-weight: 800;
}
.quick-summary-list { list-style: none; margin: 0; padding: 0; font-size: 0.92rem; }
.quick-summary-list li { margin: 0 0 0.3rem; padding-left: 1.3rem; position: relative; }
.quick-summary-strengths li::before { content: "✔"; position: absolute; left: 0; color: var(--green); }
.quick-summary-weaknesses li::before { content: "✘"; position: absolute; left: 0; color: var(--gold-dark); }
@media (max-width: 640px) {
  .quick-summary-cols { grid-template-columns: 1fr; }
}

/* Homepage hero banner (text + visual) */
.hero-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 700px) {
  .hero-banner-inner { grid-template-columns: 1.3fr 1fr; }
}
.hero-visual { position: relative; }
.hero-illustration {
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
}
.hero-illustration img { width: 100%; max-width: 220px; height: auto; }

/* Services / trust strip */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-item {
  text-align: center;
  padding: 1.4rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.service-item .icon {
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.6rem;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius-sm);
}
.service-item h4 { margin: 0 0 0.35rem; font-size: 0.95rem; color: var(--ink); font-weight: 800; }
.service-item p { margin: 0; font-size: 0.82rem; color: var(--ink-soft); }

/* SEO text block (2-column on desktop, like a real portal footer read) */
.seo-text { column-count: 1; column-gap: 2rem; }
@media (min-width: 700px) {
  .seo-text { column-count: 2; }
}
.seo-text p { margin: 0 0 1rem; break-inside: avoid-column; }

/* Footer grid */
.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  padding: 0.5rem 0 1.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-grid h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 0 0 0.7rem;
  font-weight: 800;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

/* Disclosure & disclaimers */
.disclosure {
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 1.5rem 0;
}
footer.site-footer {
  padding: 2rem 0 3rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
footer.site-footer p { margin: 0 0 0.6rem; }
footer.site-footer a { color: var(--ink-faint); }

/* Hub page cards */
.offer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 2rem 0;
}
@media (min-width: 640px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
}
.offer-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  display: block;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--green);
}
.offer-card h3 {
  color: var(--ink);
  margin: 0 0 0.5rem;
  font-weight: 800;
}
.offer-card p { color: var(--ink-soft); margin: 0; font-size: 0.92rem; }

.card-thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.card-thumb img { max-height: 100%; max-width: 100%; object-fit: contain; }
.card-thumb-photo { border-style: solid; background: var(--bg); padding: 0.5rem; }

/* Badges (Featured / New) */
.offer-card { position: relative; }
.badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.badge-featured { background: var(--gold); color: #fff; }
.badge-popular { background: var(--green); color: #fff; }
.badge-new { background: var(--green); color: #fff; }

/* Niche menu cards (homepage "browse by niche") */
.niche-group { margin: 1.75rem 0; }
.niche-group-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}
.niche-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 0;
}
@media (min-width: 640px) {
  .niche-grid { grid-template-columns: 1fr 1fr; }
}
.niche-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  background: var(--green-light);
  text-decoration: none;
  color: var(--green-dark);
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.niche-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* All-offers filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.filter-pill {
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.filter-pill:hover { border-color: var(--green); color: var(--green-dark); }
.filter-pill.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.is-hidden { display: none !important; }

/* Search page */
.search-box { margin: 1.5rem 0; }
.search-box input[type="search"] {
  font: inherit;
  width: 100%;
  max-width: 480px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}
.search-box input[type="search"]:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}
.search-count {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.search-empty {
  color: var(--ink-soft);
  padding: 1.5rem 0;
}

.offer-card-tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.offer-card-rating {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.offer-card-rating .stars { color: var(--gold); letter-spacing: 1px; font-weight: 700; }

/* Blog */
.post-card { border-color: var(--border); }
.post-card .post-date {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.post-body p { margin: 0 0 1.1rem; }
.post-body h2 { color: var(--ink); font-size: 1.25rem; font-weight: 800; }
.post-hero-img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.related-box {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.related-box a { font-weight: 700; }
.review-byline { font-size: .9rem; color: #56635d; }
.geo-answer { margin: 1rem 0; padding: 1rem 1.15rem; border-left: 4px solid #2f8f5f; background: #f3faf6; }
.geo-answer h3 { margin-top: 0; }
.cta-btn-secondary { background: #fff; color: #246f4a; border: 2px solid #2f8f5f; }
.cta-btn-alternative { background: #2f6f8f; }
.trust-page { max-width: 780px; }
.trust-page h1 { margin-top: 1.25rem; }
.page-lead { font-size: 1.2rem; color: #46564e; }
.trust-links { margin-top: 2rem; padding: 1rem; background: #f3faf6; border-radius: 8px; }

/* Editorial conversion system v2 */
body {
  background: #fbfcfa;
  color: #18211d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
.wrap { width: min(1160px, calc(100% - 2rem)); }
.site-header { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid #dfe7e2; }
.site-header .wrap { min-height: 68px; }
.brand { letter-spacing: -.02em; font-size: 1.15rem; }
.evidence-bar { background: #153f2c; color: #f5fff9; font-size: .82rem; }
.evidence-bar .wrap { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.evidence-bar a { color: #c9f1db; font-weight: 800; white-space: nowrap; }
.hero { background: linear-gradient(145deg, #eef7f1 0%, #fbfcfa 60%, #fff7ed 100%); }
.hero h1 { max-width: 900px; letter-spacing: -.035em; line-height: 1.08; }
.hero .sub { max-width: 820px; font-size: 1.06rem; color: #3f5148; }
.product-hero-section { background: linear-gradient(180deg, #f1f8f4 0%, #fbfcfa 100%); padding-bottom: 2rem; }
.product-hero { gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.product-gallery { background: #fff; border: 1px solid #dfe7e2; border-radius: 22px; padding: 1.25rem; box-shadow: 0 18px 50px rgba(22,63,44,.08); }
.product-photo { border: 0; background: transparent; }
.buy-box h1 { letter-spacing: -.035em; line-height: 1.08; margin: .55rem 0 .8rem; }
.product-deck { font-size: 1.08rem; color: #41534a; margin: 0 0 .8rem; }
.direct-verdict { font-size: 1.04rem; color: #253b31; }
.verdict-pill { display: inline-flex; border-radius: 999px; padding: .34rem .72rem; font-size: .75rem; line-height: 1.2; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.verdict-buy { color: #0e5b36; background: #dff5e8; }
.verdict-compare { color: #73510b; background: #fff0bf; }
.verdict-alternatives { color: #8a3030; background: #ffe2e2; }
.review-byline { display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; }
.score-box { border: 1px solid #d9e4de; background: #fff; border-radius: 14px; padding: .8rem 1rem; }
.cta-btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; box-shadow: 0 8px 20px rgba(30,107,72,.14); }
.cta-btn:hover { transform: translateY(-1px); }
.quick-summary { background: #fff; border: 1px solid #dce6e0; border-radius: 20px; padding: clamp(1.1rem, 3vw, 2rem); box-shadow: 0 14px 40px rgba(22,63,44,.06); }
.review-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; margin: 1rem 0 1.25rem; }
.review-facts > div { border: 1px solid #e1e8e4; border-radius: 12px; padding: .85rem; background: #fbfcfa; }
.review-facts span { display: block; color: #647269; font-size: .72rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; margin-bottom: .25rem; }
.review-facts strong { display: block; font-size: .92rem; line-height: 1.4; }
.geo-answer { border: 0; border-radius: 14px; background: #edf8f2; padding: 1.1rem 1.2rem; }
.quick-summary-cols > div { border: 1px solid #e1e8e4; border-radius: 14px; padding: 1rem 1.1rem; }
.faq-item { border: 1px solid #e0e7e3; border-radius: 12px; background: #fff; margin-bottom: .65rem; overflow: hidden; }
.faq-item summary { padding: .9rem 1rem; }
.faq-item > p { padding: 0 1rem 1rem; }
.offer-card { border-radius: 16px; box-shadow: 0 8px 24px rgba(22,63,44,.05); }
.offer-card:hover { border-color: #8ab69d; transform: translateY(-2px); }
.article-brief { width: min(900px, calc(100% - 2rem)); margin: 1.25rem auto 0; border: 1px solid #dce6e0; border-radius: 14px; background: #fff; padding: 1rem 1.15rem; box-shadow: 0 10px 30px rgba(22,63,44,.06); }
.article-brief strong { color: #17603d; }
.article-brief p { margin: .35rem 0 0; }
.footer-trust-links { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); }

/* Three-pillar organic growth architecture */
.eyebrow { display: inline-block; color: #17603d; font-size: .76rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.section-lead { max-width: 780px; color: #46564e; font-size: 1.05rem; }
.specialty-home { background: #f1f8f4; }
.specialty-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 1.35rem; }
.specialty-card { display: flex; min-height: 190px; flex-direction: column; justify-content: flex-end; gap: .55rem; padding: 1.35rem; border: 1px solid #d9e6df; border-radius: 18px; color: #18211d; background: #fff; box-shadow: 0 12px 32px rgba(22,63,44,.07); }
.specialty-card:hover { border-color: #78a98e; transform: translateY(-2px); }
.specialty-card strong { font-size: 1.25rem; line-height: 1.2; }
.specialty-card span { color: #4d5e55; }
.specialty-card-weight-loss { border-top: 5px solid #3d9b69; }
.specialty-card-joint-pain { border-top: 5px solid #d49543; }
.specialty-card-male-enhancement { border-top: 5px solid #477b9f; }
.archive-link { margin-top: 1.15rem; font-weight: 800; }
.specialty-hub { background: linear-gradient(145deg, #eef7f1, #fff); border-bottom: 1px solid #dfe7e2; }
.decision-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; margin-top: 1.2rem; }
.decision-grid a { display: flex; flex-direction: column; gap: .2rem; padding: 1rem; border: 1px solid #dce6e0; border-radius: 12px; background: #fff; color: #18211d; }
.decision-grid span { color: #617067; font-size: .88rem; }
.archive-notice { margin-top: 1rem; padding: 1rem 1.2rem; border-left: 4px solid #9aa9a1; background: #f4f6f5; }
.archive-notice p { margin: .25rem 0 0; color: #56635d; }
.nav-focus-group .dropdown-group-label { color: #17603d; }
.nav-archive-group { opacity: .82; }

/* Premium editorial review system */
.product-hero-section { position: relative; overflow: hidden; background: #f6f5ef; border-bottom: 1px solid #dedfd7; }
.product-hero-section::before { position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, #123f2c 0 68%, #c58c3b 68%); content: ""; }
.product-hero-section .breadcrumb { margin-top: 1rem; color: #687069; font-size: .75rem; }
.product-hero { grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr); gap: clamp(2rem,6vw,5.5rem); padding: 2.25rem 0 3rem; }
.product-gallery { align-self: start; min-height: 460px; display: grid; place-items: center; border: 0; border-radius: 4px; background: #ecebe3; box-shadow: none; }
.product-gallery::after { content: "INDEPENDENT REVIEW"; align-self: end; margin-bottom: 1rem; color: #687069; font-family: Georgia, "Times New Roman", serif; font-size: .68rem; letter-spacing: .16em; }
.product-photo img { max-height: 390px; filter: drop-shadow(0 24px 20px rgba(24,40,31,.16)); }
.buy-box { align-self: center; }
.buy-box h1 { max-width: 720px; margin: .75rem 0 1rem; color: #14231c; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.95rem,3.8vw,3.55rem); font-weight: 500; line-height: 1.06; letter-spacing: -.04em; }
.product-deck { max-width: 680px; padding-left: 1rem; border-left: 3px solid #c58c3b; color: #405148; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; line-height: 1.55; }
.verdict-pill { border: 1px solid currentColor; background: transparent; }
.review-byline { margin: 1rem 0; color: #5c665f; font-size: .82rem; }
.score-box { display: inline-grid; grid-template-columns: auto 1fr; align-items: center; gap: .75rem; padding: .8rem 1rem; border: 1px solid #d6d8d0; border-radius: 4px; box-shadow: none; }
.score-box .stars { color: #b87822; letter-spacing: .08em; }
.direct-verdict { max-width: 690px; margin: 1.15rem 0; font-size: 1.05rem; line-height: 1.7; }
.buy-box > .cta-btn, .buy-box .cta-btn-group { max-width: 520px; }
.cta-btn { border-radius: 3px; box-shadow: none; font-weight: 850; letter-spacing: .01em; }
.quick-summary { position: relative; margin-bottom: 1.25rem; transform: translateY(1.25rem); border: 1px solid #dedfd7; border-radius: 4px; background: #fff; box-shadow: 0 24px 60px rgba(20,49,35,.09); }
.quick-summary > h2 { margin-bottom: 1.4rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem,3vw,2.7rem); font-weight: 500; }
.review-facts { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 0; margin: 0 0 2rem; border-top: 1px solid #e2e3dc; border-bottom: 1px solid #e2e3dc; }
.review-facts > div { min-height: 116px; padding: 1rem; border: 0; border-right: 1px solid #e2e3dc; border-radius: 0; background: transparent; }
.review-facts > div:last-child { border-right: 0; }
.assessment-intro { max-width: 720px; margin: 2rem 0 1.1rem; }
.assessment-intro h3 { margin: .35rem 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; }
.assessment-intro p { margin: 0; color: #5a675f; }
.assessment-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); border: 1px solid #dfe2da; }
.assessment-grid > div { padding: 1rem; border-right: 1px solid #dfe2da; background: #fafaf7; }
.assessment-grid > div:last-child { border-right: 0; }
.assessment-grid span { display: block; margin-bottom: .65rem; color: #657168; font-size: .68rem; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.assessment-grid strong { display: block; color: #183e2c; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; line-height: 1.35; }
.geo-answer { margin-top: 1.5rem; border-radius: 3px; background: #f3f5ef; }
.quick-summary-cols { gap: 0; margin-top: 1.5rem; border: 1px solid #e0e2dc; }
.quick-summary-cols > div { padding: 1.25rem 1.4rem; border: 0; border-right: 1px solid #e0e2dc; border-radius: 0; }
.quick-summary-cols > div:last-child { border-right: 0; }
.quick-summary-strengths li::marker { color: #238653; }
.quick-summary-weaknesses li::marker { color: #bc7b25; }
#product-details { padding-top: 7.5rem; }
#product-details > .wrap, #faq > .wrap { max-width: 900px; }
#product-details h2, #faq h2, #better-rated h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem,2.6vw,2.35rem); font-weight: 500; }
.faq-item { border-radius: 3px; box-shadow: none; }
.mid-cta { border-radius: 3px; background: #f6f5ef; box-shadow: none; }

@media (max-width: 720px) {
  .evidence-bar .wrap { align-items: center; }
  .evidence-bar span { max-width: 70%; }
  .product-hero { gap: 1rem; }
  .product-gallery { max-width: 290px; margin-inline: auto; }
  .review-facts { grid-template-columns: 1fr; }
  .cta-btn-group { display: grid; grid-template-columns: 1fr; }
  .cta-btn { width: 100%; }
  .specialty-grid, .decision-grid { grid-template-columns: 1fr; }
  .specialty-card { min-height: 0; }
  .product-hero { grid-template-columns: 1fr; padding-top: 1rem; }
  .product-gallery { min-height: 300px; max-width: none; }
  .product-photo img { max-height: 260px; }
  .buy-box h1 { font-size: clamp(1.85rem,9.5vw,2.65rem); }
  .product-deck { font-size: 1.05rem; }
  .quick-summary { margin-bottom: 1rem; padding: 1.1rem; }
  .review-facts, .assessment-grid { grid-template-columns: 1fr 1fr; }
  .review-facts > div, .assessment-grid > div { min-height: 0; border-right: 0; border-bottom: 1px solid #e2e3dc; }
  .review-facts > div:nth-child(odd), .assessment-grid > div:nth-child(odd) { border-right: 1px solid #e2e3dc; }
  .quick-summary-cols { display: grid; grid-template-columns: 1fr; }
  .quick-summary-cols > div { border-right: 0; border-bottom: 1px solid #e0e2dc; }
  #product-details { padding-top: 5rem; }
}

/* Site-wide premium art direction and motion */
html { scroll-behavior: smooth; }
body { background: #f8f7f2; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
h3, h4 { letter-spacing: -.018em; }
.site-header { border-bottom-color: rgba(26,61,44,.12); background: rgba(250,249,245,.88); transition: padding .25s ease, background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { padding-block: .55rem; background: rgba(255,255,255,.96); box-shadow: 0 12px 34px rgba(20,49,35,.08); }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; font-weight: 600; }
.brand::after { width: 22px; height: 1px; margin-left: .25rem; background: #c28b3b; content: ""; transition: width .3s ease; }
.brand:hover::after { width: 38px; }
.nav-dropdown-toggle, .lang-switch a { transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.nav-dropdown-toggle:hover, .lang-switch a:hover { transform: translateY(-1px); }
.evidence-bar { background: linear-gradient(90deg,#102f22,#174a34 72%,#8a642a); }
.evidence-bar .wrap { letter-spacing: .01em; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 18%,rgba(196,145,67,.15),transparent 30%), linear-gradient(145deg,#edf3ed 0%,#faf9f5 62%,#f4ecdf 100%); }
.hero::after { position: absolute; top: -140px; right: -120px; width: 410px; height: 410px; border: 1px solid rgba(24,70,49,.09); border-radius: 50%; content: ""; pointer-events: none; }
.hero h1 { max-width: 920px; font-size: clamp(2.25rem,5.15vw,4.55rem); line-height: 1.03; }
.hero .sub { max-width: 780px; color: #43534a; }
.block { padding-block: clamp(3.5rem,7vw,6.5rem); }
.block + .block { border-top: 1px solid rgba(30,63,46,.08); }
.specialty-home { background: #f2f1ea; }
.specialty-home h2, .specialty-hub h2 { max-width: 760px; font-size: clamp(2rem,3.8vw,3.25rem); line-height: 1.08; }
.eyebrow { position: relative; padding-left: 34px; color: #8a642a; }
.eyebrow::before { position: absolute; top: 50%; left: 0; width: 24px; height: 1px; background: currentColor; content: ""; }
.specialty-card, .offer-card, .post-card, .service-item { position: relative; overflow: hidden; border-color: rgba(28,67,47,.12); background: rgba(255,255,255,.88); transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .35s ease; }
.specialty-card::before, .offer-card::before { position: absolute; inset: 0; opacity: 0; background: radial-gradient(260px circle at var(--spot-x,50%) var(--spot-y,50%),rgba(193,139,61,.13),transparent 62%); content: ""; pointer-events: none; transition: opacity .35s ease; }
.specialty-card:hover::before, .offer-card:hover::before { opacity: 1; }
.specialty-card:hover, .offer-card:hover, .post-card:hover { transform: translateY(-7px); border-color: rgba(157,105,36,.42); box-shadow: 0 28px 60px -34px rgba(20,49,35,.42); }
.specialty-card strong, .offer-card h3 { font-family: Georgia, "Times New Roman", serif; }
.service-item .icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(184,134,47,.25); border-radius: 50%; background: #fbf6ec; }
.niche-group { padding: 1.5rem 0; border-top: 1px solid rgba(30,63,46,.1); }
.niche-card { border-radius: 3px; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.niche-card:hover { transform: translateX(4px); border-color: #b8873f; background: #fffaf1; }
.decision-grid a { border-radius: 3px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.decision-grid a:hover { transform: translateY(-4px); border-color: #b8873f; box-shadow: 0 20px 38px -30px rgba(20,49,35,.5); }
.article-brief { border-radius: 3px; border-left: 4px solid #b8873f; }
.site-footer { position: relative; overflow: hidden; background: #102f22; }
.site-footer::before { position: absolute; top: -180px; right: -120px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: #f1c987; }
.cta-btn { position: relative; overflow: hidden; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.cta-btn::after { position: absolute; top: 0; left: -130%; width: 70%; height: 100%; transform: skewX(-22deg); background: linear-gradient(90deg,transparent,rgba(255,255,255,.23),transparent); content: ""; transition: left .65s ease; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -18px rgba(20,73,47,.62); }
.cta-btn:hover::after { left: 150%; }
.faq-item summary { transition: background .2s ease, color .2s ease; }
.faq-item[open] summary { color: #174a34; background: #f5f6f0; }
.product-gallery { transition: background .4s ease, transform .4s cubic-bezier(.2,.8,.2,1); }
.product-gallery:hover { transform: translateY(-5px); background: #e7e7de; }

.motion-enabled .motion-target { opacity: 0; transform: translateY(22px); transition: opacity .72s ease var(--motion-delay,0ms), transform .72s cubic-bezier(.2,.8,.2,1) var(--motion-delay,0ms); }
.motion-enabled .motion-target.is-visible { opacity: 1; transform: translateY(0); }
.motion-enabled .product-photo img { animation: editorial-float 6s ease-in-out infinite; }
.motion-enabled .hero::after { animation: editorial-orbit 14s ease-in-out infinite alternate; }
.motion-enabled .badge-circle { animation: editorial-pulse 4.5s ease-in-out infinite; }

@keyframes editorial-float { 0%,100% { transform: translateY(0) rotate(-.25deg); } 50% { transform: translateY(-8px) rotate(.35deg); } }
@keyframes editorial-orbit { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-38px,30px,0) scale(1.08); } }
@keyframes editorial-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(184,134,47,0); } 50% { box-shadow: 0 0 0 10px rgba(184,134,47,.09); } }

@media (max-width: 720px) {
  .hero h1 { font-size: clamp(2.1rem,10vw,3.15rem); }
  .block { padding-block: 3.75rem; }
  .specialty-card:hover, .offer-card:hover, .post-card:hover { transform: translateY(-3px); }
  .review-facts, .assessment-grid { grid-template-columns: 1fr; }
  .review-facts > div:nth-child(odd), .assessment-grid > div:nth-child(odd) { border-right: 0; }
}

@media (min-width: 721px) and (max-width: 980px) {
  .hero h1 { max-width: 760px; font-size: clamp(2.65rem,6vw,3.75rem); }
  .buy-box h1 { font-size: clamp(2.1rem,4.6vw,2.8rem); }
  .product-hero { grid-template-columns: minmax(230px,.75fr) minmax(0,1.25fr); gap: 2rem; }
  .product-gallery { min-height: 380px; }
  .product-photo img { max-height: 320px; }
  .review-facts, .assessment-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .review-facts > div, .assessment-grid > div { border-bottom: 1px solid #e2e3dc; }
}

@media (max-width: 480px) {
  .site-header { padding-block: .55rem; }
  .site-header .wrap {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    min-height: 0;
    gap: .45rem .6rem;
  }
  .brand { min-width: 0; font-size: 1.12rem; }
  .brand::after { display: none; }
  .primary-nav { grid-column: 2; grid-row: 1; width: auto; }
  .nav-dropdown { width: auto; }
  .nav-dropdown-trigger { width: auto; padding: .45rem .65rem; }
  .nav-dropdown-menu {
    right: 0;
    left: auto;
    width: min(280px,calc(100vw - 2rem));
  }
  .lang-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    width: 100%;
    gap: .25rem;
  }
  .lang-switch a { padding: .25rem .48rem; font-size: .76rem; }
  .evidence-bar .wrap span:last-child { display: none; }
}

/* Homepage hero: restrained editorial scale and clean category shortcuts. */
.hero-banner-inner h1 {
  max-width: 760px;
  font-size: clamp(2rem,3.8vw,3.6rem);
  line-height: 1.06;
}
.hero-shortcuts,
.hero-banner-inner .sub + .sub + p {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.4rem;
  font-size: 0;
}
.hero-shortcuts a,
.hero-banner-inner .sub + .sub + p a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .48rem .78rem;
  border: 1px solid rgba(24,70,49,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.hero-shortcuts a:hover,
.hero-shortcuts a:focus-visible,
.hero-banner-inner .sub + .sub + p a:hover,
.hero-banner-inner .sub + .sub + p a:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (min-width: 700px) {
  .hero-banner-inner { grid-template-columns: minmax(0,1.65fr) minmax(190px,.75fr); }
}
@media (min-width: 721px) and (max-width: 980px) {
  .hero-banner-inner h1 { font-size: clamp(2rem,4.3vw,2.75rem); }
}
@media (max-width: 720px) {
  .hero-banner-inner h1 { font-size: clamp(1.9rem,8vw,2.5rem); }
  .hero-shortcuts,
  .hero-banner-inner .sub + .sub + p { gap: .45rem; }
  .hero-shortcuts a,
  .hero-banner-inner .sub + .sub + p a { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
