:root {
    --red: #ed1c24;
    --deep-red: #b5121b;
    --charcoal: #2b2b2b;
    --text: #55565a;
    --muted: #f4f6f8;
    --border: #e2e6ea;
    --soft-red: #fff1f2;
    --blue: #1f5e9c;
    --white: #fff;
    --shadow: 0 18px 45px rgba(28, 38, 56, .08);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { color: var(--charcoal); line-height: 1.15; margin: 0 0 16px; letter-spacing: 0; }
h1 { font-size: clamp(2.2rem, 6vw, 4.75rem); max-width: 920px; }
h2 { font-size: clamp(1.35rem, 3vw, 2.15rem); }
p { margin: 0 0 16px; }

.top-shell {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}
.brand-row {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 20px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.utility {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    min-height: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: .85rem;
}
.brand {
    width: min(138px, 36vw);
    margin: 0 auto;
}
.brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0 16px 10px;
}
.main-menu a, .menu-toggle {
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--charcoal);
    font-weight: 700;
}
.main-menu a:hover, .main-menu a:focus { background: var(--soft-red); color: var(--deep-red); }
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 240px;
    display: none;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: grid; }
.menu-toggle { display: none; margin: 0 auto 12px; border: 1px solid var(--border); background: var(--white); }

.hero-slider {
    position: relative;
    max-width: 1180px;
    margin: 22px auto 0;
    padding: 34px 34px 68px;
    border: 1px solid rgba(31, 94, 156, .13);
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(255, 241, 242, .62), rgba(255, 255, 255, .9) 42%, rgba(244, 246, 248, .96)),
        #fafbfc;
    box-shadow: 0 18px 42px rgba(28, 38, 56, .07);
    overflow: hidden;
}
.hero-slider::before {
    content: "";
    position: absolute;
    right: -96px;
    top: -128px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(237, 28, 36, .13);
    border-radius: 50%;
    box-shadow: inset 0 0 0 54px rgba(255, 255, 255, .42);
    pointer-events: none;
}
.hero-slide {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 168px);
    display: none;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .9fr);
    gap: 42px;
    align-items: center;
}
.hero-slide.active {
    display: grid;
}
.hero-copy p { font-size: 1.15rem; max-width: 720px; }
.hero-art {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    background: linear-gradient(180deg, #fff, #fafbfc);
    box-shadow: var(--shadow);
}
.hero-art img { width: 100%; max-height: 470px; object-fit: contain; }
.hero-dots {
    position: absolute;
    z-index: 2;
    left: 34px;
    bottom: 30px;
    display: flex;
    gap: 10px;
}
.hero-dots button {
    width: 38px;
    height: 6px;
    border: 0;
    border-radius: 99px;
    background: var(--border);
    cursor: pointer;
}
.hero-dots button.active { background: var(--red); }
.eyebrow {
    display: inline-flex;
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .8rem;
    margin-bottom: 12px;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-weight: 800;
}
.primary { background: var(--red); border-color: var(--red); color: var(--white); }
.primary:hover { background: var(--deep-red); border-color: var(--deep-red); }
.ghost { background: var(--white); color: var(--charcoal); }

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 20px;
}
.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 64px max(20px, calc((100vw - 1180px) / 2 + 20px));
    background:
        linear-gradient(115deg, rgba(255,241,242,.92), rgba(255,255,255,.78) 42%, rgba(244,246,248,.96)),
        var(--white);
    border-bottom: 1px solid var(--border);
}
.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}
.page-hero::before {
    width: 420px;
    height: 420px;
    right: max(24px, calc((100vw - 1180px) / 2));
    top: -126px;
    border: 1px solid rgba(237, 28, 36, .22);
    box-shadow:
        inset 0 0 0 38px rgba(255, 255, 255, .58),
        inset 0 0 0 39px rgba(31, 94, 156, .16),
        inset 0 0 0 112px rgba(255, 255, 255, .34),
        inset 0 0 0 113px rgba(237, 28, 36, .12);
    animation: hero-ring-spin 22s linear infinite;
}
.page-hero::after {
    width: 260px;
    height: 260px;
    right: max(184px, calc((100vw - 1180px) / 2 + 190px));
    bottom: -112px;
    border: 28px double rgba(31, 94, 156, .18);
    animation: hero-ring-drift 12s ease-in-out infinite alternate;
}
.page-hero > * {
    position: relative;
    z-index: 1;
}
.page-hero p { max-width: 820px; font-size: 1.08rem; }

@keyframes hero-ring-spin {
    from { transform: rotate(0deg) translate3d(0, 0, 0); }
    to { transform: rotate(360deg) translate3d(0, 0, 0); }
}

@keyframes hero-ring-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-24px, -14px, 0) scale(1.05); }
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: start;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
}
.metric, .card, .contact-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 10px 28px rgba(28, 38, 56, .05);
}
.metric strong { display: block; color: var(--red); font-size: 2.2rem; line-height: 1; margin-bottom: 8px; }
.card img { height: 150px; width: 100%; object-fit: contain; margin-bottom: 20px; }
.product-card img {
    height: 180px;
    padding: 10px;
    border-radius: 8px;
    background: var(--muted);
}
.compact h2 { font-size: 1.25rem; }
.value-list { display: flex; flex-wrap: wrap; gap: 10px; }
.value-list span, .tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 5px 12px;
    background: var(--muted);
    color: var(--charcoal);
    font-weight: 700;
    font-size: .9rem;
}
.filter-bar {
    display: grid;
    grid-template-columns: 1fr minmax(190px, 260px) auto;
    gap: 10px;
    margin-bottom: 26px;
}
.category-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 0 0 34px;
}
.category-tile {
    position: relative;
    display: flex;
    min-height: 240px;
    padding: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(28, 38, 56, .07);
    color: var(--charcoal);
}
.category-tile:hover,
.category-tile.active {
    border-color: rgba(237, 28, 36, .36);
    background: linear-gradient(135deg, #fff, var(--soft-red));
    color: var(--deep-red);
}
.category-tile-media {
    display: grid;
    place-items: center;
    height: 168px;
    padding: 18px;
    background: var(--muted);
}
.category-tile img,
.category-tile-icon {
    width: 100%;
    height: 132px;
    border-radius: 8px;
}
.category-tile img {
    object-fit: contain;
    background: transparent;
    padding: 0;
}
.category-tile-icon {
    display: inline-grid;
    place-items: center;
    max-width: 150px;
    background: #fff;
    color: var(--red);
    font-weight: 900;
    font-size: 1.3rem;
}
.category-tile-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    padding: 18px;
    background: #fff;
}
.category-tile strong {
    display: block;
    line-height: 1.2;
    font-size: 1.12rem;
}
.category-tile em {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--muted);
    color: var(--charcoal);
    font-style: normal;
    font-weight: 900;
    flex: 0 0 auto;
}
.category-tile.active em,
.category-tile:hover em {
    background: var(--red);
    color: #fff;
}
.compact-heading {
    margin: 4px 0 20px;
}
.view-toggle {
    display: flex;
    gap: 8px;
    margin: -8px 0 24px;
}
.view-toggle a {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 800;
}
.view-toggle a.active,
.view-toggle a:hover {
    background: var(--soft-red);
    border-color: rgba(237, 28, 36, .35);
    color: var(--deep-red);
}
input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    min-height: 46px;
    font: inherit;
}
.suggest-field {
    position: relative;
    min-width: min(320px, 100%);
    flex: 1 1 320px;
}
.suggest-box {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(10, 18, 32, .16);
}
.suggest-box button {
    width: 100%;
    padding: 11px 13px;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
}
.suggest-box button:last-child { border-bottom: 0; }
.suggest-box button:hover { background: var(--soft-red); }
.suggest-box strong,
.suggest-box small {
    display: block;
}
.suggest-box small {
    margin-top: 3px;
    color: var(--gray);
}
.alert {
    padding: 12px 14px;
    border: 1px solid #f1c7ca;
    border-radius: 8px;
    background: var(--soft-red);
    color: var(--deep-red);
    font-weight: 700;
}
.settings-note {
    margin: 14px 0 22px;
    padding: 12px 14px;
    border: 1px solid rgba(31, 94, 156, .18);
    border-radius: 8px;
    background: #f4f8fc;
    color: var(--gray);
}
.settings-note a {
    color: var(--blue);
    font-weight: 900;
}
.admin-form {
    display: grid;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
}
.admin-form textarea { min-height: 120px; resize: vertical; }
.inline-cart-form {
    display: grid;
    grid-template-columns: 78px auto;
    gap: 8px;
    align-items: center;
}
.inline-cart-form input { min-height: 38px; padding: 8px; }
.cart-line,
.quote-summary {
    display: grid;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.cart-line {
    grid-template-columns: minmax(0, 1fr) 90px;
    align-items: center;
}
.cart-line strong,
.cart-line small,
.quote-summary strong,
.quote-summary span,
.quote-summary small {
    display: block;
}
.quote-summary small,
.cart-line small { color: var(--gray); }
.quote-detail-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.quote-detail-table th,
.quote-detail-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}
.quote-detail-table th {
    background: #f7f8fa;
    color: var(--gray);
    font-size: .82rem;
}
.quote-detail-table strong,
.quote-detail-table small {
    display: block;
}
.quote-detail-table small {
    color: var(--gray);
}
.b2b-cart-panel { align-self: start; }
.b2b-hero-actions {
    position: absolute;
    top: 24px;
    right: max(20px, calc((100vw - 1180px) / 2 + 20px));
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.b2b-hero-actions .button {
    min-height: 40px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
}
.b2b-announce-rail {
    display: grid;
    gap: 12px;
    width: min(820px, 100%);
    margin-top: 18px;
}
.b2b-announcement {
    display: none;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}
.b2b-announcement.active {
    display: grid;
    gap: 8px;
}
.b2b-announcement span {
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    font-weight: 900;
    font-size: .82rem;
}
.b2b-announcement strong {
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.15;
}
.b2b-announcement p {
    margin: 0;
}
.product-card .card-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.product-card .card-actions a { color: var(--blue); font-weight: 800; }
.solution-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.solution-card img {
    height: 180px;
    padding: 10px;
    border-radius: 8px;
    background: var(--muted);
    object-fit: contain;
    margin-bottom: 4px;
}
.solution-card .text-action {
    align-self: flex-start;
    margin-top: auto;
}
.text-action {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--blue);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.modal-active { overflow: hidden; }
.site-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    padding: 24px;
}
.site-modal.open {
    display: grid;
    place-items: center;
}
.site-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 28, 38, .58);
}
.site-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(10, 18, 32, .24);
}
.site-modal .admin-form {
    padding: 0;
    border: 0;
}
.compact-site-modal {
    width: min(560px, 100%);
}
.site-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    font-size: 1.35rem;
    cursor: pointer;
}
.lead {
    max-width: 840px;
    font-size: 1.05rem;
}
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 18px 0;
}
.product-gallery img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
}
.solution-modal-image {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
    padding: 14px;
    margin-bottom: 18px;
}
.blog-filter {
    grid-template-columns: minmax(0, 1fr) auto auto;
}
.blog-featured {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}
.blog-featured-media {
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
}
.blog-featured-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.blog-card img {
    height: 170px;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
}
.blog-card .text-action {
    align-self: flex-start;
    margin-top: auto;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 12px 0 18px;
    color: var(--text);
    font-size: .92rem;
    font-weight: 700;
}
.blog-detail-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    margin: 18px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
}
.blog-copy {
    font-size: 1.02rem;
}
.award-timeline,
.news-timeline {
    position: relative;
    display: grid;
    gap: 28px;
}
.award-timeline::before,
.news-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 88px;
    width: 2px;
    background: var(--border);
}
.award-node,
.news-node {
    position: relative;
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.award-year,
.news-date {
    position: sticky;
    top: 128px;
    z-index: 1;
    width: 112px;
    min-height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(237, 28, 36, .28);
    border-radius: 8px;
    background: var(--soft-red);
    color: var(--deep-red);
    font-size: 1.35rem;
    font-weight: 900;
}
.news-date {
    align-content: center;
    gap: 0;
    font-size: 1rem;
}
.news-date strong,
.news-date span {
    display: block;
    line-height: 1.15;
}
.news-date span {
    font-size: .82rem;
}
.award-card,
.news-card {
    display: grid;
    grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(28, 38, 56, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.award-card:hover,
.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(237, 28, 36, .28);
    box-shadow: var(--shadow);
}
.award-image,
.news-image {
    display: grid;
    place-items: center;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
}
.award-image img,
.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.award-image img {
    object-fit: contain;
}
.news-copy small {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 800;
}
.award-story {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .26s ease, opacity .2s ease, margin-top .2s ease;
}
.award-card:hover .award-story,
.award-card:focus-within .award-story {
    max-height: 420px;
    opacity: 1;
    margin-top: 12px;
}
.award-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 8px;
    margin-top: 16px;
}
.award-gallery img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
}
.home-news {
    padding-top: 42px;
}
.home-news-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.home-news-card {
    display: grid;
    grid-template-rows: 150px 1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(28, 38, 56, .06);
}
.home-news-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: var(--muted);
}
.home-news-card div {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 16px;
}
.home-news-card h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.22;
}
.home-news-card p {
    margin: 0;
    font-size: .94rem;
}
.product-detail-copy {
    margin: 18px 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fafbfc;
}
.document-links {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}
.document-links a {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--blue);
    font-weight: 800;
}
.pagination { display: flex; gap: 8px; margin-top: 26px; flex-wrap: wrap; }
.pagination a {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.pagination .active { background: var(--charcoal); color: var(--white); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; }
th { background: var(--muted); color: var(--charcoal); }
.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
    gap: 24px;
    align-items: stretch;
}
.contact-panel,
.map-panel {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(28, 38, 56, .05);
    overflow: hidden;
}
.contact-panel {
    padding: 28px;
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}
.contact-list {
    display: grid;
    gap: 12px;
}
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.contact-item strong, .contact-item span { display: block; }
.map-panel {
    min-height: 430px;
}
.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
    display: block;
    filter: saturate(.95) contrast(1.02);
}
.legal { max-width: 920px; }
.legal h2 {
    margin-top: 34px;
    font-size: 1.35rem;
}
.legal ul {
    margin: 0 0 22px;
    padding-left: 22px;
}
.legal li {
    margin-bottom: 9px;
}
.empty { padding: 22px; border: 1px dashed var(--border); border-radius: 8px; background: var(--muted); }
.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 56px;
    color: rgba(255, 255, 255, .82);
    background:
        radial-gradient(circle at 12% 0%, rgba(237, 28, 36, .32), transparent 28%),
        linear-gradient(135deg, #171d29 0%, #1f3f65 58%, #9f1119 100%);
}
.site-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -180px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 42px rgba(255, 255, 255, .05),
        inset 0 0 0 126px rgba(237, 28, 36, .08);
}
.footer-inner,
.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.45fr .8fr 1fr 1.1fr;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 38px;
}
.footer-logo {
    display: block;
    width: 148px;
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
}
.footer-brand p {
    max-width: 420px;
    color: rgba(255, 255, 255, .78);
}
.footer-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-top: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.footer-menu,
.footer-contact,
.footer-trade {
    display: grid;
    align-content: start;
    gap: 9px;
}
.site-footer h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
}
.footer-menu a,
.footer-contact a,
.footer-contact p,
.footer-trade p,
.footer-links a {
    color: rgba(255, 255, 255, .82);
}
.footer-menu a,
.footer-links a {
    width: fit-content;
    font-weight: 800;
}
.footer-menu a:hover,
.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}
.footer-contact span,
.footer-trade span {
    display: block;
    color: rgba(255, 255, 255, .56);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.footer-contact p,
.footer-trade p {
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-content: flex-start;
}
.footer-links a {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .66);
    font-size: .92rem;
}

@media (max-width: 820px) {
    .brand-row {
        padding-bottom: 4px;
        flex-direction: column;
        gap: 6px;
    }
    .utility {
        position: static;
        transform: none;
    }
    .brand { width: min(124px, 42vw); }
    .menu-toggle { display: flex; }
    .main-menu { display: none; flex-direction: column; align-items: stretch; }
    .main-menu.open { display: flex; }
    .has-dropdown .dropdown { position: static; box-shadow: none; margin: 0 12px 8px; }
    .has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: grid; }
    .hero-slide, .split, .grid-3, .contact-grid, .contact-layout, .blog-featured, .award-node, .award-card, .news-node, .news-card, .home-news-timeline { grid-template-columns: 1fr; }
    .hero-slide { min-height: auto; }
    .hero-slider { margin: 14px 20px 0; padding: 24px 20px 66px; }
    .hero-dots { bottom: 30px; }
    .page-hero { min-height: 300px; padding-top: 92px; }
    .b2b-hero-actions {
        top: 16px;
        left: 20px;
        right: 20px;
    }
    .b2b-hero-actions .button {
        flex: 1 1 140px;
        justify-content: center;
        padding-right: 12px;
        padding-left: 12px;
    }
    .page-hero::before {
        width: 300px;
        height: 300px;
        right: -120px;
        top: -70px;
    }
    .page-hero::after {
        width: 190px;
        height: 190px;
        right: 74px;
        bottom: -92px;
    }
    .filter-bar, .blog-filter { grid-template-columns: 1fr; }
    .category-strip { grid-template-columns: 1fr; gap: 12px; }
    .category-tile { min-height: 220px; }
    .category-tile-media { height: 150px; }
    .category-tile img,
    .category-tile-icon { height: 116px; }
    .product-card img { height: 160px; }
    .blog-featured-media,
    .blog-featured-media img { height: 240px; min-height: 240px; }
    .award-timeline::before,
    .news-timeline::before { left: 16px; }
    .award-year,
    .news-date { position: relative; top: auto; width: 100%; }
    .section-heading { align-items: start; flex-direction: column; }
    .map-panel,
    .map-panel iframe { min-height: 340px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero::before,
    .page-hero::after {
        animation: none;
    }
}
