:root {
    --ink: #2b211c;
    --body: #66584f;
    --muted: #8a7a6e;
    --line: #eadfd4;
    --soft: #fff8ef;
    --soft-blue: #f8efe7;
    --brand: #a6531c;
    --brand-dark: #6f2d12;
    --teal: #9c3a18;
    --gold: #e4a01f;
    --white: #ffffff;
    --shadow: 0 14px 32px rgba(61, 36, 22, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background:
        radial-gradient(circle at 8% 8%, rgba(228, 160, 31, .16), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(166, 83, 28, .10), transparent 30%),
        linear-gradient(180deg, #fffaf2 0%, #ffffff 42%, #fff8ef 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: var(--brand-dark);
    text-decoration: none;
}

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

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px clamp(18px, 5vw, 74px);
    color: rgba(255, 255, 255, .86);
    background: #2b211c;
    font-size: 13px;
}

.topbar a,
.utility-nav a {
    color: var(--white);
    font-weight: 700;
}

.utility-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    padding: 8px clamp(18px, 5vw, 74px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(234, 223, 212, .9);
    box-shadow: 0 10px 24px rgba(61, 36, 22, .05);
    transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(166, 83, 28, .24);
    background:
        linear-gradient(90deg, rgba(111, 45, 18, .10), rgba(228, 160, 31, .16) 38%, rgba(255, 248, 239, .96) 72%),
        rgba(255, 255, 255, .98);
    box-shadow: 0 16px 36px rgba(61, 36, 22, .16);
}

.site-header.is-scrolled::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-dark), var(--gold), transparent);
}

.brand img {
    width: 270px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.header-slogan {
    display: inline-grid;
    align-items: center;
    gap: 1px;
    margin-right: auto;
    max-width: 260px;
    padding: 7px 14px 7px 16px;
    border-left: 4px solid var(--gold);
    background:
        linear-gradient(135deg, rgba(228, 160, 31, .18), transparent 48%),
        linear-gradient(90deg, var(--brand-dark), var(--brand));
    color: var(--white);
    line-height: 1.08;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(61, 36, 22, .12);
}

.header-slogan span,
.header-slogan strong {
    display: block;
    font-size: 10px;
    letter-spacing: .2px;
}

.header-slogan span {
    color: rgba(255, 255, 255, .92);
    font-weight: 900;
}

.header-slogan strong {
    color: #ffd98a;
    font-weight: 900;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.nav a,
.mega-trigger {
    color: #3b2b22;
    border: 0;
    background: transparent;
    box-shadow: none;
    min-height: 0;
    padding: 0;
    font-size: 13px;
    font-family: inherit;
    font-weight: 800;
    letter-spacing: .15px;
}

.nav a:hover,
.mega-trigger:hover,
.has-mega.is-open .mega-trigger {
    color: var(--brand-dark);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

.nav-item {
    position: relative;
}

.nav-item > a,
.mega-trigger {
    cursor: pointer;
}

.nav-cta {
    border: 1px solid var(--brand);
    border-radius: 4px;
    padding: 6px 11px;
    background: linear-gradient(180deg, rgba(228, 160, 31, .12), rgba(166, 83, 28, .08));
}

.menu-toggle {
    display: none;
    gap: 8px;
    align-items: center;
    width: auto;
    height: 38px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    color: var(--ink);
}

.menu-toggle b {
    font-size: 13px;
    line-height: 1;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

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

.menu-toggle[aria-expanded="true"] {
    border-color: var(--brand-dark);
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    color: var(--white);
}

.menu-toggle[aria-expanded="true"] b {
    color: var(--white);
}

.menu-toggle[aria-expanded="true"] span {
    background: var(--gold);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

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

.mega-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 30;
    width: min(720px, calc(100vw - 36px));
    display: none;
    grid-template-columns: .9fr 1fr;
    gap: 28px;
    padding: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(61, 36, 22, .16);
}

.mega-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.has-mega.is-open .mega-panel {
    display: grid;
}

.mega-label {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.mega-panel h2 {
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-size: 28px;
    line-height: 1.1;
}

.mega-links {
    display: grid;
    border: 1px solid var(--line);
}

.mega-links a {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.mega-links a:last-child {
    border-bottom: 0;
}

.mega-links a:hover {
    background: var(--soft);
}

.hero,
.announcement,
.home-hero,
.science-intro,
.platform-grid,
.pipeline-band,
.technology-band,
.news-section,
.dig-deeper,
.about-band,
.image-story,
.capability-row,
.quality-band,
.animal-health-band,
.literature-cta,
.section,
.content-block,
.product-detail,
.filters,
.product-grid,
.downloads,
.reach-band,
.value-strip,
.page-title,
.contact-grid,
.admin-main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.announcement {
    display: flex;
    justify-content: center;
    gap: 26px;
    padding: 13px 18px;
    width: 100%;
    background: linear-gradient(90deg, var(--brand-dark), var(--brand));
}

.announcement a {
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.home-hero {
    position: relative;
    width: 100%;
    min-height: 660px;
    display: grid;
    align-items: end;
    overflow: hidden;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(43, 33, 28, .88) 0%, rgba(43, 33, 28, .58) 46%, rgba(43, 33, 28, .18) 100%);
}

.home-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 90px 0;
    color: var(--white);
}

.home-hero-content h1 {
    max-width: 780px;
    margin: 0 0 26px;
    color: var(--white);
    font-size: clamp(52px, 7vw, 96px);
    line-height: .96;
    text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .34);
}

.hero-slogan {
    max-width: 620px;
    margin: -8px 0 28px;
    color: #ffd98a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.6vw, 34px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.16;
}

.home-hero-content .eyebrow {
    color: #ffd98a;
}

.science-intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 54px;
    padding: 86px 0 70px;
}

.science-intro h2,
.pipeline-band h2,
.technology-band h2,
.dig-deeper h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
}

.science-intro h2::after,
.pipeline-band h2::after,
.technology-band h2::after,
.dig-deeper h2::after,
.section-heading h2::after,
.content-block h2::after,
.about-band h2::after,
.reach-band h2::after,
.pv-slider-header h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 18px;
    background: linear-gradient(90deg, var(--gold), var(--brand));
}

.science-intro p,
.pipeline-band p,
.technology-band p,
.dig-deeper p {
    color: var(--body);
    font-size: 18px;
}

.video-feature {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 78px;
    display: grid;
    grid-template-columns: minmax(0, .74fr) minmax(360px, 1fr);
    gap: 42px;
    align-items: center;
    padding: 38px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.video-feature h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.video-feature p {
    color: var(--body);
}

.video-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    width: 100%;
    display: grid;
    align-items: end;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: var(--ink);
    color: var(--white);
    text-align: left;
}

.video-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: transform .35s ease, opacity .35s ease;
}

.video-card:hover img {
    transform: scale(1.04);
    opacity: .86;
}

.video-frame {
    overflow: hidden;
    border: 1px solid rgba(124, 70, 34, .16);
    border-radius: 10px;
    background: var(--ink);
    box-shadow: 0 22px 48px rgba(67, 36, 15, .14);
}

.video-frame iframe,
.video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.video-frame video {
    height: auto;
    background: var(--ink);
}

.video-frame a {
    display: block;
    padding: 13px 16px;
    background: linear-gradient(135deg, #6f2d12, #bd6728);
    color: #fff6df;
    font-weight: 800;
}

.video-card strong {
    position: relative;
    z-index: 1;
    padding: 28px;
    font-size: 24px;
}

.play-button {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 2;
    width: 68px;
    height: 68px;
    border: 2px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: rgba(43, 33, 28, .58);
}

.play-button::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 21px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--white);
}

.visual-system {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
    gap: 22px;
    padding-bottom: 82px;
}

.visual-main,
.visual-stack article {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    background: var(--ink);
}

.visual-main img,
.visual-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
    transition: transform .35s ease, opacity .35s ease;
}

.visual-main:hover img,
.visual-stack article:hover img {
    transform: scale(1.04);
    opacity: .9;
}

.visual-main > div,
.visual-stack h3 {
    position: absolute;
    z-index: 1;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: var(--white);
}

.visual-main::after,
.visual-stack article::after,
.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(43, 33, 28, .82));
}

.visual-main h2 {
    max-width: 620px;
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
}

.visual-main .eyebrow {
    color: #ffd98a;
}

.visual-stack {
    display: grid;
    gap: 22px;
}

.visual-stack article {
    min-height: 260px;
}

.visual-stack h3 {
    margin: 0;
    font-size: 28px;
}

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

.platform-grid article {
    min-height: 270px;
    padding: 34px;
    border-right: 1px solid var(--line);
    background: var(--white);
}

.platform-grid article:hover {
    background: var(--soft);
}

.platform-grid article:last-child {
    border-right: 0;
}

.platform-grid h3 {
    margin: 0 0 16px;
    color: #6f2d12;
    font-size: 26px;
    line-height: 1.15;
}

.platform-grid p {
    color: var(--body);
}

.pipeline-band {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 86px 0;
}

.pipeline-list {
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
}

.pipeline-list a {
    display: grid;
    grid-template-columns: 82px 1fr;
    column-gap: 18px;
    align-items: center;
    min-height: 110px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.pipeline-list a:last-child {
    border-bottom: 0;
}

.pipeline-list img {
    grid-row: span 2;
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: var(--soft);
}

.pipeline-list span {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.pipeline-list strong {
    color: #3b2b22;
    font-size: 24px;
}

.technology-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    gap: 0;
    width: 100%;
    background: var(--soft);
}

.technology-band img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.technology-band > div {
    display: grid;
    align-content: center;
    padding: clamp(42px, 7vw, 86px);
}

.news-section {
    padding: 86px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-grid article {
    border: 1px solid var(--line);
    background: var(--white);
}

.news-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-literature-collage {
    display: grid;
    grid-template-columns: repeat(6, minmax(48px, 1fr));
    align-items: end;
    gap: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: 18px 12px 14px;
    background:
        radial-gradient(circle at 20% 12%, rgba(255, 211, 84, .42), transparent 28%),
        linear-gradient(135deg, #fff9ec 0%, #fff 48%, #f7efe7 100%);
}

.news-literature-collage img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid rgba(124, 70, 34, .16);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 22px rgba(54, 28, 12, .16);
    transform: scale(1.16);
}

.news-literature-collage img:nth-child(2),
.news-literature-collage img:nth-child(5) {
    transform: translateY(10px) scale(1.16);
}

.news-literature-collage img:nth-child(3) {
    transform: translateY(-8px) scale(1.16);
}

.news-literature-collage img:nth-child(6) {
    transform: translateY(-2px) scale(1.16);
}

.company-profile-slider {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft);
}

.company-profile-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .7s ease, transform 3.8s ease;
}

.company-profile-slider img.is-active {
    opacity: 1;
    transform: scale(1);
}

.company-profile-dots {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 1;
    display: flex;
    gap: 6px;
}

.company-profile-dots button {
    width: 8px;
    height: 8px;
    min-height: 0;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 0 0 1px rgba(78, 38, 16, .2);
}

.company-profile-dots button.is-active {
    width: 22px;
    background: #ffd43b;
}

.company-profile-slider--hero {
    min-height: 420px;
    aspect-ratio: 16 / 11;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.company-profile-slider--hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, rgba(45, 23, 10, .06), transparent 46%),
        linear-gradient(180deg, transparent 52%, rgba(49, 25, 12, .48));
    pointer-events: none;
}

.company-profile-slider--hero .company-profile-dots,
.company-profile-slider--hero .company-profile-label,
.company-profile-slider--hero .company-profile-arrow {
    z-index: 2;
}

.company-profile-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    padding: 10px 13px;
    border: 1px solid rgba(255, 210, 118, .54);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(96, 45, 20, .88), rgba(196, 103, 28, .82));
    color: #fff5dd;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(45, 24, 12, .22);
}

.company-profile-slider--hero .company-profile-dots {
    left: auto;
    right: 18px;
    bottom: 22px;
}

.company-profile-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 50%;
    background: rgba(58, 31, 16, .58);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.company-profile-arrow:hover {
    background: rgba(196, 103, 28, .86);
}

.company-profile-arrow--prev {
    left: 16px;
}

.company-profile-arrow--next {
    right: 16px;
}

.news-grid time,
.news-grid h3,
.news-grid a {
    display: block;
    margin-left: 22px;
    margin-right: 22px;
}

.news-grid time {
    margin-top: 22px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-grid h3 {
    min-height: 112px;
    color: #3b2b22;
    font-size: 22px;
    line-height: 1.25;
}

.news-grid a {
    margin-bottom: 24px;
    font-weight: 800;
}

.dig-deeper {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 64px 0 88px;
    border-top: 1px solid var(--line);
}

.dig-deeper > div:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
}

.dig-deeper a {
    padding: 24px;
    border-right: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
}

.dig-deeper a:last-child {
    border-right: 0;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
    gap: 52px;
    align-items: center;
    min-height: 560px;
    padding: 64px 0 42px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 560px;
    z-index: -2;
    background:
        radial-gradient(circle at 86% 18%, rgba(244, 182, 63, .18), transparent 26%),
        linear-gradient(180deg, #fff8ef 0%, #ffffff 78%);
}

.hero h1,
.page-title h1 {
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.04;
    letter-spacing: 0;
}

.hero p,
.page-title p {
    max-width: 690px;
    color: var(--body);
    font-size: 18px;
}

.hero-media {
    position: relative;
    margin: 0;
    transition: transform .18s ease-out;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 10% -4% -6% 14%;
    z-index: -1;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(166, 83, 28, .16), rgba(244, 182, 63, .20));
}

.hero-media img {
    width: 100%;
    min-height: 430px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
    margin-top: 30px;
}

.hero-stats div {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(61, 36, 22, .06);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--brand-dark);
    font-size: 22px;
    line-height: 1.1;
}

.hero-stats span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.eyebrow,
.tag {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button,
button,
input[type="submit"] {
    border: 0;
    border-radius: 4px;
    background: linear-gradient(180deg, #bd6728, var(--brand));
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    font-weight: 800;
    box-shadow: none;
}

.button.secondary {
    background: var(--ink);
    box-shadow: none;
}

.text-link {
    font-weight: 800;
}

.section,
.content-block,
.page-title {
    padding: 64px 0;
}

.image-story {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(220px, .7fr));
    gap: 20px;
    padding: 18px 0 58px;
}

.capability-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0 0 54px;
}

.capability-row article {
    border: 1px solid var(--line);
    border-left-width: 0;
    padding: 28px;
    background: var(--white);
}

.capability-row article:first-child {
    border-left-width: 1px;
    border-radius: 10px 0 0 10px;
}

.capability-row article:last-child {
    border-radius: 0 10px 10px 0;
}

.capability-row span {
    display: block;
    margin-bottom: 22px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
}

.capability-row h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
}

.capability-row p {
    margin: 0;
    color: var(--body);
}

.image-story article {
    overflow: hidden;
    min-height: 360px;
    position: relative;
    border-radius: 26px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.image-story img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    opacity: .82;
    transition: transform .35s ease;
}

.image-story article:hover img {
    transform: scale(1.04);
}

.image-story article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(43, 33, 28, .84));
}

.image-story article > div,
.image-story article > h3,
.image-story article > p {
    position: absolute;
    left: 24px;
    right: 24px;
    z-index: 1;
}

.image-story article > div {
    bottom: 24px;
}

.image-story h2,
.image-story h3,
.image-story p {
    color: var(--white);
}

.image-story h2 {
    max-width: 580px;
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.image-story h3 {
    bottom: 92px;
    margin: 0;
    font-size: 24px;
}

.image-story article > p {
    bottom: 24px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.section-heading h2,
.content-block h2,
.about-band h2,
.reach-band h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.section-intro {
    max-width: 720px;
    margin: 0 0 28px;
    color: var(--body);
}

.about-band {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    padding: 52px 0;
}

.about-band > img,
.split-title img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-band > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-band p,
.content-block p,
.reach-band p {
    color: var(--body);
}

.quality-band {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
    gap: 42px;
    align-items: center;
    padding: 52px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(166, 83, 28, .12), rgba(228, 160, 31, .10)),
        var(--soft);
    box-shadow: none;
}

.quality-band.compact {
    margin-top: 18px;
    margin-bottom: 44px;
}

.quality-band h2,
.animal-health-band h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.quality-band p,
.animal-health-band p {
    color: var(--body);
}

.quality-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.quality-points span {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 8px 13px;
    color: var(--ink);
    background: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.quality-gallery {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 16px;
    align-items: end;
}

.quality-gallery img {
    width: 100%;
    min-height: 340px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.quality-gallery img:first-child {
    min-height: 430px;
}

.quality-gallery .company-profile-slider {
    min-height: 430px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.quality-gallery .company-profile-slider img {
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
}

.product-section {
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(61, 36, 22, .08);
}

.card.is-active,
.download.is-active,
.segment-list article.is-active {
    border-color: rgba(166, 83, 28, .42);
}

.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 22px;
    background: var(--soft);
}

.product-image-placeholder {
    display: grid;
    place-items: center;
    gap: 14px;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(138, 75, 34, .2);
    border-radius: 10px;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 210, 106, .28), transparent 34%),
        linear-gradient(145deg, rgba(255, 247, 230, .92), rgba(219, 179, 122, .18));
    box-shadow: inset 0 2px 7px rgba(255, 255, 255, .86), inset 0 -18px 40px rgba(91, 43, 19, .08);
    text-align: center;
}

.product-image-placeholder img,
.card .product-image-placeholder img,
.product-detail .product-image-placeholder img {
    width: min(44%, 150px);
    height: auto;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .72),
        0 16px 28px rgba(80, 38, 18, .18);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .58)) saturate(1.08);
    opacity: .92;
}

.product-image-placeholder span {
    max-width: 18ch;
    color: #ffd43b;
    text-shadow:
        0 1px 0 rgba(92, 43, 16, .85),
        0 0 16px rgba(255, 186, 24, .42);
    font-size: 14px;
    font-weight: 950;
    line-height: 1.25;
    text-transform: uppercase;
}

.product-image-placeholder--pipeline {
    grid-row: span 2;
    width: 72px;
    height: 72px;
    min-height: 72px;
    aspect-ratio: 1 / 1;
    gap: 3px;
    padding: 8px;
    border-radius: 8px;
}

.product-image-placeholder--pipeline img {
    width: 38px;
}

.product-image-placeholder--pipeline span {
    font-size: 7px;
    line-height: 1.05;
}

.card-body {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 20px;
}

.card h2,
.card h3 {
    margin: 4px 0 8px;
    color: #6f2d12;
    font-size: 22px;
    line-height: 1.2;
}

.card p {
    color: var(--body);
}

.composition-preview {
    margin: 12px 0 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(194, 105, 19, .2);
    border-left: 4px solid #c35a16;
    border-radius: 8px;
    padding: 12px 13px;
    background:
        linear-gradient(135deg, rgba(255, 216, 82, .32), rgba(255, 255, 255, .78) 42%, rgba(199, 93, 24, .1)),
        rgba(255, 251, 241, .92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.composition-preview span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    border-radius: 999px;
    padding: 4px 9px;
    color: #5f240c;
    background: linear-gradient(90deg, #ffd43b, #ff9f1c);
    box-shadow: 0 5px 14px rgba(194, 105, 19, .16);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.composition-preview span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #7a2e10;
    box-shadow: 0 0 0 3px rgba(122, 46, 16, .12);
}

.composition-preview p {
    display: -webkit-box;
    min-height: 94px;
    margin: 0;
    overflow: hidden;
    color: #6a3215;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.pack-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin: 0 0 14px;
    color: #6a3215;
    font-size: 13px;
    font-weight: 750;
}

.pack-preview span {
    border-radius: 999px;
    padding: 3px 8px;
    color: #fff8e3;
    background: #7a3213;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-card .text-link {
    margin-top: auto;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 36px 0 68px;
}

.animal-health-band {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 32px 0 38px;
}

.animal-health-band > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.segment-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.segment-list article {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--white);
    box-shadow: none;
}

.segment-list strong {
    color: var(--brand-dark);
}

.segment-list span {
    color: var(--body);
}

.value-strip article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: var(--white);
    box-shadow: none;
}

.value-strip img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 12px;
}

.value-strip h3 {
    margin: 0 0 8px;
    color: #6f2d12;
}

.value-strip p {
    margin: 0;
    color: var(--body);
}

.reach-band {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(280px, 1fr);
    gap: 38px;
    align-items: center;
    padding: 58px 0 80px;
}

.literature-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 22px;
    margin-bottom: 48px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(166, 83, 28, .22), transparent 42%),
        #2b211c;
    color: var(--white);
}

.literature-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.literature-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.literature-cta .eyebrow {
    color: #ffd98a;
}

.reach-band img {
    width: 100%;
    object-fit: contain;
}

.page-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr);
    gap: 32px;
    align-items: center;
    border-bottom: 0;
    background:
        radial-gradient(circle at 82% 14%, rgba(255, 205, 76, .18), transparent 28%),
        linear-gradient(180deg, rgba(255, 247, 230, .72), rgba(255, 255, 255, 0));
}

.page-title-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform .18s ease-out;
}

.product-title-collage {
    position: relative;
    min-height: 420px;
    overflow: visible;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 205, 76, .22), transparent 42%),
        radial-gradient(circle at 72% 70%, rgba(152, 76, 28, .12), transparent 30%);
}

.product-title-collage::after {
    content: "";
    position: absolute;
    right: 4%;
    bottom: 2%;
    width: 78%;
    height: 24%;
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(77, 39, 18, .18), transparent 68%);
    pointer-events: none;
}

.collage-photo {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 18px 38px rgba(67, 34, 15, .14);
}

.collage-photo--poultry {
    top: 2%;
    left: 0;
    width: 61%;
    height: 54%;
    border-radius: 18px 18px 58px 18px;
}

.collage-photo--livestock {
    right: 0;
    top: 19%;
    width: 56%;
    height: 55%;
    border: 6px solid rgba(255, 255, 255, .88);
    border-radius: 60px 18px 18px 18px;
}

.collage-products {
    position: absolute;
    left: 4%;
    right: 2%;
    bottom: -4px;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.35fr 1fr;
    gap: 10px;
    align-items: end;
}

.collage-products img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border: 1px solid rgba(138, 75, 34, .18);
    border-radius: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 28px rgba(54, 28, 12, .16);
}

.collage-products img:nth-child(n+5) {
    display: none;
}

.collage-products img:nth-child(1) {
    transform: translateY(-10px) scale(1.08);
}

.collage-products img:nth-child(2) {
    transform: translateY(-34px) scale(1.12);
}

.collage-products img:nth-child(3) {
    transform: translateY(-4px) scale(1.22);
}

.collage-products img:nth-child(4) {
    transform: translateY(-26px) scale(1.08);
}

.literature-cover-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    min-height: 330px;
    padding: 14px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 211, 84, .24), transparent 34%),
        linear-gradient(135deg, rgba(255, 249, 236, .92), rgba(255, 255, 255, .68));
    box-shadow: var(--shadow);
}

.literature-cover-collage img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid rgba(124, 70, 34, .18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 22px rgba(54, 28, 12, .12);
}

.literature-cover-collage img:nth-child(2),
.literature-cover-collage img:nth-child(5) {
    transform: translateY(18px);
}

.literature-cover-collage img:nth-child(3) {
    transform: translateY(-8px);
}

.split-title {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(300px, .8fr);
    gap: 40px;
    align-items: center;
}

.company-profile-combo {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 197, 80, .26), rgba(96, 45, 20, .14));
    box-shadow: var(--shadow);
}

.company-profile-combo img {
    position: absolute;
    object-fit: cover;
}

.company-profile-combo img:first-child {
    inset: 0;
    width: 100%;
    height: 100%;
    filter: saturate(1.06) contrast(1.02);
}

.company-profile-combo img:last-child {
    right: 18px;
    bottom: 18px;
    width: 50%;
    height: 58%;
    border: 8px solid rgba(255, 255, 255, .92);
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(45, 24, 12, .28);
}

.company-profile-combo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, rgba(45, 23, 10, .1), transparent 45%),
        linear-gradient(180deg, transparent 48%, rgba(49, 25, 12, .5));
    pointer-events: none;
}

.company-profile-combo img:last-child,
.company-profile-combo span {
    z-index: 2;
}

.company-profile-combo span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    max-width: calc(50% - 28px);
    padding: 10px 13px;
    border: 1px solid rgba(255, 210, 118, .54);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(96, 45, 20, .88), rgba(196, 103, 28, .82));
    color: #fff5dd;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(45, 24, 12, .22);
}

.split-title img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.company-profile-copy p {
    font-size: 1.01rem;
    line-height: 1.85;
}

.vision-mission {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 76px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.vision-mission article {
    border: 1px solid rgba(124, 70, 34, .16);
    border-radius: 12px;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(255, 213, 112, .22), rgba(255, 255, 255, .86) 44%),
        var(--white);
    box-shadow: 0 16px 34px rgba(67, 36, 15, .08);
}

.vision-mission h2 {
    margin: 0 0 14px;
    color: var(--brand-dark);
    font-size: clamp(26px, 3vw, 38px);
}

.vision-mission p:last-child {
    margin-bottom: 0;
    line-height: 1.75;
}

.distribution-network {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 72px;
    display: grid;
    grid-template-columns: minmax(280px, .42fr) minmax(0, .9fr);
    gap: 34px;
    align-items: center;
}

.distribution-network > div {
    padding: 30px;
    border: 1px solid rgba(124, 70, 34, .16);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 213, 112, .24), rgba(255, 255, 255, .88) 52%),
        var(--white);
    box-shadow: 0 16px 34px rgba(67, 36, 15, .08);
}

.distribution-network h2 {
    margin: 0 0 14px;
    color: var(--brand-dark);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.12;
}

.distribution-network p:last-child {
    margin-bottom: 0;
    color: var(--body);
    line-height: 1.75;
}

.distribution-network img {
    width: 100%;
    border: 1px solid rgba(124, 70, 34, .14);
    border-radius: 12px;
    background: #fff7eb;
    box-shadow: 0 22px 48px rgba(67, 36, 15, .13);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 28px 0;
}

.filters a {
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    padding: 8px 15px;
    font-weight: 700;
}

.filters a.active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.catalogue-tools {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 8px;
    display: grid;
    gap: 8px;
}

.catalogue-tools label {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.catalogue-tools input {
    width: min(560px, 100%);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
}

.catalogue-tools input:focus {
    border-color: var(--brand);
    outline: 3px solid rgba(166, 83, 28, .12);
}

.product-card {
    display: flex;
    flex-direction: column;
    transition: opacity .18s ease, transform .18s ease, box-shadow .2s ease;
}

.product-card.is-filtered-out {
    display: none;
}

.no-results {
    grid-column: 1 / -1;
    margin: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--body);
    background: var(--soft);
}

.listing {
    padding: 12px 0 70px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 44px;
    align-items: center;
    padding: 70px 0;
}

.product-detail h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.03;
}

.product-detail img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 26px;
    background: var(--soft);
    box-shadow: var(--shadow);
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.product-gallery-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 26px;
    background: var(--soft);
    box-shadow: var(--shadow);
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
}

.product-gallery-thumbs button {
    min-height: 0;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: none;
}

.product-gallery-thumbs button.is-active {
    border-color: var(--brand);
    outline: 3px solid rgba(166, 83, 28, .12);
}

.product-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-tabs {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 76px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}

.tab-buttons button {
    min-height: 44px;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--soft);
    box-shadow: none;
}

.tab-buttons button.is-active {
    color: var(--white);
    background: linear-gradient(180deg, #bd6728, var(--brand));
}

.tab-panel {
    display: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 28px;
    background: var(--white);
}

.tab-panel.is-active {
    display: block;
}

.tab-panel h2 {
    margin-top: 0;
    color: var(--brand-dark);
}

.specs {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.specs div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
}

.specs dt {
    color: var(--muted);
    font-weight: 800;
}

.specs dd {
    margin: 0;
}

.rich-text {
    max-width: 850px;
    color: var(--body);
}

.downloads {
    display: grid;
    gap: 14px;
    padding: 36px 0 72px;
}

.download {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    padding: 18px 20px;
    background: var(--white);
}

.download span {
    font-weight: 800;
}

.download small {
    color: var(--muted);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
    gap: 42px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    padding: 48px 0 32px;
}

.contact-grid article,
.contact-panel {
    border-radius: 8px;
    border: 1px solid var(--line);
    padding: 26px;
    background: var(--soft);
}

.contact-grid a {
    color: var(--brand-dark);
    font-weight: 800;
}

.contact-map-section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 84px;
    display: grid;
    grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.contact-map-section > div {
    border: 1px solid rgba(124, 70, 34, .16);
    border-radius: 10px;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(255, 213, 112, .24), rgba(255, 255, 255, .88) 46%),
        var(--white);
    box-shadow: 0 16px 34px rgba(67, 36, 15, .08);
}

.contact-map-section h2 {
    margin: 0 0 14px;
    color: var(--brand-dark);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-map-section iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: var(--soft);
}

.contact-form-section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 44px;
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-form-section > div,
.contact-form {
    border: 1px solid rgba(124, 70, 34, .16);
    border-radius: 10px;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 16px 34px rgba(67, 36, 15, .08);
}

.contact-form-section h2 {
    margin: 0 0 14px;
    color: var(--brand-dark);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.contact-form {
    max-width: none;
}

.contact-form-errors p {
    margin: 0;
}

.pv-slider {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 72px 0 18px;
}

.pv-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.pv-slider-header h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
}

.pv-controls {
    display: flex;
    gap: 10px;
}

.pv-controls button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
}

.pv-track {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid var(--line);
    background: var(--white);
}

.pv-slide {
    display: none;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    min-height: 430px;
}

.pv-slide.is-active {
    display: grid;
}

.pv-slide img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.pv-slide > div {
    display: grid;
    align-content: center;
    padding: clamp(34px, 6vw, 74px);
}

.pv-slide span {
    color: var(--brand);
    font-weight: 900;
}

.pv-slide h3 {
    margin: 12px 0 16px;
    color: var(--brand-dark);
    font-size: clamp(40px, 5vw, 74px);
    line-height: .95;
}

.pv-slide p {
    color: var(--body);
    font-size: 18px;
}

.pv-slide a {
    margin-top: 18px;
    font-weight: 900;
}

.pv-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.pv-dots button {
    width: 10px;
    height: 10px;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    background: var(--line);
}

.pv-dots button.is-active {
    background: var(--brand);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 33, 28, .78);
}

.video-modal-panel {
    position: relative;
    z-index: 1;
    width: min(840px, 100%);
    padding: 30px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.video-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    min-height: 0;
    padding: 0;
    background: var(--ink);
}

.video-placeholder {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(166, 83, 28, .22), transparent 48%),
        var(--ink);
    color: var(--white);
    text-align: center;
}

.video-placeholder .play-button {
    position: relative;
    left: auto;
    top: auto;
}

.video-placeholder p {
    max-width: 460px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .82);
}

.video-embed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--ink);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) .55fr .55fr .65fr .8fr;
    gap: 30px;
    padding: 48px clamp(18px, 5vw, 74px) 28px;
    background:
        linear-gradient(135deg, rgba(166, 83, 28, .18), transparent 40%),
        #2b211c;
    color: rgba(255, 255, 255, .78);
}

.site-footer img {
    width: 150px;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 18px;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 8px;
}

.copyright {
    grid-column: 1 / -1;
    margin: 12px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 14px;
}

.admin-bar {
    position: static;
    background: var(--ink);
}

.admin-bar .brand {
    color: var(--white);
    font-weight: 800;
}

.admin-bar .brand img {
    filter: brightness(0) invert(1);
}

.admin-bar .nav a {
    color: var(--white);
}

.admin-main {
    padding: 32px 0 64px;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
}

.table th,
.table td {
    border-bottom: 1px solid var(--line);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.table th {
    background: var(--soft);
}

.form {
    display: grid;
    gap: 16px;
    max-width: 860px;
}

.form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.form input,
.form select,
.form textarea {
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    padding: 10px 12px;
    width: 100%;
}

.form input[type="checkbox"] {
    width: auto;
}

.form textarea {
    min-height: 130px;
}

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

.notice {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--soft);
    padding: 14px;
}

.admin-help {
    max-width: 860px;
    border-left: 4px solid var(--gold);
    background: rgba(255, 190, 77, .14);
    color: var(--brown);
    padding: 12px 14px;
    font-weight: 700;
}

.admin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.admin-gallery label {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: var(--soft);
}

.admin-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--white);
}

.admin-gallery-wide {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.admin-gallery-wide label {
    display: grid;
    gap: 8px;
}

.admin-gallery-wide img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.admin-gallery-wide span {
    overflow-wrap: anywhere;
    font-size: .82rem;
    color: var(--muted);
}

.js-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
    will-change: opacity, transform;
}

.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-ready .capability-row article:nth-child(2),
.js-ready .product-grid .card:nth-child(2),
.js-ready .value-strip article:nth-child(2),
.js-ready .contact-grid article:nth-child(2) {
    transition-delay: .08s;
}

.js-ready .capability-row article:nth-child(3),
.js-ready .product-grid .card:nth-child(3),
.js-ready .value-strip article:nth-child(3),
.js-ready .contact-grid article:nth-child(3) {
    transition-delay: .16s;
}

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

    .js-ready .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .site-header,
    .science-intro,
    .video-feature,
    .visual-system,
    .platform-grid,
    .pipeline-band,
    .technology-band,
    .news-grid,
    .dig-deeper,
    .dig-deeper > div:last-child,
    .hero,
    .about-band,
    .image-story,
    .capability-row,
    .quality-band,
    .animal-health-band,
    .literature-cta,
    .reach-band,
    .page-title,
    .split-title,
    .product-detail,
    .two-column,
    .contact-grid,
    .contact-form-section,
    .contact-map-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .contact-map-section iframe {
        min-height: 320px;
    }

    .product-title-collage {
        min-height: 350px;
    }

    .literature-cover-collage {
        min-height: 0;
    }

    .site-header {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .header-slogan {
        grid-column: 1 / -1;
        max-width: none;
        margin-right: 0;
    }

    .nav {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding-top: 14px;
        border-top: 1px solid var(--line);
    }

    .nav-item {
        border-bottom: 1px solid var(--line);
        padding: 12px 0;
    }

    .nav-item:last-child {
        border-bottom: 0;
    }

    .mega-trigger {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .mega-panel {
        position: static;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: 14px;
        padding: 18px;
        box-shadow: none;
    }

    .home-hero {
        min-height: 560px;
    }

.home-hero-content h1 {
        font-size: 54px;
    }

    .platform-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .platform-grid article:last-child {
        border-bottom: 0;
    }

    .technology-band img {
        min-height: 360px;
    }

    .video-feature {
        margin-bottom: 54px;
    }

    .visual-system {
        padding-bottom: 54px;
    }

    .visual-main,
    .visual-stack article,
    .video-card {
        min-height: 320px;
    }

    .pv-slider-header,
    .pv-slide {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        margin-bottom: 54px;
    }

    .distribution-network {
        grid-template-columns: 1fr;
        margin-bottom: 54px;
    }

    .pv-slide img {
        min-height: 280px;
    }

    .dig-deeper a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .dig-deeper a:last-child {
        border-bottom: 0;
    }

    .nav.is-open {
        display: flex;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: 0;
        padding-top: 44px;
    }

    .value-strip {
        grid-template-columns: 1fr;
    }

    .capability-row article,
    .capability-row article:first-child,
    .capability-row article:last-child {
        border-left-width: 1px;
        border-radius: 0;
    }

    .capability-row article:first-child {
        border-radius: 10px 10px 0 0;
    }

    .capability-row article:last-child {
        border-radius: 0 0 10px 10px;
    }

    .image-story {
        padding-top: 0;
    }

    .quality-band {
        padding: 28px;
    }
}

.home-hero-content h1::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin-top: 22px;
    background: linear-gradient(90deg, var(--gold), var(--brand));
}

@media (max-width: 620px) {
    .topbar {
        display: grid;
    }

    .brand img {
        width: 210px;
        max-height: 48px;
    }

    .hero h1,
    .page-title h1 {
        font-size: 40px;
    }

    .product-title-collage {
        min-height: 320px;
    }

    .collage-products {
        left: 0;
        right: 0;
        bottom: 12px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .collage-products img:nth-child(n+4) {
        display: none;
    }

    .collage-products img:nth-child(1),
    .collage-products img:nth-child(2),
    .collage-products img:nth-child(3) {
        transform: none;
    }

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

    .literature-cover-collage img:nth-child(n+5) {
        display: none;
    }

    .announcement {
        display: grid;
        justify-items: center;
        gap: 6px;
    }

    .home-hero {
        min-height: 500px;
    }

    .home-hero-content {
        padding: 60px 0;
    }

    .home-hero-content h1 {
        font-size: 42px;
    }

    .science-intro,
    .pipeline-band,
    .news-section,
    .dig-deeper {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .science-intro h2,
    .pipeline-band h2,
    .technology-band h2,
    .dig-deeper h2 {
        font-size: 38px;
    }

    .pipeline-list a {
        grid-template-columns: 64px 1fr;
    }

    .pipeline-list img {
        width: 56px;
        height: 56px;
    }

    .pipeline-list strong {
        font-size: 20px;
    }

    .hero-media img {
        min-height: 280px;
    }

    .section-heading,
    .download,
    .toolbar,
    .form-grid,
    .specs div,
    .hero-stats,
    .segment-list article,
    .quality-gallery {
        display: grid;
        grid-template-columns: 1fr;
    }

    .image-story article,
    .image-story img {
        min-height: 300px;
    }
}
    color: var(--brand-dark);
