:root {
  --green-950: #082f29;
  --green-900: #103f35;
  --green-800: #175244;
  --green-700: #246857;
  --lime: #8de313;
  --lime-dark: #64ad00;
  --gold: #d3944a;
  --ink: #142a24;
  --muted: #5d6f68;
  --line: #dbe4df;
  --surface: #ffffff;
  --tint: #f3f7f3;
  --cream: #fbfcf8;
  --danger: #a12622;
  --shadow: 0 18px 50px rgba(8, 47, 41, 0.1);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.25rem; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--lime); color: var(--green-950); padding: 12px 18px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.eyebrow { margin: 0 0 16px; color: var(--lime-dark); font-size: .78rem; line-height: 1.4; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: var(--lime); }
.section { padding: 104px 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--green-950); color: white; }
.section-dark .section-heading p { color: #cbdad4; }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 680px; margin-top: 20px; color: var(--muted); font-size: 1.1rem; }
.section-action { display: flex; justify-content: center; margin-top: 44px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 850; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button-primary { background: var(--lime); color: var(--green-950); box-shadow: 0 10px 26px rgba(141, 227, 19, .2); }
.button-primary:hover { background: #9eed22; box-shadow: 0 13px 30px rgba(141, 227, 19, .3); }
.button-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.button-ghost:hover { background: white; color: var(--green-950); }
.button-outline { background: transparent; color: var(--green-900); border-color: var(--green-700); }
.button-outline:hover { background: var(--green-900); color: white; }
.button-light { background: white; color: var(--green-950); }
.button-light:hover { background: var(--lime); }
.button-small { min-height: 44px; padding: 9px 18px; font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--green-800); font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header { position: relative; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(219,228,223,.9); }
.topbar { background: var(--green-950); color: #d8e6e1; font-size: .78rem; }
.topbar .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: white; font-weight: 700; }
.nav-shell { min-height: 84px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.brand img { width: 176px; height: auto; }
.primary-navigation { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 30px); }
.primary-navigation a { position: relative; min-height: 44px; display: inline-flex; align-items: center; color: #28473e; font-size: .94rem; font-weight: 750; }
.primary-navigation a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--lime-dark); transition: right .2s ease; }
.primary-navigation a:hover::after, .primary-navigation a[aria-current="page"]::after { right: 0; }
.primary-navigation a[aria-current="page"] { color: var(--green-900); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-link { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; font-weight: 850; }
.language-link:hover { border-color: var(--green-700); }
.menu-button { display: none; width: 48px; height: 48px; border: 0; background: transparent; padding: 11px; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: var(--green-950); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { color: white; background: var(--green-900); }
.hero-home { min-height: 730px; background: var(--green-900); }
.hero-grid { min-height: 730px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); }
.hero-copy { padding: 94px 72px 76px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1 { max-width: 760px; }
.hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 26px 0 32px; color: #d5e4de; font-size: 1.12rem; }
.hero-visual { min-height: 640px; align-self: stretch; margin-right: calc((100vw - var(--container)) / -2); padding: 34px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; background: linear-gradient(180deg, rgba(8,47,41,0) 48%, rgba(8,47,41,.54) 100%), linear-gradient(90deg, rgba(16,63,53,.12), rgba(16,63,53,0)), url("/assets/hero-brand-v4.webp") 54% center / cover no-repeat; }
.hero-visual span, .hero-visual strong { max-width: 410px; padding: 8px 16px; background: rgba(8,47,41,.9); }
.hero-visual span { padding-bottom: 2px; color: var(--lime); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.hero-visual strong { padding-top: 2px; font-size: 1.05rem; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 42px 0 0; }
.hero-metrics div { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); }
.hero-metrics dt { font-size: 1.7rem; font-weight: 900; }
.hero-metrics dd { margin: 4px 0 0; color: #b9cbc5; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.inner-hero { padding: 110px 0 104px; background: var(--green-900); color: white; overflow: hidden; }
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 900px; }
.inner-hero .container > p:last-child { max-width: 730px; margin: 26px 0 0; color: #d5e4de; font-size: 1.15rem; }
.inner-hero-image { position: relative; background-image: linear-gradient(90deg, rgba(8,47,41,.98) 0%, rgba(8,47,41,.86) 52%, rgba(8,47,41,.25) 100%), var(--hero-image); background-size: cover; background-position: center; }

.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 134px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); align-items: center; gap: 26px; }
.trust-grid .eyebrow { margin-bottom: 6px; }
.certificate-badge { min-height: 80px; display: flex; align-items: center; gap: 12px; padding-left: 24px; border-left: 1px solid var(--line); }
.certificate-badge img { width: 84px; height: 52px; object-fit: contain; }
.certificate-badge span { font-size: .82rem; color: var(--muted); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-height: 220px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.category-card:hover { border-color: var(--lime-dark); box-shadow: var(--shadow); background: #fbfff5; }
.category-card span { color: var(--lime-dark); font-weight: 900; }
.category-card small { color: var(--muted); }
.category-card:first-child { grid-column: span 2; background: var(--green-900); color: white; border-color: var(--green-900); }
.category-card:first-child small { color: #cbdad4; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.media-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.media-card-image { display: block; aspect-ratio: 4/3; overflow: hidden; background: #e5ece8; }
.media-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.media-card:hover .media-card-image img { transform: scale(1.035); }
.media-card > div { padding: 28px; }
.media-card p:not(.eyebrow) { color: var(--muted); }
.media-card h3 { margin-bottom: 14px; }
.media-card h3 a:hover { color: var(--green-700); }
.feature-grid.compact article { min-height: 230px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-grid.compact article p { margin: 18px 0 0; color: var(--muted); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-layout > div > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--muted); font-size: 1.08rem; }
.rounded-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.mission-panel { padding: 62px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; color: white; background: var(--green-900); border-radius: var(--radius-lg); }
.mission-panel > p { margin: 0; color: #d5e4de; font-size: 1.08rem; }

.testimonials-section { background: var(--green-950); color: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testimonial-grid blockquote { margin: 0; min-height: 210px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.testimonial-grid blockquote p { font-size: 1.12rem; }
.testimonial-grid blockquote footer { color: var(--lime); font-weight: 750; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-card { min-height: 300px; padding: 32px; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.insight-card > span { color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .13em; }
.insight-card h3, .insight-card h2 { margin: 40px 0 18px; }
.insight-card h2 { font-size: 1.8rem; }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; }
.insight-card-large { min-height: 380px; }
.cta-section { padding: 84px 0; color: white; background: var(--green-900); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-grid > div { max-width: 800px; }
.cta-grid h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-grid p:not(.eyebrow) { margin: 20px 0 0; color: #d5e4de; }

.process-grid, .trace-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-grid li, .trace-grid li { min-height: 220px; padding: 26px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.process-grid li > span, .trace-grid li > span { display: block; margin-bottom: 48px; color: var(--lime-dark); font-weight: 900; }
.process-grid li strong, .trace-grid li strong { font-size: 1.12rem; }
.process-grid li p, .trace-grid li p { margin: 12px 0 0; color: var(--muted); font-size: .92rem; }
.section-dark .trace-grid { grid-template-columns: repeat(4,1fr); }
.section-dark .trace-grid li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.section-dark .trace-grid li p { color: #cbdad4; }
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-gallery figure { margin: 0; overflow: hidden; aspect-ratio: 4/3; background: #dfe7e3; border-radius: var(--radius-sm); }
.photo-gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
.photo-gallery img { width: 100%; height: 100%; object-fit: cover; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--lime-dark); font-weight: 900; }
.certificate-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.certificate-panel > div { padding: 24px 12px; text-align: center; background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.certificate-panel img { width: 112px; height: 70px; margin: 0 auto 12px; object-fit: contain; }
.certificate-panel span { display: block; font-size: .78rem; color: var(--muted); }
.method-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.method-grid > div { min-height: 160px; padding: 24px 16px; display: flex; flex-direction: column; justify-content: flex-end; color: white; background: var(--green-900); border-radius: var(--radius-sm); }
.method-grid strong { color: var(--lime); font-size: 1.35rem; }
.method-grid span { color: #d5e4de; font-size: .86rem; }
.solution-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.solution-steps li { min-height: 300px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.solution-steps li > span { color: var(--lime-dark); font-size: 1.15rem; font-weight: 900; }
.solution-steps h3 { margin-bottom: 14px; }
.solution-steps p { margin: 0; color: var(--muted); font-size: .92rem; }

.catalog-toolbar { padding: 32px; background: var(--green-900); border-radius: var(--radius); }
.catalog-toolbar > label { display: block; margin-bottom: 12px; color: white; font-weight: 850; }
.catalog-search { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.catalog-search input { min-height: 54px; width: 100%; padding: 12px 18px; border: 1px solid transparent; border-radius: 999px; background: white; color: var(--ink); }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.filter-chip { min-height: 44px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--green-900); font-weight: 750; cursor: pointer; }
.filter-chip:hover, .filter-chip.is-active { color: white; background: var(--green-900); border-color: var(--green-900); }
.catalog-status { margin: 12px 0 24px; color: var(--muted); }
.catalog-status strong { color: var(--ink); font-size: 1.2rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { min-width: 0; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s ease, box-shadow .2s ease; }
.product-card:hover { border-color: var(--lime-dark); box-shadow: var(--shadow); }
.product-card > a { height: 100%; display: flex; flex-direction: column; padding: 18px; }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #eff4f1; border-radius: 8px; }
.product-card span { margin-top: 18px; color: var(--lime-dark); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-card h3 { margin: 9px 0 12px; font-size: 1.06rem; line-height: 1.3; letter-spacing: -.015em; }
.product-card small { margin-top: auto; color: var(--muted); }
.empty-state { padding: 70px 20px; text-align: center; background: var(--tint); border-radius: var(--radius); }
.empty-state p { color: var(--muted); }
.static-grid { grid-template-columns: repeat(3, 1fr); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 46px; color: var(--muted); font-size: .88rem; }
.breadcrumb a:hover { color: var(--green-700); }
.product-detail-grid { display: grid; grid-template-columns: minmax(360px,.8fr) 1.2fr; gap: 72px; align-items: start; }
.product-detail-image { position: sticky; top: 24px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.product-detail-image img { width: 100%; aspect-ratio: 1/1; object-fit: contain; border-radius: 10px; }
.product-detail h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.cas-badge { display: inline-flex; margin: 22px 0; padding: 8px 13px; background: #e7f6cf; border-radius: 999px; color: #345c00; font-weight: 850; }
.spec-list { margin: 26px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.spec-list li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.product-note { margin-top: 24px; color: var(--muted); font-size: .88rem; }

.article-page { padding: 80px 0 100px; }
.article-container { max-width: 900px; }
.article-page h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.article-dek { margin: 28px 0; color: var(--muted); font-size: 1.3rem; }
.article-meta { display: flex; gap: 24px; padding: 18px 0 34px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.article-body { max-width: 760px; margin-top: 58px; }
.article-body section { margin-bottom: 46px; }
.article-body h2 { margin-bottom: 16px; font-size: 1.8rem; }
.article-body p { color: #3e544c; font-size: 1.06rem; }
.article-body aside, .prose-page aside { padding: 26px; background: #edf7df; border-left: 4px solid var(--lime-dark); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.article-body aside p, .prose-page aside p { margin: 8px 0 0; }
.prose-page { max-width: 860px; }
.prose-page > section { padding: 0 0 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.prose-page h2 { margin-bottom: 18px; font-size: 1.8rem; }
.prose-page p { color: #3e544c; }

.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.contact-layout > div > p { color: var(--muted); }
.contact-layout a { color: var(--green-700); font-weight: 800; }
.form-note { padding: 18px; background: var(--tint); border-radius: var(--radius-sm); font-size: .88rem; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label:not(.consent-row) { display: block; margin-bottom: 7px; font-weight: 800; }
.contact-form label span { color: var(--danger); }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: white; border: 1px solid #bac9c2; border-radius: 8px; }
.contact-form textarea { resize: vertical; }
.contact-form input:invalid[data-touched], .contact-form textarea:invalid[data-touched] { border-color: var(--danger); }
.form-wide { grid-column: 1 / -1; }
.consent-row { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .88rem; }
.consent-row input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--green-800); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form-status { margin: 0; color: var(--green-700); font-weight: 750; }
.form-status.is-error { color: var(--danger); }

.site-footer { padding: 66px 0 22px; color: #d7e4df; background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 180px; padding: 8px; background: white; border-radius: 8px; }
.footer-brand p { max-width: 300px; margin-top: 20px; color: #aebfba; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid strong { margin-bottom: 8px; color: white; }
.footer-grid a:hover { color: var(--lime); }
.footer-grid span { color: #aebfba; }
.footer-bottom { margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.13); color: #8fa49d; font-size: .82rem; }
.footer-bottom div { display: flex; gap: 20px; }
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 32px; text-align: center; background: var(--tint); }
.not-found > div { max-width: 620px; }
.not-found img { width: 220px; margin: 0 auto 46px; }
.not-found h1 { margin-bottom: 18px; }
.not-found .button-row { justify-content: center; margin-top: 30px; }

@media (max-width: 1120px) {
  .nav-shell { grid-template-columns: auto auto 1fr auto; gap: 14px; }
  .menu-button { display: block; grid-column: 2; }
  .primary-navigation { position: absolute; top: 118px; left: 0; right: 0; display: none; padding: 22px max(24px, calc((100vw - var(--container))/2)); flex-direction: column; align-items: stretch; background: white; border-top: 1px solid var(--line); box-shadow: 0 20px 40px rgba(8,47,41,.12); }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation a { min-height: 48px; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .nav-actions { grid-column: 4; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 42px; }
  .category-grid { grid-template-columns: repeat(3,1fr); }
  .category-card:first-child { grid-column: span 1; }
  .process-grid, .solution-steps { grid-template-columns: repeat(3,1fr); }
  .method-grid { grid-template-columns: repeat(3,1fr); }
  .product-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 680px); }
  .section { padding: 78px 0; }
  .topbar .container span { display: none; }
  .topbar .container { justify-content: flex-end; }
  .nav-shell { min-height: 74px; grid-template-columns: auto 1fr auto; }
  .brand img { width: 144px; }
  .brand { grid-row: 1; }
  .menu-button { grid-column: 3; grid-row: 1; }
  .nav-actions .button { display: none; }
  .nav-actions { grid-column: 2; grid-row: 1; justify-content: flex-end; }
  .primary-navigation { top: 108px; }
  .hero-home, .hero-grid { min-height: auto; }
  .hero-grid { width: 100%; grid-template-columns: 1fr; }
  .hero-copy { padding: 74px 24px 54px; }
  .hero-visual { min-height: 480px; margin-right: 0; background-position: 68% center; }
  .hero-metrics { gap: 12px; }
  .inner-hero { padding: 82px 0; }
  .trust-grid { padding: 28px 0; grid-template-columns: 1fr; gap: 14px; }
  .certificate-badge { padding: 12px 0; border-left: 0; border-top: 1px solid var(--line); }
  .category-grid, .feature-grid, .insight-grid, .testimonial-grid, .photo-gallery, .process-grid, .solution-steps, .section-dark .trace-grid, .product-grid, .static-grid { grid-template-columns: repeat(2,1fr); }
  .photo-gallery figure:first-child { grid-column: span 2; grid-row: span 1; }
  .split-layout, .mission-panel, .cta-grid, .contact-layout, .product-detail-grid { grid-template-columns: 1fr; }
  .split-layout { gap: 42px; }
  .mission-panel { padding: 42px; gap: 24px; }
  .cta-grid { gap: 30px; }
  .method-grid { grid-template-columns: repeat(2,1fr); }
  .certificate-panel { grid-template-columns: 1fr; }
  .product-detail-image { position: static; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 560px) {
  :root { --container: calc(100vw - 28px); }
  body { font-size: 16px; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .nav-shell { gap: 8px; }
  .language-link { border: 0; }
  .hero-copy { padding-inline: 20px; }
  .hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .hero-metrics dd { font-size: .67rem; }
  .hero-visual { min-height: 400px; padding: 20px; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .category-grid, .feature-grid, .insight-grid, .testimonial-grid, .photo-gallery, .process-grid, .solution-steps, .section-dark .trace-grid, .product-grid, .static-grid, .method-grid { grid-template-columns: 1fr; }
  .photo-gallery figure:first-child { grid-column: span 1; }
  .category-card { min-height: 180px; }
  .catalog-toolbar { padding: 22px; }
  .catalog-search { grid-template-columns: 1fr; }
  .catalog-search .button { width: 100%; }
  .contact-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .contact-form > div { grid-column: 1; }
  .form-actions .button { width: 100%; }
  .article-meta { flex-direction: column; gap: 4px; }
  .mission-panel { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

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

/* V6 production visual system — warm botanical surfaces, continuous gradients,
   and restrained React Bits-inspired reveal/spotlight interactions. */
:root {
  --green-950: #061f1a;
  --green-900: #0b3b31;
  --green-800: #145242;
  --green-700: #216b55;
  --green-600: #338066;
  --lime: #a4dc25;
  --lime-dark: #5d8d17;
  --gold: #c48a46;
  --ink: #102821;
  --muted: #526860;
  --line: rgba(23, 82, 68, .16);
  --surface: #fffef9;
  --tint: #e9f0e7;
  --cream: #f7f3e9;
  --cream-deep: #efe9dc;
  --sage: #dce8dc;
  --shadow: 0 24px 70px rgba(6, 31, 26, .12);
  --shadow-soft: 0 12px 34px rgba(6, 31, 26, .08);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --ease-out: cubic-bezier(.2, .75, .25, 1);
  --container: min(1260px, calc(100vw - 64px));
}

body {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 8% 16%, rgba(164, 220, 37, .06), transparent 28%),
    radial-gradient(circle at 92% 55%, rgba(33, 107, 85, .06), transparent 32%);
}

main { overflow: clip; }
h1, h2, h3 { text-wrap: balance; }
h1 { font-weight: 780; }
h2 { font-weight: 760; }
p { text-wrap: pretty; }

.section {
  position: relative;
  padding: 118px 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(164, 220, 37, .05), transparent 24%),
    linear-gradient(180deg, #f8f5ed 0%, #f5f2e9 100%);
}

.section-tint {
  background:
    radial-gradient(circle at 12% 18%, rgba(164, 220, 37, .12), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(33, 107, 85, .09), transparent 32%),
    linear-gradient(155deg, #e5eee4 0%, #f4f2e7 58%, #e8efe6 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 15% 12%, rgba(164, 220, 37, .11), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(51, 128, 102, .2), transparent 32%),
    linear-gradient(145deg, #0c4034 0%, var(--green-950) 70%);
}

.section-heading { margin-bottom: 56px; }
.section-heading > p:last-child { color: #5a6f66; }
.eyebrow { color: var(--lime-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 249, .88);
  border-bottom-color: rgba(23, 82, 68, .12);
  box-shadow: 0 8px 30px rgba(6, 31, 26, .035);
  backdrop-filter: blur(18px) saturate(140%);
}

.topbar {
  background: linear-gradient(90deg, var(--green-950), #0f493b 62%, #174f3d);
}

.nav-shell { min-height: 88px; }
.primary-navigation a::after {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), #6bbd22);
}

.language-link {
  background: rgba(255, 255, 255, .58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.button {
  position: relative;
  overflow: hidden;
  transition:
    transform .22s var(--ease-out),
    background .22s ease,
    color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }
.button-primary {
  background: linear-gradient(135deg, #b5eb37 0%, #8fd517 100%);
  box-shadow: 0 12px 30px rgba(139, 211, 23, .24);
}
.button-primary:hover {
  background: linear-gradient(135deg, #c0f044 0%, #9ade20 100%);
  box-shadow: 0 16px 36px rgba(139, 211, 23, .32);
}

.hero-home {
  min-height: 760px;
  background:
    radial-gradient(circle at 18% 22%, rgba(164, 220, 37, .14), transparent 25%),
    radial-gradient(circle at 72% 76%, rgba(51, 128, 102, .2), transparent 30%),
    linear-gradient(135deg, #082b25 0%, #0b3b31 50%, #103f34 100%);
}

.hero-grid {
  min-height: 760px;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 42px;
}

.hero-copy { padding: 104px 0 92px; }
.hero-copy h1 {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 8%, #ffffff 34%, #dcebcf 52%, #a7df2a 67%, #ffffff 86%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: vitalleo-gradient-text 9s ease-in-out infinite;
}

@keyframes vitalleo-gradient-text {
  0%, 28% { background-position: 100% 50%; }
  62%, 100% { background-position: 0% 50%; }
}

.hero-copy > p:not(.eyebrow) { color: #d7e5df; }
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  margin: 50px 0 50px 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 38px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
  background-position: 53% center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(164, 220, 37, .11), transparent 28%);
  pointer-events: none;
}

.hero-visual span,
.hero-visual strong {
  position: relative;
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, .22);
  border-right: 1px solid rgba(255, 255, 255, .22);
  background: rgba(6, 31, 26, .74);
  backdrop-filter: blur(14px);
}
.hero-visual span {
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px 14px 0 0;
}
.hero-visual strong {
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0 0 14px 14px;
}

.hero-metrics div {
  padding: 18px 14px 0;
  border-top-color: rgba(255, 255, 255, .22);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), transparent);
  border-radius: 0 0 12px 12px;
}

.inner-hero {
  position: relative;
  padding: 122px 0 138px;
  background:
    radial-gradient(circle at 18% 15%, rgba(164, 220, 37, .14), transparent 28%),
    linear-gradient(135deg, #082b25, #0e4739 62%, #145242);
}

.inner-hero-image {
  background-image:
    linear-gradient(90deg, rgba(6, 31, 26, .98) 0%, rgba(8, 47, 41, .9) 48%, rgba(8, 47, 41, .2) 100%),
    var(--hero-image);
}

.inner-hero h1 {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .18);
}

.inner-hero + .section {
  padding-top: 148px;
  background:
    linear-gradient(180deg, #cfe0d3 0, #eef2e9 72px, #f8f5ed 190px, #f5f2e9 100%);
}

.trust-strip {
  position: relative;
  padding: 38px 0 28px;
  background: linear-gradient(180deg, #0b3b31 0%, #d7e5d9 32%, #f7f3e9 100%);
  border: 0;
}

.trust-grid {
  min-height: 124px;
  padding: 22px 28px;
  background: rgba(255, 254, 249, .88);
  border: 1px solid rgba(23, 82, 68, .13);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.category-grid { gap: 22px; }
.category-card,
.media-card,
.insight-card,
.feature-grid.compact article,
.testimonial-grid blockquote,
.product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.category-card {
  min-height: 236px;
  padding: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(164, 220, 37, .1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(242, 247, 239, .94));
  border-color: rgba(23, 82, 68, .13);
  box-shadow: 0 8px 26px rgba(6, 31, 26, .045);
  transition: transform .28s var(--ease-out), border-color .28s ease, box-shadow .28s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(93, 141, 23, .5);
  background:
    radial-gradient(circle at 92% 12%, rgba(164, 220, 37, .16), transparent 36%),
    linear-gradient(145deg, #fffef9, #eef5e9);
  box-shadow: var(--shadow);
}
.category-card:first-child {
  background:
    radial-gradient(circle at 88% 14%, rgba(164, 220, 37, .2), transparent 30%),
    linear-gradient(145deg, #0b3b31, #145242);
  border-color: rgba(255, 255, 255, .12);
}

.feature-grid { gap: 26px; }
.media-card {
  background: linear-gradient(150deg, #fffef9 0%, #f1f5ed 100%);
  border-color: rgba(23, 82, 68, .13);
  border-radius: 26px;
  box-shadow: 0 10px 32px rgba(6, 31, 26, .06);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.media-card-image { aspect-ratio: 16 / 11; }
.media-card > div { padding: 30px; }

.rounded-image {
  min-height: 460px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 30px 70px rgba(6, 31, 26, .15);
}

.mission-panel {
  background:
    radial-gradient(circle at 85% 15%, rgba(164, 220, 37, .17), transparent 34%),
    linear-gradient(145deg, #0d4337, #082f29);
  box-shadow: var(--shadow);
}

.testimonials-section {
  padding-top: 174px;
  padding-bottom: 132px;
  background:
    linear-gradient(180deg, #f4f2e8 0%, #d8e6da 7%, #0d4337 19%, #061f1a 62%, #082b25 100%);
}

.testimonial-grid { gap: 22px; }
.testimonial-grid blockquote {
  min-height: 226px;
  background:
    radial-gradient(circle at 90% 12%, rgba(164, 220, 37, .1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
  border-color: rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
}

.testimonials-section + .section {
  padding-top: 176px;
  background:
    linear-gradient(180deg, #082b25 0%, #d7e5d9 8%, #f2f4eb 22%, #f8f5ed 100%);
}

.insight-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 138, 70, .09), transparent 28%),
    linear-gradient(150deg, #fffef9, #f3f5ec);
  border-color: rgba(23, 82, 68, .12);
  box-shadow: 0 10px 34px rgba(6, 31, 26, .055);
  transition: transform .28s var(--ease-out), box-shadow .28s ease;
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.cta-section {
  position: relative;
  padding: 156px 0 104px;
  background:
    radial-gradient(circle at 82% 24%, rgba(164, 220, 37, .14), transparent 28%),
    linear-gradient(180deg, #f8f5ed 0%, #cfe0d3 13%, #1c6650 36%, #0b3b31 72%, #061f1a 100%);
}

.process-grid li,
.trace-grid li,
.solution-steps li,
.certificate-panel > div,
.contact-form,
.product-detail-image {
  background:
    radial-gradient(circle at 92% 8%, rgba(164, 220, 37, .07), transparent 30%),
    linear-gradient(150deg, #fffef9, #f2f6ef);
  border-color: rgba(23, 82, 68, .13);
  box-shadow: 0 10px 30px rgba(6, 31, 26, .05);
}

.catalog-toolbar {
  position: relative;
  overflow: hidden;
  padding: 36px;
  background:
    radial-gradient(circle at 90% 8%, rgba(164, 220, 37, .22), transparent 28%),
    radial-gradient(circle at 18% 100%, rgba(51, 128, 102, .28), transparent 32%),
    linear-gradient(135deg, #0a352c, #145242);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(6, 31, 26, .19);
}

.catalog-search input {
  min-height: 58px;
  padding-inline: 22px;
  background: rgba(255, 254, 249, .96);
  border: 1px solid rgba(255, 255, 255, .56);
  box-shadow: inset 0 1px 0 white, 0 10px 24px rgba(6, 31, 26, .1);
}

.filter-row { gap: 11px; margin: 32px 0; }
.filter-chip {
  background: rgba(255, 254, 249, .8);
  border-color: rgba(23, 82, 68, .18);
  box-shadow: 0 5px 16px rgba(6, 31, 26, .035);
  transition: transform .2s var(--ease-out), background .2s ease, color .2s ease, box-shadow .2s ease;
}
.filter-chip:hover { transform: translateY(-2px); }
.filter-chip.is-active {
  background: linear-gradient(135deg, #155746, #0b3b31);
  box-shadow: 0 10px 24px rgba(11, 59, 49, .18);
}

.catalog-status { margin: 18px 0 30px; }
.catalog-status strong {
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.product-grid { gap: 24px; }
.product-card {
  border: 1px solid rgba(23, 82, 68, .13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 7%, rgba(164, 220, 37, .08), transparent 28%),
    linear-gradient(155deg, #fffef9 0%, #f3f6ef 100%);
  box-shadow: 0 10px 30px rgba(6, 31, 26, .055);
  transition: transform .28s var(--ease-out), border-color .28s ease, box-shadow .28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(93, 141, 23, .46);
  box-shadow: 0 24px 54px rgba(6, 31, 26, .14);
}

.product-card > a { padding: 12px 12px 24px; }
.product-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(23, 82, 68, .1);
  border-radius: 16px;
  background: linear-gradient(180deg, #faf9f3, #e8efe7);
}
.product-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  background: transparent;
  transition: transform .35s var(--ease-out), filter .35s ease;
}
.product-card:hover img { transform: scale(1.025); filter: saturate(1.03) contrast(1.02); }
.product-card span { margin: 20px 5px 0; color: #577f1d; line-height: 1.35; }
.product-card h3 {
  min-height: 2.6em;
  margin: 9px 5px 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card small { margin-inline: 5px; }

.product-detail-image { padding: 20px; }
.product-detail-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(180deg, #faf9f3, #e8efe7);
}

.contact-form { border-radius: 26px; }
.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  background: rgba(255, 254, 249, .92);
  border-color: rgba(23, 82, 68, .28);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: white;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(51, 128, 102, .12);
  outline: 0;
}

.site-footer {
  padding-top: 78px;
  background:
    radial-gradient(circle at 84% 10%, rgba(164, 220, 37, .07), transparent 28%),
    linear-gradient(180deg, #061f1a, #041612);
}

.interactive-surface::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    330px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(164, 220, 37, .14),
    transparent 62%
  );
  transition: opacity .28s ease;
}
.interactive-surface.has-spotlight::after { opacity: 1; }
.interactive-surface > * { position: relative; z-index: 1; }

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .62s var(--ease-out) var(--reveal-delay, 0ms),
    transform .62s var(--ease-out) var(--reveal-delay, 0ms);
}
.reveal-item.is-revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --container: min(100% - 40px, 980px); }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-visual { min-height: 600px; margin-left: 0; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 680px); }
  .section { padding: 88px 0; }
  .site-header { backdrop-filter: blur(16px); }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 82px 24px 56px; }
  .hero-visual {
    min-height: 500px;
    margin: 0 18px 38px;
    border-radius: 28px;
    background-position: 55% center;
  }
  .inner-hero { padding: 92px 0 120px; }
  .inner-hero + .section { padding-top: 120px; }
  .trust-strip { padding-top: 28px; }
  .trust-grid { padding: 22px; }
  .testimonials-section { padding-top: 136px; }
  .testimonials-section + .section { padding-top: 142px; }
  .cta-section { padding-top: 132px; }
  .rounded-image { min-height: 340px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100vw - 28px); }
  .section { padding: 76px 0; }
  .hero-copy { padding: 72px 18px 50px; }
  .hero-copy h1 {
    background-size: 280% 100%;
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }
  .hero-visual { min-height: 390px; margin: 0 14px 28px; padding: 18px; }
  .hero-metrics div { padding-inline: 8px; }
  .inner-hero { padding: 78px 0 104px; }
  .inner-hero + .section { padding-top: 96px; }
  .trust-strip { padding-inline: 0; }
  .trust-grid { border-radius: 20px; }
  .category-card { min-height: 194px; }
  .catalog-toolbar { padding: 24px 18px; border-radius: 22px; }
  .filter-row { margin-block: 24px; }
  .product-grid { gap: 18px; }
  .product-card > a { padding: 10px 10px 22px; }
  .product-card h3 { min-height: auto; }
  .rounded-image { min-height: 270px; }
  .testimonials-section { padding-top: 112px; }
  .testimonials-section + .section { padding-top: 118px; }
  .cta-section { padding-top: 112px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 { animation: none !important; background-position: 50% 50%; }
  .reveal-item { opacity: 1 !important; transform: none !important; }
  .interactive-surface::after { display: none; }
}

/* V8 — Botanical Precision System
   A brand language built from ingredient origin data, analytical signals,
   batch records, specification labels, and traceability stages. */
:root {
  --vl-forest: #072d27;
  --vl-forest-2: #0d4438;
  --vl-paper: #f4f1e7;
  --vl-paper-2: #ebece0;
  --vl-signal: #a4dc25;
  --vl-copper: #c88b46;
  --vl-grid: rgba(23, 79, 66, .105);
  --vl-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.brand-hero {
  position: relative;
  min-height: 820px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 18% 28%, rgba(164,220,37,.11), transparent 27%),
    var(--vl-forest);
}
.brand-hero::after {
  content: "VL / NATURAL INGREDIENT SYSTEM / 2026";
  position: absolute;
  right: 26px;
  bottom: 18px;
  color: rgba(255,255,255,.36);
  font: 600 .64rem/1 var(--vl-mono);
  letter-spacing: .13em;
  writing-mode: vertical-rl;
}
.brand-hero .hero-grid {
  min-height: 820px;
  grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr);
  gap: clamp(42px,5vw,84px);
  align-items: center;
}
.brand-hero .hero-copy {
  padding: 92px 0 76px;
}
.brand-hero .hero-copy h1 {
  color: #fff;
  background: none;
  animation: none;
  max-width: 680px;
  font-size: clamp(3.5rem,5.8vw,6.25rem);
  letter-spacing: -.06em;
}
.brand-hero .hero-copy h1 span {
  color: var(--vl-signal);
}
.brand-hero .hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: #d3e3dc;
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}
.hero-proof-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.18);
  color: #d9e8e2;
  font: 650 .72rem/1 var(--vl-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-evidence {
  min-height: 680px;
  display: grid;
  grid-template-rows: minmax(0,1.1fr) minmax(260px,.9fr);
  margin: 54px 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  box-shadow: 0 34px 80px rgba(0,0,0,.3);
  background: #09241f;
}
.hero-lab-window {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero-lab-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(7,45,39,.74)),
    linear-gradient(90deg, rgba(7,45,39,.28), transparent 38%);
}
.hero-lab-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  filter: saturate(.82) contrast(1.04);
}
.hero-lab-window span {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 18px;
  padding: 7px 10px;
  color: var(--vl-signal);
  background: rgba(7,45,39,.88);
  border-left: 2px solid var(--vl-signal);
  font: 700 .68rem/1 var(--vl-mono);
  letter-spacing: .12em;
}
.hero-signal-card {
  padding: 24px 28px 22px;
  color: var(--vl-forest);
  background:
    linear-gradient(90deg, var(--vl-grid) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(var(--vl-grid) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--vl-paper);
}
.hero-signal-card > div:first-child,
.signal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hero-signal-card > div:first-child span,
.signal-heading span {
  color: #557166;
  font: 700 .68rem/1.2 var(--vl-mono);
  letter-spacing: .11em;
}
.hero-signal-card > div:first-child strong,
.signal-heading strong {
  font-size: .88rem;
  letter-spacing: -.01em;
}
.chromatogram {
  width: 100%;
  height: auto;
  margin: 8px 0 4px;
}
.signal-grid {
  fill: none;
  stroke: rgba(23,79,66,.13);
  stroke-width: 1;
}
.signal-line {
  fill: none;
  stroke: #276853;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: vitalleo-signal 2.2s cubic-bezier(.2,.7,.2,1) .2s forwards;
}
.signal-node {
  fill: var(--vl-signal);
  stroke: var(--vl-forest);
  stroke-width: 3;
}
@keyframes vitalleo-signal { to { stroke-dashoffset: 0; } }
.hero-signal-card dl {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin: 0;
}
.hero-signal-card dl div {
  padding-top: 11px;
  border-top: 1px solid rgba(23,79,66,.22);
}
.hero-signal-card dt {
  font: 750 1.55rem/1 var(--vl-mono);
}
.hero-signal-card dd {
  margin: 5px 0 0;
  color: #5b7169;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.evidence-rail {
  color: white;
  background: #041c18;
  border-top: 1px solid rgba(255,255,255,.08);
}
.evidence-rail-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.evidence-rail-grid > div {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 4px 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.11);
}
.evidence-rail-grid > div:last-child { border-right: 0; }
.evidence-rail-grid span {
  grid-row: 1 / 3;
  color: var(--vl-signal);
  font: 700 .72rem/1 var(--vl-mono);
}
.evidence-rail-grid strong { font-size: 1rem; }
.evidence-rail-grid small { color: #9db3aa; font-size: .75rem; }

.brand-hero + .evidence-rail + .trust-strip {
  padding: 42px 0 48px;
  background: linear-gradient(180deg, #041c18 0%, #d7e5d9 38%, #f4f1e7 100%);
}
.portfolio-section {
  background:
    radial-gradient(circle at 92% 5%, rgba(164,220,37,.08), transparent 24%),
    var(--vl-paper);
}
.portfolio-section .category-grid { gap: 12px; }
.portfolio-section .category-card {
  min-height: 198px;
  padding: 26px;
  border-radius: 8px;
  box-shadow: none;
  background: rgba(255,255,255,.55);
  border-color: rgba(23,79,66,.18);
}
.portfolio-section .category-card:first-child {
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--vl-forest-2);
}
.portfolio-section .category-card > span {
  color: var(--vl-copper);
  font-family: var(--vl-mono);
}
.portfolio-section .category-card small { font-family: var(--vl-mono); }

.atlas-section {
  background:
    linear-gradient(90deg, var(--vl-grid) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(var(--vl-grid) 1px, transparent 1px) 0 0 / 48px 48px,
    #e9ecdf;
}
.atlas-layout {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(540px,1.14fr);
  gap: clamp(50px,7vw,100px);
  align-items: center;
}
.atlas-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}
.atlas-ledger {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin-top: 34px;
  border-top: 1px solid rgba(23,79,66,.25);
}
.atlas-ledger > div {
  min-height: 68px;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid rgba(23,79,66,.18);
}
.atlas-ledger strong,
.atlas-ledger span { display: block; }
.atlas-ledger strong {
  color: var(--vl-forest);
  font: 700 .7rem/1.2 var(--vl-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.atlas-ledger span { margin-top: 5px; color: #50665e; font-size: .83rem; }
.atlas-map-wrap { position: relative; }
.atlas-map-wrap > img {
  width: 100%;
  border: 1px solid rgba(23,79,66,.2);
  box-shadow: 0 24px 60px rgba(7,45,39,.12);
}
.atlas-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  max-width: 270px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  color: white;
  background: rgba(7,45,39,.92);
  border-left: 3px solid var(--vl-signal);
  backdrop-filter: blur(8px);
}
.atlas-caption span {
  color: var(--vl-signal);
  font: 750 2rem/1 var(--vl-mono);
}
.atlas-caption p { margin: 0; font-size: .75rem; line-height: 1.35; }

.quality-signature-section {
  padding: 132px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--vl-forest);
}
.quality-signature {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(340px,.75fr);
  gap: clamp(48px,7vw,94px);
}
.quality-signal {
  padding: 34px;
  color: var(--vl-forest);
  background: var(--vl-paper);
  border: 1px solid rgba(255,255,255,.12);
}
.quality-signal .signal-heading strong { max-width: 340px; text-align: right; font-size: 1.25rem; }
.method-ticker {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(23,79,66,.22);
  border-left: 1px solid rgba(23,79,66,.22);
}
.method-ticker > div {
  min-height: 80px;
  padding: 14px;
  border-right: 1px solid rgba(23,79,66,.22);
  border-bottom: 1px solid rgba(23,79,66,.22);
}
.method-ticker strong,
.method-ticker span { display: block; }
.method-ticker strong { font: 750 .82rem/1.2 var(--vl-mono); }
.method-ticker span { margin-top: 5px; color: #657a72; font-size: .71rem; }
.trace-sequence > div {
  min-height: 72px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.trace-sequence > div span {
  color: var(--vl-signal);
  font: 750 .75rem/1 var(--vl-mono);
}
.trace-sequence > div strong { font-size: 1.05rem; }
.trace-sequence > p { margin: 28px 0; color: #bbcec6; }
.trace-sequence .button-outline { color: white; border-color: rgba(255,255,255,.48); }
.trace-sequence .button-outline:hover { background: white; color: var(--vl-forest); }

.specs-section { background: #f7f4ea; }
.spec-ledger {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(23,79,66,.24);
  border-left: 1px solid rgba(23,79,66,.24);
}
.spec-ledger article {
  min-height: 212px;
  padding: 24px;
  border-right: 1px solid rgba(23,79,66,.24);
  border-bottom: 1px solid rgba(23,79,66,.24);
  background: rgba(255,255,255,.4);
}
.spec-ledger article > span {
  color: var(--vl-copper);
  font: 750 .72rem/1 var(--vl-mono);
}
.spec-ledger h3 { margin-top: 34px; font-size: 1.2rem; }
.spec-ledger dl { margin: 26px 0 0; }
.spec-ledger dl div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(23,79,66,.18);
}
.spec-ledger dt { color: #60756d; font-size: .76rem; }
.spec-ledger dd { margin: 0; color: var(--vl-forest); font: 750 .9rem/1 var(--vl-mono); }

.capability-section { background: linear-gradient(180deg,#f7f4ea,#e9ecdf); }
.capability-section .media-card { border-radius: 10px; box-shadow: none; }
.capability-section .media-card-image { aspect-ratio: 16 / 10; }
.company-statement-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(164,220,37,.12), transparent 28%),
    #d5e2d5;
}
.company-statement {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(340px,.72fr);
  gap: clamp(48px,8vw,120px);
  align-items: start;
}
.company-statement h2 { max-width: 760px; }
.company-statement > div:last-child p { color: #425d53; font-size: 1.08rem; }

.catalog-index-rail {
  color: white;
  background: #041c18;
}
.catalog-index-rail .container {
  min-height: 134px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: center;
}
.catalog-index-rail .container > div span,
.record-label {
  display: block;
  color: var(--vl-signal);
  font: 700 .7rem/1.2 var(--vl-mono);
  letter-spacing: .1em;
}
.catalog-index-rail .container > div strong { display: block; margin-top: 8px; }
.catalog-index-rail dl {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 0;
}
.catalog-index-rail dl div {
  min-height: 72px;
  padding: 10px 18px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.catalog-index-rail dt { color: var(--vl-signal); font: 750 1.45rem/1 var(--vl-mono); }
.catalog-index-rail dd { margin: 6px 0 0; color: #9eb5ac; font-size: .7rem; }

.product-card {
  border-radius: 10px;
  box-shadow: none;
  background: rgba(255,255,255,.62);
}
.product-card > a { display: flex; flex-direction: column; min-height: 100%; }
.product-card h3 { margin-bottom: 18px; }
.product-card-data {
  display: grid;
  gap: 8px;
  margin: auto 5px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(23,79,66,.15);
}
.product-card-data > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0,1fr);
  gap: 8px;
}
.product-card-data small {
  margin: 0;
  color: #6b7f77;
  font: 700 .57rem/1.35 var(--vl-mono);
  letter-spacing: .05em;
}
.product-card-data strong {
  display: -webkit-box;
  overflow: hidden;
  color: #2c4d42;
  font-size: .67rem;
  line-height: 1.35;
  font-weight: 650;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card em {
  align-self: flex-start;
  margin: 12px 5px 0;
  padding: 5px 7px;
  color: #3c5d51;
  background: #e9eee5;
  font: normal 700 .62rem/1 var(--vl-mono);
}
.product-media { border-radius: 7px; }
.product-card:hover { transform: translateY(-4px); }

.about-intro-section { background: var(--vl-paper); }
.capability-panorama-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 82% 16%, rgba(164,220,37,.14), transparent 27%),
    #041c18;
}
.capability-panorama-section::after {
  content: "VL / CAPABILITY SYSTEM";
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: rgba(255,255,255,.25);
  font: 650 .6rem/1 var(--vl-mono);
  letter-spacing: .14em;
  writing-mode: vertical-rl;
}
.capability-panorama-heading {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.72fr);
  gap: clamp(44px,7vw,104px);
  align-items: end;
  margin-bottom: clamp(44px,6vw,76px);
}
.capability-panorama-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.5rem,4.3vw,4.7rem);
  line-height: .98;
}
.capability-panorama-heading > p {
  max-width: 570px;
  margin: 0;
  color: #c0d3cb;
  font-size: 1.03rem;
}
.capability-panorama-grid {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(390px,.88fr);
  gap: clamp(22px,3vw,40px);
  align-items: stretch;
}
.capability-landscape {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.17);
  border-left: 1px solid rgba(255,255,255,.17);
}
.capability-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 18px;
  min-height: 214px;
  padding: clamp(26px,3vw,38px);
  border-right: 1px solid rgba(255,255,255,.17);
  border-bottom: 1px solid rgba(255,255,255,.17);
  background: rgba(9,48,40,.58);
}
.capability-grid article > span {
  color: var(--vl-signal);
  font: 750 .72rem/1 var(--vl-mono);
  letter-spacing: .08em;
}
.capability-grid h3 {
  margin: -4px 0 14px;
  color: #fff;
  font-size: clamp(1.12rem,1.5vw,1.4rem);
}
.capability-grid p {
  margin: 0;
  color: #a9c0b6;
  font-size: .88rem;
  line-height: 1.65;
}
.ingredient-family-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.ingredient-family-rail span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.16);
  color: #d6e4de;
  background: rgba(255,255,255,.035);
  font: 650 .64rem/1 var(--vl-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.project-case {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  color: var(--vl-forest);
  background: var(--vl-paper);
  box-shadow: 0 30px 76px rgba(0,0,0,.28);
}
.project-case-visual {
  position: relative;
  min-height: 178px;
  background:
    linear-gradient(180deg, rgba(4,28,24,.03), rgba(4,28,24,.72)),
    url("/assets/botanical-brand-v4.webp") center 44% / cover;
}
.project-case-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
}
.project-case-visual > span {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 28px;
  padding-left: 11px;
  border-left: 2px solid var(--vl-signal);
  color: #fff;
  font: 750 .66rem/1.2 var(--vl-mono);
  letter-spacing: .1em;
}
.project-case-body { padding: clamp(28px,3vw,42px); }
.project-case-body h3 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem,2.2vw,2.35rem);
  line-height: 1.08;
}
.project-case-body > p:not(.eyebrow) {
  margin: 0;
  color: #526a61;
  font-size: .92rem;
}
.project-case ol {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23,79,66,.2);
}
.project-case li {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(23,79,66,.2);
}
.project-case li > span {
  padding-top: 3px;
  color: #6a8f19;
  font: 750 .67rem/1 var(--vl-mono);
}
.project-case li strong,
.project-case li small { display: block; }
.project-case li strong {
  margin-bottom: 3px;
  font-size: .83rem;
}
.project-case li small {
  color: #647970;
  font-size: .72rem;
  line-height: 1.45;
}
.project-outcome {
  margin-top: 24px;
  padding: 19px 20px;
  border-left: 3px solid var(--vl-signal);
  background: #e7ecdf;
}
.project-outcome span,
.project-outcome strong { display: block; }
.project-outcome span {
  margin-bottom: 8px;
  color: #66851f;
  font: 750 .62rem/1 var(--vl-mono);
  letter-spacing: .09em;
}
.project-outcome strong {
  font-size: .83rem;
  line-height: 1.48;
}

/* About capability system v20 — one balanced story, not two competing columns. */
.capability-panorama-v20 {
  padding-block: clamp(88px, 8vw, 136px);
  background:
    radial-gradient(circle at 88% 12%, rgba(154, 225, 25, .13), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 64px 64px,
    #031f1a;
}
.capability-panorama-v20::after { display: none; }
.capability-v20-heading {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: start;
  margin-bottom: clamp(48px, 5.5vw, 82px);
}
.capability-v20-heading > .eyebrow {
  margin-top: .75em;
  color: var(--vl-signal);
}
.capability-v20-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.capability-v20-heading h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5.2vw, 6.15rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.capability-v20-heading > div > p {
  max-width: 510px;
  margin: 0 0 .3em;
  color: #b9cec6;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.65;
}
.capability-v20-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(30px, 3vw, 48px);
  border: 1px solid rgba(202, 225, 216, .22);
  border-radius: 18px;
  background: rgba(12, 57, 48, .58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}
.capability-v20-strip article {
  min-height: 220px;
  padding: clamp(28px, 2.6vw, 44px);
}
.capability-v20-strip article + article {
  border-left: 1px solid rgba(202, 225, 216, .18);
}
.capability-v20-strip h3 {
  max-width: 260px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.25rem, 1.55vw, 1.7rem);
  line-height: 1.12;
}
.capability-v20-strip p {
  max-width: 300px;
  margin: 0;
  color: #adc5bc;
  font-size: clamp(.88rem, .95vw, 1rem);
  line-height: 1.65;
}
.capability-v20-case {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(202, 225, 216, .24);
  border-radius: 22px;
  background: linear-gradient(130deg, rgba(15, 64, 53, .94), rgba(7, 40, 34, .98));
  box-shadow: 0 32px 86px rgba(0, 0, 0, .28);
}
.capability-v20-case-image {
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(3, 31, 26, .04), rgba(3, 31, 26, .26)),
    url("/assets/botanical-brand-v4.webp") center / cover;
}
.capability-v20-case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5.5vw, 88px);
}
.capability-v20-case-copy h3 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.25rem, 3.5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.capability-v20-case-copy > p:not(.eyebrow):not(.capability-v20-result) {
  max-width: 680px;
  margin: 0;
  color: #bdd0c8;
  font-size: clamp(.98rem, 1.12vw, 1.12rem);
  line-height: 1.7;
}
.capability-v20-result {
  max-width: 680px;
  margin: 28px 0 34px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(202, 225, 216, .22);
  color: #eff7f3;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.5;
}
.capability-v20-case-copy .button {
  align-self: flex-start;
}
@media (max-width: 1100px) {
  .capability-v20-heading,
  .capability-v20-heading > div { grid-template-columns: 1fr; }
  .capability-v20-heading { gap: 24px; }
  .capability-v20-heading > div { gap: 24px; }
  .capability-v20-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-v20-strip article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(202, 225, 216, .18); }
  .capability-v20-strip article:nth-child(4) { border-top: 1px solid rgba(202, 225, 216, .18); }
  .capability-v20-case { grid-template-columns: 1fr; }
  .capability-v20-case-image { min-height: 420px; }
}

.enquiry-section {
  background:
    linear-gradient(90deg, var(--vl-grid) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(var(--vl-grid) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--vl-paper);
}
.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(330px,.72fr) minmax(0,1.28fr);
  gap: clamp(36px,6vw,86px);
  align-items: start;
}
.enquiry-brief {
  position: sticky;
  top: 158px;
}
.enquiry-brief h2 { font-size: clamp(2.2rem,3.5vw,3.8rem); }
.brief-ledger {
  margin-top: 36px;
  border-top: 1px solid rgba(23,79,66,.24);
}
.brief-ledger > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,79,66,.2);
}
.brief-ledger > div > span {
  color: var(--vl-copper);
  font: 750 .7rem/1.4 var(--vl-mono);
}
.brief-ledger p { margin: 0; }
.brief-ledger strong,
.brief-ledger small { display: block; }
.brief-ledger strong { font-size: .88rem; }
.brief-ledger small { margin-top: 4px; color: #667b73; line-height: 1.4; }
.direct-contact {
  margin-top: 28px;
  padding: 22px;
  color: white;
  background: var(--vl-forest);
  border-left: 3px solid var(--vl-signal);
}
.direct-contact span,
.direct-contact a,
.direct-contact small { display: block; }
.direct-contact span { color: var(--vl-signal); font: 700 .65rem/1 var(--vl-mono); letter-spacing: .1em; }
.direct-contact a { margin-top: 12px; font-weight: 800; }
.direct-contact small { margin-top: 6px; color: #a8bbb3; }
.contact-form-v8 {
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(7,45,39,.11);
}

.reveal-item {
  transition-duration: .44s;
}

@media (max-width: 1120px) {
  .brand-hero .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(450px,1.1fr); gap: 34px; }
  .brand-hero .hero-copy h1 { font-size: clamp(3.2rem,5.2vw,5rem); }
  .hero-evidence { min-height: 620px; }
  .atlas-layout { grid-template-columns: minmax(0,.9fr) minmax(470px,1.1fr); gap: 44px; }
  .quality-signature { grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr); }
  .spec-ledger { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .brand-hero { min-height: auto; }
  .brand-hero .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .brand-hero .hero-copy { padding: 82px 24px 54px; }
  .brand-hero .hero-copy h1 { font-size: clamp(3rem,11vw,5rem); }
  .hero-evidence { min-height: 610px; margin: 0 18px 44px; }
  .evidence-rail-grid { grid-template-columns: repeat(2,1fr); }
  .evidence-rail-grid > div:nth-child(2) { border-right: 0; }
  .evidence-rail-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
  .atlas-layout,
  .quality-signature,
  .company-statement,
  .enquiry-layout { grid-template-columns: 1fr; }
  .atlas-map-wrap { order: -1; }
  .quality-signature-section { padding: 104px 0; }
  .capability-panorama-heading,
  .capability-panorama-grid { grid-template-columns: 1fr; }
  .project-case { max-width: 680px; }
  .catalog-index-rail .container { grid-template-columns: 1fr; gap: 18px; padding-block: 28px; }
  .enquiry-brief { position: static; }
}

@media (max-width: 560px) {
  .brand-hero::after { display: none; }
  .brand-hero .hero-copy { padding: 70px 18px 46px; }
  .brand-hero .hero-copy h1 { font-size: clamp(2.8rem,12.5vw,4rem); }
  .hero-proof-row { gap: 7px; }
  .hero-proof-row span { font-size: .61rem; }
  .hero-evidence { min-height: 520px; grid-template-rows: 250px 1fr; margin: 0 14px 28px; border-radius: 14px; }
  .hero-signal-card { padding: 18px; }
  .hero-signal-card > div:first-child { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hero-signal-card .chromatogram { margin-block: 0; }
  .hero-signal-card dt { font-size: 1.2rem; }
  .evidence-rail-grid > div { min-height: 105px; padding: 18px 16px; }
  .portfolio-section .category-card { min-height: 166px; }
  .atlas-ledger { grid-template-columns: 1fr; }
  .atlas-caption { position: static; max-width: none; margin-top: 10px; }
  .quality-signal { padding: 20px 16px; }
  .quality-signal .signal-heading { align-items: flex-start; flex-direction: column; }
  .quality-signal .signal-heading strong { text-align: left; }
  .method-ticker { grid-template-columns: repeat(2,1fr); }
  .spec-ledger { grid-template-columns: 1fr; }
  .spec-ledger article { min-height: 176px; }
  .catalog-index-rail dl { grid-template-columns: 1fr; }
  .catalog-index-rail dl div { min-height: 62px; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-inline: 0; }
  .product-card-data > div { grid-template-columns: 82px minmax(0,1fr); }
  .capability-panorama-section::after { display: none; }
  .capability-panorama-heading { gap: 22px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: auto; padding: 26px 22px; }
  .ingredient-family-rail { padding-top: 18px; }
  .project-case { border-radius: 12px; }
  .project-case-visual { min-height: 150px; }
  .project-case-body { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-line { animation: none !important; stroke-dashoffset: 0; }
}

/* V9 — evidence without simulated test data */
.brand-hero {
  min-height: 760px;
}
.brand-hero .hero-grid {
  min-height: 760px;
  grid-template-columns: minmax(0,1fr) minmax(520px,.96fr);
  gap: clamp(54px,6vw,100px);
}
.brand-hero .hero-copy h1 {
  max-width: 650px;
  font-size: clamp(3.35rem,5.25vw,5.45rem);
  line-height: .96;
}
.hero-evidence {
  min-height: 570px;
  grid-template-rows: minmax(0,1fr) auto;
  margin-block: 64px;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
}
.hero-lab-window {
  min-height: 420px;
  border-bottom: 0;
}
.hero-lab-window::after {
  background:
    linear-gradient(180deg, transparent 70%, rgba(7,45,39,.32)),
    linear-gradient(90deg, rgba(7,45,39,.1), transparent 34%);
}
.hero-lab-window img {
  object-position: 53% 50%;
  filter: none;
}
.hero-lab-window > span {
  display: none;
}
.hero-fact-panel {
  display: grid;
  grid-template-columns: minmax(190px,.75fr) minmax(0,1.25fr);
  align-items: stretch;
  color: var(--vl-forest);
  background:
    linear-gradient(90deg, var(--vl-grid) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(var(--vl-grid) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--vl-paper);
  border-top: 1px solid rgba(23,79,66,.18);
}
.hero-photo-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  border-right: 1px solid rgba(23,79,66,.2);
}
.hero-photo-meta span {
  font: 750 .7rem/1.2 var(--vl-mono);
  letter-spacing: .1em;
}
.hero-photo-meta small {
  color: #60756d;
  font-size: .68rem;
  line-height: 1.45;
}
.hero-fact-panel dl {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 0;
}
.hero-fact-panel dl div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 18px 16px;
  border-right: 1px solid rgba(23,79,66,.2);
}
.hero-fact-panel dl div:last-child {
  border-right: 0;
}
.hero-fact-panel dt {
  font: 750 1.45rem/1 var(--vl-mono);
}
.hero-fact-panel dd {
  margin: 7px 0 0;
  color: #60756d;
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.atlas-map-wrap > img {
  display: block;
  height: auto;
  border-radius: 18px;
}
.atlas-layout {
  grid-template-columns: 1fr;
  gap: 38px;
}
.atlas-copy {
  max-width: 680px;
}
.atlas-copy .atlas-ledger {
  display: none;
}
.atlas-source-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--vl-signal);
  background: rgba(255,255,255,.52);
}
.atlas-source-line strong {
  flex: 0 0 auto;
  color: var(--vl-forest);
  font: 750 .66rem/1 var(--vl-mono);
  letter-spacing: .08em;
}
.atlas-source-line span {
  color: #566d64;
  font-size: .72rem;
  line-height: 1.4;
}
.quality-source-note {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: start;
  margin: 28px 0 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--vl-signal);
  background: rgba(164,220,37,.09);
}
.quality-source-note span {
  color: var(--vl-forest);
  font: 750 .68rem/1.25 var(--vl-mono);
  letter-spacing: .09em;
}
.quality-source-note p {
  margin: 0;
  color: #586f66;
  font-size: .78rem;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .brand-hero .hero-grid {
    grid-template-columns: minmax(0,.88fr) minmax(440px,1.12fr);
    gap: 34px;
  }
  .hero-evidence {
    min-height: 540px;
  }
  .hero-fact-panel {
    grid-template-columns: 1fr;
  }
  .hero-photo-meta {
    display: none;
  }
}

/* V33 — the Insights hero is one continuous photograph with native ivory
   negative space, so no layered mask or artificial vertical join is needed. */
.inner-hero-image.insights-hero-v33::before {
  inset: 0;
  background-position: center center;
  background-size: cover;
}

.inner-hero-image.insights-hero-v33::after {
  background: linear-gradient(90deg, rgba(246, 241, 232, .08) 0%, transparent 48%);
}

/* V36 — soften the desktop image boundary on the five primary modules.
   V37 now uses native Image 2.0 compositions with real negative space;
   each source image spans the hero without an artificial CSS seam. */
@media (min-width: 821px) {
  .inner-hero-image.native-hero-v37::before {
    inset: 0;
    background-position: center center;
    background-size: cover;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .inner-hero-image.native-hero-v37::after {
    background: transparent;
  }
}

@media (max-width: 820px) {
  .inner-hero-image.insights-hero-v33::before {
    inset: 0 0 38% 0;
    background-position: 70% center;
  }

  .inner-hero-image.insights-hero-v33::after {
    background: linear-gradient(180deg, rgba(246, 241, 232, .02) 0%, rgba(246, 241, 232, .1) 38%, #f6f1e8 68%, #f6f1e8 100%);
  }
}

/* V38 — complete product photographs and a native enquiry composition.
   Product detail media must never be cropped: source proportions are preserved
   across every English and German product page. */
.product-detail-image {
  display: grid;
  place-items: center;
  padding: clamp(20px, 2vw, 32px);
  overflow: hidden;
}

.product-detail-image > img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: 720px;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fffef9;
}

@media (min-width: 821px) {
  .inner-hero-image.native-hero-v38::before {
    inset: 0;
    background-position: center center;
    background-size: cover;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .inner-hero-image.native-hero-v38::after {
    background: transparent;
  }
}

/* V34 - direct contact-form delivery state and bot trap. */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status.is-success {
  color: #166534;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* V33 — preserve the complete customer-supplied Sophora product photograph. */
.product-detail-image img[src*="sophora-japonica-extract"] {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

/* V11 — client review: approved logo, editorial carousel, cleaner homepage */
.brand img {
  width: 218px;
  height: 55px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand img {
  display: block;
  width: 212px;
  height: auto;
  padding: 10px 12px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}
.brand-hero-v11::after { display: none; }
.brand-hero-v11,
.brand-hero-v11 .hero-grid {
  min-height: 720px;
}
.brand-hero-v11 .hero-grid {
  grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr);
  gap: clamp(42px,5vw,80px);
}
.brand-hero-v11 .hero-copy {
  padding: 90px 0;
}
.brand-hero-v11 .hero-copy h1 {
  font-size: clamp(3.35rem,5.35vw,5.7rem);
}
.hero-carousel {
  position: relative;
  min-width: 0;
  margin: 50px 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  box-shadow: 0 34px 80px rgba(0,0,0,.3);
  background: #09241f;
}
.hero-carousel-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: inherit;
}
.carousel-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .38s ease, visibility .38s ease, transform .38s var(--ease-out);
}
.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  transform: scale(1.025);
}
.hero-carousel-slide.is-active { transform: scale(1); }
.hero-carousel-slide--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(4,28,24,.82)),
    linear-gradient(90deg, rgba(4,28,24,.12), transparent 42%);
}
.hero-carousel-slide > .hero-slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel-slide--image > .hero-slide-media { object-position: 52% 50%; }
.hero-carousel-slide--products {
  background:
    radial-gradient(circle at 84% 8%, rgba(161,229,15,.16), transparent 32%),
    linear-gradient(145deg, #f5f4e9 0%, #e8eee4 100%);
}
.hero-portfolio-panel {
  position: absolute;
  inset: 0;
  padding: 82px 28px 100px;
  color: var(--ink);
}
.hero-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.hero-panel-heading span {
  color: #467b18;
  font: 800 .66rem/1.2 var(--vl-mono);
  letter-spacing: .12em;
}
.hero-panel-heading strong {
  max-width: 330px;
  font-size: .98rem;
  line-height: 1.2;
  text-align: right;
}
.hero-product-matrix {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}
.hero-product-card {
  display: grid;
  grid-template-columns: 94px minmax(0,1fr);
  align-items: center;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(11,67,56,.16);
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(11,67,56,.08);
}
.hero-product-card img {
  width: 94px;
  height: 112px;
  object-fit: cover;
  background: #f5f6ef;
}
.hero-product-card div { padding: 12px; }
.hero-product-card small {
  display: block;
  margin-bottom: 8px;
  color: #54811f;
  font: 800 .55rem/1.25 var(--vl-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-product-card strong {
  display: block;
  font-size: .87rem;
  line-height: 1.22;
}
.hero-carousel-slide--map {
  background:
    linear-gradient(rgba(15,75,62,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,75,62,.055) 1px,transparent 1px),
    #f5f3e9;
  background-size: 36px 36px;
}
.hero-map-panel {
  position: absolute;
  inset: 62px 18px 86px;
  display: grid;
  place-items: center;
}
.hero-map-panel > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(11,67,56,.12));
}
.hero-map-key {
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 10px 14px;
  color: white;
  background: rgba(7,52,44,.92);
  border-left: 3px solid var(--vl-signal);
}
.hero-map-key strong {
  color: var(--vl-signal);
  font-size: 1.65rem;
}
.hero-map-key span {
  font-size: .7rem;
  line-height: 1.25;
}
.hero-slide-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: white;
}
.hero-slide-caption span {
  padding-left: 10px;
  color: var(--vl-signal);
  border-left: 2px solid var(--vl-signal);
  font: 700 .7rem/1.2 var(--vl-mono);
  letter-spacing: .1em;
}
.hero-slide-caption strong {
  max-width: 360px;
  font-size: clamp(1.2rem,2vw,1.8rem);
  line-height: 1.08;
  text-align: right;
}
.carousel-controls {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero-carousel-nav {
  position: absolute;
  z-index: 6;
  top: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) 46px;
  align-items: center;
  gap: 9px;
}
.hero-carousel-controls {
  position: static;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 7px;
}
.hero-carousel-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: white;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(5,42,35,.78);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  color: #082d25;
  border-color: var(--vl-signal);
  background: var(--vl-signal);
}
.hero-carousel-arrow svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-controls button {
  width: 36px;
  height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.carousel-controls button span {
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.4);
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.carousel-controls button.is-active span {
  background: var(--vl-signal);
  transform: scaleY(1.7);
}
.hero-carousel-controls .hero-carousel-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 46px;
  padding: 0 10px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(5,42,35,.75);
  backdrop-filter: blur(10px);
}
.hero-carousel-controls .hero-carousel-tab span {
  width: auto;
  height: auto;
  color: var(--vl-signal);
  background: transparent;
  border-radius: 0;
  font: 800 .62rem/1 var(--vl-mono);
  transform: none;
}
.hero-carousel-controls .hero-carousel-tab b {
  overflow: hidden;
  font-size: .7rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-carousel-controls .hero-carousel-tab.is-active {
  color: #082d25;
  border-color: var(--vl-signal);
  background: var(--vl-signal);
}
.hero-carousel-controls .hero-carousel-tab.is-active span {
  color: #082d25;
  background: transparent;
  transform: none;
}
.hero-carousel-slide--products .hero-slide-caption,
.hero-carousel-slide--map .hero-slide-caption {
  color: var(--ink);
}
.hero-carousel-slide--products .hero-slide-caption span,
.hero-carousel-slide--map .hero-slide-caption span {
  color: #4d7e18;
  border-left-color: #74ad12;
}
.trust-grid-v11 {
  grid-template-columns: repeat(3, minmax(0,1fr));
  max-width: 970px;
}
.trust-grid-v11 .certificate-badge {
  justify-content: center;
}
.category-grid-v11 .category-card-v11 {
  position: relative;
  min-height: 184px;
  justify-content: flex-start;
  gap: 42px;
}
.category-card-v11 h3 { max-width: 260px; }
.category-card-v11 i {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--vl-forest);
  font-style: normal;
  font-size: 1.15rem;
}
.category-card-v11:first-child i { color: var(--vl-signal); }
.capability-section-v11 {
  background:
    linear-gradient(180deg, var(--vl-paper) 0%, #dfe8dc 12%, #eef1e7 100%);
}
.testimonial-carousel-section {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 83% 18%, rgba(164,220,37,.13), transparent 25%),
    linear-gradient(135deg, #061f1a, #0d4438 70%, #103f34);
}
.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
  gap: clamp(50px,8vw,120px);
  align-items: center;
}
.testimonial-carousel-section .section-heading h2 { color: white; }
.testimonial-carousel-section .section-heading > p:last-child { color: #b9cbc4; }
.testimonial-carousel {
  position: relative;
  min-height: 370px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(255,255,255,.045);
  box-shadow: 0 30px 70px rgba(0,0,0,.2);
}
.testimonial-stage {
  position: relative;
  min-height: 370px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 64px 64px 74px;
  transform: translateY(10px);
}
.testimonial-slide.is-active { transform: translateY(0); }
.testimonial-slide p {
  margin: 0;
  color: white;
  font-size: clamp(1.55rem,2.8vw,2.65rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -.035em;
}
.testimonial-slide footer {
  margin-top: 30px;
  color: var(--vl-signal);
  font: 700 .75rem/1.3 var(--vl-mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.testimonial-controls {
  left: 64px;
  bottom: 35px;
}
.solution-steps li {
  display: grid;
  grid-template-rows: 34px minmax(0,1fr);
  justify-content: stretch;
}
.solution-steps li > div {
  display: grid;
  grid-template-rows: 64px minmax(0,1fr);
  padding-top: 58px;
}
.solution-steps h3 {
  margin: 0;
  align-self: start;
}
.solution-steps p { align-self: start; }
.facility-gallery-v11 {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.facility-gallery-v11 figure:first-child {
  grid-column: auto;
  grid-row: auto;
}
.facility-gallery-v11 figure {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(6,31,26,.12);
}

@media (max-width: 1120px) {
  .brand-hero-v11 .hero-grid {
    grid-template-columns: minmax(0,.88fr) minmax(440px,1.12fr);
    gap: 34px;
  }
  .hero-carousel-stage { min-height: 540px; }
  .solution-steps li { padding: 22px 18px; }
}

@media (max-width: 820px) {
  .brand img { width: 180px; height: 48px; }
  .brand-hero-v11,
  .brand-hero-v11 .hero-grid { min-height: auto; }
  .brand-hero-v11 .hero-grid { grid-template-columns: 1fr; }
  .brand-hero-v11 .hero-copy { padding: 72px 18px 42px; }
  .hero-carousel { margin: 0 18px 44px; }
  .hero-carousel-stage { min-height: min(67vh,540px); }
  .trust-grid-v11 { grid-template-columns: 1fr; gap: 10px; }
  .trust-grid-v11 .certificate-badge { justify-content: flex-start; }
  .testimonial-layout { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-carousel,
  .testimonial-stage { min-height: 340px; }
  .testimonial-slide { padding: 52px 38px 72px; }
  .testimonial-controls { left: 38px; }
  .solution-steps li > div { padding-top: 20px; }
  .facility-gallery-v11 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand img { width: 160px; height: 42px; }
  .hero-carousel-stage { min-height: 510px; }
  .hero-slide-caption {
    left: 20px;
    right: 20px;
    bottom: 22px;
    display: block;
  }
  .hero-slide-caption strong {
    display: block;
    margin-top: 10px;
    max-width: none;
    font-size: 1rem;
    text-align: left;
  }
  .hero-carousel-nav {
    top: 14px;
    left: 12px;
    right: 12px;
    grid-template-columns: 44px minmax(0,1fr) 44px;
    gap: 6px;
  }
  .hero-carousel-arrow { width: 44px; height: 44px; }
  .hero-carousel-controls { gap: 5px; }
  .hero-carousel-controls .hero-carousel-tab {
    height: 44px;
    padding: 0;
  }
  .hero-carousel-controls .hero-carousel-tab b { display: none; }
  .hero-carousel-controls .hero-carousel-tab span { font-size: .7rem; }
  .hero-portfolio-panel { padding: 72px 14px 86px; }
  .hero-panel-heading { margin-bottom: 10px; }
  .hero-panel-heading strong { max-width: 200px; font-size: .75rem; }
  .hero-product-matrix { gap: 7px; }
  .hero-product-card {
    display: block;
    min-height: 0;
  }
  .hero-product-card img {
    width: 100%;
    height: 82px;
  }
  .hero-product-card div { padding: 7px 8px 9px; }
  .hero-product-card small { margin-bottom: 4px; font-size: .45rem; }
  .hero-product-card strong { font-size: .68rem; }
  .hero-map-panel { inset: 65px 8px 82px; }
  .hero-map-key { display: none; }
  .category-grid-v11 .category-card-v11 { min-height: 160px; }
  .testimonial-carousel,
  .testimonial-stage { min-height: 390px; }
  .testimonial-slide { padding: 48px 24px 74px; }
  .testimonial-controls { left: 24px; }
  .footer-brand img { width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: none !important; }
}

/* V13 — quiet, image-led five-second homepage carousel */
.brand-hero-v11 .hero-carousel {
  aspect-ratio: 3 / 2;
  align-self: center;
  margin: 68px 0;
}
.brand-hero-v11 .hero-carousel-stage {
  height: 100%;
  min-height: 0;
}
.hero-carousel-slide--map::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,28,24,.28), transparent 24%, transparent 62%, rgba(4,28,24,.88));
  pointer-events: none;
}
.hero-carousel-slide--map .hero-slide-caption {
  color: #fff;
}
.hero-carousel-slide--map .hero-slide-caption span {
  color: var(--vl-signal);
  border-left-color: var(--vl-signal);
}
.hero-origin-index {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  right: 22px;
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 6px;
  padding: 10px;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(4,35,29,.72);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(9px);
}
.hero-origin-index span {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  font: 700 .55rem/1.15 var(--vl-mono);
  letter-spacing: .035em;
  white-space: nowrap;
}
.hero-origin-index b {
  color: var(--vl-signal);
  font-size: .48rem;
}

@media (max-width: 820px) {
  .brand-hero-v11 .hero-carousel {
    aspect-ratio: 3 / 2;
    margin: 0 18px 44px;
  }
  .brand-hero-v11 .hero-carousel-stage {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .brand-hero-v11 .hero-carousel {
    aspect-ratio: 1 / 1;
  }
  .brand-hero-v11 .hero-carousel-stage {
    min-height: 0;
  }
  .hero-carousel-slide--map > .hero-slide-media {
    object-fit: contain;
    background: #082a23;
  }
  .hero-origin-index {
    top: 12px;
    left: 12px;
    right: 12px;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 4px 7px;
    padding: 8px 9px;
  }
  .hero-origin-index span {
    gap: 3px;
    font-size: .43rem;
  }
  .hero-origin-index b {
    font-size: .4rem;
  }
}

@media (max-width: 820px) {
  .brand-hero {
    min-height: auto;
  }
  .brand-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .brand-hero .hero-copy h1 {
    font-size: clamp(3rem,11vw,5rem);
  }
  .hero-evidence {
    min-height: auto;
    grid-template-rows: minmax(360px,56vh) auto;
    margin: 0 18px 44px;
  }
  .hero-lab-window {
    min-height: 0;
  }
  .atlas-copy .atlas-ledger {
    display: grid;
  }
  .atlas-map-wrap {
    order: 0;
  }
}

@media (max-width: 560px) {
  .brand-hero .hero-copy h1 {
    font-size: clamp(2.65rem,12vw,3.8rem);
  }
  .hero-evidence {
    grid-template-rows: 310px auto;
    margin: 0 14px 28px;
  }
  .hero-fact-panel dl div {
    min-height: 92px;
    padding: 14px 10px;
  }
  .hero-fact-panel dt {
    font-size: 1.2rem;
  }
  .hero-fact-panel dd {
    font-size: .57rem;
  }
  .atlas-map-wrap {
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .atlas-copy .atlas-ledger {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .atlas-map-wrap::before {
    content: "Swipe to explore all 11 labeled origins →";
    position: sticky;
    left: 0;
    z-index: 2;
    display: block;
    width: max-content;
    margin: 0 0 10px;
    padding: 8px 10px;
    color: #dce9e3;
    background: var(--vl-forest);
    font: 700 .62rem/1 var(--vl-mono);
    letter-spacing: .05em;
  }
  html[lang="de"] .atlas-map-wrap::before {
    content: "Alle 11 beschrifteten Herkünfte ansehen →";
  }
  .atlas-map-wrap > img {
    width: 760px;
    max-width: none;
  }
  .atlas-source-line {
    min-width: 760px;
  }
  .quality-source-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* V16 — cinematic homepage: one calm message at a time */
.site-header-clean {
  background: rgba(255, 254, 249, .96);
  box-shadow: 0 10px 34px rgba(4, 31, 26, .06);
  backdrop-filter: blur(20px) saturate(135%);
}

.site-header-clean .nav-shell {
  min-height: 104px;
  width: min(1600px, calc(100vw - 128px));
  max-width: none;
}

.site-header-clean .brand img {
  width: 244px;
  height: auto;
}

.cinematic-hero {
  position: relative;
  height: min(820px, calc(100svh - 104px));
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 33% 35%, rgba(42, 118, 91, .22), transparent 38%),
    linear-gradient(135deg, #062f28 0%, #03241f 64%, #021d19 100%);
}

.cinematic-stage {
  position: relative;
  height: 100%;
  min-height: inherit;
}

.cinematic-slide {
  position: absolute;
  inset: 0;
  display: grid;
  height: 100%;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition:
    opacity 1.3s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear 1.3s;
}

.cinematic-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.cinematic-media,
.cinematic-scrim,
.cinematic-copy {
  position: absolute;
}

.cinematic-media {
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
  transform: scale(1.14);
  transform-origin: 100% 50%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .22) 9%, #000 23%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .22) 9%, #000 23%, #000 100%);
  transition: transform 7.2s cubic-bezier(.16, 1, .3, 1);
}

.cinematic-slide:nth-child(2) .cinematic-media {
  object-position: 100% 50%;
}

.cinematic-slide:nth-child(3) .cinematic-media {
  object-position: 100% 50%;
}

.cinematic-slide.is-active .cinematic-media {
  transform: scale(1.08);
}

.cinematic-scrim {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 38%, rgba(3, 40, 34, .98) 43%, rgba(3, 40, 34, .68) 49%, rgba(3, 40, 34, .18) 57%, rgba(3, 40, 34, 0) 68%),
    linear-gradient(180deg, rgba(1, 24, 20, .02) 58%, rgba(1, 24, 20, .28) 100%);
}

.cinematic-copy {
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: min(1600px, calc(100vw - 128px));
  max-width: none;
  padding-top: 0;
}

.cinematic-copy-inner {
  width: min(900px, 55vw);
  padding-block: 64px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .58s ease,
    transform .76s cubic-bezier(.16, 1, .3, 1);
}

.cinematic-slide.is-active .cinematic-copy-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .24s;
}

.cinematic-copy h1,
.cinematic-copy h2 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(5rem, 4.4vw, 5.5rem);
  font-weight: 850;
  line-height: .96;
  letter-spacing: -.052em;
  text-wrap: balance;
  text-shadow: 0 5px 34px rgba(0, 0, 0, .22);
}

.cinematic-slide--possibility .cinematic-copy-inner {
  width: min(960px, 58vw);
}

.cinematic-slide--possibility .cinematic-copy h2 {
  font-size: clamp(4.8rem, 4.15vw, 5.2rem);
}

.cinematic-copy p {
  max-width: 680px;
  margin: 30px 0 34px;
  color: rgba(244, 249, 246, .9);
  font-size: clamp(1.05rem, 1.08vw, 1.24rem);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .26);
}

.cinematic-copy .button-row {
  gap: 14px;
}

.cinematic-copy .button {
  min-height: 58px;
  padding: 15px 28px;
}

.cinematic-copy .button-ghost {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(1, 28, 23, .12);
  backdrop-filter: blur(8px);
}

.cinematic-copy .button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 1180px) {
  .site-header-clean .nav-shell { min-height: 92px; }
  .site-header-clean .brand img { width: 218px; }
  .cinematic-hero,
  .cinematic-stage { min-height: 720px; }
  .site-header-clean .nav-shell { width: min(1080px, calc(100vw - 64px)); }
  .cinematic-media { left: 42%; width: 58%; }
  .cinematic-copy { width: min(1080px, calc(100vw - 64px)); }
  .cinematic-copy-inner { width: min(700px, 62vw); }
  .cinematic-copy h1,
  .cinematic-copy h2 { font-size: clamp(4.35rem, 6.4vw, 5.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-slide,
  .cinematic-media,
  .cinematic-copy-inner {
    transition: none !important;
    transform: none !important;
  }
}

/* Homepage v21 — bright editorial system with dark green reserved for emphasis. */
.home-light-v21 {
  background: #fffef9;
}
.home-light-v21 .site-header-clean {
  border-bottom: 1px solid rgba(21, 72, 59, .12);
  background: rgba(255, 254, 249, .97);
}
.home-light-v21 .cinematic-hero {
  height: min(800px, calc(100svh - 104px));
  min-height: 700px;
  color: #073a30;
  background:
    radial-gradient(circle at 18% 12%, rgba(164, 220, 37, .18), transparent 30%),
    linear-gradient(135deg, #fbfaf4 0%, #f3f3e8 58%, #e7eee3 100%);
}
.home-light-v21 .cinematic-slide {
  background:
    linear-gradient(90deg, rgba(21, 72, 59, .035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(21, 72, 59, .035) 1px, transparent 1px) 0 0 / 80px 80px;
}
.home-light-v21 .cinematic-media {
  left: 46%;
  width: 54%;
  filter: brightness(1.09) saturate(.93) contrast(.96);
  transform: scale(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 8%, #000 23%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 8%, #000 23%, #000 100%);
}
.home-light-v21 .cinematic-slide.is-active .cinematic-media {
  transform: scale(1.025);
}
.home-light-v21 .cinematic-scrim {
  background:
    linear-gradient(90deg, #fbfaf4 0%, #fbfaf4 35%, rgba(251, 250, 244, .98) 43%, rgba(251, 250, 244, .76) 49%, rgba(251, 250, 244, .18) 62%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(245, 247, 238, .18));
}
.home-light-v21 .cinematic-copy-inner {
  width: min(820px, 46vw);
}
.home-light-v21 .cinematic-slide--possibility .cinematic-copy-inner {
  width: min(850px, 48vw);
}
.home-light-v21 .cinematic-copy h1,
.home-light-v21 .cinematic-copy h2,
.home-light-v21 .cinematic-slide--possibility .cinematic-copy h2 {
  max-width: 820px;
  color: #073a30;
  font-size: clamp(4.8rem, 5.15vw, 6.25rem);
  line-height: .93;
  letter-spacing: -.058em;
  text-shadow: none;
}
.home-light-v21 .cinematic-copy p {
  max-width: 650px;
  color: #405f55;
  font-size: clamp(1.05rem, 1.06vw, 1.2rem);
  line-height: 1.65;
  text-shadow: none;
}
.home-light-v21 .cinematic-copy .button-ghost {
  color: #0b493d;
  border-color: rgba(11, 73, 61, .42);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px);
}
.home-light-v21 .cinematic-copy .button-ghost:hover {
  color: #fff;
  border-color: #0b493d;
  background: #0b493d;
}
.certification-showcase-v21 {
  padding: clamp(88px, 7vw, 126px) 0;
  border-top: 1px solid rgba(21, 72, 59, .1);
  border-bottom: 1px solid rgba(21, 72, 59, .12);
  background:
    radial-gradient(circle at 92% 12%, rgba(164, 220, 37, .14), transparent 28%),
    #f4f5ea;
}
.certification-heading-v21 {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 72px);
}
.certification-heading-v21 h2 {
  max-width: 880px;
  margin: 0;
  color: #073a30;
  font-size: clamp(3rem, 4.3vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.certification-heading-v21 > p {
  max-width: 560px;
  margin: 0 0 .25em;
  color: #526d63;
  font-size: 1.04rem;
  line-height: 1.68;
}
.certification-grid-v21 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}
.certificate-card-v21 {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 72, 59, .15);
  border-radius: 20px;
  color: #073a30;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 52px rgba(19, 63, 52, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.certificate-card-v21:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 153, 24, .5);
  box-shadow: 0 26px 64px rgba(19, 63, 52, .13);
}
.certificate-card-v21:focus-visible {
  outline: 3px solid rgba(164, 220, 37, .7);
  outline-offset: 4px;
}
.certificate-card-v21 > img {
  align-self: center;
  width: 82%;
  height: 150px;
  margin: 30px auto 16px;
  object-fit: contain;
}
.certificate-card-v21 > div {
  padding: 26px 30px 30px;
  border-top: 1px solid rgba(21, 72, 59, .12);
}
.certificate-card-v21 h3 {
  margin: 0 0 7px;
  color: #073a30;
  font-size: clamp(1.35rem, 1.55vw, 1.68rem);
}
.certificate-card-v21 p {
  margin: 0;
  color: #60776e;
  font-size: .9rem;
}
.home-light-v21 .portfolio-section-v11 {
  background:
    radial-gradient(circle at 8% 0%, rgba(164, 220, 37, .09), transparent 25%),
    #fffef9;
}
.home-light-v21 .capability-section-v11 {
  background:
    linear-gradient(180deg, #edf3e9 0%, #f8f8ef 100%);
}
.home-light-v21 .testimonial-carousel-section {
  color: #073a30;
  background:
    radial-gradient(circle at 86% 14%, rgba(164, 220, 37, .18), transparent 24%),
    linear-gradient(135deg, #f2f5e8, #f8f4e9 72%, #eef3e7);
}
.home-light-v21 .testimonial-carousel-section .section-heading h2 {
  color: #073a30;
}
.home-light-v21 .testimonial-carousel-section .section-heading > p:last-child {
  color: #597168;
}
.home-light-v21 .testimonial-carousel {
  border-color: rgba(21, 72, 59, .16);
  background:
    linear-gradient(90deg, rgba(21, 72, 59, .035) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(21, 72, 59, .035) 1px, transparent 1px) 0 0 / 40px 40px,
    rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(19, 63, 52, .1);
}
.home-light-v21 .testimonial-slide p {
  color: #073a30;
}
.home-light-v21 .testimonial-slide footer {
  color: #5e8617;
}
@media (max-width: 1180px) {
  .home-light-v21 .cinematic-media { left: 48%; width: 52%; }
  .home-light-v21 .cinematic-copy-inner,
  .home-light-v21 .cinematic-slide--possibility .cinematic-copy-inner { width: min(660px, 52vw); }
  .home-light-v21 .cinematic-copy h1,
  .home-light-v21 .cinematic-copy h2,
  .home-light-v21 .cinematic-slide--possibility .cinematic-copy h2 {
    font-size: clamp(4.1rem, 6.2vw, 5.2rem);
  }
  .certification-heading-v21 { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 900px) {
  .certification-grid-v21 { grid-template-columns: 1fr; }
  .certificate-card-v21 { grid-template-columns: minmax(220px, .7fr) 1fr; grid-template-rows: auto; }
  .certificate-card-v21 > div { display: flex; flex-direction: column; justify-content: center; border-top: 0; border-left: 1px solid rgba(21, 72, 59, .12); }
}

/* Homepage v22 — quiet-luxury editorial hero, generated as one coherent photograph. */
.home-light-v21 .site-header-clean {
  box-shadow: 0 8px 28px rgba(15, 57, 47, .045);
}
.home-light-v21 .site-header-clean .brand img {
  width: 226px;
}
.home-light-v21 .site-header-clean .button-primary {
  color: #fff;
  background: #0a493c;
  box-shadow: none;
}
.home-light-v21 .site-header-clean .button-primary:hover {
  background: #12604f;
}
.home-light-v21 .cinematic-hero {
  height: min(780px, calc(100svh - 104px));
  min-height: 680px;
  background: #f3eee4;
}
.home-light-v21 .cinematic-slide {
  background: #f3eee4;
}
.home-light-v21 .cinematic-media {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  filter: none;
  transform: scale(1.025);
  -webkit-mask-image: none;
  mask-image: none;
  transition: transform 7.2s cubic-bezier(.16, 1, .3, 1);
}
.home-light-v21 .cinematic-slide.is-active .cinematic-media {
  transform: scale(1);
}
.home-light-v21 .cinematic-scrim {
  background:
    linear-gradient(90deg, rgba(248, 244, 236, .28) 0%, rgba(248, 244, 236, .08) 43%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(229, 220, 203, .06));
}
.home-light-v21 .cinematic-copy-inner,
.home-light-v21 .cinematic-slide--possibility .cinematic-copy-inner {
  width: min(650px, 43vw);
  padding-block: 56px;
}
.home-light-v21 .cinematic-copy h1,
.home-light-v21 .cinematic-copy h2,
.home-light-v21 .cinematic-slide--possibility .cinematic-copy h2 {
  max-width: 680px;
  color: #073a30;
  font-size: clamp(4.1rem, 4.75vw, 5.7rem);
  font-weight: 760;
  line-height: .98;
  letter-spacing: -.052em;
}
.home-light-v21 .cinematic-copy h1 span,
.home-light-v21 .cinematic-copy h2 span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.06em;
}
.home-light-v21 .cinematic-copy p {
  max-width: 560px;
  margin: 30px 0 38px;
  color: #405d54;
  font-size: clamp(1rem, .98vw, 1.12rem);
  line-height: 1.7;
}
.home-light-v21 .cinematic-copy .button-row {
  gap: 12px;
}
.home-light-v21 .cinematic-copy .button {
  min-height: 56px;
  padding: 14px 25px;
  border-radius: 7px;
  box-shadow: none;
}
.home-light-v21 .cinematic-copy .button-primary {
  color: #fff;
  background: #0a493c;
}
.home-light-v21 .cinematic-copy .button-primary:hover {
  background: #12604f;
}
.home-light-v21 .cinematic-copy .button-ghost {
  color: #0a493c;
  border-color: rgba(10, 73, 60, .3);
  background: rgba(255, 253, 248, .7);
  backdrop-filter: blur(10px);
}
.home-light-v21 .cinematic-copy .button-ghost:hover {
  color: #0a493c;
  border-color: rgba(10, 73, 60, .7);
  background: rgba(255, 253, 248, .95);
}
@media (max-width: 1180px) {
  .home-light-v21 .cinematic-copy-inner,
  .home-light-v21 .cinematic-slide--possibility .cinematic-copy-inner {
    width: min(560px, 45vw);
  }
  .home-light-v21 .cinematic-copy h1,
  .home-light-v21 .cinematic-copy h2,
  .home-light-v21 .cinematic-slide--possibility .cinematic-copy h2 {
    font-size: clamp(3.65rem, 5.35vw, 4.8rem);
  }
}

/* V23 — whole-site quiet editorial system.
   Carries the approved bright homepage language across every inner page. */
:root {
  --vl23-ink: #0a4035;
  --vl23-body: #455f56;
  --vl23-paper: #fffdf8;
  --vl23-stone: #f3eee4;
  --vl23-sage: #eef1e7;
  --vl23-line: rgba(18, 71, 58, .15);
  --vl23-green: #0a493c;
  --vl23-green-hover: #12604f;
  --vl23-accent: #6f961f;
  --vl23-shadow: 0 18px 58px rgba(18, 62, 51, .09);
}

body {
  color: var(--vl23-ink);
  background: var(--vl23-paper);
}

.topbar {
  display: none;
}

.site-header:not(.site-header-clean) {
  border-bottom: 1px solid var(--vl23-line);
  background: rgba(255, 254, 249, .97);
  box-shadow: 0 8px 28px rgba(15, 57, 47, .045);
  backdrop-filter: blur(20px) saturate(135%);
}

.site-header:not(.site-header-clean) .nav-shell {
  width: min(1600px, calc(100vw - 128px));
  max-width: none;
  min-height: 104px;
}

.site-header:not(.site-header-clean) .brand img {
  width: 226px;
}

.site-header .button-primary,
.site-header .button-primary:hover {
  color: #fff;
  box-shadow: none;
}

.site-header .button-primary {
  background: var(--vl23-green);
}

.site-header .button-primary:hover {
  background: var(--vl23-green-hover);
}

.primary-navigation a {
  color: #294a40;
}

.primary-navigation a::after {
  height: 2px;
  background: #76a426;
}

.language-link {
  border-color: var(--vl23-line);
  background: rgba(255, 255, 255, .58);
}

.button {
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 7px;
  box-shadow: none;
  transition:
    background .22s ease,
    color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.button-primary {
  color: #fff;
  background: var(--vl23-green);
  box-shadow: none;
}

.button-primary:hover {
  color: #fff;
  background: var(--vl23-green-hover);
  box-shadow: 0 12px 32px rgba(10, 73, 60, .16);
}

.button-outline {
  color: var(--vl23-green);
  border-color: rgba(10, 73, 60, .32);
  background: rgba(255, 255, 255, .48);
}

.button-outline:hover {
  color: #fff;
  border-color: var(--vl23-green);
  background: var(--vl23-green);
}

.button-light {
  color: #fff;
  background: var(--vl23-green);
}

.button-light:hover {
  color: #fff;
  background: var(--vl23-green-hover);
}

.eyebrow,
.eyebrow-light {
  color: var(--vl23-accent);
  font-size: .72rem;
  letter-spacing: .17em;
}

.inner-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 80px 0;
  overflow: hidden;
  color: var(--vl23-ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(111, 150, 31, .12), transparent 24%),
    linear-gradient(135deg, #f7f3ea, var(--vl23-stone));
}

.inner-hero-image {
  background-image: none;
}

.inner-hero-image::before {
  content: "";
  position: absolute;
  inset: 0 0 0 47%;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.inner-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #f6f1e8 0%, #f6f1e8 34%, rgba(246, 241, 232, .96) 43%, rgba(246, 241, 232, .42) 55%, transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(229,220,203,.08));
}

.inner-hero .container {
  z-index: 2;
  width: min(1600px, calc(100vw - 128px));
  max-width: none;
}

.inner-hero h1 {
  max-width: 760px;
  color: var(--vl23-ink);
  font-size: clamp(4rem, 5vw, 5.75rem);
  font-weight: 760;
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.inner-hero-image h1 {
  width: min(720px, 43vw);
}

.inner-hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04em;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.06em;
}

.inner-hero .container > p:last-child {
  max-width: 610px;
  margin-top: 30px;
  color: var(--vl23-body);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.7;
}

.inner-hero-image .container > p:last-child {
  width: min(610px, 43vw);
}

.section {
  padding: clamp(92px, 7.5vw, 126px) 0;
  background: var(--vl23-paper);
}

.section-tint {
  background:
    radial-gradient(circle at 8% 0%, rgba(111, 150, 31, .08), transparent 24%),
    var(--vl23-sage);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(141, 184, 57, .11), transparent 25%),
    #0b4035;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(42px, 5vw, 70px);
}

.section-heading h2 {
  max-width: 880px;
  color: var(--vl23-ink);
  font-size: clamp(3rem, 4.45vw, 5.1rem);
  font-weight: 730;
  line-height: .99;
  letter-spacing: -.05em;
}

.section-dark .section-heading h2 {
  color: #fff;
}

.section-heading > p:last-child,
.split-layout > div > p:not(.eyebrow),
.contact-layout > div > p,
.insight-card p {
  color: var(--vl23-body);
  line-height: 1.72;
}

.process-grid,
.trace-grid,
.solution-steps {
  gap: 18px;
}

.process-grid li,
.trace-grid li,
.solution-steps li {
  border: 1px solid var(--vl23-line);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 34px rgba(18,62,51,.045);
}

.process-grid li > span,
.trace-grid li > span,
.solution-steps li > span {
  color: var(--vl23-accent);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .78rem;
  letter-spacing: .08em;
}

.section-dark .trace-grid li {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.055);
  box-shadow: none;
}

.method-grid {
  gap: 16px;
}

.method-grid > div {
  min-height: 174px;
  border: 1px solid var(--vl23-line);
  border-radius: 14px;
  color: var(--vl23-ink);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(243,238,228,.8));
  box-shadow: 0 10px 34px rgba(18,62,51,.045);
}

.method-grid strong {
  color: var(--vl23-green);
}

.method-grid span {
  color: var(--vl23-body);
}

.rounded-image,
.photo-gallery figure,
.facility-gallery-v11 figure {
  border-radius: 16px;
  box-shadow: var(--vl23-shadow);
}

.mission-panel {
  overflow: hidden;
  border: 1px solid var(--vl23-line);
  border-radius: 18px;
  color: var(--vl23-ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(111,150,31,.14), transparent 28%),
    var(--vl23-sage);
  box-shadow: var(--vl23-shadow);
}

.mission-panel p,
.mission-panel > p {
  color: var(--vl23-body);
}

.capability-panorama-v20 {
  background:
    radial-gradient(circle at 88% 12%, rgba(111, 150, 31, .10), transparent 27%),
    var(--vl23-sage);
}

.capability-v20-heading h2,
.capability-v20-strip h3 {
  color: var(--vl23-ink);
}

.capability-v20-heading > div > p,
.capability-v20-strip p {
  color: var(--vl23-body);
}

.capability-v20-strip {
  border-color: var(--vl23-line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--vl23-shadow);
  backdrop-filter: blur(12px);
}

.capability-v20-strip article + article {
  border-left-color: var(--vl23-line);
}

.capability-v20-case {
  border-color: var(--vl23-line);
  background: var(--vl23-paper);
  box-shadow: var(--vl23-shadow);
}

.capability-v20-case-copy h3 {
  color: var(--vl23-ink);
}

.capability-v20-case-copy > p:not(.eyebrow):not(.capability-v20-result) {
  color: var(--vl23-body);
}

.capability-v20-result {
  border-top-color: var(--vl23-line);
  color: var(--vl23-ink);
}

.catalog-index-rail {
  border-top: 1px solid var(--vl23-line);
  border-bottom: 1px solid var(--vl23-line);
  color: var(--vl23-ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(111, 150, 31, .10), transparent 28%),
    var(--vl23-sage);
}

.catalog-index-rail .container > div span,
.catalog-index-rail dt {
  color: var(--vl23-accent);
}

.catalog-index-rail dd {
  color: var(--vl23-body);
}

.catalog-toolbar {
  padding: 26px;
  border: 1px solid var(--vl23-line);
  border-radius: 14px;
  color: var(--vl23-ink);
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 40px rgba(18,62,51,.06);
}

.catalog-toolbar > label {
  color: var(--vl23-ink);
}

.catalog-search input {
  border: 1px solid var(--vl23-line);
  border-radius: 7px;
  background: #f8f5ee;
}

.filter-row {
  gap: 9px;
}

.filter-chip {
  min-height: 44px;
  border-color: var(--vl23-line);
  border-radius: 7px;
  color: #36564c;
  background: rgba(255,255,255,.78);
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #fff;
  border-color: var(--vl23-green);
  background: var(--vl23-green);
}

.product-grid {
  gap: 22px;
}

.product-card,
.insight-card,
.contact-form,
.product-detail-image {
  border: 1px solid var(--vl23-line);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 38px rgba(18,62,51,.055);
}

.product-card:hover,
.insight-card:hover {
  border-color: rgba(111, 150, 31, .42);
  box-shadow: 0 20px 52px rgba(18,62,51,.105);
}

.product-media,
.product-card img {
  border-radius: 9px;
}

.product-media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(237,241,231,.9));
}

.product-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.product-card span {
  color: var(--vl23-accent);
}

.contact-form {
  padding: clamp(30px, 3vw, 46px);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  min-height: 54px;
  border-color: var(--vl23-line);
  border-radius: 7px;
  background: #fbf9f3;
}

.insight-card > span {
  color: var(--vl23-accent);
}

.article-page,
.prose-page {
  color: var(--vl23-ink);
}

.article-body aside,
.prose-page aside {
  border-left-color: var(--vl23-accent);
  background: var(--vl23-sage);
}

.cta-section {
  padding: clamp(82px, 7vw, 112px) 0;
  color: var(--vl23-ink);
  border-top: 1px solid var(--vl23-line);
  border-bottom: 1px solid var(--vl23-line);
  background:
    radial-gradient(circle at 88% 12%, rgba(111,150,31,.13), transparent 28%),
    linear-gradient(135deg, #f1f4e8, #f7f2e8);
}

.cta-section h2 {
  color: var(--vl23-ink);
}

.cta-section p {
  color: var(--vl23-body);
}

.cta-section .cta-grid p:not(.eyebrow) {
  color: var(--vl23-body);
}

.cta-section .eyebrow {
  color: var(--vl23-accent);
}

.site-footer {
  padding-top: 76px;
  background: #0b3d33;
}

.footer-grid {
  gap: clamp(32px, 5vw, 72px);
}

.footer-brand img {
  filter: none;
}

@media (max-width: 1180px) {
  .site-header:not(.site-header-clean) .nav-shell,
  .inner-hero .container {
    width: min(1080px, calc(100vw - 64px));
  }
  .site-header:not(.site-header-clean) .brand img {
    width: 210px;
  }
  .inner-hero h1 {
    max-width: 680px;
    font-size: clamp(3.55rem, 5.8vw, 4.85rem);
  }
}

@media (max-width: 820px) {
  .site-header:not(.site-header-clean) .nav-shell,
  .inner-hero .container {
    width: min(100% - 36px, 720px);
  }
  .inner-hero {
    min-height: 640px;
    padding: 66px 0;
    align-items: flex-end;
  }
  .inner-hero-image::before {
    inset: 0 0 38% 0;
  }
  .inner-hero-image::after {
    background:
      linear-gradient(180deg, rgba(246,241,232,.03) 0%, rgba(246,241,232,.12) 40%, #f6f1e8 64%, #f6f1e8 100%);
  }
  .inner-hero h1 {
    font-size: clamp(3rem, 10vw, 4.35rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .product-card,
  .insight-card {
    transition: none !important;
    transform: none !important;
  }
}

/* V24 — desktop alignment and spatial rhythm.
   One shared wide grid now aligns the utility bar, navigation, page sections and footer. */
.topbar {
  display: block;
  color: rgba(245, 249, 246, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: #083b31;
}

.topbar .container {
  width: min(1600px, calc(100vw - 128px));
  max-width: none;
  min-height: 38px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.topbar span::before {
  width: 20px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: #9edb1a;
}

.topbar a {
  color: #fff;
  font-size: .76rem;
  font-weight: 720;
  letter-spacing: .018em;
}

.home-light-v21 .cinematic-hero {
  height: min(780px, calc(100svh - 142px));
  min-height: 660px;
}

.site-footer {
  padding: 64px 0 20px;
}

.footer-grid {
  grid-template-columns: minmax(430px, 1.6fr) repeat(3, minmax(150px, .72fr));
  gap: clamp(32px, 3.8vw, 66px);
  align-items: start;
}

.footer-brand p {
  max-width: none;
  margin-top: 18px;
  font-size: .98rem;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 38px;
}

.certificate-panel {
  gap: 0;
  min-height: 214px;
  overflow: hidden;
  border: 1px solid var(--vl23-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 66px rgba(18, 62, 51, .09);
}

.certificate-panel > div {
  min-width: 0;
  min-height: 212px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px solid var(--vl23-line);
  border-radius: 0;
  background: transparent;
}

.certificate-panel > div:first-child {
  border-left: 0;
}

.certificate-panel img {
  width: min(148px, 84%);
  height: 82px;
  margin: 0 auto 17px;
}

.certificate-panel span {
  color: var(--vl23-ink);
  font-size: .96rem;
  font-weight: 740;
  letter-spacing: -.01em;
  white-space: nowrap;
}

@media (min-width: 1181px) {
  :root {
    --container: min(1600px, calc(100vw - 128px));
  }

  .section {
    padding: clamp(96px, 6.25vw, 116px) 0;
  }

  .split-layout {
    gap: clamp(64px, 6vw, 112px);
  }

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

  .footer-brand p {
    white-space: nowrap;
  }
}

@media (min-width: 1121px) and (max-width: 1400px) {
  .method-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1180px) {
  .topbar .container {
    width: min(1080px, calc(100vw - 64px));
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }

  .certificate-panel > div {
    padding-inline: 12px;
  }

  .certificate-panel img {
    width: min(126px, 86%);
  }
}

/* V25 — integrated corporate header.
   Legal identity and contact details now belong to the same navigation surface. */
.topbar {
  display: none;
}

.site-header,
.site-header:not(.site-header-clean),
.home-light-v21 .site-header-clean {
  border-bottom: 1px solid rgba(18, 71, 58, .13);
  background: rgba(255, 254, 249, .98);
  box-shadow: 0 9px 30px rgba(15, 57, 47, .05);
}

.site-header:not(.site-header-clean) .nav-shell,
.site-header-clean .nav-shell {
  min-height: 116px;
}

.brand-lockup {
  min-width: 226px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.brand-lockup .brand {
  display: block;
  line-height: 0;
}

.brand-company {
  margin: 5px 0 0 4px;
  color: #597168;
  font-size: .64rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: .105em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-actions {
  position: relative;
  padding-top: 24px;
}

.header-email {
  position: absolute;
  top: 0;
  right: 0;
  color: #4a675e;
  font-size: .71rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
}

.header-email:hover {
  color: var(--vl23-green);
}

.home-light-v21 .cinematic-hero {
  height: min(780px, calc(100svh - 116px));
  min-height: 660px;
}

@media (max-width: 1450px) and (min-width: 1181px) {
  .site-header:not(.site-header-clean) .brand img,
  .site-header-clean .brand img,
  .home-light-v21 .site-header-clean .brand img {
    width: 212px;
  }

  .brand-lockup {
    min-width: 212px;
  }

  .primary-navigation {
    gap: clamp(14px, 1.55vw, 22px);
  }

  .primary-navigation a {
    font-size: .9rem;
  }
}

@media (max-width: 1180px) {
  .site-header:not(.site-header-clean) .nav-shell,
  .site-header-clean .nav-shell {
    min-height: 104px;
  }

  .brand-company {
    margin-top: 3px;
    font-size: .58rem;
  }

  .nav-actions {
    padding-top: 0;
  }

  .header-email {
    display: none;
  }
}

/* V32 — dedicated Insights editorial hero.
   Feather the image into the paper field instead of exposing a hard vertical edge. */
.inner-hero-image.insights-hero-v32::before {
  inset: 0;
  background-position: center center;
  background-size: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0, 0, 0, .16) 40%, rgba(0, 0, 0, .72) 53%, #000 64%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0, 0, 0, .16) 40%, rgba(0, 0, 0, .72) 53%, #000 64%);
}

.inner-hero-image.insights-hero-v32::after {
  background:
    linear-gradient(90deg, #f6f1e8 0%, #f6f1e8 36%, rgba(246, 241, 232, .94) 44%, rgba(246, 241, 232, .52) 54%, rgba(246, 241, 232, .08) 67%, transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(229, 220, 203, .08));
}

@media (max-width: 820px) {
  .inner-hero-image.insights-hero-v32::before {
    inset: 0 0 38% 0;
    background-position: 68% center;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, .55) 76%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, .55) 76%, transparent 100%);
  }

  .inner-hero-image.insights-hero-v32::after {
    background: linear-gradient(180deg, rgba(246, 241, 232, .02) 0%, rgba(246, 241, 232, .12) 38%, #f6f1e8 64%, #f6f1e8 100%);
  }
}
