:root {
  --navy: #061a23;
  --ink: #10251b;
  --ink-2: #24372e;
  --green: #0e6c3d;
  --green-bright: #a7d746;
  --lime: #a7d746;
  --sage: #dce8e1;
  --mist: #eef5f0;
  --paper: #fbfdfb;
  --white: #ffffff;
  --line: #d7e4dc;
  --muted: #52645a;
  --blue: #0b4f8a;
  /* 24-inch desktop baseline; larger monitors receive wider, capped layouts below. */
  --shell: min(1600px, calc(100vw - 64px));
  --shadow: 0 24px 70px rgba(7, 42, 25, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.55; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: Arial, Helvetica, sans-serif; letter-spacing: -.045em; line-height: 1.03; }
h1 { font-size: clamp(3.4rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.25rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 2rem); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 16px; color: var(--white); background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.utility-bar { position: relative; z-index: 30; background: var(--ink); color: rgba(255,255,255,.78); font-size: .75rem; letter-spacing: .035em; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner p { margin: 0; text-transform: uppercase; }
.utility-inner div { display: flex; gap: 24px; }
.utility-inner a:hover { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 25; background: rgba(248,250,248,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-inner { height: 82px; display: grid; grid-template-columns: 226px 1fr auto; align-items: center; gap: 32px; }
.brand { width: 226px; height: 65px; display: grid; grid-template-columns: 53px minmax(0,1fr); grid-template-rows: auto auto; align-content: center; align-items: center; column-gap: 10px; overflow: hidden; }
.brand::before { content: "WinHarvest"; grid-column: 2; grid-row: 1; align-self: end; color: var(--ink); font-family: "Manrope", sans-serif; font-size: 1.2rem; font-weight: 700; line-height: 1; letter-spacing: -.045em; }
.brand::after { content: "Grow your future now"; grid-column: 2; grid-row: 2; align-self: start; margin-top: 5px; color: #62b53b; font-family: "Segoe Script", "Brush Script MT", cursive; font-size: .7rem; font-style: italic; font-weight: 700; line-height: 1; letter-spacing: -.025em; white-space: nowrap; }
.brand img { grid-row: 1 / 3; place-self: center; display: block; width: 53px; height: 53px; margin: auto; object-fit: contain; object-position: center; mix-blend-mode: normal; }
.primary-nav { justify-self: center; display: flex; align-items: stretch; gap: 6px; height: 100%; }
.primary-nav > a, .nav-group > button { min-height: 100%; display: inline-flex; align-items: center; gap: 7px; padding: 0 16px; border: 0; background: transparent; font-weight: 600; font-size: .91rem; cursor: pointer; }
.primary-nav > a:hover, .nav-group > button:hover, .primary-nav > a[aria-current="page"] { color: var(--green); }
.nav-group { position: relative; height: 100%; }
.nav-group > button span { font-size: .8rem; transition: transform .2s ease; }
.nav-group > button[aria-expanded="true"] span { transform: rotate(180deg); }
.submenu { position: absolute; top: calc(100% + 1px); left: 0; width: 310px; padding: 12px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-7px); transition: .2s ease; }
.submenu-wide { width: 620px; display: grid; grid-template-columns: 1fr 1fr; }
.nav-group:hover .submenu, .nav-group:focus-within .submenu, .nav-group.is-open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; flex-direction: column; gap: 2px; padding: 14px; border-bottom: 1px solid rgba(11,37,27,.08); }
.submenu a:hover { background: var(--mist); }
.submenu strong { font-size: .9rem; }
.submenu span { color: var(--muted); font-size: .77rem; }
.menu-toggle { display: none; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 23px; border: 1px solid var(--green); background: var(--green); color: var(--white); font-weight: 700; font-size: .88rem; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--ink); border-color: var(--ink); }
.button-small { min-height: 44px; padding-inline: 19px; gap: 16px; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }
.button-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.button-outline:hover { color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 30px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-weight: 700; font-size: .9rem; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.light { color: var(--white); }

.hero { position: relative; color: var(--white); overflow: hidden; }
.hero-home { min-height: calc(100svh - 116px); display: flex; align-items: flex-end; }
.hero-carousel, .hero-slide, .hero-slide img, .hero-shade { position: absolute; inset: 0; }
.hero-carousel { overflow: hidden; background: var(--ink); }
.hero-slide { margin: 0; opacity: 0; transform: scale(1.018); transition: opacity 1s ease, transform 7s linear; }
.hero-slide.is-active { z-index: 1; opacity: 1; transform: scale(1.055); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide:first-child img { object-position: center 47%; }
.hero-slide:nth-child(2) img { object-position: center; }
.hero-slide:nth-child(3) img { object-position: center; }
.hero-slide:nth-child(4) img { object-position: center; }
.hero-slide:nth-child(5) img { object-position: center; }
.hero-slide:nth-child(6) img { object-position: center; }
.hero-slide:nth-child(7) img { object-position: center; }
.hero-shade { z-index: 2; pointer-events: none; background: linear-gradient(90deg, rgba(3,20,14,.84) 0%, rgba(3,20,14,.6) 42%, rgba(3,20,14,.12) 76%), linear-gradient(0deg, rgba(3,20,14,.55), transparent 48%); }
.hero-inner { position: relative; z-index: 3; padding: clamp(90px, 13vh, 160px) 0 76px; }
.hero-inner h1 { max-width: 970px; margin-bottom: 28px; }
.hero-copy { max-width: 690px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.4vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.hero-carousel-controls { position: absolute; z-index: 4; right: max(24px, calc((100vw - 1240px)/2)); bottom: 78px; display: flex; align-items: center; gap: 13px; }
.hero-carousel-controls > button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.54); border-radius: 50%; color: var(--white); background: rgba(6,26,35,.26); font-size: 1rem; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.hero-carousel-controls > button:hover, .hero-carousel-controls > button:focus-visible { color: var(--ink); border-color: var(--lime); background: var(--lime); transform: translateY(-1px); }
.hero-dots { display: flex; align-items: center; gap: 7px; }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: transparent; cursor: pointer; transition: width .25s ease, border-radius .25s ease, background .25s ease; }
.hero-dots button.is-active { width: 28px; border-radius: 8px; border-color: var(--lime); background: var(--lime); }
.hero-dots button:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.hero-counter { display: flex; align-items: center; gap: 9px; min-width: 98px; color: rgba(255,255,255,.8); font-size: .68rem; letter-spacing: .08em; }
.hero-counter b { min-width: 19px; color: var(--white); }
.hero-counter i { width: 50px; height: 1px; background: rgba(255,255,255,.55); }
.eyebrow { margin-bottom: 22px; color: var(--green); font-weight: 700; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.light { color: #bceaa1; }

.proof-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 20px 34px; border-left: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong { font-family: "Manrope", sans-serif; font-size: 2.3rem; letter-spacing: -.04em; }
.proof-grid span { color: var(--muted); font-size: .82rem; }

.section { padding: 126px 0; }
.section-heading { margin-bottom: 56px; }
.section-heading.two-col, .about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: end; }
.section-heading h2 { max-width: 760px; margin: 0; }
.section-heading > p, .catalogue-actions p { color: var(--muted); max-width: 520px; }
.split-intro { background: var(--paper); }
.split-intro .section-heading h2 { max-width: 13.5ch; font-size: clamp(2.85rem, 4vw, 3.75rem); line-height: 1.02; text-wrap: balance; }
.sector-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; align-items: stretch; gap: 22px; }
.sector-panel { position: relative; height: 100%; min-height: 520px; overflow: hidden; color: var(--white); }
.sector-panel img, .panel-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sector-panel img { transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.sector-panel:hover img { transform: scale(1.035); }
.panel-shade { background: linear-gradient(0deg, rgba(3,26,18,.92) 0%, rgba(3,26,18,.48) 52%, rgba(3,26,18,.18) 100%); }
.sector-agriculture .panel-shade {
  background:
    radial-gradient(ellipse 95% 64% at 0% 100%, rgba(3,26,18,.88) 0%, rgba(3,26,18,.62) 54%, rgba(3,26,18,.12) 88%, transparent 100%),
    linear-gradient(90deg, rgba(3,26,18,.24) 0%, rgba(3,26,18,.08) 52%, transparent 82%);
}
.sector-content { position: relative; z-index: 1; height: 100%; min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; }
.sector-kicker { align-self: flex-start; padding: 8px 13px; border: 1px solid rgba(255,255,255,.45); font-size: calc(.73rem + 2px); font-weight: 800; letter-spacing: .055em; line-height: 1.35; text-transform: uppercase; }
.sector-content h3 { max-width: 100%; margin-bottom: 18px; font-size: clamp(calc(2.15rem + 2px), calc(2.75vw + 2px), calc(3.1rem + 2px)); font-weight: 800; line-height: 1; letter-spacing: -.04em; text-wrap: balance; }
.sector-content p { max-width: 560px; color: rgba(255,255,255,.9); font-size: calc(1rem + 2px); font-weight: 600; }
.panel-link { display: inline-flex; gap: 25px; margin-top: 18px; font-size: calc(1rem + 2px); font-weight: 800; }
.sector-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; }
.panel-download { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(3,26,18,.28); color: var(--white); font-size: calc(.78rem + 2px); font-weight: 800; letter-spacing: .01em; backdrop-filter: blur(8px); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.panel-download b { font-size: calc(.68rem + 2px); font-weight: 800; letter-spacing: .06em; }
.panel-download:hover, .panel-download:focus-visible { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.16); transform: translateY(-1px); }

.catalogue-preview { background: var(--white); }
.catalogue-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: end; }
.catalogue-actions { display: grid; justify-items: start; gap: 18px; }
.featured-products, .product-grid { border-top: 1px solid var(--line); }
.product-row { display: grid; grid-template-columns: 80px minmax(240px,1.2fr) .7fr .7fr auto; gap: 20px; align-items: center; min-height: 126px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.product-row:hover { background: linear-gradient(90deg, transparent, var(--mist), transparent); }
.product-index { color: #8a9790; font-size: .76rem; }
.product-name h3 { margin: 0 0 7px; font-size: 1.12rem; letter-spacing: -.02em; }
.product-name p, .product-meta { margin: 0; color: var(--muted); font-size: .78rem; }
.product-sector { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-flex; padding: 6px 9px; background: var(--mist); color: var(--ink-2); font-size: .65rem; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.product-actions { display: flex; gap: 8px; }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: transparent; cursor: pointer; transition: .2s ease; }
.icon-button:hover { color: var(--white); background: var(--green); }

.supply-section { display: grid; grid-template-columns: 1.05fr .95fr; padding: 0; background: var(--ink); color: var(--white); }
.supply-image { min-height: 850px; }
.supply-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); }
.supply-content { display: flex; flex-direction: column; justify-content: center; padding: 110px clamp(40px, 7vw, 120px); }
.supply-content h2 { font-size: clamp(2.4rem, 4vw, 4.35rem); }
.supply-content > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.feature-list { margin: 38px 0 46px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.feature-list li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.feature-list li > span { color: #a8cf96; font-size: .72rem; }
.feature-list strong { display: block; margin-bottom: 4px; }
.feature-list p { margin: 0; color: rgba(255,255,255,.58); font-size: .85rem; }

.about-teaser { background: var(--sage); }
.about-grid { align-items: start; }
.about-grid h2 { font-size: clamp(2.35rem, 4.2vw, 4.5rem); }
.about-grid > div:last-child p { color: var(--ink-2); font-size: 1.02rem; }
.about-grid .text-link { margin-top: 24px; }
.timeline-mini { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 90px; border-top: 1px solid rgba(11,37,27,.25); }
.timeline-mini div { position: relative; padding: 26px 18px 0 0; }
.timeline-mini div::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; background: var(--green); border-radius: 50%; }
.timeline-mini b { display: block; font-family: "Manrope", sans-serif; font-size: 1.5rem; }
.timeline-mini span { color: var(--muted); font-size: .78rem; }

.section-heading.inline { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading.inline h2 { margin: 0; }
.insight-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 0 70px; }
.insight-lead { grid-row: span 2; }
.insight-lead img { width: 100%; aspect-ratio: 1.55; object-fit: cover; margin-bottom: 25px; }
.insight-lead span, .insight-item span, .insight-empty-panel span { color: var(--green); font-size: .75rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; }
.insight-lead h3 { margin: 13px 0 12px; font-size: 1.65rem; }
.insight-lead p, .insight-item p { color: var(--muted); }
.insight-item { padding: 15px 0 38px; border-bottom: 1px solid var(--line); }
.insight-item + .insight-item { padding-top: 38px; }
.insight-item h3 { margin: 12px 0; font-size: 1.35rem; }
.insight-item a:hover, .insight-lead a:hover { color: var(--green); }
.insight-empty-panel { align-self: stretch; padding: 38px; border: 1px solid var(--line); background: var(--mist); }
.insight-empty-panel h3 { margin: 16px 0 12px; font-size: clamp(1.5rem, 2.3vw, 2.15rem); }
.insight-empty-panel p { color: var(--muted); }

.final-cta { position: relative; overflow: hidden; color: var(--white); background: var(--green); }
.final-cta::after { content: "WH"; position: absolute; right: -2vw; bottom: -13vw; color: rgba(255,255,255,.055); font-family: "Manrope"; font-size: 32vw; font-weight: 700; letter-spacing: -.12em; line-height: 1; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { max-width: 940px; }
.final-cta p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.75); }
.final-cta .button { margin-top: 24px; }

.site-footer { padding: 82px 0 24px; color: rgba(255,255,255,.72); background: #061b13; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 60px; }
.footer-grid h2 { margin-bottom: 20px; color: var(--white); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 10px; font-size: .82rem; }
.footer-grid a:hover { color: var(--white); }
.footer-brand strong { display: block; color: var(--white); font-family: "Manrope"; font-size: 1.7rem; }
.footer-brand > span { color: #90ca68; font-size: .78rem; font-style: italic; }
.footer-brand p { max-width: 300px; margin-top: 25px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-bottom div { display: flex; gap: 25px; }

.product-dialog { width: min(760px, calc(100vw - 32px)); max-height: calc(100vh - 40px); padding: 0; border: 0; box-shadow: var(--shadow); }
.product-dialog::backdrop { background: rgba(2,17,11,.7); backdrop-filter: blur(6px); }
.dialog-close { position: sticky; z-index: 2; top: 18px; float: right; width: 42px; height: 42px; margin: 18px 18px -60px 0; border: 1px solid var(--line); background: var(--white); font-size: 1.5rem; cursor: pointer; }
.dialog-content { padding: 56px; }
.dialog-content .eyebrow { margin-bottom: 14px; }
.dialog-content h2 { padding-right: 40px; font-size: clamp(2rem, 4.5vw, 3.5rem); }
.dialog-summary { color: var(--muted); font-size: 1.02rem; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 34px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-grid div { min-height: 100px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.spec-grid strong { font-size: .9rem; }
.notice { padding: 17px 18px; background: #f0f4ed; border-left: 3px solid var(--green); color: var(--ink-2); font-size: .8rem; }
.dialog-actions { display: flex; gap: 10px; margin-top: 28px; }
.enquiry-tray { position: fixed; z-index: 22; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 24px; padding: 13px 16px 13px 20px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); font-size: .8rem; }
.enquiry-tray[hidden] { display: none; }
.enquiry-tray a { padding: 9px 13px; background: var(--white); color: var(--ink); font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes hero-settle { from { transform: scale(1.09); } to { transform: scale(1.025); } }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 36px, 860px); }
  .header-inner { grid-template-columns: 1fr auto; height: 72px; }
  .header-cta { display: none; }
  .menu-toggle { justify-self: end; display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1.5px; background: var(--ink); }
  .primary-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; width: 100%; height: calc(100svh - 102px); padding: 26px 18px 60px; overflow-y: auto; background: var(--paper); box-shadow: 0 30px 50px rgba(7,28,20,.18); }
  .primary-nav.is-open { display: block; }
  .primary-nav > a, .nav-group > button { width: 100%; min-height: 58px; justify-content: space-between; padding: 0; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .nav-group { height: auto; }
  .submenu, .submenu-wide { position: static; width: 100%; display: none; grid-template-columns: 1fr; padding: 0 0 10px 14px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .nav-group.is-open .submenu { display: grid; }
  .submenu a { padding: 13px 0; }
  .hero-home { min-height: 760px; }
  .section { padding-block: 92px; }
  .sector-grid, .supply-section, .section-heading.two-col, .about-grid, .catalogue-heading { grid-template-columns: 1fr; }
  .section-heading.two-col, .about-grid, .catalogue-heading { gap: 28px; }
  .insight-grid { gap: 0 36px; }
  .sector-panel, .sector-content { min-height: 460px; }
  .supply-image { min-height: 560px; }
  .supply-content { padding: 80px 7vw; }
  .product-row { grid-template-columns: 55px 1fr auto; }
  .product-meta, .product-sector { display: none; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .utility-inner { min-height: 30px; }
  .utility-inner p { display: none; }
  .utility-inner div { width: 100%; justify-content: space-between; gap: 10px; }
  .utility-inner div a:first-child { display: none; }
  .brand { width: 202px; grid-template-columns: 46px minmax(0,1fr); column-gap: 8px; }
  .brand img { width: 46px; height: 46px; }
  .brand::before { font-size: 1.04rem; }
  .brand::after { margin-top: 4px; font-size: .57rem; }
  .hero-home { min-height: calc(100svh - 102px); }
  .hero-slide:first-child img { object-position: 63% center; }
  .hero-slide:nth-child(2) img { object-position: 70% center; }
  .hero-slide:nth-child(3) img { object-position: 75% center; }
  .hero-slide:nth-child(4) img { object-position: 72% center; }
  .hero-slide:nth-child(5) img { object-position: 66% center; }
  .hero-slide:nth-child(6) img { object-position: 68% center; }
  .hero-slide:nth-child(7) img { object-position: 70% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,20,14,.88), rgba(3,20,14,.43)); }
  .hero-inner { padding-bottom: 42px; }
  .hero-inner h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-carousel-controls { right: auto; bottom: 52px; left: 14px; gap: 10px; }
  .hero-carousel-controls > button { width: 38px; height: 38px; }
  .hero-counter { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 105px; padding: 18px; border-bottom: 1px solid var(--line); }
  .proof-grid strong { font-size: 1.8rem; }
  .section { padding-block: 76px; }
  .section-heading { margin-bottom: 38px; }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-panel, .sector-content { min-height: 430px; }
  .sector-content { padding: 25px; }
  .sector-actions { align-items: flex-start; flex-direction: column; gap: 0; }
  .panel-download { margin-top: 13px; }
  .featured-products .product-row:nth-child(n+5) { display: none; }
  .product-row { grid-template-columns: 35px 1fr auto; gap: 10px; }
  .product-actions .icon-button:first-child { display: none; }
  .supply-image { min-height: 390px; }
  .supply-content { padding: 70px 22px; }
  .timeline-mini { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-lead { margin-bottom: 35px; }
  .section-heading.inline { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .dialog-content { padding: 50px 24px 28px; }
  .spec-grid { grid-template-columns: 1fr; }
  .dialog-actions { flex-direction: column; }
  .enquiry-tray { right: 14px; bottom: 14px; left: 14px; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; transform: none; }
  .hero-slide.is-active { transform: none; }
}

/* Enquiry */
.contact-hero { position: relative; min-height: 670px; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.contact-image, .contact-shade { position: absolute; inset: 0; }
.contact-image { background: url("images/editorial/contact-sales-support.webp") center/cover; }
.contact-shade { background: linear-gradient(90deg, rgba(3,22,15,.9), rgba(3,22,15,.2)); }
.contact-hero-inner { position: relative; z-index: 1; padding-bottom: 72px; }
.contact-hero h1 { max-width: 980px; margin-bottom: 26px; font-size: clamp(3rem,6.5vw,6.8rem); }
.contact-hero-inner > p:last-child { max-width: 680px; color: rgba(255,255,255,.74); }
.contact-directory-section {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  color: var(--white);
  background: url("images/editorial/contact-directory-legacy-gate.webp") center 48% / cover no-repeat fixed;
  overflow: hidden;
}
.contact-directory-section .section-heading { align-items: end; }
.contact-directory-section .section-heading h2 { max-width: 760px; color: var(--white); text-shadow: 0 2px 20px rgba(2,18,12,.72), 0 1px 3px rgba(2,18,12,.96); }
.contact-directory-section .section-heading > p { max-width: 520px; color: var(--white); text-shadow: 0 2px 16px rgba(2,18,12,.86), 0 1px 2px rgba(2,18,12,1); }
.contact-directory-section .eyebrow { color: var(--green-bright); text-shadow: 0 1px 8px rgba(2,18,12,.95); }
.contact-directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.contact-card { min-width: 0; min-height: 390px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; color: var(--ink); border: 1px solid rgba(255,255,255,.48); border-radius: 22px; background: rgba(255,255,255,.94); box-shadow: 0 24px 70px rgba(2,20,13,.24); backdrop-filter: blur(8px); }
.contact-card-index { display: block; margin-bottom: 44px; color: var(--green); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-card h3 { margin: 0 0 12px; font-size: clamp(2rem, 2.5vw, 2.8rem); }
.contact-card-role, .contact-card-address { max-width: 30ch; margin: 0; color: var(--muted); }
.contact-card-role { min-height: 3.1em; }
.contact-card-region {
  display: grid;
  gap: 5px;
  min-height: 4.2em;
  margin: 14px 0 0;
  color: var(--ink);
  line-height: 1.45;
}
.contact-card-region span {
  color: var(--green);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-card-region strong { font-size: .78rem; font-weight: 700; }
.contact-card address { min-width: 0; margin-top: 32px; font-style: normal; }
.contact-card dl { min-width: 0; margin: 30px 0 0; border-top: 1px solid var(--line); }
.contact-card dl > div { min-width: 0; display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-card dt { color: var(--muted); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.contact-card dd { min-width: 0; margin: 0; }
.contact-card a { font-weight: 700; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--green); }
.enquiry-section { background: var(--white); }
.enquiry-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; align-items: start; }
.enquiry-layout aside { position: sticky; top: 120px; }
.enquiry-layout aside h2 { font-size: clamp(2.2rem,3.7vw,3.8rem); }
.contact-aside-intro { color: var(--muted); }
.contact-note { margin-top: 28px; padding: 18px; color: var(--muted); background: var(--mist); font-size: .78rem; }
.enquiry-form { padding: 48px; background: var(--paper); border: 1px solid var(--line); }
.enquiry-service-notice { margin: -12px -12px 42px; padding: 28px 30px; border-left: 4px solid var(--green-bright); background: var(--white); box-shadow: 0 12px 32px rgba(11,37,27,.08); }
.enquiry-service-notice > span { display: block; margin-bottom: 9px; color: var(--green); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.enquiry-service-notice h2 { margin: 0 0 10px; font-size: clamp(1.4rem,2.3vw,2rem); }
.enquiry-service-notice p { margin: 0; color: var(--muted); }
.enquiry-service-notice a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.enquiry-form button[type="submit"]:disabled { cursor: not-allowed; opacity: .62; }
.form-section-heading { display: grid; grid-template-columns: 42px 1fr; gap: 18px; margin: 5px 0 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-section-heading:not(:first-of-type) { margin-top: 62px; }
.form-section-heading > span { color: var(--green); font-size: .72rem; }
.form-section-heading h2 { margin: 0 0 5px; font-size: 1.55rem; }
.form-section-heading p { margin: 0; color: var(--muted); font-size: .8rem; }
.form-grid { display: grid; gap: 22px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span, .choice-field legend { color: var(--ink-2); font-size: .72rem; font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 0; background: var(--white); outline: none; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(20,90,58,.1); }
.form-grid .wide { grid-column: 1 / -1; }
.form-grid small { color: var(--muted); font-size: .68rem; }
.choice-field { grid-column: 1 / -1; display: flex; gap: 22px; margin: 0; padding: 12px 0 0; border: 0; }
.choice-field legend { float: left; width: 100%; margin-bottom: 10px; }
.choice-field label { display: flex; grid-auto-flow: column; align-items: center; gap: 8px; }
.choice-field input { width: 18px; min-height: 18px; accent-color: var(--green); }
.file-field { padding: 18px; border: 1px dashed rgba(11,37,27,.3); }
.file-field input { padding: 10px; }
.selected-products { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.selected-products p { color: var(--muted); font-size: .78rem; }
.selected-products > span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 9px 8px 12px; background: var(--sage); font-size: .73rem; }
.selected-products button { width: 28px; min-width: 28px; height: 28px; border: 0; background: rgba(11,37,27,.12); cursor: pointer; }
.turnstile-field { display: grid; gap: 9px; margin: 28px 0 0; padding: 16px; border: 1px solid var(--line); background: var(--sage); }
.turnstile-field[hidden] { display: none; }
.turnstile-field small { color: var(--muted); font-size: .68rem; }
.consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 28px 0; color: var(--muted); font-size: .74rem; }
.consent-field input { width: 18px; height: 18px; accent-color: var(--green); }
.form-actions { display: flex; align-items: center; gap: 28px; }
.form-actions button[disabled] { opacity: .62; cursor: wait; }
.preview-button { border-width: 0 0 1px; background: transparent; cursor: pointer; }
.form-status { margin: 16px 0 0; color: #a43a2e; font-size: .78rem; }
.honeypot { position: absolute !important; left: -9999px !important; }

@media (max-width: 900px) { .contact-directory-grid, .enquiry-layout { grid-template-columns: 1fr; } .contact-card { min-height: 320px; } .enquiry-layout aside { position: static; } }
@media (max-width: 680px) { .contact-hero { min-height: 610px; } .contact-card { min-height: 0; padding: 28px 24px; } .contact-card-index { margin-bottom: 30px; } .contact-card-role { min-height: 0; } .contact-card dl > div { grid-template-columns: 62px minmax(0, 1fr); } .enquiry-form { padding: 28px 18px; } .form-grid.two { grid-template-columns: 1fr; } .form-grid .wide { grid-column: auto; } .form-actions { align-items: flex-start; flex-direction: column; } }

.legal-copy { max-width: 760px; }
.legal-copy h2 { margin: 45px 0 14px; font-size: 1.8rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: var(--muted); }
.legal-copy a { color: var(--green); text-decoration: underline; }
.success-page { min-height: 100svh; display: grid; place-items: center; padding: 40px 20px; background: var(--mist); }
.success-page > div { max-width: 780px; padding: clamp(28px,6vw,76px); background: var(--white); box-shadow: var(--shadow); }
.success-page img { display: block; width: min(260px, 72vw); height: auto; margin: 0 auto 42px; object-fit: contain; object-position: center; mix-blend-mode: normal; }
.success-page h1 { font-size: clamp(2.6rem,6vw,5.5rem); }
.success-page > div > p:not(.eyebrow):not(.notice) { color: var(--muted); font-size: 1.05rem; }
.success-reference { display: grid; justify-items: center; gap: 9px; margin: 32px auto; padding: clamp(22px,4vw,34px); color: #b42318; text-align: center; background: #fff5f3; border: 2px solid #e5483c; border-radius: 18px; }
.success-reference span { color: #7a271a; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.success-reference strong { max-width: 100%; font-family: var(--display); font-size: clamp(1.45rem,4vw,2.65rem); line-height: 1.15; overflow-wrap: anywhere; }
.success-actions { display: flex; align-items: center; justify-content: center; gap: 25px; }
@media (max-width: 520px) {
  .success-actions { align-items: stretch; flex-direction: column; text-align: center; }
}

/* About and insights */
.story-hero { position: relative; min-height: 720px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); }
.story-hero > img, .story-hero > span { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-hero > img { object-position: center 40%; }
.story-hero > span { background: linear-gradient(90deg, rgba(3,23,16,.82), rgba(3,23,16,.16)), linear-gradient(0deg, rgba(3,23,16,.58), transparent 55%); }
.story-hero-inner { position: relative; z-index: 1; padding-bottom: 74px; }
.story-hero h1 { max-width: 1040px; margin: 0; font-size: clamp(3.2rem, 6.6vw, 7rem); }
.editorial-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.editorial-grid h2 { font-size: clamp(2.4rem,4.3vw,4.6rem); }
.prose { max-width: 720px; }
.prose p { margin-bottom: 25px; color: var(--muted); }
.prose .lead { color: var(--ink); font-size: 1.38rem; line-height: 1.45; }
.story-detail { background: var(--white); }
.values-band { padding: 72px 0; color: var(--white); background: var(--green); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.value-grid article { padding: 15px 42px; border-left: 1px solid rgba(255,255,255,.24); }
.value-grid article:last-child { border-right: 1px solid rgba(255,255,255,.24); }
.value-grid span { color: #bceaa1; font-size: .7rem; }
.value-grid h3 { margin: 50px 0 12px; font-size: 1.6rem; }
.value-grid p { color: rgba(255,255,255,.67); font-size: .85rem; }
.milestone-section { background: var(--white); }
.milestone-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.milestone-list li { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: baseline; padding: 29px 0; border-bottom: 1px solid var(--line); }
.milestone-list b { font-family: "Manrope"; font-size: 1.6rem; }
.milestone-list p { margin: 0; color: var(--muted); }
.milestone-list li.milestone-with-image { grid-template-columns: 180px minmax(220px, .72fr) minmax(360px, 1.28fr); align-items: center; padding-block: 42px; }
.milestone-list li.milestone-with-image.milestone-image-removed { grid-template-columns: 180px minmax(0, 1fr); }
.milestone-image-removed .milestone-photo { display: none; }
.milestone-photo { min-width: 0; margin: 0; }
.milestone-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; background: var(--mist); }
.milestone-photo figcaption { margin-top: 12px; color: var(--muted); font-size: .75rem; letter-spacing: .02em; }
@media (max-width: 1020px) {
  .milestone-list li.milestone-with-image { grid-template-columns: 180px minmax(0, 1fr); align-items: start; }
  .milestone-with-image .milestone-photo { grid-column: 2; }
}
.network-section { color: var(--white); background: var(--ink); }
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.network-grid h2 { font-size: clamp(2.5rem,4.5vw,4.8rem); }
.network-grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.network-grid .button { margin-top: 24px; }
.location-list { border-top: 1px solid rgba(255,255,255,.2); }
.location-list > div { display: grid; grid-template-columns: 65px 1fr; gap: 25px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.location-list b { color: #a8cf96; font-size: .75rem; }
.location-list span { display: grid; color: rgba(255,255,255,.6); font-size: .78rem; }
.location-list strong { color: var(--white); font-size: 1rem; }
.about-location-section { background: var(--white); }
.about-location-grid { display: grid; grid-template-columns: minmax(320px,.78fr) minmax(0,1.22fr); gap: clamp(34px,6vw,92px); align-items: stretch; }
.about-location-copy { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: clamp(34px,5vw,68px); border: 1px solid var(--line); border-radius: 28px; background: var(--mist); }
.about-location-copy h2 { margin-bottom: 22px; font-size: clamp(2.4rem,4vw,4.4rem); }
.about-location-copy > p:not(.eyebrow) { color: var(--muted); }
.about-location-copy address { display: grid; gap: 8px; margin: 34px 0; padding-top: 24px; border-top: 1px solid var(--line); font-style: normal; }
.about-location-copy address strong { font-family: "Manrope", sans-serif; font-size: 1.05rem; }
.about-location-copy address span { color: var(--muted); line-height: 1.65; }
.about-location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.about-location-actions .button { min-height: 48px; }
.about-map { min-width: 0; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #e4ece6; box-shadow: var(--shadow); }
.about-map iframe { display: block; width: 100%; height: 100%; min-height: 520px; border: 0; }
@media (max-width: 1020px) {
  .about-location-grid { grid-template-columns: 1fr; }
  .about-map,
  .about-map iframe { min-height: 460px; }
}
@media (max-width: 680px) {
  .about-location-copy { padding: 28px 22px; border-radius: 22px; }
  .about-location-actions { align-items: stretch; flex-direction: column; }
  .about-location-actions .button,
  .about-location-actions .text-link { justify-content: center; width: 100%; }
  .about-map,
  .about-map iframe { min-height: 360px; border-radius: 22px; }
}
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.quality-image img { width: 100%; aspect-ratio: .9; object-fit: cover; }
.quality-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); }
.quality-grid ul { margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.quality-grid li { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.quality-grid li span { color: var(--muted); font-size: .82rem; }
.insights-hero { position: relative; overflow: hidden; }
.insights-hero::after { content: ""; position: absolute; inset: 0 0 0 50%; opacity: .28; background: url("images/editorial/insights-editorial-desk.webp") center/cover; }
.blog-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: end; margin-bottom: 48px; }
.blog-intro h2 { max-width: 720px; margin: 0; font-size: clamp(2.65rem, 4.5vw, 4.4rem); }
.blog-intro > p { max-width: 580px; margin: 0; color: var(--muted); }
.insight-public-filters { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(180px, 260px) auto; gap: 12px; align-items: end; margin-bottom: 52px; padding: 18px; border: 1px solid var(--line); background: var(--white); }
.insight-public-filters label { display: grid; gap: 7px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }
.insight-public-filters input, .insight-public-filters select { width: 100%; min-height: 52px; padding: 0 14px; border: 1px solid var(--line); color: var(--ink); background: var(--paper); }
.insight-public-filters input:focus, .insight-public-filters select:focus { border-color: var(--green); outline: 3px solid rgba(14,108,61,.1); }
.insight-public-filters button { min-height: 52px; padding: 0 18px; border: 1px solid var(--line); background: var(--white); font-weight: 700; cursor: pointer; }
.insight-public-filters button:hover { border-color: var(--green); color: var(--green); }
.insight-public-filters p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .75rem; }
.insight-loading { padding: 70px 24px; border-top: 1px solid var(--line); color: var(--muted); text-align: center; }
.news-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; align-items: center; padding-bottom: 100px; border-bottom: 1px solid var(--line); }
.news-feature-media, .news-card-media { display: block; overflow: hidden; background: var(--mist); }
.news-feature img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.news-feature span, .news-grid span { color: var(--green); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-feature h2 { margin: 17px 0 20px; font-size: clamp(2.3rem,4.1vw,4.3rem); }
.news-feature p, .news-grid p { color: var(--muted); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding-top: 70px; }
.news-grid img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.news-grid .news-card-media { margin-bottom: 24px; }
.news-grid h3 { margin: 12px 0; font-size: 1.45rem; }
.news-feature h2 a:hover, .news-grid h3 a:hover { color: var(--green); }
.insight-empty-state { max-width: 850px; padding: clamp(38px, 6vw, 76px); border: 1px solid var(--line); background: var(--mist); }
.insight-empty-state h1, .insight-empty-state h2 { margin-bottom: 18px; }
.insight-empty-state p:not(.eyebrow) { max-width: 680px; color: var(--muted); }

.article-hero { padding: clamp(85px, 12vw, 150px) 0 86px; color: var(--white); background: var(--ink); }
.article-hero-inner { max-width: 1040px; }
.article-back { display: inline-flex; margin-bottom: 54px; color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 700; }
.article-back:hover { color: var(--lime); }
.article-hero h1 { max-width: 1000px; margin-bottom: 28px; font-size: clamp(3.15rem, 6.7vw, 6.75rem); text-wrap: balance; }
.article-excerpt { max-width: 800px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.article-meta { margin: 32px 0 0; color: #cbed93; font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); gap: clamp(56px, 9vw, 130px); align-items: start; padding-block: clamp(72px, 9vw, 130px); }
.article-body { max-width: 760px; color: var(--ink-2); font-size: 1.08rem; line-height: 1.78; }
.article-body p { margin-bottom: 28px; white-space: pre-line; }
.article-body h2 { margin: 58px 0 22px; font-size: clamp(2rem, 3.5vw, 3rem); }
.article-body ul { display: grid; gap: 10px; padding-left: 22px; }
.article-aside { position: sticky; top: 112px; padding: 30px; border-top: 4px solid var(--green); background: var(--mist); }
.article-aside h2 { margin-bottom: 18px; font-size: 1.75rem; }
.article-aside p:not(.eyebrow) { color: var(--muted); font-size: .88rem; }
.article-aside .button { width: 100%; margin-top: 14px; }

@media (max-width: 900px) {
  .editorial-grid, .network-grid, .quality-grid, .news-feature, .blog-intro, .article-layout { grid-template-columns: 1fr; }
  .value-grid, .news-grid { grid-template-columns: 1fr; }
  .news-feature { gap: 36px; }
  .news-feature h2 { font-size: clamp(2.1rem, 7vw, 3.5rem); }
  .insight-public-filters { grid-template-columns: 1fr 220px auto; }
  .article-aside { position: static; }
  .value-grid article { padding: 35px 15px; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .value-grid article:last-child { border-right: 0; }
  .value-grid h3 { margin-top: 18px; }
}
@media (max-width: 680px) {
  .story-hero { min-height: 620px; }
  .milestone-list li { grid-template-columns: 90px 1fr; gap: 18px; }
  .milestone-list li.milestone-with-image { grid-template-columns: 90px minmax(0, 1fr); }
  .milestone-with-image .milestone-photo { grid-column: 1 / -1; margin-top: 8px; }
  .milestone-photo img { border-radius: 16px; }
  .milestone-list b { font-size: 1.2rem; }
  .insight-public-filters { grid-template-columns: 1fr; }
  .insight-public-filters p { grid-column: auto; }
  .article-hero { padding-top: 70px; }
  .article-back { margin-bottom: 38px; }
}

@media (max-width: 420px) {
  .split-intro .section-heading h2 { font-size: clamp(2.25rem, 11vw, 2.7rem); }
  .sector-content h3 { font-size: calc(2rem + 2px); }
}

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

/* Interior pages and catalogue */
.page-hero { padding: 108px 0 92px; color: var(--white); background: var(--ink); }
.catalogue-hero { position: relative; overflow: hidden; }
.catalogue-hero::after { content: ""; position: absolute; inset: 0 0 0 48%; background: linear-gradient(90deg, var(--ink), transparent), url("images/editorial/catalogue-controlled-packaging.webp") center / cover; opacity: .34; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 9vw; align-items: end; }
.page-hero h1 { max-width: 830px; margin: 0; font-size: clamp(3.2rem, 6.5vw, 6.8rem); }
.page-hero-grid > div:last-child p { color: rgba(255,255,255,.72); }
.catalogue-stats { background: var(--white); }
.catalogue-toolbar { display: grid; grid-template-columns: minmax(300px,1fr) 240px auto; gap: 18px; align-items: end; margin-bottom: 26px; }
.catalogue-toolbar label { display: grid; gap: 8px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.catalogue-toolbar input[type="search"], .catalogue-toolbar select { width: 100%; height: 58px; padding: 0 18px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); outline: none; }
.catalogue-toolbar input:focus, .catalogue-toolbar select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(20,90,58,.1); }
.search-field { position: relative; }
.search-field b { position: absolute; right: 18px; bottom: 13px; font-size: 1.35rem; }
.check-field { min-height: 58px; display: flex !important; grid-auto-flow: column; align-items: center; gap: 10px !important; padding: 0 17px; border: 1px solid var(--line); color: var(--ink) !important; }
.check-field input { width: 18px; height: 18px; accent-color: var(--green); }
.results-head { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .76rem; }
.results-head strong { color: var(--ink); font-size: 1.15rem; }
.empty-state { padding: 45px 0; color: var(--muted); }
.load-more-wrap { display: flex; justify-content: center; padding-top: 46px; }
.load-more-wrap [hidden] { display: none; }
.documents-section { background: var(--mist); }
.document-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.document-grid article { min-height: 300px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.document-grid article > span { margin-bottom: auto; color: var(--green); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.document-grid h3 { margin: 45px 0 13px; font-size: 1.45rem; }
.document-grid p { color: var(--muted); font-size: .82rem; }
.document-grid a { margin-top: auto; font-size: .82rem; font-weight: 700; }
.document-grid article:hover { background: var(--white); }

@media (max-width: 1020px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .catalogue-toolbar { grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1 / -1; }
  .document-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .page-hero { padding: 78px 0 68px; }
  .catalogue-toolbar { grid-template-columns: 1fr; }
  .search-field { grid-column: auto; }
  .results-head { align-items: flex-start; flex-direction: column; }
  .results-head p { margin-bottom: 0; }
  .document-grid { grid-template-columns: 1fr; }
  .document-grid article { min-height: 250px; }
}

/* Concept 01 · Global Enterprise alignment */
.skip-link:not(:focus) { top: -120px; }

.site-header { background: rgba(255,255,255,.96); }
.brand {
  width: auto;
  justify-self: start;
  padding: 6px 15px 6px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
.brand img { mix-blend-mode: normal; border-radius: 9px; }
.header-cta { color: var(--ink) !important; background: var(--lime); border-color: var(--lime); }
.header-cta:hover { color: var(--white) !important; background: var(--green); border-color: var(--green); }
.submenu-wide { left: 50%; transform: translate(-50%,-7px); }
.nav-group:hover .submenu-wide,
.nav-group:focus-within .submenu-wide,
.nav-group.is-open .submenu-wide { transform: translate(-50%,0); }
.button { border-radius: 999px; }
.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.nav-group button:focus-visible,
.product-card button:focus-visible,
.featured-search :is(input, select, button):focus-visible,
.catalogue-toolbar :is(input, select):focus-visible {
  outline: 3px solid rgba(167,215,70,.72);
  outline-offset: 3px;
}

body[data-page="home"] .utility-bar {
  position: absolute;
  z-index: 32;
  inset: 0 0 auto;
  color: rgba(255,255,255,.8);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
body[data-page="home"] .site-header {
  position: absolute;
  z-index: 31;
  top: 34px;
  right: 0;
  left: 0;
  color: var(--white);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
body[data-page="home"] .primary-nav > a:hover,
body[data-page="home"] .nav-group > button:hover,
body[data-page="home"] .primary-nav > a[aria-current="page"] { color: var(--lime); }
body[data-page="home"] .submenu { color: var(--ink); }
body[data-page="home"] .menu-toggle { border-color: rgba(255,255,255,.45); }
body[data-page="home"] .menu-toggle span:not(.sr-only) { background: var(--white); }

.hero-home { min-height: 860px; }
.hero-slide:first-child img { object-position: center 45%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(6,26,35,.93) 0%, rgba(6,26,35,.72) 46%, rgba(6,26,35,.18) 78%),
    linear-gradient(0deg, rgba(6,26,35,.64), transparent 54%);
}
.hero-inner { padding-top: 210px; padding-bottom: 112px; }
.hero-inner h1 { max-width: 900px; line-height: .94; letter-spacing: -.055em; }
.hero-copy { max-width: 720px; font-size: 1.1rem; line-height: 1.7; }
.eyebrow { color: var(--green); font-weight: 900; letter-spacing: .16em; }
.eyebrow.light { color: #cbed93; }

.proof-strip {
  width: var(--shell);
  margin: -54px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.proof-strip .proof-grid { width: 100%; }
.proof-grid > div { min-height: 132px; background: var(--white); }
.proof-grid strong { font-family: Arial, Helvetica, sans-serif; }

.section { padding-block: 110px; }
.section-heading { margin-bottom: 48px; }
.sector-grid { gap: 24px; }
.sector-panel,
.sector-panel img,
.panel-shade { border-radius: 28px; }
.sector-kicker { border-radius: 999px; }

.catalogue-preview { background: var(--mist); }
.catalogue-heading { grid-template-columns: minmax(0,860px) minmax(280px,1fr); gap: 64px; align-items: end; }
.catalogue-heading h2 { max-width: 900px; }
.featured-search {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 12px;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid #d1e1d7;
  border-radius: 24px;
  background: var(--white);
}
.featured-search label { min-width: 0; }
.featured-search input,
.featured-search select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #d6e2da;
  border-radius: 14px;
  background: #fbfdfb;
  outline: none;
}
.featured-search input:focus,
.featured-search select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(14,108,61,.1); }
.featured-search button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 14px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.featured-search button:hover { transform: translateY(-2px); background: #163d2a; }
.featured-status { margin: 16px 0 0; color: var(--muted); font-size: .78rem; }

.featured-products,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  border: 0;
}
.product-card {
  min-width: 0;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d9e5dd;
  border-radius: 22px;
  background: var(--white);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: #bed7c7; box-shadow: 0 18px 45px rgba(15,76,44,.12); }
.product-visual {
  position: relative;
  min-height: 215px;
  overflow: hidden;
  border-bottom: 1px solid #dfe9e2;
  background: linear-gradient(135deg, #edf3ef, #f9fbf9);
}
.product-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5,30,20,.26), transparent);
}
.product-visual img { width: 100%; height: 215px; object-fit: cover; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.product-visual.is-packaging { background: #fff; }
.product-visual.is-packaging img { object-fit: contain; background: transparent; }
.product-visual.is-transparent-contain::after { display: none; }
.product-visual.is-transparent-contain img {
  box-sizing: border-box;
  padding: 8px 12px;
  filter: none;
}
.product-card:hover .product-visual img { transform: scale(1.025); }
.product-visual-label {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  max-width: calc(100% - 28px);
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5,30,20,.76);
  backdrop-filter: blur(8px);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .035em;
}
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 21px 23px 23px; }
.product-card-top { min-height: 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.product-icons {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  max-width: 194px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 12px;
  color: var(--green);
  background: linear-gradient(135deg, #e1f2e6, #f5f8df);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 9px 22px rgba(6,42,24,.14);
}
.product-icons:not(.is-multiple) .product-icon { width: 54px; min-width: 54px; height: 54px; border-radius: 16px; font-size: .92rem; }
.product-family {
  color: var(--green);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
}
.product-availability { flex: none; padding: 4px 7px; border: 1px solid #d6e4da; border-radius: 999px; color: var(--muted); background: #f8fbf9; font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.product-card h3 { margin: 10px 0 8px; font-size: 1.48rem; line-height: 1.18; letter-spacing: -.025em; }
.product-formula { margin: 0 0 14px; }
.product-formula code {
  display: inline-block;
  max-width: 100%;
  padding: 5px 9px;
  overflow-wrap: anywhere;
  border-radius: 8px;
  color: var(--blue);
  background: #edf4f8;
  font-family: Consolas, "Courier New", monospace;
  font-size: .82rem;
  line-height: 1.35;
}
.product-formula sub { font-size: .72em; }
.product-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #425a4e;
  font-size: .91rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-spec-line {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.45;
}
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.card-actions button,
.card-actions a {
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.card-actions a { display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.product-detail-button { border: 1px solid #cbdcd1; color: var(--ink); background: var(--white); }
.product-detail-button:hover { border-color: var(--green); color: var(--green); background: #f5faf6; }
.product-enquiry-button { border: 1px solid #163d2a; color: var(--white); background: #163d2a; }
.product-enquiry-button:hover { border-color: var(--green); background: var(--green); }
.card-actions button:active,
.card-actions a:active { transform: translateY(1px); }
.empty-state { grid-column: 1 / -1; padding: 45px 24px; border: 1px dashed #c9dacf; border-radius: 20px; background: rgba(255,255,255,.7); }

.dialog-product-header { display: grid; grid-template-columns: minmax(220px,.72fr) minmax(0,1.28fr); gap: clamp(24px,4vw,48px); align-items: center; margin-bottom: 34px; }
.dialog-product-visual { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--mist); }
.dialog-product-visual img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.dialog-product-visual.is-packaging { background: #fff; }
.dialog-product-visual.is-packaging img { object-fit: contain; background: transparent; }
.dialog-product-visual.is-transparent-contain img {
  box-sizing: border-box;
  padding: 18px;
  filter: none;
}
.dialog-product-visual figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 7px 10px; border-radius: 999px; color: var(--white); background: rgba(5,30,20,.8); text-align: center; font-size: .62rem; font-weight: 800; }
.dialog-product-header h2 { margin-bottom: 15px; }

.catalogue-page { background: var(--mist); }
.catalogue-toolbar {
  grid-template-columns: minmax(300px,1.35fr) minmax(190px,.65fr) auto;
  gap: 12px;
  padding: 24px;
  border: 1px solid #d1e1d7;
  border-radius: 24px;
  background: var(--white);
}
.catalogue-toolbar input[type="search"],
.catalogue-toolbar select,
.check-field { border-radius: 14px; background: #fbfdfb; }
.results-head { align-items: baseline; }
.results-head p { margin-bottom: 0; }
.catalogue-page .product-grid { margin-top: 22px; }
.load-more-wrap { padding-top: 50px; }

.product-dialog { border-radius: 24px; color: var(--ink); background: var(--white); }
.dialog-close { border: 0; border-radius: 50%; background: #edf3ef; }
.dialog-close:hover { color: var(--white); background: var(--green); }
.spec-grid { gap: 1px; overflow: hidden; border: 0; border-radius: 18px; background: var(--line); }
.spec-grid div { border: 0; background: #f5f8f6; }
.dialog-actions .button-outline:hover { color: var(--white); }
.enquiry-tray { border-radius: 16px; background: #163d2a; }
.enquiry-tray a { border-radius: 10px; }

.supply-section { background: var(--navy); }
.about-teaser { background: #e4eee8; }
.final-cta { background: var(--green); }
.site-footer { background: var(--navy); }
.page-hero { background: var(--navy); }
.document-grid { gap: 14px; border: 0; }
.document-grid article { border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.6); }
.document-grid article:hover { box-shadow: 0 15px 38px rgba(15,76,44,.09); }
.contact-note { border-radius: 16px; }
.enquiry-form { border-radius: 24px; background: #f7faf8; }
.enquiry-service-notice { border-radius: 18px; }
.form-grid input,
.form-grid select,
.form-grid textarea { border-radius: 14px; }
.selected-products > span { border-radius: 999px; }
.selected-products button { border-radius: 50%; }

@media (max-width: 1020px) {
  body[data-page="home"] .primary-nav { color: var(--ink); }
  .submenu-wide,
  .nav-group:hover .submenu-wide,
  .nav-group:focus-within .submenu-wide,
  .nav-group.is-open .submenu-wide { transform: none; }
  .featured-search { grid-template-columns: 1fr 1fr; }
  .featured-search button { grid-column: 1 / -1; }
  .featured-products, .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .catalogue-toolbar { grid-template-columns: 1fr 1fr; }
  .catalogue-toolbar .search-field { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body[data-page="home"] .utility-bar { display: none; }
  body[data-page="home"] .site-header { top: 0; }
  .brand { padding: 4px 12px 4px 6px; }
  .hero-home { min-height: 760px; }
  .hero-inner { padding-top: 160px; padding-bottom: 90px; }
  .proof-strip { margin-top: -34px; }
  .proof-grid > div { min-height: 108px; border: 0; }
  .proof-grid > div:last-child { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .section { padding-block: 78px; }
  .featured-search { grid-template-columns: 1fr; padding: 16px; border-radius: 20px; }
  .featured-search button { grid-column: auto; }
  .catalogue-heading { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .featured-products, .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 520px; }
  .product-visual, .product-visual img { min-height: 225px; height: 225px; }
  .catalogue-toolbar { grid-template-columns: 1fr; padding: 16px; border-radius: 20px; }
  .catalogue-toolbar .search-field { grid-column: auto; }
  .dialog-content { padding: 50px 22px 28px; }
  .dialog-product-header { grid-template-columns: 1fr; gap: 20px; }
  .dialog-product-visual { max-width: 340px; }
  .spec-grid { grid-template-columns: 1fr; }
  .dialog-actions { flex-direction: column; }
}

/* Client feedback v1.1 · product hierarchy, nutrient filters and review media */
.product-card { min-height: 500px; }
.product-image-button { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.product-image-button > img { display: block; }
.product-image-button > span { position: absolute; z-index: 3; top: 16px; right: 16px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; color: var(--white); background: rgba(5,30,20,.68); font-size: 1.05rem; transition: transform .2s ease, background .2s ease; }
.product-image-button:hover > span,
.product-image-button:focus-visible > span { transform: scale(1.08); background: var(--green); }
.product-image-button:focus-visible { outline: 3px solid var(--lime); outline-offset: -3px; }
.product-sku { display: flex; align-items: baseline; gap: 8px; margin: 0 0 14px; color: var(--muted); font-size: .72rem; }
.product-sku span { color: var(--green); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-sku strong { color: var(--ink-2); font-family: "Manrope", sans-serif; letter-spacing: .025em; }
.product-nutrient-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; }
.product-nutrient-list span { padding: 5px 9px; border: 1px solid #cfe1d5; border-radius: 999px; color: var(--green); background: #f4faf6; font-size: .66rem; font-weight: 800; }
.product-spec-list { display: grid; gap: 0; margin: 3px 0 20px; border-top: 1px solid var(--line); }
.product-spec-list > div { display: grid; grid-template-columns: 82px minmax(0,1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.product-spec-list dt { color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.product-spec-list dd { min-width: 0; margin: 0; color: var(--ink-2); font-size: .78rem; overflow-wrap: anywhere; }
.product-spec-empty { margin: 6px 0 20px; color: var(--muted); font-size: .78rem; }
.nutrient-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: -20px 0 38px; }
.nutrient-filter[hidden] { display: none; }
[data-liquid-filter-field][hidden] { display: none !important; }
.nutrient-filter > span { margin-right: 3px; color: var(--muted); font-size: .69rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.nutrient-filter button { min-height: 36px; padding: 0 14px; border: 1px solid #d3e1d7; border-radius: 999px; color: var(--ink-2); background: rgba(255,255,255,.72); font-weight: 800; cursor: pointer; }
.nutrient-filter button:hover,
.nutrient-filter button:focus-visible,
.nutrient-filter button.is-active { border-color: var(--green); color: var(--white); background: var(--green); }
.nutrient-filter button:disabled { cursor: not-allowed; opacity: .58; }
.catalogue-toolbar-hierarchical {
  grid-template-columns: minmax(300px,1.35fr) minmax(160px,.68fr) minmax(210px,.9fr) minmax(210px,.9fr) auto;
}
.catalogue-toolbar-hierarchical > label[hidden] { display: none !important; }
.catalogue-toolbar-hierarchical select:disabled { cursor: not-allowed; opacity: .58; }
.catalogue-toolbar-hierarchical option { color: var(--ink); background: var(--white); }
.document-request-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.document-request-links a { padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; color: var(--green); background: #f6faf7; font-weight: 800; }
.document-request-links a:hover { border-color: var(--green); background: var(--white); }

/* Independent product detail page */
.product-detail-page { min-height: 72vh; padding: 42px 0 118px; background: linear-gradient(180deg, #f8faf8 0%, var(--mist) 100%); }
.product-breadcrumb { min-width: 0; display: flex; align-items: center; gap: 10px; margin-bottom: 34px; color: var(--muted); font-size: .72rem; }
.product-breadcrumb a { color: var(--green); font-weight: 800; }
.product-breadcrumb span[aria-current="page"] { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr); gap: clamp(44px,6vw,96px); align-items: start; }
.product-detail-media { position: relative; min-width: 0; min-height: 520px; margin: 0; overflow: hidden; border: 1px solid #cbdcd1; border-radius: 28px; background: #e7eee9; box-shadow: 0 24px 58px rgba(12,55,34,.12); }
.product-detail-image-button { display: block; width: 100%; padding: 0; border: 0; cursor: zoom-in; background: transparent; }
.product-detail-image-button > img { display: block; width: 100%; height: clamp(520px,calc(100vh - 270px),700px); min-height: 520px; object-fit: cover; }
.product-detail-media.is-packaging { background: #fff; }
.product-detail-media.is-packaging .product-detail-image-button > img { object-fit: contain; background: transparent; }
.product-detail-media.is-representative { background: #fff; }
.product-detail-media.is-representative .product-detail-image-button > img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.product-detail-media.is-transparent-contain .product-detail-image-button > img {
  box-sizing: border-box;
  padding: clamp(18px,3vw,38px);
  filter: none;
}
.product-detail-media figcaption { position: absolute; right: 20px; bottom: 20px; max-width: calc(100% - 40px); padding: 9px 14px; border: 1px solid rgba(255,255,255,.56); border-radius: 999px; color: var(--white); background: rgba(5,30,20,.78); backdrop-filter: blur(8px); font-size: .65rem; font-weight: 800; text-align: right; }
.product-detail-media .product-icons { top: 20px; left: 20px; }
.product-detail-gallery { position: sticky; top: 112px; min-width: 0; }
.product-detail-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; margin-top: 14px; }
.product-detail-thumbnails button { overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 12px; cursor: pointer; background: #fff; }
.product-detail-thumbnails button.is-active { border-color: var(--green); }
.product-detail-thumbnails img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.product-detail-summary { min-width: 0; padding-top: 6px; }
.product-detail-back { display: inline-flex; margin-bottom: 34px; color: var(--green); font-size: .75rem; font-weight: 800; }
.product-detail-heading { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: start; }
.product-detail-heading .eyebrow { margin-bottom: 13px; color: var(--green); }
.product-detail-heading h1 { max-width: 15ch; margin: 0; font-size: clamp(2.45rem,3.35vw,4.2rem); line-height: 1; letter-spacing: -.045em; overflow-wrap: anywhere; }
.product-detail-availability { margin-top: 28px; padding: 7px 11px; border: 1px solid #cfe1d5; border-radius: 999px; color: var(--green); background: #f4faf6; font-size: .63rem; font-weight: 900; text-transform: uppercase; }
.product-detail-lead { max-width: 620px; margin: 28px 0; color: var(--muted); font-size: 1.425rem; line-height: 1.55; }
.product-detail-description { max-width: 680px; padding: 22px 0; border-top: 1px solid var(--line); }
.product-detail-description h2 { margin: 0 0 10px; color: var(--green); font-size: .68rem; font-weight: 900; letter-spacing: .085em; text-transform: uppercase; }
.product-detail-description p { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.72; }
.product-detail-nutrients { display: grid; grid-template-columns: 94px minmax(0,1fr); gap: 14px; align-items: start; padding: 18px 0; border-top: 1px solid var(--line); }
.product-detail-nutrients > span { padding-top: 5px; color: var(--muted); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-detail-nutrients .product-nutrient-list { margin: 0; }
.product-detail-information { margin: 6px 0 28px; border-top: 1px solid var(--green); }
.product-info-section { padding: 22px 0; border-bottom: 1px solid #bdcec2; }
.product-info-section-body { min-width: 0; }
.product-info-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px 36px; margin: 0; }
.product-info-list > div { min-width: 0; }
.product-info-list > div.is-wide { grid-column: 1 / -1; }
.product-info-list dt { margin-bottom: 7px; color: var(--green); font-size: .61rem; font-weight: 900; letter-spacing: .085em; text-transform: uppercase; }
.product-info-list dd { min-width: 0; margin: 0; color: var(--ink); font-size: .9rem; font-weight: 700; line-height: 1.55; overflow-wrap: anywhere; }
.product-info-value.is-code,
.product-info-inline-list.is-code,
.product-info-value-list.is-code { color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace; letter-spacing: -.02em; }
.product-info-inline-list { display: flex; flex-wrap: wrap; gap: 5px 0; margin: 0; padding: 0; list-style: none; }
.product-info-inline-list li { display: inline-flex; align-items: center; }
.product-info-inline-list li:not(:last-child)::after { width: 3px; height: 3px; margin: 0 10px; border-radius: 50%; background: var(--lime-dark); content: ""; }
.product-info-value-list { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.product-info-value-list li { display: block; }
.product-info-status { display: grid; grid-template-columns: minmax(112px,.52fr) minmax(0,1fr); gap: 18px; margin-bottom: 22px; padding: 0 0 16px 14px; border-bottom: 1px solid var(--line); border-left: 3px solid var(--green); color: var(--green); }
.product-info-status-label { display: flex; gap: 9px; align-items: center; font-size: .6rem; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }
.product-info-status-icon { display: inline-flex; flex: 0 0 auto; width: 22px; height: 22px; color: var(--green); }
.product-info-status-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.product-info-status strong { color: var(--ink); font-size: .84rem; line-height: 1.4; }
.product-info-section.is-regulated .product-info-status { border-left-color: #b17a00; color: #725000; background: linear-gradient(90deg,rgba(232,174,35,.09),transparent 62%); }
.product-info-section.is-regulated .product-info-status-icon { color: #9a6500; }
.product-detail-analysis { padding: 26px 0; border-bottom: 1px solid #bdcec2; }
.product-detail-analysis > h2 { margin: 0 0 16px; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .085em; text-transform: uppercase; }
.product-detail-analysis > dl { display: grid; grid-template-columns: repeat(auto-fit,minmax(92px,1fr)); margin: 0; border-block: 1px solid var(--line); }
.product-detail-analysis > dl > div { min-width: 0; padding: 15px 16px; border-left: 1px solid var(--line); }
.product-detail-analysis > dl > div:first-child { border-left: 0; }
.product-detail-analysis dt { color: var(--green); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-detail-analysis dd { margin: 5px 0 0; color: var(--ink); font-size: 1.25rem; font-weight: 850; line-height: 1.1; }
.product-detail-analysis > p { margin: 12px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.5; }
.product-detail-notice { display: grid; gap: 5px; margin: 24px 0; padding: 16px 18px; border-left: 3px solid var(--lime); color: var(--muted); background: rgba(255,255,255,.68); font-size: .74rem; line-height: 1.55; }
.product-detail-notice strong { color: var(--ink); }
.product-detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.product-detail-actions .button { width: 100%; min-width: 0; justify-content: space-between; }
.product-detail-actions .button-outline { background: var(--white); }
.product-detail-actions .button-outline:hover { color: var(--white); background: var(--green); border-color: var(--green); }
.product-detail-documents { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.product-detail-documents a { display: grid; gap: 8px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.66); }
.product-detail-documents a:hover { border-color: var(--green); background: var(--white); }
.product-detail-documents span { color: var(--muted); font-size: .64rem; }
.product-detail-documents strong { color: var(--green); font-size: .77rem; }
.product-detail-empty { max-width: 760px; margin: 70px 0 30px; }
.product-detail-empty h1 { margin: 8px 0 18px; }
.product-detail-empty p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }

.image-lightbox { width: min(1100px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: hidden; border: 0; border-radius: 22px; background: #071b13; box-shadow: 0 32px 100px rgba(0,0,0,.42); }
.image-lightbox::backdrop { background: rgba(2,17,11,.82); backdrop-filter: blur(8px); }
.image-lightbox img { display: block; width: 100%; max-height: calc(100vh - 32px); object-fit: contain; }
.image-lightbox button { position: absolute; z-index: 2; top: 16px; right: 16px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); background: rgba(5,30,20,.78); font-size: 1.4rem; cursor: pointer; }
.brochure-card { background: linear-gradient(145deg, #f5faf6, #fff) !important; }
.brochure-card > span { color: var(--green); }

.contact-directory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.contact-card { min-height: 330px; padding: 28px 24px; }
.contact-card-index { margin-bottom: 30px; }
.contact-card h3 { font-size: clamp(1.55rem, 1.9vw, 2.15rem); }
.contact-card-role { min-height: 3.2em; font-size: .82rem; }
.contact-card address { margin-top: 22px; }
.contact-card dl { margin-top: 22px; }
.contact-card dl > div { grid-template-columns: 58px minmax(0, 1fr); gap: 10px; padding: 12px 0; }
.contact-card dd { font-size: .78rem; }

.milestone-photo-grid { min-width: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.milestone-photo-grid .milestone-photo { min-width: 0; }
.milestone-photo-grid .milestone-photo img { height: 100%; min-height: 250px; }
.milestone-photo-wide img { max-height: 470px; }
.milestone-media-review { position: relative; }
.milestone-media-review::after { content: "Local review · media clearance pending"; position: absolute; top: 16px; right: 0; padding: 5px 9px; border-radius: 999px; color: #785600; background: #fff2bd; font-size: .6rem; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }

@media (max-width: 1180px) {
  .contact-directory-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-directory-section { background-attachment: scroll; }
}

/* 27-inch / QHD: use the available canvas without stretching copy indefinitely. */
@media (min-width: 2200px) {
  :root { --shell: min(1840px, calc(100vw - 128px)); }
}

/* 32-inch / 4K: preserve comfortable gutters and increase catalogue density. */
@media (min-width: 3200px) {
  :root { --shell: min(2360px, calc(100vw - 220px)); }
}

@media (min-width: 1500px) {
  .featured-products,
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 3200px) {
  .featured-products,
  .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
  .milestone-with-image .milestone-photo-grid { grid-column: 2; }
  .milestone-media-review::after { position: static; grid-column: 2; justify-self: start; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 46px; }
  .product-detail-gallery { position: relative; top: auto; }
  .product-detail-media { position: relative; top: auto; min-height: 560px; }
  .product-detail-image-button > img { height: min(68vh,680px); min-height: 560px; }
  .product-detail-summary { max-width: 760px; }
}

@media (max-width: 1280px) {
  .catalogue-toolbar-hierarchical { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalogue-toolbar-hierarchical .search-field { grid-column: 1 / -1; }
  .catalogue-toolbar-hierarchical .check-field { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .page-hero h1 { font-size: clamp(2.75rem, 12vw, 3.35rem); }
  .contact-hero h1 { font-size: clamp(2.65rem, 11.5vw, 3.25rem); }
  .product-card { min-height: 0; }
  .catalogue-toolbar-hierarchical { grid-template-columns: 1fr; }
  .catalogue-toolbar-hierarchical .search-field,
  .catalogue-toolbar-hierarchical .check-field { grid-column: auto; }
  .nutrient-filter { flex-wrap: nowrap; margin-inline: -14px; padding: 0 14px 8px; overflow-x: auto; }
  .nutrient-filter > * { flex: 0 0 auto; }
  .document-request-links { grid-template-columns: 1fr; }
  .contact-directory-grid { grid-template-columns: 1fr; }
  .contact-directory-section { min-height: 0; background-position: 58% center; }
  .milestone-photo-grid { grid-template-columns: 1fr; }
  .milestone-photo-grid .milestone-photo img { min-height: 0; }
  .milestone-with-image .milestone-photo-grid,
  .milestone-media-review::after { grid-column: 1 / -1; }
  .product-detail-page { padding: 24px 0 82px; }
  .product-breadcrumb { margin-bottom: 22px; }
  .product-detail-layout { gap: 32px; }
  .product-detail-media { min-height: 440px; border-radius: 20px; }
  .product-detail-image-button > img { height: 500px; min-height: 440px; }
  .product-detail-media figcaption { right: 12px; bottom: 12px; max-width: calc(100% - 24px); }
  .product-detail-media .product-icons { top: 12px; left: 12px; }
  .product-detail-back { margin-bottom: 24px; }
  .product-detail-heading { grid-template-columns: 1fr; gap: 14px; }
  .product-detail-heading h1 { max-width: none; font-size: clamp(2.15rem,10.5vw,2.9rem); }
  .product-detail-availability { justify-self: start; margin-top: 0; }
  .product-detail-lead { margin: 22px 0; }
  .product-detail-nutrients { grid-template-columns: 1fr; gap: 8px; }
  .product-info-section { padding: 20px 0; }
  .product-info-list { grid-template-columns: 1fr; }
  .product-info-list > div { grid-column: 1; }
  .product-info-status { grid-template-columns: 1fr; gap: 5px; }
  .product-detail-analysis > dl { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-detail-analysis > dl > div:nth-child(odd) { border-left: 0; }
  .product-detail-actions,
  .product-detail-documents { grid-template-columns: 1fr; }
}
