@font-face {
  font-family: "Biofors Display";
  src: local("Montserrat SemiBold"), local("Montserrat");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Biofors Accent";
  src: local("Montserrat Thin Italic"), local("Montserrat");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #182641;
  --navy-deep: #0d1b32;
  --navy-soft: #203654;
  --teal: #005b62;
  --teal-light: #0b7277;
  --green: #6dc683;
  --lime: #d9e735;
  --paper: #f5f3ee;
  --paper-deep: #e8e4dc;
  --white: #fff;
  --ink: #182641;
  --muted: #5d6776;
  --line: rgba(24,38,65,.14);
  --shadow: 0 28px 70px rgba(12,27,50,.14);
  --radius: 1.2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Biofors Display", Montserrat, Arial, sans-serif;
  line-height: .98;
  letter-spacing: -.045em;
}
h2 { font-size: clamp(2.75rem,5.4vw,5.4rem); }
.bg-cream { background: var(--paper); }
.text-ink { color: var(--ink); }
.text-lime { color: var(--lime) !important; }
.section-pad { padding: clamp(5.5rem,9vw,9rem) clamp(1.25rem,6vw,6.5rem); }
.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--teal);
  font-family: "Biofors Display", sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(1.25rem,4vw,4.75rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(13,27,50,.94);
  color: white;
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(13,27,50,.98);
  box-shadow: 0 16px 44px rgba(5,14,28,.2);
}
.site-logo { display: inline-flex; align-items: center; width: 170px; }
.site-logo img { width: 100%; filter: brightness(0) invert(1); }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.5rem,2.6vw,2.8rem); font-size: .9rem; }
.desktop-nav a { position: relative; padding: .6rem 0; color: rgba(255,255,255,.72); transition: color .2s ease; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: .2rem;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .7rem; }
.header-contact {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem 1.05rem;
  border: 1px solid rgba(217,231,53,.55);
  border-radius: 999px;
  color: var(--lime);
  font-size: .8rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}
.header-contact:hover { background: var(--lime); color: var(--navy); }
.mobile-toggle, .mobile-panel { display: none; }

/* Language selector */
.language-switcher { position: relative; color: white; }
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  min-height: 42px;
  padding: .55rem .72rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: white;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.language-toggle:hover,.language-switcher.open .language-toggle { border-color: rgba(217,231,53,.68); background: rgba(255,255,255,.11); }
.language-flag { display: inline-block; font-family: "Segoe UI Emoji","Apple Color Emoji",sans-serif; font-size: 1.08rem; line-height: 1; }
.language-code { color: rgba(255,255,255,.84); font-family: "Biofors Display",sans-serif; font-size: .69rem; letter-spacing: .08em; }
.language-chevron { color: var(--lime); font-size: .8rem; transform: translateY(-1px); }
.language-menu {
  position: absolute;
  top: calc(100% + .65rem);
  right: 0;
  z-index: 70;
  width: 190px;
  padding: .45rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .9rem;
  background: rgba(9,22,42,.99);
  box-shadow: 0 20px 50px rgba(3,10,21,.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.language-switcher.open .language-menu { opacity: 1; visibility: visible; transform: none; }
.language-option {
  display: grid;
  grid-template-columns: 1.5rem 1fr 1rem;
  align-items: center;
  gap: .6rem;
  width: 100%;
  padding: .7rem .75rem;
  border: 0;
  border-radius: .62rem;
  background: transparent;
  color: rgba(255,255,255,.76);
  cursor: pointer;
  font-size: .82rem;
  text-align: start;
  transition: background .18s ease, color .18s ease;
}
.language-option:hover,.language-option.active { background: rgba(255,255,255,.08); color: white; }
.language-option.active { color: var(--lime); }
.language-check { color: var(--lime); font-weight: 800; text-align: end; }

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .language-menu { right: auto; left: 0; }
html[dir="rtl"] .desktop-nav a::after { transform-origin: right; }
html[dir="rtl"] .footer-column a { margin-left: auto; }
html[dir="rtl"] .footer-column a:hover { transform: translateX(-3px); }
html[dir="rtl"] .field-note-main-copy { text-align: right; }
html[dir="rtl"] .hero-image-label { right: auto; left: 1.5rem; }
html[dir="rtl"] .floating-contact { right: auto; left: 1.2rem; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-lime { background: var(--lime); color: var(--navy); box-shadow: 0 13px 28px rgba(217,231,53,.12); }
.button-lime:hover { box-shadow: 0 18px 34px rgba(217,231,53,.2); }
.button-ghost { border-color: rgba(255,255,255,.35); color: white; }
.button-ghost:hover { border-color: white; background: white; color: var(--navy); }
.button-dark { background: var(--navy-deep); color: white; }

/* Home hero */
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem,8vw,8.5rem) clamp(1.5rem,6vw,7rem);
  background:
    radial-gradient(circle at 18% 18%,rgba(109,198,131,.17),transparent 32%),
    linear-gradient(135deg,var(--navy-deep),var(--navy) 72%);
}
.hero-copy::after {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 74px;
  height: 74px;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  content: "";
}
.hero-copy h1 { max-width: 900px; margin-bottom: 2rem; font-size: clamp(3.6rem,7.1vw,7.8rem); }
.hero-copy h1 em, .inner-hero h1 em {
  color: var(--green);
  font-family: "Biofors Accent", "Segoe UI", sans-serif;
  font-weight: 200;
}
.hero-intro { max-width: 680px; color: rgba(255,255,255,.7); font-size: clamp(1rem,1.35vw,1.18rem); line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-proof { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem; width: min(100%,760px); margin-top: 2.8rem; }
.proof-card { display: flex; align-items: center; gap: 1rem; min-width: 0; padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 1rem; background: linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08),0 14px 32px rgba(3,12,25,.12); backdrop-filter: blur(10px); }
.proof-seal { position: relative; flex: 0 0 72px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 72px; height: 72px; border: 1px solid rgba(217,231,53,.84); border-radius: 50%; color: var(--lime); line-height: 1; text-align: center; }
.proof-seal::before { position: absolute; inset: 5px; border: 1px solid rgba(217,231,53,.28); border-radius: inherit; content: ""; }
.proof-seal::after { position: absolute; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 71px 0 var(--lime); content: ""; }
.proof-seal i,.proof-seal b { position: relative; z-index: 1; }
.proof-seal i { font-family: "Biofors Display",sans-serif; font-size: .52rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.proof-seal b { margin: .27rem 0 .22rem; font-family: "Biofors Display",sans-serif; font-size: 1rem; letter-spacing: -.02em; }
.proof-copy { min-width: 0; }
.proof-copy strong,.proof-copy small { display: block; }
.proof-copy strong { color: white; font-family: "Biofors Display",sans-serif; font-size: .84rem; line-height: 1.28; letter-spacing: -.015em; }
.proof-copy small { margin-top: .28rem; color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.45; }
.hero-image-wrap { position: relative; min-height: 650px; overflow: hidden; background: var(--navy); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.01); }
.hero-image-wrap::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(13,27,50,.35),transparent 42%); content: ""; }
.hero-image-wrap::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,transparent 58%,rgba(13,27,50,.52)); content: ""; }
.hero-image-label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  min-width: 180px;
  padding: 1.1rem 1.25rem;
  border-radius: .85rem;
  background: rgba(217,231,53,.94);
  color: var(--navy);
  box-shadow: 0 16px 35px rgba(0,0,0,.15);
  backdrop-filter: blur(8px);
}
.hero-image-label span { display: block; font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }
.hero-image-label strong { display: block; margin-top: .15rem; font-family: "Biofors Display", sans-serif; font-size: 1.35rem; }

/* Shared section heading */
.section-heading { display: grid; grid-template-columns: 1.55fr .8fr; align-items: end; gap: 3rem; margin-bottom: clamp(2.8rem,5vw,4.5rem); }
.section-heading h2 { max-width: 980px; margin-bottom: 0; }
.section-heading > p { max-width: 500px; margin: 0 0 .45rem; color: var(--muted); font-size: 1.02rem; line-height: 1.85; }

/* Species */
.species-section { background: var(--paper); }
.species-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: clamp(.8rem,1.5vw,1.4rem); }
.species-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(13,27,50,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}
.species-card:hover { transform: translateY(-7px); box-shadow: 0 30px 65px rgba(13,27,50,.2); }
.species-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.species-image::after { position: absolute; inset: 32% 0 0; background: linear-gradient(180deg,transparent,rgba(8,20,38,.94)); content: ""; }
.species-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.species-card:hover .species-image img { transform: scale(1.045); }
.species-card-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: .9rem; padding: clamp(1.15rem,2vw,1.6rem); color: white; }
.species-card-copy > span { align-self: start; color: var(--lime); font-size: .72rem; font-weight: 800; }
.species-card-copy p { margin-bottom: .15rem; color: rgba(255,255,255,.65); font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }
.species-card-copy h3 { margin-bottom: 0; font-size: clamp(1.45rem,2vw,2.05rem); }
.species-card-copy b { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 1rem; transition: background .2s ease, color .2s ease; }
.species-card:hover .species-card-copy b { border-color: var(--lime); background: var(--lime); color: var(--navy); }

/* Story */
.story-section { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem,7vw,7.5rem); align-items: center; background: var(--teal); color: white; }
.story-image-wrap { position: relative; min-height: 680px; overflow: hidden; border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,29,32,.26); }
.story-image-wrap::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 58%,rgba(0,29,32,.28)); content: ""; }
.story-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.story-copy h2 { max-width: 740px; }
.story-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.72); font-size: 1.06rem; line-height: 1.9; }
.text-link { display: inline-flex; align-items: center; margin-top: 1rem; padding-bottom: .35rem; border-bottom: 2px solid var(--lime); color: white; font-size: .9rem; font-weight: 800; }

/* Field editorial */
.field-notes { background: var(--paper); }
.field-notes-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: clamp(.8rem,1.5vw,1.4rem); min-height: 680px; }
.field-note-main, .field-note-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy); color: white; }
.field-note-main { min-height: 680px; }
.field-note-main img, .field-note-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.field-note-main img { object-position: center; }
.field-note-main::after, .field-note-card::after { position: absolute; inset: 0; content: ""; }
.field-note-main::after { background: linear-gradient(180deg,transparent 32%,rgba(8,20,38,.92)); }
.field-note-card::after { background: linear-gradient(180deg,transparent 32%,rgba(8,20,38,.82)); }
.field-note-main-copy { position: absolute; right: clamp(1.5rem,3vw,2.7rem); bottom: clamp(1.5rem,3vw,2.7rem); left: clamp(1.5rem,3vw,2.7rem); z-index: 2; }
.field-note-main-copy h3 { max-width: 680px; margin-bottom: .8rem; font-size: clamp(2.35rem,4vw,4.5rem); }
.field-note-main-copy p { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,.7); }
.field-note-stack { display: grid; grid-template-rows: 1fr 1fr; gap: clamp(.8rem,1.5vw,1.4rem); }
.field-note-card { min-height: 330px; }
.field-note-card img { object-position: center; }
.field-note-card:hover img { transform: scale(1.035); }
.field-note-card span { position: absolute; right: 1.5rem; bottom: 1.35rem; left: 1.5rem; z-index: 2; max-width: 440px; font-family: "Biofors Display", sans-serif; font-size: 1.05rem; }

/* Commitments */
.pillars-section { position: relative; overflow: hidden; background: var(--navy-deep); color: white; }
.pillars-section::before { position: absolute; top: -180px; right: -140px; width: 480px; height: 480px; border: 1px solid rgba(109,198,131,.14); border-radius: 50%; content: ""; }
.light-heading { position: relative; z-index: 1; grid-template-columns: 1fr; }
.light-heading h2 { max-width: 980px; }
.pillars-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 1px; background: rgba(255,255,255,.14); }
.pillars-grid article { min-height: 310px; padding: clamp(2rem,3.3vw,3.2rem); background: var(--navy-deep); transition: background .25s ease; }
.pillars-grid article:hover { background: var(--navy); }
.pillars-grid strong { color: var(--lime); font-size: 1.35rem; }
.pillars-grid h3 { margin: 4.4rem 0 1rem; font-size: 1.65rem; }
.pillars-grid p { max-width: 430px; color: rgba(255,255,255,.64); font-size: .94rem; line-height: 1.8; }

/* CTA */
.contact-cta { position: relative; overflow: hidden; text-align: center; background: var(--lime); }
.contact-cta::before, .contact-cta::after { position: absolute; width: 220px; height: 220px; border: 1px solid rgba(24,38,65,.16); border-radius: 50%; content: ""; }
.contact-cta::before { top: -120px; left: -60px; }
.contact-cta::after { right: -40px; bottom: -140px; }
.contact-cta h2 { position: relative; z-index: 1; max-width: 1050px; margin: 0 auto 2.2rem; }
.contact-cta .button { position: relative; z-index: 1; }

/* Inner pages */
.inner-hero { position: relative; overflow: hidden; padding: clamp(6rem,11vw,11rem) clamp(1.25rem,6vw,6.5rem); background: linear-gradient(135deg,var(--navy-deep),var(--navy)); color: white; }
.inner-hero::after { position: absolute; top: 12%; right: -5%; width: 410px; height: 410px; border: 1px solid rgba(109,198,131,.16); border-radius: 50%; content: ""; }
.inner-hero h1 { position: relative; z-index: 1; max-width: 1180px; margin-bottom: 1.8rem; font-size: clamp(3.7rem,8vw,8.4rem); }
.inner-hero > p:last-child { position: relative; z-index: 1; max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 1.08rem; line-height: 1.85; }

/* Products */
.product-detail { display: grid; grid-template-columns: minmax(320px,.84fr) 1.16fr; gap: clamp(3rem,8vw,9rem); align-items: center; border-bottom: 1px solid var(--line); }
.product-detail:nth-child(odd) { background: white; }
.product-detail:nth-child(even) { background: var(--paper); }
.product-detail:nth-child(even) .product-visual { order: 2; }
.product-visual { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--navy); box-shadow: var(--shadow); }
.product-visual::after { position: absolute; inset: 45% 0 0; background: linear-gradient(180deg,transparent,rgba(8,20,38,.26)); content: ""; }
.product-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s ease; }
.product-detail:hover .product-visual img { transform: scale(1.025); }
.product-copy { padding: clamp(2rem,5vw,5rem) 0; }
.product-number { color: var(--teal); font-family: "Biofors Display", sans-serif; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; }
.product-copy h2 { margin: 1.1rem 0 1.7rem; }
.product-copy > p { max-width: 650px; color: var(--muted); font-size: 1.05rem; line-height: 1.9; }
.product-copy > p strong { color: var(--ink); font-weight: 700; }
.product-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.1rem; }
.product-tags span { padding: .6rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); color: var(--teal); font-size: .76rem; font-weight: 700; }

/* About */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,9rem); align-items: center; }
.about-photo { position: relative; min-height: 720px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-photo::after { position: absolute; inset: 55% 0 0; background: linear-gradient(180deg,transparent,rgba(8,20,38,.28)); content: ""; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-copy h2 { margin-bottom: 2.2rem; }
.about-copy p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.02rem; line-height: 1.95; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; background: rgba(255,255,255,.16); }
.mission-grid article { min-height: 480px; padding: clamp(3rem,6vw,6.5rem); background: var(--navy-deep); color: white; }
.mission-grid article:nth-child(2) { background: var(--navy); }
.mission-grid h2 { margin-top: 4.2rem; }
.mission-grid p:last-child { max-width: 680px; color: rgba(255,255,255,.67); line-height: 1.9; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 1px; background: var(--line); }
.value-card { min-height: 300px; padding: clamp(1.8rem,3vw,2.6rem); background: var(--paper); transition: background .25s ease, transform .25s ease; }
.value-card:hover { position: relative; z-index: 1; background: white; transform: translateY(-3px); }
.value-card span { display: block; color: var(--teal); font-size: .74rem; font-weight: 800; }
.value-card h3 { margin: 5rem 0 1rem; font-size: 1.55rem; }
.value-card p { color: var(--muted); font-size: .92rem; line-height: 1.75; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem,8vw,9rem); align-items: start; }
.contact-info { position: sticky; top: 120px; }
.contact-info h2 { margin-bottom: 1.7rem; }
.contact-info > p { max-width: 560px; color: var(--muted); line-height: 1.9; }
.contact-list { display: grid; gap: 1rem; margin-top: 3.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding-top: 1.15rem; border-top: 1px solid var(--line); }
.contact-item b { color: var(--teal); font-size: 1.2rem; }
.contact-item span { display: block; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-item strong { display: block; margin-top: .2rem; }
.contact-form { padding: clamp(1.6rem,4vw,4rem); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.field { display: grid; gap: .5rem; }
.field-full { grid-column: 1/-1; }
.field label { color: var(--ink); font-size: .79rem; font-weight: 800; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(24,38,65,.25); border-radius: 0; background: transparent; color: var(--ink); outline: none; padding: .85rem 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 1px 0 var(--teal); }
.field textarea { min-height: 145px; resize: vertical; }
.form-note { margin-top: 1rem; color: var(--muted); font-size: .78rem; }
.form-note.is-sending { color: var(--navy); font-weight: 800; }
.form-note.is-success { color: var(--teal); font-weight: 800; }
.form-note.is-error { color: #9f2d20; font-weight: 800; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form .button { margin-top: 1.7rem; border: 0; cursor: pointer; }
.contact-form .button:disabled { cursor: wait; opacity: .65; transform: none; }

/* Footer */
.site-footer { padding: 5rem clamp(1.25rem,6vw,6.5rem) 2rem; background: #09162a; color: white; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(2,1fr); gap: 3rem; padding-bottom: 4.5rem; }
.footer-logo { width: 190px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 430px; margin-top: 1.7rem; color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.8; }
.footer-column h3 { margin-bottom: 1.3rem; color: var(--lime); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: .75rem 0; color: rgba(255,255,255,.68); font-size: .9rem; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: white; transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.7rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .72rem; }

.floating-contact { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 45; display: inline-flex; align-items: center; gap: .55rem; min-height: 50px; padding: .78rem 1.05rem; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: var(--teal); color: white; box-shadow: 0 16px 38px rgba(0,63,68,.3); font-size: .8rem; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.floating-contact:hover { background: var(--teal-light); transform: translateY(-4px); }

.has-js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.has-js .reveal.is-visible { opacity: 1; transform: none; }

.error-page { display: grid; place-items: center; min-height: 100svh; padding: 2rem; background: var(--navy-deep); color: white; text-align: center; }
.error-page img { width: 210px; margin: 0 auto 3rem; filter: brightness(0) invert(1); }
.error-page h1 { margin-bottom: 1rem; font-size: clamp(3rem,10vw,7rem); }
.error-page p { max-width: 560px; color: rgba(255,255,255,.68); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: .65rem; }
  .desktop-nav, .header-contact { display: none; }
  .header-actions { justify-self: end; }
  .mobile-toggle { display: inline-grid; place-items: center; justify-self: end; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: white; font-size: 1.2rem; }
  .mobile-panel { position: absolute; top: 82px; right: 0; left: 0; display: none; gap: 0; padding: .7rem 1.25rem 1.4rem; border-top: 1px solid rgba(255,255,255,.1); background: rgba(13,27,50,.99); box-shadow: 0 20px 42px rgba(5,14,28,.2); }
  .mobile-panel.open { display: grid; }
  .mobile-panel a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
  .hero-shell, .about-intro, .contact-layout { grid-template-columns: 1fr; }
  .hero-shell { min-height: auto; }
  .hero-image-wrap { min-height: 68svh; }
  .species-grid { grid-template-columns: repeat(2,1fr); }
  .story-section { grid-template-columns: 1fr; }
  .story-image-wrap { min-height: 68svh; }
  .field-notes-grid { grid-template-columns: 1fr; }
  .field-note-stack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .product-detail { grid-template-columns: 1fr 1fr; }
  .product-detail:nth-child(even) .product-visual { order: initial; }
  .contact-info { position: static; }
}

@media (max-width: 700px) {
  .site-header, .site-header.is-scrolled { min-height: 72px; }
  .site-logo { width: 145px; }
  .language-toggle { width: 44px; padding: 0; }
  .language-code,.language-chevron { display: none; }
  .language-menu { width: 178px; }
  .mobile-panel { top: 72px; }
  .section-pad { padding: 4.6rem 1.15rem; }
  .hero-copy { padding: 5.2rem 1.25rem 4.5rem; }
  .hero-copy::after { display: none; }
  .hero-copy h1 { font-size: clamp(3.15rem,15.2vw,4.7rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: .7rem; margin-top: 2.2rem; }
  .proof-card { padding: .8rem .9rem; }
  .proof-seal { flex-basis: 68px; width: 68px; height: 68px; }
  .proof-seal::after { box-shadow: 0 67px 0 var(--lime); }
  .hero-image-wrap { min-height: 62svh; }
  .hero-image-label { right: .9rem; bottom: .9rem; min-width: 155px; padding: .9rem 1rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.3rem; margin-bottom: 2.5rem; }
  .section-heading h2, .story-copy h2, .contact-cta h2 { font-size: clamp(2.75rem,12vw,4.2rem); }
  .species-grid { grid-template-columns: 1fr; }
  .species-image { aspect-ratio: 4/3; }
  .story-image-wrap { min-height: 62svh; }
  .field-notes-grid, .field-note-main { min-height: auto; }
  .field-note-main { min-height: 68svh; }
  .field-note-stack { grid-template-columns: 1fr; }
  .field-note-card { min-height: 52svh; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-grid article { min-height: 240px; }
  .pillars-grid h3 { margin-top: 3rem; }
  .inner-hero { padding: 6rem 1.25rem; }
  .inner-hero h1 { font-size: clamp(3.4rem,16vw,5.2rem); }
  .product-detail { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.15rem; }
  .product-visual { aspect-ratio: 4/3; }
  .product-copy { padding: 0; }
  .about-photo { min-height: 68svh; }
  .mission-grid, .values-grid { grid-template-columns: 1fr; }
  .mission-grid article { min-height: auto; }
  .mission-grid h2 { margin-top: 3rem; }
  .value-card { min-height: 250px; }
  .value-card h3 { margin-top: 3.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-form { border-radius: .95rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: .75rem; bottom: .75rem; width: 50px; padding: 0; justify-content: center; overflow: hidden; }
  html[dir="rtl"] .floating-contact { right: auto; left: .75rem; }
  html[dir="rtl"] .hero-image-label { right: auto; left: .9rem; }
  .floating-contact span:last-child { display: none; }
}

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

/* =========================================================
   BIOFORS V10 — premium visual refinement
   ========================================================= */
.hero-monogram {
  position: absolute;
  right: -9%;
  bottom: -8%;
  z-index: 0;
  width: min(43vw, 620px);
  max-width: none;
  opacity: .035;
  filter: brightness(0) invert(1);
  pointer-events: none;
  transform: rotate(-4deg);
}
.hero-copy > *:not(.hero-monogram) { position: relative; z-index: 1; }
.hero-copy h1 { text-wrap: balance; }

.hero-proof { gap: .72rem; width: min(100%, 790px); }
.proof-card {
  position: relative;
  min-height: 92px;
  padding: .95rem 4.3rem .95rem .95rem;
  border-color: rgba(255,255,255,.14);
  border-radius: 1.05rem;
  background: linear-gradient(135deg,rgba(255,255,255,.085),rgba(255,255,255,.025));
  overflow: hidden;
}
.proof-card::after {
  position: absolute;
  inset: auto -30px -48px auto;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(217,231,53,.13);
  border-radius: 50%;
  content: "";
}
.proof-icon {
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(217,231,53,.5);
  border-radius: 15px;
  background: rgba(217,231,53,.08);
  color: var(--lime);
}
.proof-icon svg { width: 28px; height: 28px; }
.proof-metric {
  position: absolute;
  top: .85rem;
  right: .9rem;
  color: rgba(217,231,53,.9);
  font-family: "Biofors Display",sans-serif;
  font-size: .8rem;
  letter-spacing: .08em;
}
.proof-copy strong { font-size: .88rem; }
.proof-copy small { max-width: 200px; font-size: .7rem; }
.proof-seal { display:none; }

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(24,38,65,.14);
}
.brand-strip article {
  position: relative;
  min-height: 128px;
  padding: 1.45rem clamp(1.15rem,2.4vw,2.3rem);
  background: #fff;
  overflow: hidden;
}
.brand-strip article::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(0,91,98,.09);
  border-radius: 50%;
  content: "";
}
.brand-strip span,
.brand-strip strong,
.brand-strip small { display:block; }
.brand-strip span {
  margin-bottom: .75rem;
  color: var(--teal);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.brand-strip strong {
  color: var(--ink);
  font-family: "Biofors Display",sans-serif;
  font-size: .93rem;
  letter-spacing: -.02em;
}
.brand-strip small {
  margin-top: .28rem;
  color: var(--muted);
  font-size: .73rem;
}

.species-card { isolation: isolate; }
.species-mark {
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  z-index: 4;
  width: 58px;
  height: auto;
  opacity: .88;
  filter: brightness(0) invert(1);
  pointer-events: none;
  transition: opacity .3s ease, transform .35s ease;
}
.species-card:hover .species-mark { opacity: 1; transform: translateY(-2px) scale(1.04); }

.product-showcase {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
  gap: clamp(2rem,5vw,5rem);
  background: linear-gradient(135deg,var(--navy-deep),#17304f 72%);
  color: #fff;
}
.product-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem,2vw,2.3rem) 0;
}
.product-showcase-copy h2 {
  margin-bottom: 1.7rem;
  font-size: clamp(3rem,5.4vw,5.7rem);
}
.product-showcase-copy h2 em {
  color: var(--green);
  font-family: "Biofors Accent","Segoe UI",sans-serif;
  font-weight: 200;
}
.product-showcase-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.68);
  font-size: 1.02rem;
  line-height: 1.9;
}
.product-showcase-copy .button { align-self: flex-start; }
.product-showcase-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(2,10,23,.32);
}
.product-showcase-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 52%,rgba(8,20,38,.56));
  content: "";
}
.product-showcase-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.showcase-caption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.35rem;
  z-index: 2;
  min-width: 190px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: .9rem;
  background: rgba(9,22,42,.72);
  backdrop-filter: blur(14px);
}
.showcase-caption span,
.showcase-caption strong { display:block; }
.showcase-caption span { color: var(--lime); font-size: .66rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.showcase-caption strong { margin-top:.18rem; font-family:"Biofors Display",sans-serif; font-size:1rem; }

.field-note-product img { object-position: center 32%; }

.pillar-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217,231,53,.36);
  border-radius: 14px;
  background: rgba(217,231,53,.055);
  color: var(--lime);
}
.pillar-icon svg { width: 25px; height: 25px; }
.pillars-grid h3 { margin-top: 3.5rem; }

.contact-cta { isolation: isolate; }
.cta-monogram {
  position: absolute;
  left: 50%;
  bottom: -62%;
  z-index: 0;
  width: min(62vw,760px);
  opacity: .045;
  transform: translateX(-50%);
  pointer-events:none;
}
.contact-cta > *:not(.cta-monogram) { position: relative; z-index: 1; }

.product-visual { isolation:isolate; }
.product-visual > img:not(.product-brand-mark) { z-index: 0; }
.product-visual::after { z-index:1; }
.product-brand-mark {
  position:absolute !important;
  top:1.15rem !important;
  right:1.15rem !important;
  bottom:auto !important;
  left:auto !important;
  z-index:3 !important;
  width:76px !important;
  height:auto !important;
  object-fit:contain !important;
  opacity:.92;
  filter:brightness(0) invert(1);
  transform:none !important;
  pointer-events:none;
}
.product-detail:hover .product-brand-mark { transform:none !important; }

@media (max-width:1080px) {
  .brand-strip { grid-template-columns:repeat(2,1fr); }
  .product-showcase { grid-template-columns:1fr; }
  .product-showcase-visual { min-height:62svh; }
}

@media (max-width:700px) {
  .hero-monogram { width: 560px; right:-54%; bottom:-1%; opacity:.027; }
  .proof-card { min-height:84px; padding-right:3.8rem; }
  .proof-icon { flex-basis:48px; width:48px; height:48px; border-radius:13px; }
  .proof-icon svg { width:24px; height:24px; }
  .proof-copy strong { font-size:.82rem; }
  .proof-copy small { font-size:.68rem; }
  .brand-strip { grid-template-columns:1fr 1fr; }
  .brand-strip article { min-height:116px; padding:1.15rem; }
  .brand-strip small { font-size:.69rem; }
  .species-mark { width:54px; }
  .product-showcase { gap:2.2rem; }
  .product-showcase-copy { padding:0; }
  .product-showcase-copy h2 { font-size:clamp(2.85rem,12vw,4.1rem); }
  .product-showcase-copy .button { width:100%; }
  .product-showcase-visual { min-height:56svh; }
  .showcase-caption { right:.85rem; bottom:.85rem; min-width:165px; }
  .product-brand-mark { width:60px !important; top:.8rem !important; right:.8rem !important; }
  .cta-monogram { width:760px; bottom:-39%; opacity:.035; }
}


/* =========================================================
   BIOFORS V11 - sitemap, product architecture and brand system
   ========================================================= */
:root { --cream:#fff5eb; --matcha:#cde4b1; --brand-blue:#182641; --brand-teal:#015057; }
body { background:#f8f6f1; }
.hero-v11 .hero-copy { background:radial-gradient(circle at 18% 18%,rgba(1,80,87,.24),transparent 33%),linear-gradient(135deg,#0d1b32,#182641 74%); }
.brand-intro { display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(3rem,8vw,9rem); align-items:start; background:var(--cream); }
.brand-intro-title { position:sticky; top:120px; }
.brand-intro-title h2 { margin:0; font-size:clamp(3rem,5.7vw,5.7rem); }
.brand-intro-title h2 em { color:var(--teal); font-family:"Biofors Accent",sans-serif; font-weight:200; }
.brand-intro-copy { max-width:780px; padding-top:.3rem; }
.brand-intro-copy p { color:#4f5b6a; font-size:clamp(1.05rem,1.3vw,1.18rem); line-height:1.95; }
.brand-intro-copy p:first-child { color:var(--ink); font-size:clamp(1.25rem,1.7vw,1.55rem); line-height:1.75; }
.featured-lines { background:#fff; }
.feature-banner-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(1rem,2vw,1.6rem); }
.feature-banner { position:relative; min-height:640px; overflow:hidden; border-radius:1.4rem; background:#0d1b32; color:#fff; box-shadow:0 28px 70px rgba(12,27,50,.16); isolation:isolate; }
.feature-banner::after { position:absolute; inset:22% 0 0; z-index:1; background:linear-gradient(180deg,transparent,rgba(9,22,42,.94)); content:""; }
.feature-banner>img:first-child { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 25%; transition:transform .75s ease; }
.feature-banner:hover>img:first-child { transform:scale(1.035); }
.feature-mark { position:absolute; top:1.4rem; right:1.4rem; z-index:2; width:76px; filter:brightness(0) invert(1); opacity:.92; }
.feature-banner-copy { position:absolute; right:0; bottom:0; left:0; z-index:2; padding:clamp(1.5rem,3vw,2.6rem); }
.feature-banner-copy span { color:var(--lime); font-size:.72rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.feature-banner-copy h3 { margin:.75rem 0 .9rem; font-size:clamp(2.5rem,4vw,4.5rem); }
.feature-banner-copy p { max-width:470px; color:rgba(255,255,255,.68); font-size:1rem; }
.feature-banner-copy b { display:inline-block; margin-top:1.4rem; color:var(--lime); font-size:.82rem; }
.all-lines-row { display:flex; justify-content:space-between; gap:2rem; align-items:center; margin-top:1.4rem; padding:1.25rem 0 0; border-top:1px solid var(--line); color:var(--muted); font-size:.9rem; }
.species-compact-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; padding:1px; background:var(--line); }
.species-compact-grid a { position:relative; display:grid; min-height:280px; padding:1.7rem; background:#fff; overflow:hidden; transition:background .25s ease,transform .25s ease; }
.species-compact-grid a:hover { z-index:1; background:var(--cream); transform:translateY(-3px); }
.species-compact-grid img { width:74px; opacity:.92; }
.species-compact-grid span { align-self:end; margin-top:4rem; font-family:"Biofors Display",sans-serif; font-size:1.55rem; }
.species-compact-grid b { margin-top:.25rem; color:var(--teal); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; }

.product-family { display:grid; grid-template-columns:minmax(340px,.8fr) 1.2fr; gap:clamp(3rem,7vw,8rem); align-items:start; border-bottom:1px solid var(--line); background:#fff; }
.product-family:nth-of-type(odd) { background:var(--cream); }
.product-family-visual { position:sticky; top:105px; min-height:690px; overflow:hidden; border-radius:1.35rem; background:#182641; box-shadow:var(--shadow); }
.product-family-visual::after { position:absolute; inset:40% 0 0; background:linear-gradient(180deg,transparent,rgba(9,22,42,.7)); content:""; }
.product-family-visual>img:first-child { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.family-mark { position:absolute; top:1.25rem; right:1.25rem; z-index:2; width:82px; filter:brightness(0) invert(1); }
.family-label { position:absolute; right:1.4rem; bottom:1.3rem; z-index:2; color:#fff; font-family:"Biofors Display",sans-serif; font-size:clamp(2.5rem,4vw,4rem); }
.product-family-content { padding:1rem 0 2rem; }
.product-family-content h2 { margin:0 0 1.5rem; max-width:900px; font-size:clamp(3rem,5.2vw,5.2rem); }
.family-lead { max-width:820px; color:var(--muted); font-size:1.08rem; line-height:1.9; }
.quality-seals { display:flex; flex-wrap:wrap; gap:.7rem; margin:2rem 0 2.4rem; }
.quality-seals span { display:grid; grid-template-columns:auto 1fr; align-items:center; gap:.7rem; min-height:58px; padding:.65rem 1rem .65rem .7rem; border:1px solid rgba(1,80,87,.18); border-radius:999px; background:rgba(255,255,255,.72); color:var(--teal); font-size:.75rem; font-weight:800; }
.quality-seals b { display:grid; place-items:center; min-width:42px; height:42px; padding:0 .35rem; border-radius:50%; background:var(--teal); color:#fff; font-size:.7rem; }
.product-list-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; padding:1px; background:var(--line); }
.product-list-grid.single { grid-template-columns:1fr; max-width:820px; }
.product-list-grid article { min-height:245px; padding:1.6rem; background:#fff; }
.product-list-grid article>span { color:var(--teal); font-size:.7rem; font-weight:900; }
.product-list-grid h3 { margin:3.7rem 0 .8rem; font-size:1.45rem; }
.product-list-grid p { margin:0; color:var(--muted); font-size:.92rem; line-height:1.75; }

.about-field-photo img { object-position:center; }
.values-v11 { background:#f8f6f1; }

.map-section { background:#fff; }
.map-frame { overflow:hidden; border-radius:1.35rem; box-shadow:var(--shadow); background:#e6e8e7; }
.map-frame iframe { display:block; width:100%; min-height:560px; border:0; }
.distributor-section { display:flex; justify-content:space-between; align-items:center; gap:3rem; background:linear-gradient(135deg,#0d1b32,#182641); color:#fff; }
.distributor-section h2 { margin:0 0 1.4rem; }
.distributor-section p:not(.eyebrow) { max-width:620px; color:rgba(255,255,255,.66); }
.footer-main { grid-template-columns:1.45fr repeat(3,1fr); }
.footer-social { display:block; margin:.75rem 0; color:rgba(255,255,255,.38); font-size:.86rem; }
.legal-content { display:grid; grid-template-columns:1fr 1fr; gap:1px; padding-top:0; background:var(--line); }
.legal-content article { min-height:280px; padding:clamp(2rem,4vw,4rem); background:#fff; }
.legal-content h2 { font-size:clamp(1.8rem,3vw,2.8rem); margin:0 0 1.2rem; }
.legal-content p { max-width:680px; color:var(--muted); }
.legal-hero h1 { max-width:900px; }

/* Guided contact / chatbot */
.biofors-assistant { position:fixed; right:1.2rem; bottom:1.2rem; z-index:80; }
.assistant-toggle { display:inline-flex; align-items:center; gap:.6rem; min-height:52px; padding:.78rem 1.05rem; border:0; border-radius:999px; background:var(--teal); color:#fff; box-shadow:0 18px 45px rgba(0,63,68,.28); cursor:pointer; font-weight:800; }
.assistant-toggle i { display:grid; place-items:center; width:28px; height:28px; border-radius:50%; background:var(--lime); color:var(--navy); font-style:normal; }
.assistant-panel { position:absolute; right:0; bottom:calc(100% + .8rem); width:min(355px,calc(100vw - 2rem)); padding:1rem; border:1px solid rgba(255,255,255,.12); border-radius:1.2rem; background:#0d1b32; color:#fff; box-shadow:0 25px 70px rgba(5,14,28,.35); opacity:0; visibility:hidden; transform:translateY(8px); transition:.2s ease; }
.biofors-assistant.open .assistant-panel { opacity:1; visibility:visible; transform:none; }
.assistant-panel strong { display:block; font-family:"Biofors Display",sans-serif; font-size:1.2rem; }
.assistant-panel>p { margin:.4rem 0 1rem; color:rgba(255,255,255,.62); font-size:.83rem; }
.assistant-options { display:grid; grid-template-columns:1fr 1fr; gap:.5rem; }
.assistant-options a { padding:.75rem .8rem; border:1px solid rgba(255,255,255,.12); border-radius:.8rem; color:rgba(255,255,255,.82); font-size:.78rem; text-align:center; }
.assistant-options a:hover { border-color:var(--lime); color:var(--lime); }
html[dir="rtl"] .biofors-assistant { right:auto; left:1.2rem; }
html[dir="rtl"] .assistant-panel { right:auto; left:0; }

@media (max-width:1080px) {
  .brand-intro { grid-template-columns:1fr; }
  .brand-intro-title { position:static; }
  .product-family { grid-template-columns:1fr; }
  .product-family-visual { position:relative; top:auto; min-height:62svh; }
  .footer-main { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-column:last-child { grid-column:2/4; }
}
@media (max-width:700px) {
  .feature-banner-grid { grid-template-columns:1fr; }
  .feature-banner { min-height:72svh; }
  .all-lines-row { align-items:flex-start; flex-direction:column; }
  .species-compact-grid { grid-template-columns:1fr 1fr; }
  .species-compact-grid a { min-height:220px; padding:1.2rem; }
  .species-compact-grid img { width:60px; }
  .species-compact-grid span { margin-top:3rem; font-size:1.25rem; }
  .product-family { padding:4.6rem 1.15rem; gap:2.5rem; }
  .product-family-visual { min-height:58svh; }
  .product-list-grid { grid-template-columns:1fr; }
  .product-list-grid article { min-height:210px; }
  .product-list-grid h3 { margin-top:3rem; }
  .distributor-section { align-items:flex-start; flex-direction:column; }
  .distributor-section .button { width:100%; }
  .footer-main { grid-template-columns:1fr; }
  .footer-column:last-child { grid-column:auto; }
  .legal-content { grid-template-columns:1fr; padding-left:1.15rem; padding-right:1.15rem; }
  .legal-content article { min-height:auto; }
  .biofors-assistant { right:.75rem; bottom:.75rem; }
  html[dir="rtl"] .biofors-assistant { right:auto; left:.75rem; }
  .assistant-toggle span { display:none; }
  .assistant-toggle { width:52px; padding:0; justify-content:center; }
  .assistant-toggle i { background:transparent; color:#fff; }
}

/* =========================================================
   BIOFORS V12 - premium visual direction / image system
   ========================================================= */
.hero-v11 { min-height: 840px; }
.hero-v11 .hero-copy { padding-right:clamp(2rem,4vw,5.25rem); }
.hero-v11 .hero-image-wrap { min-height:840px; background:#10243b; }
.hero-v11 .hero-image { object-position:center 48%; filter:saturate(.9) contrast(1.03); transform:scale(1.015); }
.hero-v11 .hero-image-wrap::before { background:linear-gradient(90deg,rgba(13,27,50,.36),rgba(13,27,50,.04) 42%,transparent 62%); }
.hero-v11 .hero-image-wrap::after { background:linear-gradient(180deg,rgba(13,27,50,.05),transparent 40%,rgba(13,27,50,.66)); }
.hero-packshot { position:absolute; right:clamp(1rem,3vw,2.4rem); bottom:-7.5%; z-index:2; width:min(31%,240px); height:auto; object-fit:contain; filter:drop-shadow(0 28px 32px rgba(3,12,25,.34)); transform:rotate(1deg); pointer-events:none; }
.hero-v11 .hero-image-label { right:auto; left:1.5rem; bottom:1.5rem; min-width:205px; padding:1rem 1.2rem; border:1px solid rgba(255,255,255,.16); background:rgba(13,27,50,.72); color:white; box-shadow:none; backdrop-filter:blur(14px); }
.hero-v11 .hero-image-label span { color:var(--lime); }

.feature-banner-grid { gap:clamp(1.1rem,2vw,1.75rem); }
.feature-banner { min-height:690px; border-radius:0; box-shadow:none; }
.feature-banner::before { position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,rgba(8,20,38,.11),transparent 50%); content:""; }
.feature-banner::after { inset:36% 0 0; background:linear-gradient(180deg,transparent,rgba(9,22,42,.92) 82%); }
.feature-banner>img:first-child { object-position:center 36%; filter:saturate(.86) contrast(1.035); }
.feature-banner-equinos>img:first-child { object-position:center 30%; }
.feature-banner-porcinos>img:first-child { object-position:center 28%; }
.feature-packshot { position:absolute; right:clamp(1.2rem,2.4vw,2.2rem); bottom:clamp(1.4rem,2.7vw,2.35rem); z-index:3; width:min(27%,178px); height:auto; filter:drop-shadow(0 24px 28px rgba(0,0,0,.3)); transform:translateY(9%) rotate(.75deg); transition:transform .6s cubic-bezier(.2,.7,.2,1); pointer-events:none; }
.feature-banner:hover .feature-packshot { transform:translateY(3%) rotate(0deg); }
.feature-mark { top:1.5rem; right:1.55rem; width:68px; opacity:.84; }
.feature-banner-copy { right:31%; padding:clamp(1.6rem,3vw,2.8rem); }
.feature-banner-copy h3 { letter-spacing:-.05em; }
.feature-banner-copy p { max-width:390px; }
.feature-banner-copy b { padding-bottom:.3rem; border-bottom:1px solid currentColor; }

.home-species { background:#f8f6f1; }
.species-compact-grid { gap:.75rem; padding:0; background:transparent; }
.species-compact-grid a { min-height:300px; border:1px solid var(--line); border-radius:1rem; background:#fff; }
.species-compact-grid a::after { position:absolute; right:-45px; bottom:-55px; width:145px; height:145px; border-radius:50%; background:var(--matcha); opacity:.25; content:""; transition:transform .35s ease,opacity .35s ease; }
.species-compact-grid a:hover::after { transform:scale(1.15); opacity:.42; }
.species-compact-grid img { position:relative; z-index:1; width:82px; }
.species-compact-grid span,.species-compact-grid b { position:relative; z-index:1; }

.product-hero-v11 { min-height:560px; background:radial-gradient(circle at 80% 20%,rgba(109,198,131,.18),transparent 26%),linear-gradient(135deg,#0d1b32,#182641 72%); }
.product-family { grid-template-columns:minmax(390px,.92fr) 1.08fr; gap:clamp(4rem,7vw,8.5rem); padding-top:clamp(5.5rem,8vw,8rem); padding-bottom:clamp(5.5rem,8vw,8rem); }
.product-family.family-reverse .product-family-visual { order:2; }
.product-family.family-reverse .product-family-content { order:1; }
.product-family-visual { min-height:760px; border-radius:0; box-shadow:none; }
.product-family-visual::before { position:absolute; inset:0; z-index:1; border:1px solid rgba(255,255,255,.14); content:""; pointer-events:none; }
.product-family-visual::after { z-index:1; inset:34% 0 0; background:linear-gradient(180deg,transparent,rgba(9,22,42,.82)); }
.product-family-visual>img:first-child { filter:saturate(.86) contrast(1.02); transform:scale(1.005); }
.product-family-visual:hover>img:first-child { transform:scale(1.035); transition:transform .9s cubic-bezier(.2,.7,.2,1); }
.family-packshot { position:absolute; right:clamp(1.25rem,2.8vw,2.3rem); bottom:clamp(1.1rem,2vw,1.9rem); z-index:3; width:min(31%,190px); height:auto; object-fit:contain; filter:drop-shadow(0 22px 28px rgba(0,0,0,.34)); pointer-events:none; }
.family-mark { top:1.5rem; right:1.5rem; width:72px; opacity:.9; }
.family-label { right:auto; left:1.5rem; bottom:1.5rem; max-width:50%; font-size:clamp(2.2rem,3.6vw,3.6rem); }
.product-family-content { align-self:center; padding:2rem 0; }
.product-family-content h2 { font-size:clamp(3.1rem,5vw,5rem); letter-spacing:-.045em; }
.family-lead { max-width:760px; }
.quality-seals { gap:.8rem; margin:2.25rem 0 2.7rem; }
.quality-seals span { min-height:66px; padding:.5rem 1.15rem .5rem .55rem; border:1px solid rgba(1,80,87,.2); border-radius:.85rem; background:rgba(255,255,255,.76); box-shadow:0 10px 28px rgba(13,27,50,.05); }
.quality-seals b { min-width:48px; height:48px; border-radius:.7rem; background:var(--brand-blue); color:var(--lime); font-size:.72rem; }
.product-list-grid { gap:.8rem; padding:0; background:transparent; }
.product-list-grid article { position:relative; min-height:235px; overflow:hidden; border:1px solid var(--line); border-radius:.95rem; background:#fff; transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.product-list-grid article::after { position:absolute; right:-32px; bottom:-52px; width:120px; height:120px; border-radius:50%; background:var(--matcha); opacity:.18; content:""; }
.product-list-grid article:hover { z-index:1; transform:translateY(-3px); border-color:rgba(1,80,87,.26); box-shadow:0 18px 40px rgba(13,27,50,.08); }
.product-list-grid article>span { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border:1px solid rgba(1,80,87,.2); border-radius:50%; }
.product-list-grid h3 { margin:3.2rem 0 .8rem; font-size:1.5rem; }
.product-list-grid p { position:relative; z-index:1; }

@media (max-width:1080px) {
  .hero-v11 { min-height:auto; }
  .hero-v11 .hero-image-wrap { min-height:640px; }
  .feature-banner-copy { right:26%; }
  .product-family { grid-template-columns:1fr; }
  .product-family.family-reverse .product-family-visual,.product-family.family-reverse .product-family-content { order:initial; }
  .product-family-visual { min-height:70svh; }
}
@media (max-width:700px) {
  .hero-v11 .hero-image-wrap { min-height:56svh; }
  .hero-packshot { width:25%; right:.8rem; bottom:-5%; }
  .hero-v11 .hero-image-label { left:.8rem; bottom:.8rem; min-width:160px; }
  .feature-banner { min-height:68svh; }
  .feature-banner-copy { right:0; padding-right:34%; }
  .feature-packshot { width:25%; right:.85rem; bottom:1rem; }
  .feature-mark { width:56px; top:.9rem; right:.9rem; }
  .species-compact-grid { gap:.55rem; }
  .species-compact-grid a { min-height:205px; border-radius:.8rem; }
  .product-family { padding-top:4.4rem; padding-bottom:4.4rem; }
  .product-family-visual { min-height:60svh; }
  .family-packshot { width:27%; right:.9rem; bottom:.9rem; }
  .family-label { left:.9rem; bottom:.9rem; }
  .quality-seals span { flex:1 1 100%; }
  .product-list-grid { gap:.55rem; }
  .product-list-grid article { min-height:195px; }
}
\n\n/* BIOFORS V12 - official WhatsApp contact */\n.contact-whatsapp strong a { color:var(--teal); text-decoration:none; }\n.contact-whatsapp strong a:hover { text-decoration:underline; }\n.assistant-whatsapp-label { display:flex; align-items:center; gap:.45rem; margin-bottom:.8rem; color:#9ee6bd; }\n.assistant-whatsapp-label small { font-size:.68rem; font-weight:800; letter-spacing:.06em; }\n.wa-dot { display:grid; place-items:center; width:18px; height:18px; border-radius:50%; background:#25d366; color:#fff; font-size:.7rem; font-weight:900; }\n.assistant-toggle { background:linear-gradient(135deg,#075e54,#128c7e); box-shadow:0 18px 45px rgba(7,94,84,.28); }\n.assistant-toggle .wa-icon { background:#25d366; color:#fff; }\n.assistant-options .assistant-wide { grid-column:1/-1; }\n.assistant-options a { transition:border-color .18s ease,background .18s ease,color .18s ease,transform .18s ease; }\n.assistant-options a:hover { background:rgba(37,211,102,.08); border-color:#25d366; color:#a5f3bf; transform:translateY(-1px); }\n

/* BIOFORS V14 - packshots from final packaging artwork supplied by the brand */
.hero-packshot,.feature-packshot,.family-packshot{
  border-radius:3px 3px 12px 12px;
  box-shadow:0 20px 34px rgba(3,12,25,.22), inset 0 0 0 1px rgba(255,255,255,.12);
  filter:none;
  transform-origin:center bottom;
}
.hero-packshot{width:min(34%,255px);bottom:-6.5%;transform:rotate(1deg);}
.feature-packshot{width:min(29%,185px);border-radius:2px 2px 10px 10px;box-shadow:0 18px 30px rgba(0,0,0,.28);}
.family-packshot{width:min(34%,205px);border-radius:2px 2px 10px 10px;box-shadow:0 18px 30px rgba(0,0,0,.28);}
.feature-banner:hover .feature-packshot{transform:translateY(3%) rotate(-.4deg) scale(1.018);}
@media(max-width:700px){
  .hero-packshot{width:29%;right:.65rem;bottom:-4%;}
  .feature-packshot{width:29%;right:.7rem;}
  .family-packshot{width:30%;right:.7rem;bottom:.7rem;}
}

/* =========================================================
   BIOFORS V15 - premium seals + packaging mockups + Equine range
   ========================================================= */
.proof-badge{
  flex:0 0 56px;
  width:56px;
  height:56px;
  filter:drop-shadow(0 9px 18px rgba(0,0,0,.14));
}
.proof-card-renewable,.proof-card-bpm{position:relative;overflow:hidden;}
.proof-card-renewable::before,.proof-card-bpm::before{
  position:absolute;inset:0 auto 0 0;width:3px;content:"";
  background:linear-gradient(180deg,var(--lime),#6dc683);
}
.proof-card-bpm::before{background:linear-gradient(180deg,#fff,var(--matcha));}

/* Bag artwork presented as a standing commercial pack, without altering the supplied label artwork. */
.pack-mockup{
  height:auto!important;
  aspect-ratio:896/1500;
  overflow:visible!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  filter:none!important;
  isolation:isolate;
}
.pack-mockup::after{
  position:absolute;left:8%;right:4%;bottom:-4%;height:7%;z-index:-2;
  border-radius:50%;background:rgba(3,12,25,.42);filter:blur(9px);content:"";
}
.pack-mockup-face{
  position:absolute;inset:0;overflow:hidden;
  clip-path:polygon(7% 1%,93% 1%,98% 7%,99% 91%,92% 98%,8% 98%,1% 91%,2% 7%);
  border-radius:7% 7% 12% 12%/3% 3% 6% 6%;
  background:#202321;
  box-shadow:0 23px 34px rgba(3,12,25,.32),inset 0 0 0 1px rgba(255,255,255,.18);
  transform:perspective(760px) rotateY(-4deg) rotateX(.7deg);
  transform-origin:center bottom;
}
.pack-mockup-face::before{
  position:absolute;inset:0;z-index:2;pointer-events:none;content:"";
  background:linear-gradient(92deg,rgba(255,255,255,.14),transparent 16%,transparent 72%,rgba(0,0,0,.16)),linear-gradient(180deg,rgba(255,255,255,.08),transparent 10%,transparent 86%,rgba(0,0,0,.15));
  mix-blend-mode:soft-light;
}
.pack-mockup-face::after{
  position:absolute;left:4%;right:4%;top:1.3%;height:2px;z-index:3;content:"";
  background:rgba(255,255,255,.22);box-shadow:0 3px 0 rgba(0,0,0,.08);
}
.pack-mockup-face img{display:block;width:100%;height:100%;object-fit:cover;}
.pack-mockup-tag{
  position:absolute;right:-8%;bottom:4%;z-index:5;display:grid;place-items:center;
  min-width:48px;height:48px;padding:0 .55rem;border-radius:50%;
  background:var(--cream);color:var(--brand-blue);border:1px solid rgba(24,38,65,.12);
  box-shadow:0 10px 26px rgba(3,12,25,.22);font-size:.67rem;font-weight:900;letter-spacing:.04em;text-transform:uppercase;
}
.hero-packshot{width:min(38%,286px)!important;bottom:-5.8%!important;transform:rotate(1.4deg)!important;}
.feature-packshot{width:min(31%,205px)!important;bottom:1.45rem!important;transform:translateY(8%) rotate(.8deg)!important;}
.family-packshot{width:min(41%,252px)!important;right:clamp(1.1rem,2.5vw,2.15rem)!important;bottom:1.4rem!important;}
.feature-banner:hover .feature-packshot{transform:translateY(2%) rotate(-.25deg) scale(1.015)!important;}

/* New Biofors quality marks */
.quality-seals{gap:.85rem!important;}
.quality-seals>.quality-seal{
  display:flex!important;align-items:center!important;gap:.78rem!important;
  min-height:76px!important;padding:.55rem 1.15rem .55rem .62rem!important;
  border:1px solid rgba(24,38,65,.13)!important;border-radius:1rem!important;
  background:rgba(255,255,255,.82)!important;box-shadow:0 12px 30px rgba(13,27,50,.055)!important;
  color:var(--brand-blue)!important;font-size:inherit!important;font-weight:inherit!important;
}
.quality-seals>.quality-seal>img{flex:0 0 58px;width:58px;height:58px;filter:drop-shadow(0 6px 14px rgba(13,27,50,.08));}
.quality-seals>.quality-seal>span{
  display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:.12rem!important;
  min-height:0!important;padding:0!important;border:0!important;border-radius:0!important;background:none!important;box-shadow:none!important;
}
.quality-seals>.quality-seal>span>b{
  display:block!important;min-width:0!important;width:auto!important;height:auto!important;padding:0!important;border-radius:0!important;
  background:none!important;color:var(--brand-blue)!important;font-size:.86rem!important;font-weight:900!important;letter-spacing:.04em!important;
}
.quality-seals>.quality-seal>span>small{color:#637080;font-size:.72rem;font-weight:700;letter-spacing:.01em;}

.equine-line-chips{display:flex;gap:.42rem;margin-top:1.15rem;}
.equine-line-chips i{display:inline-flex;padding:.34rem .62rem;border:1px solid rgba(255,255,255,.26);border-radius:999px;color:#fff;font-style:normal;font-size:.68rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;backdrop-filter:blur(6px);}

.equine-family .product-family-content{max-width:980px;}
.equine-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.85rem;margin-top:.25rem;}
.equine-product-card{
  position:relative;display:flex;flex-direction:column;min-height:480px;padding:1.45rem;
  border:1px solid rgba(24,38,65,.12);background:#fff;overflow:hidden;
  box-shadow:0 16px 38px rgba(13,27,50,.055);
}
.equine-product-card::before{position:absolute;top:0;right:0;left:0;height:5px;background:#bcb273;content:"";}
.equine-product-card.is-sport{background:linear-gradient(155deg,#101a2c,#182641 75%);color:#fff;border-color:#182641;}
.equine-product-card.is-sport::before{background:linear-gradient(90deg,#c9bf78,var(--matcha));}
.equine-product-card.is-elite{background:linear-gradient(155deg,#fffaf1,#f2ead7);}
.equine-product-card.is-elite::before{background:linear-gradient(90deg,#182641,#bcb273);}
.equine-card-head{display:flex;justify-content:space-between;align-items:center;gap:.75rem;}
.equine-card-head>span{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:var(--brand-blue);color:#fff;font-size:.68rem;font-weight:900;}
.equine-card-head>b{color:var(--brand-teal);font-size:.68rem;letter-spacing:.05em;text-transform:uppercase;}
.equine-product-card.is-sport .equine-card-head>span{background:var(--matcha);color:var(--brand-blue);}
.equine-product-card.is-sport .equine-card-head>b{color:var(--matcha);}
.equine-kicker{margin:2.9rem 0 .5rem!important;color:var(--brand-teal)!important;font-size:.68rem!important;font-weight:900!important;letter-spacing:.12em!important;text-transform:uppercase;}
.equine-product-card.is-sport .equine-kicker{color:var(--matcha)!important;}
.equine-product-card h3{margin:0 0 1.1rem;font-size:clamp(1.55rem,2.1vw,2.15rem);letter-spacing:-.035em;}
.equine-product-card>p:not(.equine-kicker){margin:0;color:#657080;font-size:.88rem;line-height:1.7;}
.equine-product-card.is-sport>p:not(.equine-kicker){color:rgba(255,255,255,.7);}
.equine-card-spec{display:flex;align-items:flex-end;gap:.7rem;margin:1.8rem 0 1.2rem;padding-top:1.2rem;border-top:1px solid rgba(24,38,65,.12);}
.equine-product-card.is-sport .equine-card-spec{border-color:rgba(255,255,255,.15);}
.equine-card-spec strong{font-size:2rem;line-height:.9;letter-spacing:-.05em;}
.equine-card-spec span{color:#657080;font-size:.65rem;font-weight:700;line-height:1.35;text-transform:uppercase;}
.equine-product-card.is-sport .equine-card-spec span{color:rgba(255,255,255,.62);}
.equine-product-card ul{display:grid;gap:.48rem;margin:auto 0 0;padding:0;list-style:none;}
.equine-product-card li{position:relative;padding-left:1rem;color:#4e5b69;font-size:.75rem;font-weight:700;}
.equine-product-card li::before{position:absolute;left:0;color:var(--brand-teal);content:"✓";font-weight:900;}
.equine-product-card.is-sport li{color:rgba(255,255,255,.72);}
.equine-product-card.is-sport li::before{color:var(--matcha);}

@media(max-width:1180px){
  .equine-product-grid{grid-template-columns:1fr 1fr;}
  .equine-product-card:last-child{grid-column:1/-1;min-height:390px;}
}
@media(max-width:700px){
  .proof-badge{flex-basis:50px;width:50px;height:50px;}
  .hero-packshot{width:34%!important;right:.5rem!important;bottom:-2.7%!important;}
  .feature-packshot{width:34%!important;right:.7rem!important;bottom:1rem!important;}
  .family-packshot{width:37%!important;right:.7rem!important;bottom:.8rem!important;}
  .pack-mockup-tag{right:-5%;min-width:40px;height:40px;font-size:.58rem;}
  .quality-seals>.quality-seal{flex:1 1 100%!important;min-height:70px!important;}
  .quality-seals>.quality-seal>img{flex-basis:52px;width:52px;height:52px;}
  .equine-product-grid{grid-template-columns:1fr;}
  .equine-product-card,.equine-product-card:last-child{grid-column:auto;min-height:420px;}
}


/* V22 – ONLY bag scale/presence adjustments. No global theme changes. */
.hero-packshot{
  width:min(25%,190px)!important;
  right:clamp(.9rem,2.2vw,1.65rem)!important;
  bottom:-1.5%!important;
  transform:rotate(.35deg)!important;
}
.feature-packshot{
  width:min(19%,130px)!important;
  right:clamp(.75rem,1.8vw,1.25rem)!important;
  bottom:.85rem!important;
  transform:translateY(2%) rotate(.2deg)!important;
}
.family-packshot{
  width:min(22%,145px)!important;
  right:clamp(.8rem,1.8vw,1.35rem)!important;
  bottom:.8rem!important;
}
.hero-packshot,.feature-packshot,.family-packshot{
  filter:drop-shadow(0 14px 18px rgba(0,0,0,.20))!important;
}
.pack-mockup::after{
  left:18%!important;
  right:18%!important;
  bottom:-2%!important;
  height:6%!important;
  filter:blur(9px)!important;
  opacity:.65!important;
}
.pack-mockup-face{
  transform:perspective(820px) rotateY(-2deg) rotateX(.2deg)!important;
}
@media (max-width:900px){
  .hero-packshot{width:23%!important;right:.5rem!important;bottom:-.5%!important;}
  .feature-packshot{width:20%!important;right:.6rem!important;bottom:.7rem!important;}
  .family-packshot{width:22%!important;right:.6rem!important;bottom:.6rem!important;}
}
@media (max-width:640px){
  .hero-packshot{width:27%!important;}
  .feature-packshot{width:23%!important;}
  .family-packshot{width:25%!important;}
}

/* V25 - reemplazo de imagen principal de equinos y ajuste leve del pack */
.hero-packshot{width:min(28%, 215px)!important;}
@media (max-width: 900px){.hero-packshot{width:min(30%, 190px)!important;}}


/* =========================================================
   BIOFORS V26 — Mobile-first refinement from real feedback
   Premium lines first, visual species cards, WhatsApp CTA,
   tighter mobile product/contact rhythm. Desktop preserved.
   ========================================================= */
.button-whatsapp{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:.65rem!important;}
.wa-button-icon{display:grid;place-items:center;width:1.55rem;height:1.55rem;border-radius:50%;background:#25D366;color:#fff;font-size:.86rem;box-shadow:0 4px 12px rgba(37,211,102,.24);}

/* Visual category cards */
.species-compact-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:.8rem!important;background:transparent!important;padding:0!important;}
.species-compact-grid .species-visual-card{position:relative;display:block;min-height:330px!important;padding:0!important;overflow:hidden;border:0!important;border-radius:1.15rem!important;background:#182641!important;box-shadow:0 16px 36px rgba(13,27,50,.09);}
.species-visual-card .species-photo{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;opacity:1!important;transform:scale(1.01);transition:transform .55s ease;}
.species-visual-card:hover .species-photo{transform:scale(1.045);}
.species-visual-card .species-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,20,38,.02) 22%,rgba(8,20,38,.86) 100%);z-index:1;}
.species-visual-card .species-mark{position:absolute!important;top:1rem!important;left:1rem!important;z-index:2!important;width:58px!important;height:auto!important;filter:brightness(0) invert(1);opacity:.95!important;}
.species-premium-badge{position:absolute;top:1rem;right:1rem;z-index:2;padding:.38rem .58rem;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(9,22,42,.42);backdrop-filter:blur(8px);color:#fff;font-size:.58rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.species-copy{position:absolute!important;right:1.1rem;bottom:1.1rem;left:1.1rem;z-index:2!important;display:grid;gap:.25rem;margin:0!important;color:#fff;}
.species-copy strong{font-family:"Biofors Display",sans-serif;font-size:1.65rem;font-weight:600;line-height:1.05;}
.species-copy b{margin:0!important;color:#dff334!important;font-size:.68rem!important;letter-spacing:.11em!important;text-transform:uppercase;}
.species-visual-card.is-premium{box-shadow:0 18px 42px rgba(13,27,50,.14);}

/* Premium product order emphasis */
.premium-label{display:inline-flex;margin:0 0 .9rem;padding:.42rem .66rem;border-radius:999px;background:#182641;color:#dff334;font-size:.62rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase;}
.is-premium-family .product-family-visual{outline:1px solid rgba(223,243,52,.28);outline-offset:-1px;}

@media(max-width:700px){
  .site-header{position:sticky;top:0;z-index:60;}
  .section-pad{padding:3.7rem 1.05rem!important;}
  .hero-copy{padding:3.8rem 1.05rem 3.4rem!important;}
  .hero-copy h1{font-size:clamp(2.7rem,13.2vw,4rem)!important;line-height:.96!important;}
  .hero-intro{font-size:.96rem!important;line-height:1.7!important;}
  .hero-actions{gap:.65rem!important;margin-top:1.3rem!important;}
  .hero-actions .button{min-height:54px!important;font-size:.92rem!important;}
  .hero-proof{margin-top:1.8rem!important;}
  .proof-card{min-height:106px!important;}
  .hero-v11 .hero-image-wrap{min-height:46svh!important;}
  .hero-packshot{width:21%!important;right:.55rem!important;bottom:.45rem!important;}
  .hero-v11 .hero-image-label{min-width:145px!important;padding:.72rem .82rem!important;}

  .section-heading{margin-bottom:1.8rem!important;}
  .section-heading h2{font-size:clamp(2.45rem,11vw,3.65rem)!important;line-height:1.01!important;}
  .section-heading>p{font-size:.94rem!important;line-height:1.65!important;}

  .species-compact-grid{grid-template-columns:1fr 1fr!important;gap:.62rem!important;}
  .species-compact-grid .species-visual-card{min-height:205px!important;border-radius:.9rem!important;}
  .species-visual-card .species-mark{width:42px!important;top:.72rem!important;left:.72rem!important;}
  .species-premium-badge{top:.72rem;right:.72rem;padding:.3rem .45rem;font-size:.48rem;}
  .species-copy{right:.8rem;bottom:.8rem;left:.8rem;}
  .species-copy strong{font-size:1.25rem;}
  .species-copy b{font-size:.58rem!important;}

  .product-family{padding:2.8rem 1rem!important;gap:1.8rem!important;}
  .product-family-visual{min-height:46svh!important;border-radius:1rem!important;}
  .family-packshot{width:20%!important;right:.65rem!important;bottom:.65rem!important;}
  .family-label{font-size:1.85rem!important;left:.9rem!important;bottom:.9rem!important;}
  .product-family-content{padding:.35rem 0 0!important;}
  .product-family-content h2{font-size:clamp(2.45rem,11.5vw,3.7rem)!important;line-height:1.02!important;margin-bottom:1rem!important;}
  .family-lead{font-size:.95rem!important;line-height:1.72!important;}
  .quality-seals{margin:1.35rem 0!important;}
  .product-list-grid{grid-template-columns:1fr!important;}
  .product-list-grid article{min-height:auto!important;padding:1.15rem!important;}
  .product-list-grid h3{margin:1.5rem 0 .55rem!important;font-size:1.3rem!important;}
  .product-list-grid p{font-size:.9rem!important;line-height:1.55!important;}
  .equine-product-card,.equine-product-card:last-child{min-height:auto!important;padding:1.2rem!important;}
  .equine-kicker{margin:1.7rem 0 .42rem!important;}

  .contact-layout{gap:2rem!important;}
  .contact-list{margin-top:1.8rem!important;}
  .contact-form{padding:1.25rem!important;border-radius:1rem!important;}
  .form-grid{grid-template-columns:1fr!important;gap:.85rem!important;}
  .field input,.field textarea{padding:.62rem 0!important;font-size:1rem!important;}
  .field textarea{min-height:110px!important;}
  .contact-form .button{width:100%!important;margin-top:1.15rem!important;}
  .contact-item strong{font-size:.95rem!important;}

  .assistant-toggle{min-width:54px!important;width:54px!important;height:54px!important;padding:0!important;border-radius:50%!important;}
  .assistant-toggle span{display:none!important;}
}
