@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #151513;
  --ink-soft: #22221f;
  --paper: #f5f2e9;
  --paper-strong: #fffdf7;
  --muted: #6d6a62;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: #d5d1c7;
  --yellow: #ffd719;
  --yellow-deep: #e7be00;
  --red: #d11b21;
  --white: #fffdf7;
  --shell: min(1280px, calc(100vw - 64px));
  --header-height: 88px;
  --radius: 14px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

html.is-route-jump {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

* {
  scrollbar-color: var(--yellow) var(--ink);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

*::-webkit-scrollbar-track {
  background: var(--ink);
}

*::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 760;
  line-height: 0.98;
}

h3 {
  letter-spacing: -0.025em;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease-out);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 200ms var(--ease-out), background 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: #ffe45b;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--white);
  transition: box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(21, 21, 19, 0.97);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.brand {
  width: 150px;
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav > a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-block: 10px;
  color: #e7e4dc;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-nav > a:hover::after,
.site-nav > a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  min-width: 78px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 620ms var(--ease-out);
}

.menu-path {
  stroke-dasharray: 12 63;
  transition: stroke-dasharray 620ms var(--ease-out), stroke-dashoffset 620ms var(--ease-out);
}

.menu-label {
  margin-left: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-mobile-mark,
.nav-mobile-contact,
.nav-backdrop {
  display: none;
}

.accessibility-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.accessibility-toggle:hover,
.accessibility-toggle[aria-expanded="true"] {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.accessibility-panel {
  position: fixed;
  z-index: 160;
  top: calc(var(--header-height) + 12px);
  right: max(20px, calc((100vw - 1280px) / 2));
  width: min(430px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.98);
  transform-origin: top right;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.accessibility-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.accessibility-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.accessibility-panel-head strong {
  font-size: 1.12rem;
}

.accessibility-panel-head button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.accessibility-panel-head svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.accessibility-group {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.accessibility-group > span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.accessibility-controls {
  display: grid;
  grid-template-columns: 44px minmax(58px, 1fr) 44px;
  align-items: center;
  gap: 6px;
}

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

.accessibility-controls button,
.accessibility-switch,
.accessibility-reset {
  min-height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
  cursor: pointer;
}

.accessibility-controls button:hover,
.accessibility-switch:hover,
.accessibility-controls button[aria-pressed="true"],
.accessibility-switch[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.accessibility-controls output {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.accessibility-switch {
  width: 100%;
}

.accessibility-reset {
  width: 100%;
  margin-top: 18px;
  border-color: var(--red);
  color: var(--red);
}

.accessibility-reset:hover {
  background: var(--red);
  color: var(--white);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 52px 0 58px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-block: 24px;
}

.hero-kicker {
  margin-bottom: 24px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-kicker span {
  margin-inline: 8px;
  color: var(--red);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 6.6vw, 6rem);
  font-weight: 780;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #d1cec5;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-film {
  position: relative;
  min-height: min(610px, 70vh);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #f3eee3;
}

.hero-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.film-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(21, 21, 19, 0.88);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-strip {
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  border-right: 1px solid var(--line-light);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line-light);
}

.proof-grid strong {
  margin-bottom: 6px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.83rem;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.categories {
  padding: 78px 0 56px;
}

.section-intro {
  max-width: 820px;
}

.section-intro > p {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.15vw, 1.2rem);
}

.section-intro-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(36px, 4vw, 58px);
  margin-bottom: 38px;
}

.section-intro-split h2 {
  margin-bottom: 0;
}

.section-intro-split p {
  padding-bottom: 8px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.category-list article {
  min-height: 204px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 30px 24px;
  border-right: 1px solid var(--line-light);
}

.category-list article:last-child {
  border-right: 0;
}

.category-count {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-list h3 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 740;
}

.category-list p {
  max-width: 34ch;
  margin-bottom: 20px;
  color: var(--muted);
}

.category-list a {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration-color: var(--yellow-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.products-section {
  padding: 96px 0 140px;
}

.products-heading {
  margin-bottom: 52px;
}

.products-heading h2 {
  margin-bottom: 22px;
}

.product-toolbar {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.filter-button span {
  margin-left: 6px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.filter-button:hover {
  border-color: var(--ink);
}

.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.filter-button.is-active span {
  color: var(--yellow);
}

.product-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

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

.product-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  display: flex;
  overflow: visible;
  border: 0;
  background: transparent;
}

.product-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--paper-strong);
  opacity: 0;
  pointer-events: none;
  transition: inset 260ms var(--ease-out), opacity 220ms ease, box-shadow 260ms var(--ease-out);
}

.product-card-surface {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: clip;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-strong);
  transition: box-shadow 260ms var(--ease-out);
}

.product-card-surface::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: -70%;
  left: -65%;
  width: 34%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0;
  pointer-events: none;
  transform: rotate(16deg);
}

.product-card[hidden] {
  display: none !important;
}

.product-card:hover .product-card-surface,
.product-card:focus-within .product-card-surface {
  border-color: var(--line-light);
  outline: 0;
  box-shadow:
    0 24px 44px rgba(21, 21, 19, 0.16),
    0 0 36px rgba(255, 215, 25, 0.28),
    0 0 18px rgba(209, 27, 33, 0.12);
}

.product-card:hover,
.product-card:focus-within {
  z-index: 3;
}

.product-card:hover::before,
.product-card:focus-within::before {
  inset: -7px;
  opacity: 1;
  box-shadow:
    0 20px 42px rgba(21, 21, 19, 0.14),
    0 0 34px rgba(255, 215, 25, 0.24),
    0 0 16px rgba(209, 27, 33, 0.1);
}

.product-card:hover .product-card-surface::after,
.product-card:focus-within .product-card-surface::after {
  animation: product-blink 900ms var(--ease-out) 1;
}

@keyframes product-blink {
  0% {
    left: -65%;
    opacity: 0;
  }
  24% {
    opacity: 0.68;
  }
  100% {
    left: 132%;
    opacity: 0;
  }
}

.product-card.is-filtered-in {
  animation: card-in 420ms var(--ease-out) backwards;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-image {
  height: 310px;
  display: grid;
  place-items: center;
  padding: 25px 24px 20px;
  border-bottom: 1px solid var(--line-light);
  background: #efede6;
}

.product-image img {
  width: 100%;
  height: 260px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 280ms var(--ease-out);
}

.product-card:hover .product-image img,
.product-card:focus-within .product-image img {
  transform: translateY(-3px) scale(1.06);
}

.product-copy {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.product-copy > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy > p span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.product-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  font-weight: 720;
  line-height: 1.34;
}

.product-open {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-top: 1px solid var(--line-light);
  background: transparent;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.product-open span {
  color: var(--red);
  transition: transform 180ms var(--ease-out);
}

.product-open:hover span {
  transform: translate(2px, -2px);
}

.quality {
  padding: 136px 0;
  background: var(--ink);
  color: var(--white);
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 9vw, 150px);
}

.quality-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
}

.quality-intro p {
  color: #aaa69b;
}

.quality-facts {
  border-top: 1px solid var(--line-dark);
}

.quality-facts article {
  min-height: 210px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-content: center;
  gap: 36px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-dark);
}

.quality-facts article > span {
  padding-top: 5px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-facts h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.quality-facts p {
  max-width: 58ch;
  margin-bottom: 0;
  color: #aaa69b;
}

.history {
  padding: 136px 0;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(70px, 10vw, 170px);
}

.history .section-intro p {
  font-size: 1.08rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.timeline li {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 28px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line-light);
}

.timeline time,
.timeline li > span {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

.timeline h3 {
  margin: 0 0 7px;
  font-size: 1.15rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.cooperation {
  padding: 128px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-soft);
  color: var(--white);
}

.cooperation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
}

.cooperation-label {
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cooperation h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.cooperation-copy > p {
  max-width: 58ch;
  margin-bottom: 32px;
  color: #bcb8ad;
  font-size: 1.02rem;
}

.cooperation-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.trade-technology {
  margin-top: 78px;
  padding-top: 62px;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 120px);
  border-top: 1px solid var(--line-dark);
}

.trade-technology-intro h3 {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.trade-technology-intro p {
  max-width: 60ch;
  color: #c7c3b9;
}

.trade-technology-intro .trade-technology-note {
  color: #918d83;
  font-size: 0.84rem;
}

.trade-technology-intro .text-link {
  display: inline-block;
  margin-top: 12px;
}

.trade-access-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(116px, 0.36fr) minmax(0, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trade-access-core {
  grid-row: 1 / 4;
  display: grid;
  place-content: center;
  align-self: stretch;
  border-right: 1px solid var(--line-dark);
  color: var(--yellow);
  text-align: center;
}

.trade-access-core strong,
.trade-access-core span {
  display: block;
}

.trade-access-core strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.trade-access-core span {
  margin-top: 10px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-access-map article {
  position: relative;
  min-height: 148px;
  padding: 24px 26px 24px 38px;
  border-bottom: 1px solid var(--line-dark);
}

.trade-access-map article:last-child {
  border-bottom: 0;
}

.trade-access-map article::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px var(--ink-soft);
}

.trade-access-map article > span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-access-map h4 {
  margin: 7px 0 6px;
  color: var(--white);
  font-size: 1.05rem;
}

.trade-access-map p {
  margin: 0;
  color: #aaa69b;
  font-size: 0.88rem;
  line-height: 1.55;
}

.text-link {
  color: var(--white);
  font-weight: 720;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact {
  padding: 130px 0 136px;
}

.contact-intro {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}

.contact-intro h2 {
  margin-bottom: 0;
}

#kontakt-handlowy {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.contact-email {
  margin-bottom: 8px;
  color: var(--red);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 740;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-grid > div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 36px;
  border-right: 1px solid var(--line-light);
}

.contact-grid > div:last-child {
  border-right: 0;
}

.contact-grid h3 {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid a,
.contact-grid address {
  font-weight: 690;
}

.contact-grid a {
  text-underline-offset: 4px;
}

.contact-grid div > a:last-child {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 760;
}

.site-footer {
  padding: 70px 0 28px;
  background: #0e0e0c;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding-bottom: 54px;
}

.footer-brand {
  width: 150px;
}

.footer-main p {
  max-width: 540px;
  margin: 0;
  color: #9d998f;
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 740;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

.to-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

.to-top b {
  color: var(--yellow);
  font-weight: 760;
}

.footer-legal {
  display: block;
  margin-top: 9px;
  font-variant-numeric: tabular-nums;
}

.footer-meta {
  justify-self: end;
  display: grid;
  gap: 7px;
  text-align: right;
}

.footer-meta p,
.footer-meta a {
  color: #858177;
}

.footer-meta a {
  text-underline-offset: 4px;
}

.mobile-call {
  display: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: #858177;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  justify-self: end;
  text-align: right;
}

.product-dialog {
  width: min(1040px, calc(100vw - 40px));
  max-height: min(820px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.product-dialog::backdrop {
  background: rgba(10, 10, 9, 0.78);
}

.dialog-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  min-height: 620px;
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover {
  background: var(--yellow);
}

.dialog-media {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 70px 42px 46px;
  border-right: 1px solid var(--line-light);
  background: #efede6;
}

.dialog-media img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.dialog-content {
  max-height: 820px;
  padding: 68px 62px 52px;
  overflow-y: auto;
}

.dialog-category {
  margin-bottom: 15px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-content h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.dialog-weight {
  margin-bottom: 38px;
  color: var(--muted);
  font-weight: 700;
}

.dialog-content h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.nutrition-note {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

th,
td {
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
}

th {
  padding-right: 20px;
  font-weight: 560;
}

td {
  font-weight: 720;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

/* Polityka prywatności */
.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: static;
}

.legal-main {
  padding: 110px 0 130px;
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
}

.legal-layout aside {
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-content h1 {
  margin-bottom: 70px;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.92;
}

.legal-content h1 span {
  color: var(--red);
}

.legal-content h1.privacy-title {
  line-height: 1.12;
}

.legal-content h1.privacy-title span {
  display: inline-block;
  margin-top: 0.12em;
}

.legal-section {
  padding: 30px 0 34px;
  border-top: 1px solid var(--line-light);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-section p {
  max-width: 72ch;
  margin-bottom: 0;
  color: #4f4c45;
}

.legal-section a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-back {
  display: inline-block;
  margin-top: 46px;
  font-weight: 740;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1100px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a {
    font-size: 0.78rem;
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
    gap: 38px;
  }

  .hero-film {
    min-height: 520px;
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .menu-toggle {
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(255, 255, 255, 0.26);
    border-radius: 10px;
  }

  .header-tools {
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    z-index: 92;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(440px, calc(100vw - 24px));
    max-width: 100%;
    justify-self: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px clamp(24px, 7vw, 50px) 34px;
    overflow-y: auto;
    background: var(--yellow);
    color: var(--ink);
    pointer-events: none;
    transform: translateX(calc(100% + 90px));
    transition: transform 720ms cubic-bezier(0.76, 0, 0.24, 1);
  }

  .site-nav::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -72px;
    width: 74px;
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    background: var(--yellow);
  }

  .nav-mobile-mark {
    display: block;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(21, 21, 19, 0.28);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-nav > a {
    position: relative;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid rgba(21, 21, 19, 0.25);
    color: var(--ink);
    font-size: clamp(1.6rem, 7vw, 2.7rem);
    font-weight: 710;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateX(34px);
    transition: opacity 380ms var(--ease-out), transform 520ms var(--ease-out), padding-left 180ms var(--ease-out);
  }

  .site-nav > a::before {
    content: attr(data-nav-index);
    color: rgba(21, 21, 19, 0.56);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0;
  }

  .site-nav > a::after {
    display: none;
  }

  .menu-open .site-nav {
    pointer-events: auto;
    transform: translateX(0);
  }

  .menu-open .site-nav > a {
    opacity: 1;
    transform: translateX(0);
  }

  .menu-open .site-nav > a:nth-of-type(1) { transition-delay: 160ms; }
  .menu-open .site-nav > a:nth-of-type(2) { transition-delay: 210ms; }
  .menu-open .site-nav > a:nth-of-type(3) { transition-delay: 260ms; }
  .menu-open .site-nav > a:nth-of-type(4) { transition-delay: 310ms; }
  .menu-open .site-nav > a:nth-of-type(5) { transition-delay: 360ms; }

  .site-nav > a:hover,
  .site-nav > a:focus-visible {
    padding-left: 10px;
  }

  .nav-mobile-contact {
    margin-top: auto;
    padding-top: 28px;
    display: grid;
    gap: 4px;
  }

  .nav-mobile-contact a {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 760;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 91;
    inset: var(--header-height) 0 0;
    width: 100%;
    border: 0;
    background: rgba(10, 10, 9, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 420ms var(--ease-out);
  }

  .menu-open .nav-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-open .menu-icon {
    transform: rotate(-45deg);
  }

  .menu-open .menu-path {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-film {
    min-height: 600px;
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }

  .section-intro-split,
  .quality-layout,
  .history-layout,
  .cooperation-layout {
    grid-template-columns: 1fr;
  }

  .section-intro-split {
    gap: 28px;
  }

  .section-intro-split p {
    max-width: 62ch;
  }

  .quality-intro {
    position: static;
  }

  .history-layout,
  .cooperation-layout {
    gap: 60px;
  }

  .contact-intro {
    display: block;
  }

  .contact-email {
    display: inline-block;
    margin-top: 14px;
  }

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

  .contact-grid > div:first-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .category-list {
    grid-template-columns: 1fr;
  }

  .category-list article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .category-list article:last-child {
    border-bottom: 0;
  }

  .category-count {
    margin-bottom: 30px;
  }

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

  .product-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-grid > div,
  .contact-grid > div:first-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .contact-grid > div:last-child {
    border-bottom: 0;
  }

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

  .footer-main p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .footer-bottom p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .dialog-shell {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .dialog-media {
    min-height: 380px;
    padding: 58px 34px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .dialog-media img {
    height: 300px;
  }

  .dialog-content {
    max-height: none;
    padding: 42px 34px 46px;
    overflow: visible;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .brand,
  .footer-brand {
    width: 126px;
  }

  .menu-toggle {
    min-width: 44px;
  }

  .menu-label {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.9rem, 14.5vw, 4.2rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-film {
    min-height: 430px;
    border-radius: 14px;
  }

  .film-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 0.56rem;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child {
    min-height: 104px;
    padding: 22px 20px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .categories,
  .quality,
  .history,
  .cooperation,
  .contact {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .products-section {
    padding-top: 68px;
    padding-bottom: 100px;
  }

  .section-intro-split {
    margin-bottom: 50px;
  }

  .category-list article {
    padding: 30px 24px 28px;
  }

  .product-filters {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-button {
    width: 100%;
  }

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

  .product-image {
    height: 360px;
  }

  .product-image img {
    height: 310px;
  }

  .product-copy {
    min-height: 200px;
  }

  .quality-facts article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline li {
    grid-template-columns: 74px 1fr;
    gap: 18px;
  }

  .cooperation-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cooperation .button {
    width: 100%;
  }

  .contact-intro {
    margin-bottom: 48px;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }

  .contact-grid > div {
    min-height: 190px;
    padding: 28px 22px;
  }

  .footer-main {
    gap: 28px;
  }

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

  .footer-bottom p:last-child {
    grid-column: auto;
  }

  .product-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .dialog-shell {
    max-height: calc(100vh - 20px);
  }

  .dialog-media {
    min-height: 310px;
  }

  .dialog-media img {
    height: 245px;
  }

  .dialog-content {
    padding: 34px 22px 38px;
  }

  .legal-main {
    padding: 74px 0 90px;
  }

  .legal-content h1 {
    margin-bottom: 48px;
  }
}

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

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

}

/* 21st.dev adaptation: PrismaHero / demo 12200 */
.hero-cinematic {
  --hero-title-opacity: 1;
  --hero-copy-opacity: 1;
  --hero-caption-opacity: 1;
  --hero-shift: 0px;
  --hero-video-scale: 1.06;
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 700px;
  display: block;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-stage {
  position: relative;
  top: auto;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: var(--ink);
}

.hero-cinematic .hero-film {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f3eee3;
  clip-path: none;
}

.hero-cinematic .hero-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.76) 0%, rgba(10, 10, 9, 0.2) 46%, rgba(10, 10, 9, 0.08) 72%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.32) 0%, transparent 36%, rgba(10, 10, 9, 0.7) 100%);
  pointer-events: none;
}

.hero-cinematic .hero-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--hero-video-scale));
  filter: brightness(0.74) contrast(1.05) saturate(1.14);
  will-change: transform;
}

.hero-gridlines {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(to right, transparent calc(25% - 0.5px), rgba(255, 255, 255, 0.08) 25%, transparent calc(25% + 0.5px)),
    linear-gradient(to right, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.08) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(to right, transparent calc(75% - 0.5px), rgba(255, 255, 255, 0.08) 75%, transparent calc(75% + 0.5px));
  opacity: 0.42;
  pointer-events: none;
}

.hero-type {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  opacity: var(--hero-title-opacity);
  transform: translateY(var(--hero-shift));
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-cinematic .hero-kicker {
  position: absolute;
  top: clamp(26px, 4vh, 44px);
  left: max(32px, calc((100vw - 1280px) / 2));
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(14, 14, 12, 0.82);
  transform: none;
  color: var(--yellow);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.hero-cinematic h1 {
  position: absolute;
  top: 48%;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 2vw;
  color: var(--white);
  font-size: clamp(3rem, 7.6vw, 8rem);
  font-weight: 790;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(calc(-50% + var(--hero-shift)));
}

.hero-word {
  display: block;
  white-space: nowrap;
  animation: prisma-word-in 900ms var(--ease-out) both;
}

.hero-word-top {
  transform: none;
}

.hero-word-bottom {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  animation-delay: 90ms;
}

@keyframes prisma-word-in {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-lower {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 30px;
  left: 0;
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto 1fr;
  align-items: end;
  gap: 28px;
  opacity: var(--hero-copy-opacity);
  will-change: opacity;
  animation: prisma-content-in 900ms 260ms var(--ease-out) both;
}

@keyframes prisma-content-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: var(--hero-copy-opacity); transform: translateY(0); }
}

.hero-cinematic .hero-lead {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(14, 14, 12, 0.88);
  color: #e2dfd7;
  font-size: 1.125rem;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.hero-cinematic .hero-lead h2,
.hero-cinematic .hero-lead p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: normal;
  color: inherit;
}

.hero-cinematic .hero-lead h2 {
  font-weight: 650;
}

.hero-cinematic .hero-lead p {
  margin-top: 6px;
}

.hero-cinematic .hero-actions {
  flex-wrap: nowrap;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(14, 14, 12, 0.68);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-scroll {
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 10px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 108px;
  height: 2px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero-scroll i::after {
  content: "";
  width: 42%;
  height: 100%;
  display: block;
  background: var(--yellow);
  animation: hero-scroll-line 1.8s var(--ease-out) infinite;
}

@keyframes hero-scroll-line {
  0% { transform: translateX(-120%); }
  65%, 100% { transform: translateX(260%); }
}

.hero-cinematic .film-caption {
  z-index: 5;
  top: 28px;
  right: 28px;
  bottom: auto;
  left: auto;
  width: min(420px, calc(100% - 56px));
  margin: 0;
  opacity: var(--hero-caption-opacity);
  transform: none;
  will-change: opacity, transform;
}

.site-footer {
  padding-top: 78px;
}

.footer-main {
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) auto;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.footer-brand {
  width: 100%;
  display: block;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--paper-strong);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-identity {
  position: relative;
  min-height: 236px;
  padding-left: 172px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.footer-rabbit {
  position: absolute;
  z-index: 2;
  bottom: -58px;
  left: -16px;
  width: 202px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, 0.32));
  transform: rotate(2.5deg);
  transform-origin: bottom center;
}

.footer-identity-copy {
  position: relative;
  z-index: 1;
}

.footer-identity strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.footer-identity p {
  max-width: 640px;
  margin: 0 0 8px;
  color: #b9b5aa;
}

.footer-identity span {
  color: #858177;
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-count,
.product-copy > p,
.quality-facts article > span,
.contact-grid span,
.film-caption {
  font-size: max(0.75rem, 12px);
}

@media (max-width: 1180px) {
  .hero-lower {
    grid-template-columns: minmax(260px, 470px) 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .hero-cinematic .hero-actions {
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .mobile-call {
    position: fixed;
    z-index: 85;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(21, 21, 19, 0.24);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    text-decoration: none;
    isolation: isolate;
  }

  .mobile-call::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1px;
    border: 2px solid var(--yellow);
    border-radius: inherit;
    animation: mobile-call-pulse 2.4s var(--ease-out) infinite;
  }

  .mobile-call svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
  }

  .mobile-call:active {
    transform: scale(0.96);
  }

  .menu-open .mobile-call {
    opacity: 0;
    pointer-events: none;
  }

  .trade-technology {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@keyframes mobile-call-pulse {
  0%, 36% { opacity: 0.42; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(1.48); }
}

html[data-theme="light"] body {
  background: var(--paper);
}

html[data-theme="light"] .site-header,
html[data-theme="light"] .site-header.is-scrolled,
html[data-theme="light"] .quality,
html[data-theme="light"] .cooperation,
html[data-theme="light"] .site-footer {
  border-color: var(--line-light);
  background: rgba(255, 253, 247, 0.98);
  color: var(--ink);
}

html[data-theme="light"] .site-nav > a,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .accessibility-toggle,
html[data-theme="light"] .text-link,
html[data-theme="light"] .quality h2,
html[data-theme="light"] .quality h3,
html[data-theme="light"] .cooperation h2,
html[data-theme="light"] .cooperation h3,
html[data-theme="light"] .cooperation h4,
html[data-theme="light"] .trade-access-core span,
html[data-theme="light"] .footer-identity strong,
html[data-theme="light"] .to-top {
  color: var(--ink);
}

html[data-theme="light"] .quality-intro p,
html[data-theme="light"] .quality-facts p,
html[data-theme="light"] .cooperation-copy > p,
html[data-theme="light"] .trade-technology-intro p,
html[data-theme="light"] .trade-access-map p,
html[data-theme="light"] .footer-identity p,
html[data-theme="light"] .footer-meta p,
html[data-theme="light"] .footer-meta a,
html[data-theme="light"] .footer-bottom {
  color: #514e47;
}

html[data-theme="light"] .quality-facts,
html[data-theme="light"] .quality-facts article,
html[data-theme="light"] .trade-technology,
html[data-theme="light"] .trade-access-map,
html[data-theme="light"] .trade-access-core,
html[data-theme="light"] .trade-access-map article,
html[data-theme="light"] .footer-bottom {
  border-color: var(--line-light);
}

html[data-theme="light"] .trade-access-map article::before {
  box-shadow: 0 0 0 5px var(--paper-strong);
}

html[data-theme="dark"] {
  --paper: #151513;
  --paper-strong: #22221f;
  --muted: #c5c1b7;
  --line-light: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] body,
html[data-theme="dark"] .section-light,
html[data-theme="dark"] .proof-strip,
html[data-theme="dark"] .legal-main {
  background: #151513;
  color: var(--white);
}

html[data-theme="dark"] .section-light p,
html[data-theme="dark"] .legal-content p,
html[data-theme="dark"] .legal-layout aside,
html[data-theme="dark"] .contact-grid h3,
html[data-theme="dark"] .product-status,
html[data-theme="dark"] .filter-button span {
  color: #c5c1b7;
}

html[data-theme="dark"] .product-card,
html[data-theme="dark"] .product-dialog,
html[data-theme="dark"] .accessibility-panel {
  border-color: rgba(255, 255, 255, 0.2);
  background: #22221f;
  color: var(--white);
}

html[data-theme="dark"] .product-image,
html[data-theme="dark"] .dialog-media {
  background: #2b2a26;
}

html[data-theme="dark"] .product-copy > p,
html[data-theme="dark"] .category-count,
html[data-theme="dark"] .contact-email {
  color: #ff686d;
}

html[data-theme="dark"] .filter-button,
html[data-theme="dark"] .product-open,
html[data-theme="dark"] .dialog-close,
html[data-theme="dark"] .accessibility-controls button,
html[data-theme="dark"] .accessibility-switch,
html[data-theme="dark"] .accessibility-reset,
html[data-theme="dark"] .accessibility-panel-head button {
  color: var(--white);
}

html[data-theme="dark"] .filter-button.is-active,
html[data-theme="dark"] .accessibility-controls button[aria-pressed="true"],
html[data-theme="dark"] .accessibility-switch[aria-pressed="true"] {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

html[data-contrast="high"] {
  --yellow: #ffe500;
  --yellow-deep: #d3a900;
  --red: #a80000;
  --muted: #25231f;
  --line-light: #151513;
  --line-dark: rgba(255, 255, 255, 0.76);
}

html[data-contrast="high"] .quality p,
html[data-contrast="high"] .cooperation p,
html[data-contrast="high"] .site-footer p,
html[data-contrast="high"] .site-footer span,
html[data-contrast="high"] .site-footer a,
html[data-contrast="high"] .film-caption,
html[data-contrast="high"] .hero-lead {
  color: var(--white);
}

html[data-contrast="high"] .site-nav > a,
html[data-contrast="high"] .button,
html[data-contrast="high"] button,
html[data-contrast="high"] a {
  text-decoration-thickness: 2px;
}

html[data-contrast="high"][data-theme="light"] .quality p,
html[data-contrast="high"][data-theme="light"] .cooperation p,
html[data-contrast="high"][data-theme="light"] .site-footer p,
html[data-contrast="high"][data-theme="light"] .site-footer span,
html[data-contrast="high"][data-theme="light"] .site-footer a {
  color: var(--ink);
}

html[data-contrast="high"][data-theme="dark"] {
  --muted: var(--white);
  --line-light: rgba(255, 255, 255, 0.78);
}

@media (max-width: 820px) {
  .hero-cinematic {
    height: calc(100svh - var(--header-height));
    min-height: 720px;
  }

  .hero-stage {
    min-height: inherit;
  }

  .hero-cinematic h1 {
    padding-inline: 8px;
    font-size: clamp(2rem, 7.6vw, 5rem);
    line-height: 0.94;
  }

  .hero-cinematic .hero-kicker {
    top: 24px;
    left: 24px;
    font-size: 0.75rem;
  }

  .hero-lower {
    bottom: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-cinematic .hero-lead {
    max-width: 560px;
  }

  .hero-cinematic .hero-actions {
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-cinematic .film-caption {
    top: 18px;
    right: 18px;
    bottom: auto;
    left: auto;
    font-size: 0.75rem;
  }

  .footer-main {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }

  .footer-main .to-top {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .hero-cinematic {
    height: calc(100svh - var(--header-height));
    min-height: 740px;
  }

  .hero-stage {
    height: 100%;
    min-height: inherit;
  }

  .hero-cinematic .hero-film {
    clip-path: none;
  }

  .hero-cinematic .hero-film::after {
    background:
      linear-gradient(180deg, rgba(10, 10, 9, 0.5) 0%, rgba(10, 10, 9, 0.14) 34%, rgba(10, 10, 9, 0.82) 100%),
      linear-gradient(90deg, rgba(10, 10, 9, 0.4), transparent 65%);
  }

  .hero-cinematic h1 {
    top: 39%;
    font-size: clamp(1.5rem, 9.4vw, 3.6rem);
    line-height: 1.05;
  }

  .hero-word-bottom {
    font-size: 1em;
    letter-spacing: -0.075em;
    -webkit-text-stroke-width: 1.3px;
  }

  .hero-lower {
    bottom: 14px;
    gap: 9px;
  }

  .hero-cinematic .hero-lead {
    padding: 12px 14px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-cinematic .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-cinematic .button {
    min-height: 46px;
    padding-block: 11px;
  }

  .hero-cinematic .film-caption {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-identity {
    min-height: 212px;
    padding-left: 138px;
  }

  .footer-rabbit {
    bottom: -38px;
    left: -12px;
    width: 164px;
  }

  .footer-brand {
    width: min(100%, 300px);
    justify-self: start;
  }

  .footer-main .to-top {
    grid-column: auto;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover .product-image img,
  .product-card:focus-within .product-image img {
    transform: none;
  }

  .product-card:hover .product-card-surface::after,
  .product-card:focus-within .product-card-surface::after {
    animation: none;
  }

  .hero-cinematic {
    height: calc(100svh - var(--header-height));
    min-height: 680px;
  }

  .hero-cinematic .hero-film {
    clip-path: none;
  }

  .hero-cinematic .hero-film::after {
    background: rgba(10, 10, 9, 0.54);
  }

  .hero-scroll {
    display: none;
  }

  .hero-scroll i::after {
    animation: none;
  }

  .hero-word,
  .hero-lower {
    animation: none;
  }

  .mobile-call::before {
    animation: none;
  }
}

/* Footer v2 — static adaptation of the 21st.dev footer structure. */
.skip-link {
  border: 0;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

.footer-v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 6vw, 88px) 0 24px;
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 146, 20, 0.12), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(255, 214, 24, 0.1), transparent 29%),
    #10110f;
  color: #fffdf5;
}

.footer-glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.028) 44.2% 44.6%, transparent 44.8%),
    repeating-linear-gradient(90deg, transparent 0 calc(25% - 1px), rgba(255, 255, 255, 0.035) calc(25% - 1px) 25%);
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(170px, 0.58fr) minmax(250px, 0.82fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.footer-v2-grid h2 {
  margin: 0;
  color: #fffdf5;
}

.footer-v2-brand {
  display: flex;
  align-items: flex-start;
}

.footer-v2-rabbit {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 220px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.38));
  transform: rotate(2.6deg);
  transform-origin: bottom center;
}

.footer-v2-company {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
}

.footer-v2-wordmark {
  width: min(100%, 230px);
  display: block;
  margin-bottom: 30px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fffdf5;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.2);
}

.footer-v2-wordmark img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-v2-company h2 {
  font-size: clamp(2.15rem, 3.1vw, 2.8rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.footer-v2-company p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #aaa99f;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-v2-nav,
.footer-v2-data {
  display: grid;
  gap: 12px;
  padding-top: 12px;
}

.footer-v2-nav h2,
.footer-v2-data h2 {
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-v2-nav a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #a9a89f;
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-v2-nav a:hover,
.footer-v2-nav a:focus-visible {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-v2-data address {
  margin: 0 0 18px;
  color: #d6d3ca;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-v2-data address span {
  display: block;
  margin-bottom: 4px;
  color: #77766f;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-v2-phone {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
}

.footer-v2-phone span {
  margin-bottom: 2px;
  color: #77766f;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-v2-phone a {
  width: fit-content;
  color: #fffdf5;
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration-color: rgba(255, 213, 24, 0.55);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-v2-phone a:hover,
.footer-v2-phone a:focus-visible {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

.footer-v2-data dl {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
}

.footer-v2-data dl div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: baseline;
}

.footer-v2-data dt {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.footer-v2-data dd {
  margin: 0;
  color: #fffdf5;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.footer-lead {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  margin-bottom: clamp(46px, 5vw, 72px);
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.footer-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-lead h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.footer-lead > p:not(.footer-kicker) {
  max-width: 460px;
  margin: 17px 0 24px;
  color: #aaa99f;
  font-size: 0.87rem;
  line-height: 1.55;
}

.footer-lead-copy > p:not(.footer-kicker) {
  max-width: 54ch;
  margin: 18px 0 0;
  color: #c5c2b8;
  font-size: 1rem;
  line-height: 1.6;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.lead-step-wide {
  grid-column: 1 / -1;
}

.lead-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 17px;
}

.lead-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.lead-progress span.is-active {
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 213, 24, 0.42);
}

.lead-step label {
  display: block;
  margin-bottom: 8px;
  color: #d6d3ca;
  font-size: 0.75rem;
  font-weight: 720;
}

.lead-step[hidden] {
  display: none;
}

.lead-form-step[hidden] {
  display: none;
}

.lead-step + .lead-step {
  margin-top: 0;
}

.lead-control,
.lead-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(7, 8, 7, 0.6);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-control {
  display: block;
}

.lead-control:focus-within,
.lead-field:focus-within {
  border-color: rgba(255, 213, 24, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 213, 24, 0.12), 0 0 30px rgba(255, 213, 24, 0.08);
}

.lead-control input,
.lead-control select,
.lead-field input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  height: 46px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fffdf5;
  font: inherit;
  font-size: 0.86rem;
}

/* SOURCE ZERO: adresowalność encji i raport certyfikacji semantycznej */
.semantic-anchor {
  display: block;
  width: 0;
  height: 0;
  scroll-margin-top: 100px;
}

.product-card,
.trade-technology,
.faq,
#zaklad-produkcyjny {
  scroll-margin-top: 100px;
}

.footer-v2-nav .footer-semantic-link {
  margin-top: 2px;
  color: #d7d3c8;
  font-size: 0.78rem;
}

.footer-v2-nav .footer-semantic-link::after {
  content: "↗";
  margin-left: 6px;
  color: var(--yellow);
  font-size: 0.7rem;
}

.semantic-report-page {
  background: var(--paper);
}

.semantic-report-page .site-header {
  position: static;
}

.semantic-report-main {
  background: var(--paper);
}

.semantic-report-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0 clamp(72px, 8vw, 118px);
  background: var(--ink);
  color: var(--white);
}

.semantic-report-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -28vw;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 215, 25, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(255, 215, 25, 0.08);
  pointer-events: none;
}

.semantic-report-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.72fr);
  gap: clamp(52px, 8vw, 124px);
  align-items: end;
}

.semantic-report-title h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.1rem, 7.2vw, 6rem);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: -0.04em;
}

.semantic-report-title h1 span {
  color: var(--yellow);
}

.semantic-report-title > p {
  margin: 30px 0 0;
  color: #c8c4ba;
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
  font-weight: 650;
}

.semantic-report-title > p span {
  margin-inline: 8px;
  color: var(--yellow);
}

.semantic-status {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.semantic-status div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.semantic-status dt,
.semantic-trust-list dt {
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.semantic-status dd {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 680;
}

.semantic-report-intro,
.semantic-report-body,
.semantic-trust {
  padding: clamp(80px, 9vw, 136px) 0;
}

.semantic-report-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.semantic-report-intro article h2,
.semantic-report-section h2,
.semantic-trust h2 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.semantic-report-intro article p,
.semantic-report-section p {
  max-width: 70ch;
  color: #4f4c45;
  line-height: 1.75;
}

.semantic-report-intro article p:last-child,
.semantic-report-section p:last-child {
  margin-bottom: 0;
}

.semantic-author {
  margin: 0;
}

.semantic-author img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.semantic-author figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.semantic-report-body {
  background: var(--paper-strong);
}

.semantic-report-columns {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 9vw, 140px);
}

.semantic-report-section {
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.semantic-report-section + .semantic-report-section {
  margin-top: clamp(52px, 7vw, 86px);
}

.semantic-report-section code {
  padding: 0.1em 0.32em;
  border-radius: 4px;
  background: #e9e4d7;
  color: var(--ink);
  font-size: 0.9em;
}

.semantic-scope ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.semantic-scope li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--line-light);
  color: #403e38;
}

.semantic-scope li::before {
  content: "";
  position: absolute;
  top: 1.35em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-deep);
}

.semantic-disclaimer {
  padding: clamp(58px, 7vw, 92px) 0;
  background: var(--yellow);
  color: var(--ink);
}

.semantic-disclaimer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.semantic-disclaimer h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.semantic-disclaimer p {
  max-width: 68ch;
  margin: 0;
  font-weight: 590;
  line-height: 1.7;
}

.semantic-disclaimer p + p {
  margin-top: 18px;
  font-weight: 760;
}

.semantic-trust {
  background: var(--ink);
  color: var(--white);
}

.semantic-trust h2 {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.semantic-trust-list {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.semantic-trust-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.semantic-trust-list dd {
  margin: 0;
}

.semantic-trust-list a {
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

.semantic-trust-list a span {
  color: var(--yellow);
}

.semantic-report-back {
  display: inline-block;
  margin-top: 54px;
  color: var(--white);
  font-weight: 760;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

.semantic-report-footer .footer-bottom a {
  color: inherit;
  text-underline-offset: 4px;
}

html[data-theme="dark"] .semantic-report-main,
html[data-theme="dark"] .semantic-report-intro,
html[data-theme="dark"] .semantic-report-body {
  background: #151513;
  color: var(--white);
}

html[data-theme="dark"] .semantic-report-intro article p,
html[data-theme="dark"] .semantic-report-section p,
html[data-theme="dark"] .semantic-scope li,
html[data-theme="dark"] .semantic-author figcaption {
  color: #c5c1b7;
}

html[data-theme="dark"] .semantic-report-section code {
  background: #2b2b27;
  color: var(--white);
}

@media (max-width: 900px) {
  .semantic-report-hero-grid,
  .semantic-report-intro-grid,
  .semantic-report-columns,
  .semantic-disclaimer-inner {
    grid-template-columns: 1fr;
  }

  .semantic-report-hero-grid,
  .semantic-report-intro-grid,
  .semantic-report-columns {
    gap: 56px;
  }

  .semantic-report-title h1 {
    max-width: 11ch;
  }

  .semantic-author {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .footer-v2-nav .footer-semantic-link {
    font-size: 0.82rem;
  }

  .semantic-report-hero {
    padding: 70px 0 68px;
  }

  .semantic-report-title h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .semantic-status div,
  .semantic-trust-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .semantic-report-intro,
  .semantic-report-body,
  .semantic-trust {
    padding: 72px 0;
  }

  .semantic-report-intro article h2,
  .semantic-report-section h2,
  .semantic-trust h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .semantic-disclaimer {
    padding: 56px 0;
  }
}

.lead-control select {
  width: 100%;
  appearance: none;
  padding-right: 34px;
  background-image: linear-gradient(45deg, transparent 50%, #d6d3ca 50%), linear-gradient(135deg, #d6d3ca 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.lead-control select option {
  background: #171815;
  color: #fffdf5;
}

.lead-field input::placeholder {
  color: #74736c;
}

.lead-control input::placeholder {
  color: #8f8d84;
}

.lead-field input[aria-invalid="true"] {
  color: #ffd2d2;
}

.lead-field button {
  min-width: 90px;
  height: 46px;
  padding: 0 17px;
  border: 0;
  border-radius: 9px;
  background: var(--yellow);
  color: #11120f;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lead-next {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.lead-next button {
  min-width: 118px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  background: var(--yellow);
  color: #11120f;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lead-next button:hover,
.lead-next button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 213, 24, 0.24);
}

.lead-field button:hover,
.lead-field button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(255, 213, 24, 0.32);
}

.lead-back {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: #85847c;
  font: inherit;
  font-size: 0.7rem;
  cursor: pointer;
}

.lead-status {
  min-height: 2.6em;
  margin: 13px 0 0;
  color: #77766f;
  font-size: 0.67rem;
  line-height: 1.45;
}

.lead-status.is-error {
  color: #ffaaa5;
}

.lead-status.is-success {
  color: var(--yellow);
}

.footer-v2-bottom {
  position: relative;
  min-height: 250px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: clamp(38px, 4vw, 56px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 270px;
  color: #c5c2b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-v2-bottom p {
  margin: 0;
}

.footer-v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
}

.footer-v2-bottom a {
  color: inherit;
  text-underline-offset: 4px;
}

.footer-v2-bottom .credit-4u {
  color: #4ba3ff;
  font-weight: 780;
}

.footer-v2-bottom .credit-kgl {
  color: #ff8a22;
  font-weight: 780;
}

.footer-v2-top {
  justify-self: end;
  color: #fffdf5 !important;
  font-weight: 760;
  text-decoration-color: var(--yellow) !important;
}

.footer-v2-top span {
  color: var(--yellow);
}

.footer-v2-mascot {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 20px;
  left: 50%;
  width: var(--shell);
  height: 290px;
  transform: translateX(-50%);
  pointer-events: none;
}

html[data-theme="light"] .footer-v2 {
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 146, 20, 0.1), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(255, 214, 24, 0.12), transparent 29%),
    #f4f1e8;
  color: #171713;
}

html[data-theme="light"] .footer-v2-grid h2,
html[data-theme="light"] .footer-v2-data dd,
html[data-theme="light"] .footer-v2-phone a,
html[data-theme="light"] .footer-v2-top,
html[data-theme="light"] .lead-field input {
  color: #171713 !important;
}

html[data-theme="light"] .footer-v2-company p,
html[data-theme="light"] .footer-lead > p:not(.footer-kicker),
html[data-theme="light"] .footer-v2-nav a,
html[data-theme="light"] .footer-v2-data address,
html[data-theme="light"] .lead-step label {
  color: #57564f;
}

html[data-theme="light"] .footer-lead,
html[data-theme="light"] .lead-field {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.54);
}

@media (max-width: 1220px) {
  .footer-v2-grid {
    grid-template-columns: minmax(330px, 1.2fr) minmax(160px, 0.65fr) minmax(240px, 0.85fr);
  }

  .footer-lead {
    grid-column: 1 / -1;
  }

  .footer-lead h2,
  .footer-lead > p:not(.footer-kicker) {
    max-width: 720px;
  }

  .lead-form {
    max-width: 680px;
  }

  .footer-v2-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-v2-brand {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .footer-v2-rabbit {
    bottom: -42px;
    left: -12px;
    width: 205px;
  }

  .footer-v2-company {
    padding-left: 174px;
  }

  .footer-v2-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .footer-v2 {
    padding-top: 72px;
  }

  .footer-v2-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-v2-brand,
  .footer-lead {
    grid-column: auto;
  }

  .footer-v2-brand {
    min-height: 300px;
  }

  .footer-v2-rabbit {
    bottom: -35px;
    left: -22px;
    width: 182px;
  }

  .footer-v2-company {
    padding: 0 0 24px 142px;
  }

  .footer-v2-company h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .footer-v2-wordmark {
    margin-bottom: 24px;
  }

  .footer-v2-nav,
  .footer-v2-data {
    padding-top: 0;
  }

  .footer-v2-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-v2-meta {
    display: grid;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-v2-rabbit,
  .footer-v2-nav a,
  .lead-field button {
    transform: none !important;
  }
}

/* 21st.dev navigation adaptation: Motion Navigation Menu + Liquid Morph Floating Menu. */
@media (min-width: 981px) {
  .header-inner {
    gap: 20px;
  }

  .site-nav {
    position: relative;
    isolation: isolate;
    gap: 0;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-indicator {
    --nav-indicator-x: 0px;
    --nav-indicator-width: 0px;
    position: absolute;
    z-index: -1;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: var(--nav-indicator-width);
    border-radius: 9px;
    background: var(--yellow);
    box-shadow: 0 8px 24px rgba(255, 215, 25, 0.16);
    opacity: 0;
    transform: translateX(var(--nav-indicator-x));
    transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
  }

  .nav-indicator.is-instant {
    transition-duration: 0ms;
  }

  .site-nav > a {
    z-index: 1;
    padding: 10px 14px;
    border-radius: 9px;
    color: #e7e4dc;
    overflow: hidden;
    transition: color 180ms ease;
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav > a > span {
    display: block;
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  html .site-nav > a[data-highlighted] {
    color: var(--ink);
  }

  .site-nav > a:hover > span,
  .site-nav > a:focus-visible > span {
    transform: translateY(-1px);
  }
}

.product-truth {
  padding: clamp(72px, 8vw, 118px) 0;
}

.product-truth-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

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

.product-truth-list article {
  min-height: 168px;
  padding: 26px 28px;
  border-top: 1px solid var(--line-light);
}

.product-truth-list article:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.product-truth-list article:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--line-light);
}

.product-truth-list strong {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.product-truth-list p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-image {
  position: relative;
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-priority {
  background: var(--ink);
  color: var(--white);
}

.proof-priority span {
  color: #c8c4ba !important;
}

.trade-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trade-points li,
.readiness-badge {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exposure-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.25fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 58px;
  padding-block: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.exposure-card span,
.exposure-card > strong {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exposure-card h3 {
  margin: 7px 0 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.exposure-card p {
  max-width: 65ch;
  margin: 0;
  color: #c7c3b8;
  line-height: 1.55;
}

.readiness-badge {
  margin-bottom: 18px;
  border-color: rgba(255, 215, 25, 0.46);
  color: var(--yellow);
}

.faq {
  padding: clamp(82px, 9vw, 132px) 0;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 24px 54px 24px 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 720;
  line-height: 1.25;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 8px;
  width: 18px;
  height: 18px;
  background: linear-gradient(var(--ink), var(--ink)) 50% 50% / 100% 2px no-repeat, linear-gradient(var(--ink), var(--ink)) 50% 50% / 2px 100% no-repeat;
  transition: transform 280ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 70ch;
  margin: -4px 54px 24px 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-v2-meta {
  max-width: 1060px;
  display: grid;
  gap: 8px;
  line-height: 1.55;
}

.footer-v2-meta p:nth-child(3) {
  max-width: 104ch;
}

.footer-v2-meta > a:last-child {
  width: fit-content;
  margin-top: 4px;
}

.hero-cinematic h1 {
  letter-spacing: -0.04em;
}

.lead-field input {
  font-size: 1rem;
}

@media (max-width: 980px) {
  .nav-indicator {
    display: none;
  }

  .site-nav {
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-width: none;
    background: var(--yellow);
    border-radius: 0 0 0 44px;
    opacity: 0;
    transform: none;
    clip-path: circle(0 at calc(100% - 96px) 0);
    transition: clip-path 780ms cubic-bezier(0.22, 1, 0.36, 1), opacity 140ms ease;
  }

  .site-nav::before {
    display: none;
  }

  .menu-open .site-nav {
    opacity: 1;
    transform: none;
    clip-path: circle(150% at calc(100% - 96px) 0);
  }

  .site-nav > a > span {
    min-width: 0;
  }

  .product-truth-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .exposure-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .exposure-card > strong {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero-cinematic h1,
  .hero-word-bottom {
    letter-spacing: -0.04em;
  }

  html[lang="en"] .hero-cinematic h1 {
    font-size: clamp(1.5rem, 8.3vw, 3.2rem);
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child {
    min-height: 126px;
    padding: 20px 16px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .proof-grid > div:nth-child(even) {
    border-right: 0;
  }

  .proof-grid > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .proof-grid strong {
    font-size: clamp(1rem, 5.2vw, 1.35rem);
    line-height: 1.05;
  }

  .proof-grid span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .product-truth-list {
    grid-template-columns: 1fr;
  }

  .product-truth-list article,
  .product-truth-list article:nth-child(odd),
  .product-truth-list article:nth-last-child(-n+2) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 0;
  }

  .product-truth-list article:last-child {
    border-bottom: 1px solid var(--line-light);
  }

  .faq-list summary {
    min-height: 72px;
    padding-right: 44px;
    font-size: 1rem;
  }

  .faq-list details p {
    margin-right: 34px;
    font-size: 0.94rem;
  }

  .footer-v2-meta {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-indicator,
  .site-nav,
  .site-nav > a > span,
  .faq-list summary::after {
    transition-duration: 0.01ms !important;
  }
}

/* Accepted audit refinements: denser narrative, wide screens and production footer. */
.categories .product-truth-layout {
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid var(--line-light);
  gap: clamp(42px, 5vw, 76px);
}

.categories .product-truth-list article {
  min-height: 146px;
  padding-block: 22px;
}

.categories .product-truth-list strong {
  margin-bottom: 12px;
}

.product-card--double-pack .product-image img {
  height: 304px;
}

.product-card--ketchup .product-image img {
  width: min(100%, 280px);
  margin-inline: auto;
}

.mobile-call.is-suppressed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.9);
}

.filter-button,
.accessibility-panel button,
.footer-v2-phone a,
.footer-v2-data a,
.contact-grid a,
.contact-grid button {
  min-height: 44px;
}

.footer-v2-phone a,
.footer-v2-data a,
.contact-grid a {
  display: inline-flex;
  align-items: center;
}

.nav-mobile-contact a,
.category-list a,
.text-link,
.contact-email,
.footer-v2-meta a,
.footer-v2-top {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-v2-top {
  min-width: 44px;
}

.accessibility-panel button {
  min-width: 45px;
  min-height: 45px;
}

.footer-v2-meta {
  color: #c5c2b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-v2-meta a:not(.credit-4u):not(.credit-kgl):not(.footer-v2-top) {
  color: #d6d3ca;
}

html[data-theme="light"] .footer-lead-copy > p:not(.footer-kicker),
html[data-theme="light"] .footer-v2-meta,
html[data-theme="light"] .footer-v2-meta a:not(.credit-4u):not(.credit-kgl),
html[data-theme="light"] .lead-status {
  color: #4c4a44;
}

html[data-theme="light"] .lead-control,
html[data-theme="light"] .lead-field {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

html[data-theme="light"] .lead-control input,
html[data-theme="light"] .lead-control select {
  color: #171713;
}

@media (min-width: 1600px) {
  :root {
    --shell: min(1500px, calc(100vw - 80px));
  }

  .hero-kicker {
    left: max(40px, calc((100vw - 1500px) / 2));
  }

  .accessibility-panel {
    right: max(40px, calc((100vw - 1500px) / 2));
  }

  .section-intro-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.55fr);
    gap: 52px;
  }
}

@media (max-width: 1220px) {
  .footer-lead {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  }

  .footer-v2-brand {
    min-height: 0;
  }

  .footer-v2-company {
    padding: 0;
  }
}

@media (max-width: 820px) {
  .footer-lead {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .footer-v2-brand {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .footer-v2-bottom {
    min-height: 270px;
    padding-left: 230px;
  }

  .footer-v2-rabbit {
    left: 8px;
    width: 190px;
  }
}

@media (max-width: 620px) {
  .categories {
    padding: 62px 0 38px;
  }

  .categories .section-intro-split {
    gap: 18px;
    margin-bottom: 30px;
  }

  .category-list article {
    min-height: 184px;
    padding: 24px 20px;
  }

  .category-count {
    margin-bottom: 14px;
  }

  .categories .product-truth-layout {
    margin-top: 32px;
    padding-top: 32px;
    gap: 22px;
  }

  .categories .product-truth-list article {
    min-height: 0;
    padding: 17px 0;
  }

  .products-section {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .product-card--double-pack .product-image img {
    height: 344px;
  }

  .footer-v2 {
    padding-top: 54px;
  }

  .footer-lead {
    gap: 24px;
    margin-bottom: 38px;
    padding: 24px 20px;
  }

  .footer-lead h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .lead-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  [data-lead-stage="2"] .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-step-wide {
    grid-column: auto;
  }

  .footer-v2-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 30px 20px;
  }

  .footer-v2-brand {
    min-height: 0;
  }

  .footer-v2-company {
    display: grid;
    grid-template-columns: 122px 1fr;
    gap: 0 18px;
    align-items: center;
    padding: 0;
  }

  .footer-v2-wordmark {
    grid-row: 1 / span 2;
    margin: 0;
    padding: 9px;
  }

  .footer-v2-company h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    white-space: normal;
  }

  .footer-v2-company p {
    margin-top: 8px;
    font-size: 0.82rem;
  }

  .footer-v2-nav,
  .footer-v2-data {
    min-width: 0;
    gap: 9px;
  }

  .footer-v2-nav a,
  .footer-v2-data address,
  .footer-v2-phone a {
    font-size: 0.82rem;
  }

  .footer-v2-bottom {
    min-height: 0;
    margin-top: 34px;
    padding: 22px 0;
    font-size: 0.875rem;
  }

  .footer-v2-meta {
    gap: 12px;
    font-size: 0.875rem;
  }

  /* Keep the final links beside a reserved, text-free mascot area. */
  .footer-v2-meta > a,
  .footer-v2-meta > .cookie-settings-link,
  .footer-v2-top {
    width: calc(100% - 150px);
    min-height: 44px;
    text-align: left;
  }

  .footer-v2-meta > a {
    margin-top: 40px;
  }

  .footer-v2-mascot {
    right: calc((100% - var(--shell)) / 2);
    bottom: 46px;
    left: auto;
    width: 130px;
    height: 195px;
    transform: none;
  }

  .footer-v2-rabbit {
    right: auto;
    bottom: 0;
    left: 0;
    width: 130px;
    transform: none;
  }
}
/* Language and consent controls */
.language-toggle,
.cookie-settings-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.language-toggle {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: #ffd319;
  color: #ffd319;
}

.cookie-settings-link {
  width: max-content;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: .22em;
}

.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  width: min(34rem, calc(100vw - 2rem));
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #f8f5ec;
  background: rgba(18, 18, 16, .97);
  border: 1px solid rgba(255, 211, 25, .35);
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .45);
}

.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 0; color: rgba(248, 245, 236, .76); line-height: 1.55; }
.cookie-consent > a { display: inline-block; margin-top: .5rem; text-underline-offset: .22em; }
.cookie-consent a { color: #ffd319; }
.cookie-consent-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.cookie-consent-actions button {
  min-height: 2.9rem;
  padding: .7rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.cookie-consent-actions [data-cookie-accept] { border-color: #ffd319; background: #ffd319; color: #111; }
.cookie-consent-actions [data-cookie-reject] { border-color: transparent; text-decoration: underline; text-underline-offset: .22em; }
.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus-visible { transform: translateY(-1px); border-color: #ffd319; }

@media (max-width: 720px) {
  .language-toggle { min-width: 2.5rem; min-height: 2.5rem; }
  .cookie-consent { right: .75rem; bottom: .75rem; width: calc(100vw - 1.5rem); }
}

/* Branded 404 */
.not-found-page { min-height: 100vh; background: #0d0d0c; color: #f8f5ec; }
.not-found-main { min-height: 100vh; display: grid; place-items: center; overflow: hidden; position: relative; padding: 6rem 1.25rem 2rem; }
.not-found-main::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(255, 176, 0, .16), transparent 36%); pointer-events: none; }
.not-found-shell { position: relative; z-index: 1; width: min(70rem, 100%); display: grid; grid-template-columns: minmax(0, 1fr) minmax(15rem, .72fr); align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.not-found-copy { text-align: center; }
.not-found-code { margin: 0; font-size: clamp(8rem, 24vw, 19rem); line-height: .72; font-weight: 900; letter-spacing: -.09em; background: linear-gradient(180deg, #fff 0%, #9c9c9c 46%, #1d1d1d 84%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.not-found-copy h1 { margin: 1.2rem 0 .8rem; font-size: clamp(1.65rem, 4vw, 2.65rem); }
.not-found-copy > p:not(.not-found-code) { max-width: 36rem; margin: 0 auto; color: rgba(248, 245, 236, .72); line-height: 1.65; }
.not-found-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.not-found-rabbit { width: min(100%, 27rem); max-height: 72vh; object-fit: contain; filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, .5)); }
.not-found-language { position: fixed; z-index: 2; top: 1.25rem; right: 1.25rem; }
@media (max-width: 720px) {
  .not-found-main { padding-top: 5rem; }
  .not-found-shell { grid-template-columns: 1fr; gap: 1.25rem; }
  .not-found-rabbit { order: -1; width: min(13rem, 48vw); max-height: 34vh; justify-self: center; }
  .not-found-code { font-size: clamp(7rem, 38vw, 11rem); }
}
