@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --pearl: #f4f7f4;
  --frost: #fbfdfb;
  --mist: #e7ece8;
  --sage: #6f946f;
  --sage-soft: #dce9dc;
  --lime-soft: #d9edbd;
  --forest: #173b26;
  --forest-deep: #10291b;
  --ink: #10251a;
  --muted: #5d6b62;
  --line: rgb(24 60 39 / 14%);
  --shadow: 0 30px 80px rgb(25 61 39 / 12%);
  --card-radius: 16px;
  --content: 1380px;
  --header-height: 76px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--pearl);
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(88px, 10vw, 150px);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--frost);
  background: var(--forest);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid #85ad69;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header-height);
  padding-inline: max(32px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: rgb(249 252 249 / 58%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: clamp(152px, 13vw, 194px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  transition: color .25s ease, background-color .25s ease, transform .25s var(--ease-out);
}

.nav-cta:hover {
  color: var(--frost);
  background: var(--forest);
}

.nav-cta:active,
.button:active,
.text-link:active {
  transform: translateY(1px) scale(.985);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(690px, 100dvh);
  isolation: isolate;
  overflow: hidden;
  background-color: #e5e9e5;
  background-image: url("/assets/images/hero/biovetera-hero-unified-v4.webp");
  background-position: center;
  background-size: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__scrim {
  z-index: 0;
  background:
    linear-gradient(90deg, rgb(247 250 247 / 97%) 0%, rgb(247 250 247 / 90%) 36%, rgb(247 250 247 / 30%) 61%, transparent 78%),
    linear-gradient(180deg, rgb(247 250 247 / 8%), rgb(222 228 222 / 6%));
}

.hero__product {
  position: absolute;
  z-index: 1;
  inset: var(--header-height) clamp(28px, 8vw, 160px) 0 auto;
  width: min(34vw, 530px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero__product img {
  width: auto;
  height: min(76dvh, 690px);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgb(28 54 37 / 20%));
  transform: translate3d(0, 0, 0);
  transition: transform .8s var(--ease-out);
}

.hero:hover .hero__product img {
  transform: translate3d(0, -5px, 0) rotate(.15deg);
}

.hero__orbit {
  z-index: -3;
  width: min(46vw, 710px);
  height: min(46vw, 710px);
  inset: 50% 6vw auto auto;
  border: 1px solid rgb(33 77 47 / 15%);
  border-radius: 50%;
  box-shadow:
    inset 0 0 85px rgb(255 255 255 / 22%),
    0 40px 100px rgb(35 76 50 / 7%);
  transform: translate3d(var(--parallax-wave-x, 0), calc(-50% + var(--parallax-wave-y, 0)), 0) scale(var(--wave-scale, 1));
}

.hero__orbit::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgb(255 255 255 / 54%);
  border-radius: inherit;
}

.hero__leaves {
  z-index: -2;
  inset: 5% 0 auto auto;
  right: -4%;
  width: 62%;
  height: auto;
  object-fit: contain;
  opacity: .16;
  pointer-events: none;
  transform: translate3d(var(--parallax-leaf-x, 0), var(--parallax-leaf-y, 0), 0);
}

.hero__drops {
  z-index: -1;
  pointer-events: none;
  transform: translate3d(var(--parallax-drop-x, 0), var(--parallax-drop-y, 0), 0);
}

.hero__drops i {
  position: absolute;
  display: block;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, rgb(255 255 255 / 88%) 0 9%, rgb(255 255 255 / 18%) 23%, rgb(106 143 111 / 7%) 62%, rgb(255 255 255 / 38%) 100%);
  box-shadow: inset -3px -4px 8px rgb(76 112 83 / 14%), 0 7px 20px rgb(42 81 52 / 9%);
}

.hero__drops i:nth-child(1) { width: 18px; height: 18px; top: 29%; right: 13%; }
.hero__drops i:nth-child(2) { width: 10px; height: 10px; top: 43%; right: 31%; }
.hero__drops i:nth-child(3) { width: 24px; height: 24px; bottom: 20%; right: 8%; }
.hero__drops i:nth-child(4) { width: 12px; height: 12px; bottom: 31%; right: 37%; }

.hero__content {
  position: relative;
  z-index: 2;
  min-height: max(690px, 100dvh);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  align-items: center;
  padding-top: var(--header-height);
}

.hero__copy {
  max-width: 720px;
  padding-block: 42px 34px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 4.65vw, 74px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .96;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.48;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s var(--ease-out), color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.button--primary {
  color: var(--frost);
  background: var(--forest);
  box-shadow: 0 14px 34px rgb(21 57 35 / 18%);
}

.button--primary:hover {
  background: #0f2f1d;
  box-shadow: 0 18px 42px rgb(21 57 35 / 24%);
}

.button--ghost {
  border-color: var(--forest);
  color: var(--forest);
  background: rgb(249 252 249 / 40%);
}

.button--ghost:hover {
  color: var(--frost);
  background: var(--forest);
}

.manifesto {
  background: var(--frost);
}

.manifesto h2 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: 1;
  text-wrap: balance;
}

.manifesto h2 span {
  color: var(--sage);
}

.manifesto p {
  max-width: 670px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 23px);
}

.worlds {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  min-height: 720px;
}

.world {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
  align-items: end;
}

.world__copy {
  position: relative;
  z-index: 3;
  padding: clamp(44px, 5vw, 78px);
}

.world h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(40px, 4.7vw, 74px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
}

.world p {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgb(16 37 26 / 68%);
  font-size: 17px;
}

.world--care {
  background: linear-gradient(145deg, #dbe9df, #f3f7f3 70%);
}

.world__visual {
  position: relative;
  align-self: stretch;
  margin: 0;
  min-height: 720px;
  overflow: hidden;
}

.world__visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #e5eee7 0%, transparent 35%), linear-gradient(0deg, rgb(231 239 233 / 62%), transparent 30%);
  pointer-events: none;
}

.world__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transition: transform .8s var(--ease-out);
}

.world--care:hover .world__visual img {
  transform: scale(1.025);
}

.world--balance {
  grid-template-columns: 1fr;
  color: #edf5eb;
  background: var(--forest);
}

.world--balance::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 27%, rgb(186 215 151 / 22%) 0 2%, transparent 2.4%),
    radial-gradient(circle at 76% 44%, rgb(230 241 219 / 12%), transparent 37%),
    linear-gradient(145deg, transparent, rgb(6 24 14 / 22%));
}

.world--balance .world__copy {
  align-self: end;
  padding-bottom: clamp(56px, 7vw, 104px);
}

.world--balance p {
  color: rgb(237 245 235 / 68%);
}

.world__rings {
  position: absolute;
  inset: 5% -18% auto auto;
  width: min(42vw, 580px);
  aspect-ratio: 1;
  border: 1px solid rgb(224 240 216 / 18%);
  border-radius: 50%;
  transform: rotate(-14deg);
  transition: transform 1s var(--ease-out);
}

.world--balance:hover .world__rings {
  transform: rotate(-8deg) translate3d(-8px, 10px, 0);
}

.world__rings i {
  position: absolute;
  border: 1px solid rgb(224 240 216 / 14%);
  border-radius: 50%;
}

.world__rings i:nth-child(1) { inset: 12%; }
.world__rings i:nth-child(2) { inset: 27%; }
.world__rings i:nth-child(3) { inset: 42%; background: rgb(182 214 148 / 14%); }

.text-link {
  position: relative;
  margin-top: 28px;
  padding-bottom: 7px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}

.text-link:hover::after {
  transform: scaleX(.42);
}

.text-link--light {
  color: var(--lime-soft);
}

.products {
  background: linear-gradient(180deg, #edf2ee, #f7faf7 32%, #edf2ee);
}

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

.section-heading h2,
.brand-story h2,
.distribution h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -.064em;
  line-height: .96;
}

.section-heading p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  margin-top: clamp(48px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .76fr) minmax(250px, .9fr);
  grid-template-rows: repeat(2, minmax(275px, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgb(23 59 38 / 10%);
  border-radius: var(--card-radius);
  background: #e1e8e2;
  box-shadow: 0 18px 54px rgb(26 63 41 / 7%);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s ease;
}

.product-card:hover {
  z-index: 2;
  border-color: rgb(23 59 38 / 22%);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card--feature {
  grid-row: 1 / 3;
}

.product-card--powder {
  grid-row: 1 / 3;
}

.product-card--tonus {
  grid-column: 3;
  grid-row: 1;
}

.product-card--aktiv {
  grid-column: 3;
  grid-row: 2;
}

.product-card__image {
  position: absolute;
  inset: 0;
}

.product-card__image::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgb(11 32 19 / 76%));
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.028);
}

.product-card__copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: clamp(22px, 2.8vw, 38px);
  display: grid;
  color: #f5faf4;
}

.product-card__copy strong {
  font-size: clamp(22px, 2.2vw, 36px);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.product-card__copy small {
  margin-top: 7px;
  color: rgb(245 250 244 / 72%);
  font-size: 13px;
}

.product-card__copy > span {
  margin-top: 17px;
  font-size: 14px;
  font-weight: 800;
}

.product-card--tonus .product-card__copy,
.product-card--aktiv .product-card__copy {
  min-height: 42%;
  padding: 22px;
  justify-content: center;
  background: rgb(14 45 25 / 88%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-card--tonus .product-card__copy strong,
.product-card--aktiv .product-card__copy strong {
  font-size: clamp(19px, 1.6vw, 26px);
}

.products__action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  background: var(--frost);
}

.brand-story__art {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 44%, rgb(255 255 255 / 92%), transparent 28%),
    linear-gradient(142deg, #cadbd0, #e8efea 72%);
}

.brand-story__art::before {
  content: "";
  position: absolute;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  inset: 50% auto auto 50%;
  border: 32px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgb(32 75 47 / 10%), inset 0 0 66px rgb(54 102 65 / 8%);
  transform: translate(-50%, -50%);
}

.brand-story__mark {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(58%, 390px);
  padding: 32px;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: var(--card-radius);
  background: rgb(248 251 248 / 68%);
  box-shadow: 0 25px 70px rgb(32 69 44 / 12%), inset 0 1px 0 rgb(255 255 255 / 78%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
}

.brand-story__capsule {
  position: absolute;
  z-index: 3;
  width: 72px;
  height: 190px;
  right: 17%;
  bottom: 12%;
  border-radius: 999px;
  background: linear-gradient(180deg, #eff4eb 0 49%, #7ba167 49% 100%);
  box-shadow: 0 24px 52px rgb(35 74 45 / 18%);
  transform: rotate(31deg);
}

.brand-story__leaf {
  position: absolute;
  z-index: 3;
  width: 150px;
  height: 66px;
  left: 12%;
  top: 20%;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #aacb89, #5f8a62);
  box-shadow: inset -18px -12px 32px rgb(24 69 38 / 16%), 0 18px 35px rgb(33 75 45 / 12%);
  transform: rotate(-18deg);
}

.brand-story__copy {
  padding: clamp(64px, 8vw, 126px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-story__copy > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
}

.brand-points {
  max-width: 720px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 38px;
}

.brand-points div:first-child {
  grid-column: 1 / 3;
}

.brand-points div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.brand-points strong,
.brand-points span {
  display: block;
}

.brand-points strong {
  font-size: 17px;
}

.brand-points span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.distribution {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 12vw, 170px);
  color: #edf5eb;
  background: var(--forest-deep);
}

.distribution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 24%, rgb(156 194 122 / 17%), transparent 30%);
}

.distribution__orb {
  position: absolute;
  width: min(56vw, 820px);
  aspect-ratio: 1;
  right: -9%;
  top: -42%;
  border: 1px solid rgb(219 236 207 / 18%);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgb(214 232 202 / 5%);
}

.distribution__orb::before,
.distribution__orb::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(219 236 207 / 12%);
  border-radius: inherit;
}

.distribution__orb::before { inset: 13%; }
.distribution__orb::after { inset: 29%; }

.distribution__inner {
  position: relative;
  z-index: 2;
}

.distribution h2 {
  max-width: 1050px;
  font-size: clamp(52px, 7.6vw, 116px);
}

.distribution p {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgb(237 245 235 / 72%);
  font-size: clamp(17px, 1.55vw, 22px);
}

.button--light {
  margin-top: 38px;
  color: var(--forest-deep);
  background: var(--lime-soft);
  box-shadow: 0 16px 44px rgb(2 18 9 / 28%);
}

.button--light:hover {
  background: #e4f3d1;
}

.distribution__mail {
  width: max-content;
  margin-top: 24px;
  display: block;
  color: rgb(237 245 235 / 66%);
  font-size: 15px;
  transition: color .2s ease;
}

.distribution__mail:hover {
  color: var(--frost);
}

.site-footer {
  padding-block: 36px;
  border-top: 1px solid var(--line);
  background: var(--frost);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px 54px;
}

.brand-link--footer img {
  width: 150px;
}

.site-footer nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  font-size: 14px;
  font-weight: 600;
}

.site-footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer p {
  grid-column: 1 / 3;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .product-grid [data-reveal]:nth-child(2) { transition-delay: 60ms; }
.js .product-grid [data-reveal]:nth-child(3) { transition-delay: 120ms; }
.js .product-grid [data-reveal]:nth-child(4) { transition-delay: 180ms; }

@media (prefers-reduced-motion: no-preference) {
  .hero__product {
    animation: product-arrive .9s var(--ease-out) both;
  }

  .hero__orbit {
    animation: orbit-breathe 8s ease-in-out infinite;
  }

  @keyframes product-arrive {
    from { opacity: 0; transform: translate3d(0, 18px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
  }

  @keyframes orbit-breathe {
    0%, 100% { --wave-scale: 1; }
    50% { --wave-scale: 1.015; }
  }
}

@media (max-width: 1180px) {
  .hero h1 { font-size: clamp(54px, 6.1vw, 72px); }

  .hero__product {
    right: clamp(24px, 4vw, 58px);
    width: min(37vw, 470px);
  }

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

  .world--care {
    grid-template-columns: 1fr;
  }

  .world__visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    opacity: .62;
  }

  .world--care .world__copy {
    align-self: end;
    text-shadow: 0 2px 28px rgb(244 248 244 / 62%);
  }

  .product-grid {
    grid-template-columns: 1.12fr .82fr .82fr;
  }

  .brand-story__copy {
    padding-inline: 64px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 40px), var(--content));
  }

  .site-header {
    padding-inline: 20px;
  }

  .js .menu-toggle {
    position: relative;
    z-index: 3;
    width: 54px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--forest);
    border-radius: 999px;
    background: rgb(249 252 249 / 48%);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle__line {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--forest);
    transition: transform .25s var(--ease-out);
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .primary-nav {
    position: absolute;
    inset: var(--header-height) 0 auto;
    padding: 24px 20px 28px;
    display: grid;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: #f4f7f4;
    box-shadow: 0 22px 50px rgb(25 61 39 / 10%);
  }

  html:not(.js) .site-header {
    position: relative;
    height: auto;
    padding-block: 13px;
    flex-wrap: wrap;
  }

  html:not(.js) .primary-nav {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 12px 4px;
  }

  .nav-cta {
    margin-top: 8px;
    justify-self: start;
  }

  .js .primary-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s var(--ease-out), visibility .25s;
  }

  .js .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

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

  .hero__product {
    right: 20px;
    width: 38vw;
  }

  .hero h1 {
    font-size: clamp(51px, 7.8vw, 70px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

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

  .world {
    min-height: 590px;
  }

  .world__rings {
    width: min(76vw, 540px);
  }

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

  .product-card,
  .product-card--feature,
  .product-card--powder,
  .product-card--tonus,
  .product-card--aktiv {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .product-card--feature,
  .product-card--powder {
    min-height: 540px;
  }

  .product-card--tonus,
  .product-card--aktiv {
    min-height: 440px;
  }

  .brand-story {
    grid-template-columns: 1fr;
  }

  .brand-story__art {
    min-height: 520px;
  }

  .brand-story__art::before {
    width: min(74vw, 540px);
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .section-space {
    padding-block: 76px;
  }

  .site-header {
    background: rgb(249 252 249 / 72%);
  }

  .brand-link img {
    width: 150px;
  }

  .hero {
    min-height: max(700px, 100dvh);
  }

  .hero {
    background-image: url("/assets/images/hero/biovetera-hero-unified-mobile-v4.webp");
    background-position: center;
    background-size: cover;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgb(246 249 246 / 98%) 0%, rgb(246 249 246 / 94%) 32%, rgb(246 249 246 / 37%) 58%, rgb(232 237 232 / 8%) 100%),
      linear-gradient(90deg, rgb(246 249 246 / 55%), transparent 72%);
  }

  .hero__orbit {
    width: 520px;
    height: 520px;
    inset: auto -155px 16px auto;
    transform: translate3d(0, var(--parallax-wave-y, 0), 0) scale(var(--wave-scale, 1));
  }

  .hero__leaves {
    inset: 33% -12% auto auto;
    width: 124%;
    height: auto;
    opacity: .2;
  }

  .hero__content {
    min-height: max(700px, 100dvh);
    display: block;
    padding-top: calc(var(--header-height) + 38px);
  }

  .hero__product {
    inset: auto 3vw 0 auto;
    width: min(58vw, 310px);
    height: min(52dvh, 390px);
  }

  .hero__product img {
    height: 100%;
  }

  .hero__copy {
    width: 100%;
    max-width: 460px;
    padding-block: 0;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 62px);
    letter-spacing: -.062em;
    line-height: .95;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero__lead {
    max-width: 370px;
    margin-top: 20px;
    font-size: 16px;
  }

  .actions {
    max-width: 100%;
    margin-top: 24px;
    align-items: flex-start;
  }

  .button {
    min-height: 50px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .manifesto h2 {
    font-size: clamp(43px, 12vw, 66px);
  }

  .manifesto p {
    margin-top: 24px;
    font-size: 17px;
  }

  .world {
    min-height: 520px;
  }

  .world--care {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .world--care .world__visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 430px;
    opacity: 1;
  }

  .world--care .world__visual::before {
    background: linear-gradient(0deg, rgb(226 236 229 / 56%), transparent 28%);
  }

  .world--care .world__copy {
    width: 100%;
    padding: 38px 24px 46px;
    background: #e4eee7;
    text-shadow: none;
  }

  .world__copy {
    padding: 38px 24px;
  }

  .world h2 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .world p {
    font-size: 16px;
  }

  .world__visual img {
    object-position: 58% center;
  }

  .section-heading h2,
  .brand-story h2 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .section-heading p {
    font-size: 16px;
  }

  .product-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card--feature,
  .product-card--powder,
  .product-card--tonus,
  .product-card--aktiv {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .product-card__copy,
  .product-card--tonus .product-card__copy,
  .product-card--aktiv .product-card__copy {
    padding: 24px;
  }

  .product-card__copy strong,
  .product-card--tonus .product-card__copy strong,
  .product-card--aktiv .product-card__copy strong {
    font-size: 26px;
  }

  .brand-story__art {
    min-height: 420px;
  }

  .brand-story__mark {
    width: 68%;
    padding: 24px;
  }

  .brand-story__capsule {
    width: 50px;
    height: 142px;
    right: 14%;
  }

  .brand-story__leaf {
    width: 104px;
    height: 46px;
    left: 9%;
  }

  .brand-story__copy {
    padding: 68px 16px 82px;
  }

  .brand-story__copy > p {
    font-size: 17px;
  }

  .brand-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-points div:first-child {
    grid-column: auto;
  }

  .distribution {
    padding-block: 88px;
  }

  .distribution h2 {
    font-size: clamp(48px, 12.4vw, 68px);
  }

  .distribution p {
    font-size: 17px;
  }

  .distribution__orb {
    width: 640px;
    right: -370px;
    top: -140px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-self: start;
    flex-direction: column;
    gap: 12px;
  }

  .site-footer p {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero__lead {
    max-width: 320px;
  }

  .actions {
    gap: 9px;
  }
}

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

  .hero__orbit,
  .hero__leaves,
  .hero__drops,
  .hero__product,
  .js [data-reveal] {
    transform: none;
  }

  .hero:hover .hero__product img {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .brand-story__mark {
    background: #f4f7f4;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Current BIOVETERA composition */

.hero__scrim {
  background:
    linear-gradient(90deg, rgb(247 250 247 / 98%) 0%, rgb(247 250 247 / 92%) 38%, rgb(247 250 247 / 34%) 56%, rgb(247 250 247 / 4%) 74%),
    linear-gradient(180deg, rgb(247 250 247 / 4%), rgb(223 229 223 / 7%));
}

.hero__copy {
  max-width: 700px;
}

.hero h1,
.manifesto h2,
.care-story h2,
.section-heading h2,
.brand-story h2,
.distribution h2 {
  text-wrap: balance;
}

.hero__lead {
  max-width: 610px;
}

.care-story {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(420px, .96fr) minmax(0, 1.04fr);
  align-items: stretch;
  background: var(--frost);
}

.care-story__visual {
  min-width: 0;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  background: #dcebf4;
}

.care-story__visual picture,
.care-story__visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.care-story__visual img {
  object-fit: contain;
  transition: transform .8s var(--ease-out);
}

.care-story:hover .care-story__visual img {
  transform: scale(1.018);
}

.care-story__copy {
  max-width: 760px;
  padding: clamp(68px, 8vw, 128px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.care-story h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: .98;
}

.care-story p {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
}

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

.product-card,
.product-card--feature,
.product-card--slim,
.product-card--powder,
.product-card--tonus,
.product-card--aktiv {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #f7faf7;
}

.product-card__image {
  position: relative;
  inset: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-card__image::after {
  display: none;
}

.product-card__image picture,
.product-card__image img {
  width: 100%;
  height: 100%;
  display: block;
}

.product-card__image img {
  object-fit: contain;
  transition: transform .65s var(--ease-out);
}

.product-card--slim .product-card__image { background: #f6d8d0; }
.product-card--powder .product-card__image { background: #d9e9f4; }
.product-card--tonus .product-card__image { background: #31271f; }
.product-card--aktiv .product-card__image { background: #dce8eb; }

.product-card__copy,
.product-card--tonus .product-card__copy,
.product-card--aktiv .product-card__copy {
  position: relative;
  z-index: auto;
  inset: auto;
  min-height: 116px;
  padding: 23px 24px 25px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  color: var(--ink);
  background: #f7faf7;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.product-card__copy strong,
.product-card--tonus .product-card__copy strong,
.product-card--aktiv .product-card__copy strong {
  font-size: clamp(19px, 1.55vw, 24px);
  letter-spacing: -.035em;
  line-height: 1.12;
}

.product-card__copy small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.brand-story {
  grid-template-columns: minmax(420px, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 0;
}

.brand-story.section-space {
  padding-block: 0;
}

.brand-story__art {
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #dfe6df;
}

.brand-story__art::before,
.brand-story__capsule,
.brand-story__leaf {
  display: none;
}

.brand-story__art picture,
.brand-story__art img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-story__art img {
  object-fit: cover;
}

.brand-story__copy {
  max-width: 820px;
  padding: clamp(60px, 5vw, 86px);
}

.brand-story h2 {
  font-size: clamp(46px, 4.35vw, 64px);
}

.brand-story__copy > p {
  max-width: 700px;
}

.brand-story__promise {
  margin-top: 38px !important;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--forest) !important;
  font-size: clamp(25px, 2.25vw, 34px) !important;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.brand-story .text-link {
  width: max-content;
  margin-top: 30px;
}

.distribution::before {
  background:
    radial-gradient(circle at 84% 18%, rgb(156 194 122 / 18%), transparent 28%),
    linear-gradient(110deg, transparent 42%, rgb(111 148 111 / 8%));
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(50px, 5.2vw, 62px);
  }

  .hero__product img {
    height: min(72dvh, 620px);
  }

  .care-story__copy,
  .brand-story__copy {
    padding-inline: 58px;
  }

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

  .product-card__copy,
  .product-card--tonus .product-card__copy,
  .product-card--aktiv .product-card__copy {
    min-height: 104px;
  }
}

@media (max-width: 920px) {
  .hero h1 {
    font-size: clamp(48px, 6.6vw, 60px);
  }

  .hero__product img {
    height: min(66dvh, 560px);
  }

  .product-card,
  .product-card--feature,
  .product-card--slim,
  .product-card--powder,
  .product-card--tonus,
  .product-card--aktiv {
    aspect-ratio: auto;
  }

  .care-story,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .care-story__visual {
    min-height: 620px;
  }

  .care-story__copy,
  .brand-story__copy {
    max-width: none;
    padding: 72px 40px 84px;
  }

  .brand-story__art {
    width: min(100%, 720px);
  }
}

@media (max-width: 680px) {
  .hero,
  .hero__content {
    min-height: max(700px, 100dvh);
  }

  .hero {
    background-image: url("/assets/images/hero/biovetera-hero-unified-mobile-v4.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgb(246 249 246 / 98%) 0%, rgb(246 249 246 / 95%) 38%, rgb(246 249 246 / 63%) 58%, rgb(232 237 232 / 6%) 82%),
      linear-gradient(90deg, rgb(246 249 246 / 74%), transparent 82%);
  }

  .hero__product {
    inset: auto 3vw 0 auto;
    width: min(58vw, 310px);
    height: min(52dvh, 390px);
  }

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

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 11.6vw, 56px);
    line-height: .98;
  }

  .hero h1 span {
    white-space: normal;
  }

  .manifesto h2,
  .care-story h2,
  .section-heading h2,
  .brand-story h2,
  .distribution h2 {
    font-size: clamp(40px, 10.8vw, 58px);
    line-height: 1;
  }

  .care-story__visual {
    min-height: 510px;
  }

  .care-story__copy,
  .brand-story__copy {
    padding: 60px 20px 72px;
  }

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

  .product-card,
  .product-card--feature,
  .product-card--slim,
  .product-card--powder,
  .product-card--tonus,
  .product-card--aktiv {
    aspect-ratio: auto;
  }

  .product-card__image {
    aspect-ratio: 4 / 5;
  }

  .product-card__copy,
  .product-card--tonus .product-card__copy,
  .product-card--aktiv .product-card__copy {
    min-height: 100px;
    padding: 20px 20px 22px;
  }

  .brand-story__art {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 41px;
  }
}
