:root {
    --green-900: #113f28;
    --green-800: #185332;
    --green-700: #246b3b;
    --green-600: #2f8148;
    --yellow: #f4d328;
    --yellow-soft: #fff4a8;
    --ink: #1c2520;
    --muted: #66736c;
    --muted-2: #87938c;
    --line: #dfe6df;
    --line-strong: #c7d5ca;
    --surface: #ffffff;
    --soft: #f4f7f3;
    --soft-2: #eef4ed;
    --shadow: 0 18px 45px rgba(17, 63, 40, .12);
    --shadow-soft: 0 12px 28px rgba(17, 63, 40, .08);
    --radius: 8px;
    --container: 1240px;
    --page-pad: clamp(16px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fbfcfa 0%, #f7faf6 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Arial, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid rgba(244, 211, 40, .75);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 10px var(--page-pad);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 18px rgba(17, 63, 40, .04);
}
.brand {
    display: inline-flex;
    align-items: center;
    min-width: 104px;
    flex: 0 0 auto;
}
.brand img {
    width: clamp(78px, 7vw, 112px);
    max-height: 56px;
    object-fit: contain;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.6vw, 22px);
    color: var(--green-900);
    font-weight: 700;
}
.main-nav a {
    padding: 10px 0;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.main-nav a:hover { color: var(--green-600); }
.nav-cta {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 14px !important;
    border: 1px solid var(--green-700);
    color: var(--green-700);
    border-radius: var(--radius);
    background: #fff;
}
.nav-cta:hover { background: var(--soft); }
.nav-cta span {
    min-width: 24px;
    min-height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 99px;
    background: var(--yellow);
    color: var(--ink);
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.lang-switch a { padding: 8px 10px; font-size: 13px; }
.lang-switch .is-active { background: var(--green-700); color: #fff; }
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span { width: 19px; height: 2px; background: var(--green-900); }

.hero {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
    padding: 74px var(--page-pad) 86px;
    isolation: isolate;
    color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--green-900); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(17, 63, 40, .95), rgba(17, 63, 40, .76) 48%, rgba(17, 63, 40, .28)),
        linear-gradient(180deg, rgba(17, 63, 40, .16), rgba(17, 63, 40, .42));
}
.hero-content { max-width: 880px; }
.hero h1 { max-width: 860px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}
.hero .eyebrow { color: var(--yellow); }
h1, h2, h3 { line-height: 1.08; margin: 0 0 16px; overflow-wrap: anywhere; }
h1 { font-size: 76px; max-width: 100%; }
h2 { font-size: 44px; }
h3 { font-size: 24px; }
.lead { max-width: 760px; font-size: 20px; color: rgba(255, 255, 255, .92); }
.lead p { margin-top: 0; }
.hero-actions, .product-actions, .footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.inline-actions { margin-top: 22px; }
.button, button.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--radius);
    background: var(--green-700);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
    box-shadow: 0 8px 18px rgba(36, 107, 59, .18);
}
.button:hover, button.button:hover { background: var(--green-800); transform: translateY(-1px); }
.button.secondary { background: var(--yellow); color: var(--ink); }
.button.secondary:hover { background: #e8c719; color: var(--ink); }
.button.compact { min-height: 40px; padding: 10px 13px; font-size: 14px; }
.button.large { min-height: 58px; padding-inline: 26px; }
.button.full, .full { width: 100%; }
.ghost {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green-700);
    border-radius: var(--radius);
    padding: 9px 12px;
    cursor: pointer;
}
.small { min-height: 34px; font-size: 13px; }

.section, .catalog-shell, .product-page, .article-page {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
}
.stats-strip {
    width: min(var(--container), calc(100% - 32px));
    margin: -36px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.stat-item {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow-soft);
}
.stat-item strong {
    display: block;
    color: var(--green-700);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item span {
    display: block;
    color: var(--muted);
    font-weight: 700;
    overflow-wrap: anywhere;
}
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.rich, .rich p, .compact-hero p, .lead, .detail-block, .product-info p {
    overflow-wrap: anywhere;
}
.rich p { margin: 0 0 14px; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.benefit {
    min-height: 92px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    overflow-wrap: anywhere;
}
.benefit span {
    width: 28px;
    height: 4px;
    background: var(--yellow);
    display: block;
    margin-bottom: 12px;
}
.company-intro { padding-top: 58px; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.info-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.info-card h3 { color: var(--green-900); }
.info-card p { margin: 0; color: var(--muted); overflow-wrap: anywhere; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.process-step {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.process-step span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--green-700);
    font-weight: 900;
    font-size: 28px;
}
.process-step p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    overflow-wrap: anywhere;
}
.band {
    width: 100%;
    max-width: none;
    padding-inline: clamp(16px, 5vw, 70px);
    background: var(--soft);
    border-block: 1px solid var(--line);
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    min-width: 0;
}
.section-head a { color: var(--green-700); font-weight: 800; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: 18px;
    align-items: stretch;
}
.product-card {
    min-width: 0;
    display: grid;
    grid-template-rows: 232px 1fr;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.product-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
}
.product-media {
    display: grid;
    place-items: center;
    padding: 18px;
    background: linear-gradient(180deg, #fff, #f3f7f1);
}
.product-media img { max-height: 198px; object-fit: contain; }
.product-info {
    min-width: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sku {
    display: inline-flex;
    width: fit-content;
    padding: 5px 9px;
    border-radius: var(--radius);
    background: #edf5ed;
    color: var(--green-700);
    font-weight: 900;
    font-size: 13px;
}
.product-info h3 { font-size: 20px; margin: 0; overflow-wrap: anywhere; }
.product-info p {
    min-height: 0;
    margin: 0;
    color: var(--muted);
    overflow-wrap: anywhere;
}
.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-700);
    cursor: pointer;
    font-size: 22px;
}
.icon-button.is-active { background: var(--yellow); color: var(--ink); }

.page-hero {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0 24px;
}
.page-hero + .section { padding-top: 40px; }
.compact-hero h1 { max-width: 850px; font-size: 56px; color: var(--green-900); }
.compact-hero p { max-width: 820px; color: var(--muted); font-size: 18px; }
.filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
label { display: grid; gap: 7px; font-weight: 700; color: var(--green-900); min-width: 0; }
input, textarea, select {
    width: 100%;
    min-width: 0;
    border: 1px solid #cbd8ce;
    border-radius: var(--radius);
    padding: 11px 12px;
    background: #fff;
    color: var(--ink);
}
.empty-state {
    padding: 22px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
}

.product-page {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(26px, 5vw, 70px);
    align-items: start;
}
.gallery {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 14px;
    min-width: 0;
}
.main-product-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    padding: clamp(18px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.thumb-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 3px; }
.thumb-row button {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 6px;
}
.thumb-row img { width: 100%; height: 100%; object-fit: contain; }
.product-detail { min-width: 0; }
.product-detail h1 {
    color: var(--green-900);
    font-size: 54px;
    max-width: 900px;
}
.spec-list { display: grid; gap: 10px; margin: 22px 0; }
.spec-list div {
    display: grid;
    grid-template-columns: minmax(110px, 180px) minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.spec-list dt { font-weight: 900; color: var(--green-700); }
.spec-list dd { margin: 0; overflow-wrap: anywhere; }
.detail-block { margin-top: 24px; }
.detail-block h2 { font-size: 24px; }
.wide { width: 100%; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 310px), 1fr));
    gap: 20px;
}
.news-card {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.news-card img, .article-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: linear-gradient(180deg, #fff, #f3f7f1);
    border-radius: var(--radius);
    margin-bottom: 14px;
}
.news-card h2 {
    font-size: 24px;
    line-height: 1.16;
    margin-top: 8px;
}
.article-cover {
    max-height: 360px;
}
.news-card time, .article-page time { color: var(--muted); font-weight: 700; font-size: 14px; }
.article-page { max-width: 880px; }
.article-page h1 { color: var(--green-900); max-width: none; font-size: 54px; }
.contacts-layout { align-items: start; }
.about-layout { align-items: start; }
.contact-card {
    min-width: 0;
    padding: clamp(18px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.about-card h3 { margin-bottom: 8px; }
.about-card .spec-list { margin-bottom: 0; }
.about-benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.quote-panel {
    position: static;
    z-index: 1;
    width: min(var(--container), calc(100% - 32px));
    max-height: none;
    overflow: hidden;
    display: block;
    margin: 22px auto 30px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow);
}
.quote-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    color: var(--green-900);
}
.quote-summary::-webkit-details-marker { display: none; }
.quote-summary span:first-child {
    min-width: 0;
    display: grid;
    gap: 3px;
}
.quote-summary small {
    color: var(--muted);
    font-weight: 700;
    overflow-wrap: anywhere;
}
.quote-summary-count {
    min-width: 34px;
    min-height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 99px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
}
.quote-body {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
    gap: 16px;
    padding: 0 18px 18px;
    border-top: 1px solid var(--line);
}
.quote-head {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
}
.quote-items { display: grid; gap: 8px; margin: 12px 0; }
.quote-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px;
    background: var(--soft);
    border-radius: var(--radius);
    font-size: 14px;
}
.quote-item span { min-width: 0; overflow-wrap: anywhere; }
.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}
.quote-form label:has(textarea),
.quote-form .button { grid-column: 1 / -1; }
.quote-form.in-page { margin-top: 12px; }
.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px var(--page-pad);
    background: var(--green-900);
    color: #fff;
}
.site-footer p { margin: 6px 0 0; color: rgba(255, 255, 255, .75); }
.footer-links a { color: var(--yellow); font-weight: 800; }

@media (min-width: 1500px) {
    :root { --container: 1360px; }
    h1 { font-size: 84px; }
    h2 { font-size: 48px; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }
}

@media (max-width: 1100px) {
    h1 { font-size: 62px; }
    h2 { font-size: 38px; }
    .lead { font-size: 19px; }
    .product-detail h1, .article-page h1, .compact-hero h1 { font-size: 46px; }
    .info-grid, .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: fixed;
        inset: 74px 10px auto 10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .main-nav a { padding: 11px 12px; border-radius: var(--radius); }
    .main-nav a:hover { background: var(--soft); }
    .nav-cta { justify-content: space-between; }
    .main-nav.is-open { display: flex; }
    .two-col, .product-page { grid-template-columns: 1fr; }
    .gallery { position: static; }
    .filters { grid-template-columns: 1fr; }
    .site-footer { flex-direction: column; }
    .hero {
        min-height: 520px;
        padding-top: 66px;
        padding-bottom: 76px;
    }
    .section, .catalog-shell, .product-page, .article-page { padding: 56px 0; }
    .stats-strip { grid-template-columns: 1fr; }
    .quote-body { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    :root { --page-pad: 12px; }
    .site-header { min-height: 68px; gap: 10px; padding-block: 8px; }
    .brand img { width: 94px; max-height: 82px; }
    .main-nav { inset: 68px 8px auto 8px; }
    h1 { font-size: 42px; max-width: 14ch; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }
    .lead { font-size: 17px; }
    .hero { min-height: 500px; padding: 52px 14px 68px; }
    .hero::after { background: linear-gradient(180deg, rgba(17, 63, 40, .9), rgba(17, 63, 40, .78)); }
    .hero-actions, .product-actions { align-items: stretch; }
    .hero-actions .button, .product-actions .button { width: 100%; }
    .inline-actions .button { width: 100%; }
    .benefit-grid { grid-template-columns: 1fr; }
    .about-benefits { grid-template-columns: 1fr; }
    .section-head { align-items: start; flex-direction: column; gap: 8px; }
    .product-card { grid-template-rows: 190px 1fr; }
    .product-media { padding: 14px; }
    .product-media img { max-height: 168px; }
    .product-info { padding: 15px; }
    .section, .catalog-shell, .product-page, .article-page, .page-hero {
        width: min(100% - 20px, var(--container));
    }
    .page-hero { padding-top: 46px; }
    .compact-hero h1, .product-detail h1, .article-page h1 { font-size: 36px; }
    .compact-hero p { font-size: 16px; }
    .filters { padding: 12px; }
    .main-product-image { max-height: 320px; padding: 16px; }
    .thumb-row button { flex-basis: 64px; width: 64px; height: 64px; }
    .spec-list div { grid-template-columns: 1fr; gap: 3px; }
    .quote-panel {
        position: static;
        width: min(100% - 20px, 520px);
        max-height: none;
        margin: 14px auto 24px;
        left: auto;
        right: auto;
        bottom: auto;
    }
    .quote-summary { padding: 14px; align-items: start; }
    .quote-body { padding: 0 14px 14px; }
    .quote-form { grid-template-columns: 1fr; }
    .site-footer { padding-block: 24px; }
}

@media (max-width: 360px) {
    h1 { font-size: 38px; }
    h2 { font-size: 29px; }
    .compact-hero h1, .product-detail h1, .article-page h1 { font-size: 32px; }
    .button, button.button { min-height: 44px; padding: 11px 13px; }
    .product-grid { gap: 14px; }
    .contact-card { padding: 14px; }
    .quote-item { grid-template-columns: 1fr; }
    .quote-item .ghost { justify-self: start; }
}

@media (max-width: 300px) {
    :root { --page-pad: 10px; }
    .brand img { width: 82px; max-height: 72px; }
    .nav-toggle { width: 38px; height: 38px; }
    h1 { font-size: 34px; }
    h2 { font-size: 27px; }
    h3 { font-size: 20px; }
    .product-detail h1, .compact-hero h1, .article-page h1 { font-size: 28px; }
    .eyebrow { font-size: 12px; }
    .hero { min-height: 470px; padding-inline: 10px; }
    .product-info, .contact-card, .quote-panel, .news-card { padding: 12px; }
    .product-card { grid-template-rows: 170px 1fr; }
    .product-media img { max-height: 148px; }
    .main-product-image { max-height: 280px; }
    .filters { padding: 10px; }
    .button, button.button { padding-inline: 10px; font-size: 14px; }
    .ghost { padding-inline: 9px; }
    input, textarea, select { padding-inline: 10px; }
    .lang-switch a { padding-inline: 8px; }
    .spec-list div { padding: 10px 0; }
    .quote-summary small { display: none; }
    .quote-summary { align-items: center; }
}

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

/* 2026 responsive refinement */
body {
    font-kerning: normal;
    font-variant-ligatures: common-ligatures;
}
.site-header {
    min-height: 62px;
    padding-block: 7px;
}
.brand {
    min-width: auto;
    max-width: 118px;
}
.main-nav {
    font-size: 15px;
}
.main-nav a {
    white-space: nowrap;
}
.hero {
    min-height: clamp(470px, 62vh, 660px);
}
.hero h1 {
    font-size: clamp(38px, 5.5vw, 72px);
    max-width: 12.5ch;
}
.lead {
    font-size: clamp(17px, 1.5vw, 21px);
}
.banner-section {
    padding-top: 64px;
}
.banner-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
    gap: 18px;
    align-items: stretch;
}
.promo-banner {
    min-width: 0;
    display: grid;
    gap: 18px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.promo-banner-featured {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr);
    min-height: 360px;
    background:
        radial-gradient(circle at 88% 18%, rgba(244, 211, 40, .26), transparent 30%),
        linear-gradient(135deg, #123f28 0%, #1f6b3a 58%, #f4d328 160%);
    color: #fff;
}
.promo-banner-stack {
    min-width: 0;
    display: grid;
    gap: 18px;
}
.promo-banner-compact {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 171px;
}
.promo-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: clamp(18px, 3vw, 34px);
}
.promo-banner-compact .promo-copy {
    padding: 18px 18px 18px 0;
    gap: 8px;
}
.banner-kicker {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 5px 9px;
    border: 1px solid rgba(36, 107, 59, .16);
    border-radius: var(--radius);
    background: #eef6ee;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.promo-banner-featured .banner-kicker {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .13);
    color: var(--yellow);
}
.promo-media {
    min-width: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(243,247,241,.98));
}
.promo-banner-featured .promo-media {
    margin: 18px;
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.64);
}
.promo-banner-compact .promo-media {
    padding: 12px;
}
.promo-media img {
    width: 100%;
    height: auto;
    max-height: 285px;
    object-fit: contain;
    object-position: center;
}
.promo-banner-compact .promo-media img {
    max-height: 134px;
}
.promo-banner h3 {
    margin: 0;
    font-size: clamp(21px, 2vw, 32px);
    color: var(--green-900);
}
.promo-banner-featured h3 {
    max-width: 12ch;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
}
.promo-banner .rich {
    color: var(--muted);
}
.promo-banner-featured .rich {
    max-width: 620px;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
}
.promo-banner .rich p:last-child {
    margin-bottom: 0;
}
.text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-weight: 900;
}
.text-link::after {
    content: "→";
}
.catalog-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.catalog-highlights span,
.category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-800);
    font-weight: 800;
    font-size: 13px;
}
.catalog-note {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-left: 5px solid var(--yellow);
    border-radius: var(--radius);
    background: #fff;
}
.catalog-note p {
    margin: 0;
    color: var(--muted);
}
.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
}
.catalog-grid {
    align-items: stretch;
}
.product-card {
    grid-template-rows: 214px 1fr;
    border-color: #d8e4da;
}
.product-media {
    position: relative;
}
.product-media::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--green-700), var(--yellow));
}
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}
.product-info h3 {
    font-size: 19px;
    line-height: 1.18;
}
.product-info > p {
    display: -webkit-box;
    min-height: 44px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mini-specs {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 10px 0 0;
    border-top: 1px solid var(--line);
}
.mini-specs div {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 8px;
    min-width: 0;
}
.mini-specs dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}
.mini-specs dd {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: anywhere;
}
.product-actions {
    margin-top: auto;
}
.product-actions .button {
    flex: 1 1 150px;
}
.icon-button {
    flex: 0 0 42px;
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.story-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.story-card span {
    display: inline-flex;
    color: var(--green-700);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
}
.story-card p {
    color: var(--muted);
}
.clean-list {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}
.doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.doc-links a {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-700);
    font-weight: 800;
}
.featured-news {
    padding-top: 32px;
}
.featured-news-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(18px, 4vw, 42px);
    align-items: center;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.featured-news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    border-radius: var(--radius);
    background: var(--soft);
}
.featured-news-card h2 {
    color: var(--green-900);
    font-size: clamp(28px, 3vw, 44px);
}
.news-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.news-card img {
    object-fit: contain;
    padding: 8px;
}
.news-card h2,
.news-card h3 {
    font-size: clamp(21px, 2vw, 27px);
    line-height: 1.16;
}
.quote-panel {
    clear: both;
}
.contact-socials a {
    color: var(--green-700);
}

@media (min-width: 1800px) {
    :root { --container: 1480px; }
    .brand img { width: 118px; max-height: 58px; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

@media (max-width: 1180px) {
    .main-nav { gap: 8px; font-size: 14px; }
    .nav-cta { padding-inline: 10px !important; }
}

@media (max-width: 900px) {
    .brand img { width: 92px; max-height: 48px; }
    .main-nav { inset: 62px 10px auto 10px; }
    .story-grid,
    .featured-news-card {
        grid-template-columns: 1fr;
    }
    .promo-banner {
        grid-template-columns: 1fr;
    }
    .promo-banner img {
        max-height: 230px;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 78px;
        max-height: 42px;
    }
    .site-header { min-height: 58px; }
    .main-nav { inset: 58px 8px auto 8px; }
    .nav-toggle { width: 38px; height: 38px; }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        grid-template-rows: 178px 1fr;
    }
    .mini-specs div {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    .promo-banner,
    .featured-news-card,
    .story-card {
        padding: 14px;
    }
    .promo-banner img {
        min-height: 150px;
    }
    .catalog-highlights span {
        flex: 1 1 100%;
    }
}

@media (max-width: 300px) {
    .brand img {
        width: 68px;
        max-height: 36px;
    }
    .site-header {
        min-height: 54px;
        padding-inline: 8px;
    }
    .main-nav { inset: 54px 6px auto 6px; }
    .product-card {
        grid-template-rows: 160px 1fr;
    }
    .product-actions .button,
    .icon-button {
        flex-basis: 100%;
        width: 100%;
    }
    .promo-banner h3,
    .featured-news-card h2 {
        font-size: 24px;
    }
}

.hero-content {
    min-width: 0;
}
.hero h1 {
    max-width: 820px;
    overflow-wrap: normal;
    word-break: normal;
}
.button,
button.button,
.nav-cta {
    min-width: 0;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 560px) {
    .hero h1 {
        font-size: clamp(28px, 7vw, 36px);
        max-width: 100%;
    }
    .hero-content {
        width: 100%;
    }
}

@media (max-width: 300px) {
    .hero h1 {
        font-size: 27px;
    }
    .lead {
        font-size: 15px;
    }
}

/* Catalog/card repair pass */
.catalog-shell {
    padding-top: 46px;
}
.filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
    margin-bottom: 18px;
}
.filter-main {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(190px, 270px) auto auto;
    gap: 12px;
    align-items: end;
    min-width: 0;
}
.filter-main .compact,
.filters .compact {
    min-height: 46px;
}
.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}
.category-chips button {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--green-800);
    font-weight: 850;
    cursor: pointer;
}
.category-chips button:hover,
.category-chips button.is-active {
    border-color: var(--green-700);
    background: var(--green-700);
    color: #fff;
}
.filter-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
    color: var(--muted);
    font-weight: 800;
}
.filter-status strong {
    color: var(--green-800);
}
.catalog-empty {
    display: grid;
    gap: 8px;
    justify-items: start;
    margin-top: 18px;
    background: #fff;
}
.catalog-empty[hidden] {
    display: none;
}
.catalog-grid,
.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 18px;
}
.product-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    grid-template-rows: none;
    cursor: pointer;
}
.product-card[hidden],
[data-card][hidden] {
    display: none !important;
}
.product-card:focus-visible {
    outline: 3px solid rgba(244, 211, 40, .8);
    outline-offset: 4px;
}
.product-media {
    --product-image-max: 210px;
    flex: 0 0 238px;
    height: 238px;
    min-height: 238px;
    overflow: hidden;
    padding: 14px;
}
.product-media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: var(--product-image-max);
    object-fit: contain;
    object-position: center;
    display: block;
}
.product-info {
    flex: 1;
    padding: 16px;
    gap: 10px;
}
.product-badges {
    min-height: 30px;
}
.category-pill {
    max-width: 100%;
}
.product-info h3 {
    min-height: 46px;
    font-size: 18px;
    line-height: 1.18;
}
.product-info h3 a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.product-info h3 a:focus-visible::after,
.product-info h3 a:hover::after {
    outline: 0;
}
.product-specs {
    display: -webkit-box;
    min-height: 42px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}
.product-meta li {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbf7;
}
.product-meta span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}
.product-meta strong {
    min-width: 0;
    color: var(--green-900);
    font-size: 13px;
    overflow-wrap: anywhere;
}
.product-card .product-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    padding-top: 4px;
}
.product-card .product-actions .button {
    width: 100%;
    min-width: 0;
}
.product-card .icon-button,
.product-card button,
.product-card .button {
    position: relative;
    z-index: 3;
}
.button-label-short,
.button-label-tiny {
    display: none;
}
.product-media,
.product-info h3 a {
    position: relative;
    z-index: 2;
}
.mini-specs {
    display: none;
}

@media (min-width: 1700px) {
    .catalog-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 1180px) {
    .filter-main {
        grid-template-columns: minmax(0, 1fr) minmax(180px, 250px);
    }
    .filter-main .button,
    .filter-main .ghost {
        width: auto;
    }
}

@media (max-width: 820px) {
    .catalog-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .filter-main {
        grid-template-columns: 1fr;
    }
    .category-chips {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        scrollbar-width: thin;
    }
    .category-chips button {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .filter-status {
        padding-top: 2px;
    }
}

@media (max-width: 560px) {
    .catalog-shell {
        padding-top: 34px;
    }
    .filters {
        padding: 12px;
    }
    .category-chips {
        overflow: visible;
        flex-wrap: wrap;
    }
    .category-chips button {
        flex: 1 1 100%;
        white-space: normal;
        text-align: center;
    }
    .catalog-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .product-card {
        grid-template-rows: none;
    }
    .product-media {
        --product-image-max: 208px;
        flex-basis: 232px;
        height: 232px;
        min-height: 232px;
        padding: 12px;
    }
    .product-info {
        padding: 14px;
    }
    .product-info h3 {
        min-height: auto;
        font-size: 18px;
    }
    .product-specs {
        min-height: auto;
    }
    .product-meta li {
        flex: 1 1 100%;
    }
    .product-card .product-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: stretch;
    }
    .product-card .icon-button {
        width: 44px;
    }
    .product-card .product-actions .button {
        width: 100%;
        min-width: 0;
        padding-inline: 8px;
        font-size: 13px;
        line-height: 1.15;
    }
    .product-card .button-label-full {
        display: none;
    }
    .product-card .button-label-short {
        display: inline;
    }
}

@media (max-width: 330px) {
    .filters {
        padding: 10px;
    }
    .product-media {
        --product-image-max: 190px;
        flex-basis: 214px;
        height: 214px;
        min-height: 214px;
    }
    .product-info {
        padding: 12px;
    }
    .product-meta {
        gap: 6px;
    }
    .product-meta li {
        flex: 1 1 100%;
        justify-content: space-between;
    }
    .product-card .product-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .product-card .product-actions .button {
        width: 100%;
        font-size: 13px;
    }
    .product-card .button-label-short {
        display: inline;
    }
    .product-card .button-label-tiny {
        display: none;
    }
    .product-card .icon-button {
        width: 42px;
        justify-self: start;
    }
}

@media (max-width: 280px) {
    .product-card .product-actions {
        grid-template-columns: 1fr;
    }
    .product-card .icon-button {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .banner-showcase {
        grid-template-columns: 1fr;
    }
    .promo-banner-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .promo-banner-compact {
        grid-template-columns: 104px minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .banner-section {
        padding-top: 42px;
    }
    .promo-banner-stack {
        grid-template-columns: 1fr;
    }
    .promo-banner-featured {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .promo-banner-featured .promo-media {
        order: -1;
        min-height: 190px;
    }
    .promo-banner-featured h3 {
        max-width: none;
        font-size: clamp(27px, 8vw, 36px);
    }
    .promo-banner-featured .rich {
        font-size: 16px;
    }
    .promo-banner-compact {
        grid-template-columns: 92px minmax(0, 1fr);
    }
    .promo-banner-compact h3 {
        font-size: 20px;
    }
    .promo-banner-compact .promo-copy {
        padding: 14px 14px 14px 0;
    }
    .promo-media img {
        min-height: 0;
    }
}

@media (max-width: 430px) {
    .promo-banner,
    .featured-news-card,
    .story-card {
        padding: 0;
    }
    .promo-copy {
        padding: 16px;
    }
    .promo-banner-featured .promo-media {
        min-height: 164px;
        margin: 12px 12px 0;
        padding: 12px;
    }
    .promo-banner-featured .promo-media img {
        max-height: 165px;
    }
    .promo-banner-compact {
        grid-template-columns: 82px minmax(0, 1fr);
    }
    .promo-banner-compact .promo-media {
        padding: 10px;
    }
    .promo-banner-compact .promo-media img {
        max-height: 108px;
    }
    .promo-banner-compact .rich {
        display: none;
    }
    .banner-kicker {
        font-size: 11px;
    }
}

@media (max-width: 320px) {
    .promo-banner-compact {
        grid-template-columns: 1fr;
    }
    .promo-banner-compact .promo-media {
        min-height: 126px;
    }
    .promo-banner-compact .promo-copy {
        padding: 0 14px 14px;
    }
}
