:root {
    --ink: #132331;
    --muted: #60717d;
    --line: #cbd7df;
    --paper: #f5f7f8;
    --panel: #ffffff;
    --steel: #17384a;
    --teal: #0f6684;
    --accent: #bd4b33;
    --gold: #c99d4a;
    --shadow: 0 18px 40px rgba(16, 36, 50, .08);
}

/* Company and manufacturing evidence pages */
.company-facts-section,
.company-story-section,
.manufacturing-process-section,
.quality-records-section,
.factory-gallery-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.company-facts-section,
.quality-records-section {
    background: #fff;
    border-top: 1px solid #d7e1e7;
    border-bottom: 1px solid #d7e1e7;
}

.content-section.company-facts-section {
    width: calc(100% - 40px);
    max-width: 1140px;
    padding-left: 0;
    padding-right: 0;
}

.company-fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 3px solid var(--steel);
    border-left: 1px solid #d7e1e7;
}

.company-fact {
    min-width: 0;
    padding: 22px 20px 24px;
    border-right: 1px solid #d7e1e7;
    border-bottom: 1px solid #d7e1e7;
    background: #fff;
}

.company-fact > span {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.company-fact strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
}

.company-fact p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.company-story-list {
    border-top: 1px solid #cbd8df;
}

.company-story-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: stretch;
    border-bottom: 1px solid #cbd8df;
}

.company-story-row.reverse figure {
    order: 2;
}

.company-story-row figure {
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    background: #dfe6ea;
}

.company-story-row picture,
.company-story-row img {
    display: block;
    width: 100%;
    height: 100%;
}

.company-story-row img {
    object-fit: cover;
}

.company-story-row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 48px;
    background: #fff;
}

.company-story-row > div > span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.company-story-row h3 {
    margin: 9px 0 14px;
    color: var(--ink);
    font-size: 25px;
    line-height: 1.25;
}

.company-story-row .rich-copy,
.manufacturing-step .rich-copy {
    color: #405665;
    line-height: 1.7;
}

.manufacturing-process-list {
    position: relative;
    border-top: 1px solid #cbd8df;
}

.manufacturing-process-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 37px;
    width: 1px;
    background: #aebfc9;
}

.manufacturing-step {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 24px;
    min-height: 132px;
    padding: 28px 0;
    border-bottom: 1px solid #cbd8df;
}

.manufacturing-step.has-image {
    grid-template-columns: 76px minmax(0, 1fr) minmax(260px, 38%);
    align-items: center;
}

.manufacturing-step-number {
    position: relative;
    z-index: 1;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-left: 13px;
    color: #fff;
    background: var(--steel);
    border: 5px solid #f7f9fa;
    font-size: 12px;
    font-weight: 800;
}

.manufacturing-step-copy {
    align-self: center;
}

.manufacturing-step h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 22px;
}

.manufacturing-step figure {
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #dfe6ea;
}

.manufacturing-step picture,
.manufacturing-step img {
    display: block;
    width: 100%;
    height: 100%;
}

.manufacturing-step img {
    object-fit: cover;
}

.factory-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.factory-photo {
    position: relative;
    grid-column: span 3;
    min-height: 210px;
    margin: 0;
    overflow: hidden;
    background: #dfe6ea;
}

.factory-photo-featured {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 432px;
}

.factory-photo picture,
.factory-photo img {
    display: block;
    width: 100%;
    height: 100%;
}

.factory-photo img {
    object-fit: cover;
    transition: transform .25s ease;
}

.factory-photo:hover img {
    transform: scale(1.02);
}

.factory-photo figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 14px 12px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(6, 32, 47, .88));
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 1000px) {
    .company-fact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-story-row,
    .company-story-row.reverse {
        grid-template-columns: 1fr 1fr;
    }

    .manufacturing-step.has-image {
        grid-template-columns: 64px minmax(0, 1fr) minmax(220px, 36%);
        gap: 18px;
    }

    .factory-photo {
        grid-column: span 4;
    }

    .factory-photo-featured {
        grid-column: span 8;
    }
}

@media (max-width: 680px) {
    .company-facts-section,
    .company-story-section,
    .manufacturing-process-section,
    .quality-records-section,
    .factory-gallery-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .company-fact-grid {
        grid-template-columns: 1fr;
    }

    .company-story-row,
    .company-story-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .company-story-row.reverse figure {
        order: 0;
    }

    .company-story-row figure {
        min-height: 230px;
    }

    .company-story-row > div {
        padding: 28px 22px 34px;
    }

    .company-story-row h3 {
        font-size: 21px;
    }

    .manufacturing-process-list::before {
        left: 24px;
    }

    .manufacturing-step,
    .manufacturing-step.has-image {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 14px;
    }

    .manufacturing-step-number {
        width: 40px;
        height: 40px;
        margin-left: 4px;
        border-width: 4px;
    }

    .manufacturing-step figure {
        grid-column: 2;
    }

    .factory-photo,
    .factory-photo-featured {
        grid-column: span 12;
        grid-row: auto;
        min-height: 240px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.86), transparent 26%),
        linear-gradient(90deg, rgba(15, 102, 132, .028) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 102, 132, .028) 1px, transparent 1px),
        #f4f7f8;
    background-size: 42px 42px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

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

picture {
    display: block;
}

picture img {
    width: 100%;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(15, 44, 62, .06);
}

.top-line {
    max-width: 1180px;
    margin: 0 auto;
    padding: 7px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 12px;
    border-bottom: 1px solid #e6edf1;
}

.top-line a {
    color: var(--teal);
    font-weight: 700;
}

.top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    white-space: nowrap;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.language-switcher a,
.language-switcher span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 6px;
    border: 1px solid #d7e2e8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.language-switcher a {
    color: var(--teal);
    background: #f4f9fb;
}

.language-switcher a.active {
    color: #fff;
    background: var(--steel);
    border-color: var(--steel);
}

.language-switcher span {
    color: #91a0a9;
    background: #f7f9fa;
}

.nav-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 150px;
}

.brand-logo {
    width: 132px;
    height: auto;
    display: block;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
}

.nav-panel {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-toggle,
.mobile-nav-tools,
.mobile-nav-cta {
    display: none;
}

.main-nav a {
    padding: 8px 9px;
    color: #344a59;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 30;
    }

    .site-header .top-line {
        display: none;
    }

    .nav-shell {
        position: relative;
        min-height: 58px;
        padding: 8px 14px;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .brand {
        min-width: 0;
        margin-right: auto;
    }

    .brand-logo {
        width: 104px;
        max-height: 38px;
        object-fit: contain;
        object-position: left center;
    }

    .nav-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
        padding: 0;
        flex: 0 0 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: 1px solid #cbd8df;
        background: #fff;
        color: var(--teal);
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: currentColor;
        transition: transform .18s ease, opacity .18s ease;
    }

    .mobile-nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-shell .nav-cta {
        display: none;
    }

    .nav-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100vh - 58px);
        overflow-y: auto;
        padding: 10px 14px 16px;
        background: #fff;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(15, 44, 62, .16);
    }

    .mobile-nav-open .nav-panel {
        display: block;
    }

    .nav-panel .main-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin: 0;
        gap: 4px;
    }

    .nav-panel .main-nav a {
        display: flex;
        align-items: center;
        min-height: 42px;
        padding: 8px 10px;
        border: 1px solid transparent;
    }

    .mobile-nav-tools {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 10px;
        padding-top: 12px;
        border-top: 1px solid var(--line);
    }

    .mobile-language-switcher {
        display: flex;
        flex-wrap: wrap;
    }

    .mobile-global-link {
        color: var(--teal);
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
    }

    .mobile-nav-cta {
        display: inline-flex;
        min-height: 38px;
        align-items: center;
        justify-content: center;
        padding: 8px 14px;
        color: #fff;
        background: var(--accent);
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap;
    }
}

@media (max-width: 390px) {
    .nav-shell {
        padding-left: 10px;
        padding-right: 10px;
        gap: 6px;
    }

    .brand-logo {
        width: 92px;
    }

    .nav-shell .nav-cta {
        display: none;
    }

    .nav-panel .main-nav {
        grid-template-columns: 1fr;
    }

    .mobile-nav-tools {
        align-items: flex-start;
        flex-direction: column;
    }
}

.site-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    transition: transform .22s ease, box-shadow .22s ease;
}

.site-whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    animation: site-whatsapp-pulse 2s infinite;
}

.site-whatsapp-float:hover,
.site-whatsapp-float:focus-visible {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(37, 211, 102, .7);
}

.site-whatsapp-float svg {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.site-whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes site-whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 700px) {
    .site-whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .site-whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-whatsapp-float::before {
        animation: none;
    }
}

/* Native site search */
@media (min-width: 821px) {
    .nav-shell {
        gap: 12px;
    }

    .brand-logo {
        width: 124px;
    }

    .main-nav {
        gap: 2px;
    }

    .main-nav a {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 12px;
        white-space: nowrap;
    }
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.header-search {
    position: relative;
    flex: 0 0 auto;
}

.search-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--teal);
    background: #fff;
    border: 1px solid #c7d5dc;
    cursor: pointer;
}

.search-toggle:hover,
.search-toggle:focus-visible,
.header-search.search-open .search-toggle {
    color: #fff;
    background: var(--steel);
    border-color: var(--steel);
}

.search-glyph {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-glyph::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 2px;
    right: -6px;
    bottom: -3px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.header-search-panel {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: -74px;
    z-index: 40;
    width: min(500px, calc(100vw - 32px));
    grid-template-columns: minmax(0, 1fr) auto 38px;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid #bfcfd7;
    border-top: 3px solid var(--accent);
    box-shadow: 0 18px 38px rgba(15, 44, 62, .2);
}

.header-search.search-open .header-search-panel {
    display: grid;
}

.header-search-panel input,
.mobile-site-search input,
.search-page-form input {
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #bfcfd7;
    font: inherit;
}

.header-search-panel input:focus,
.mobile-site-search input:focus,
.search-page-form input:focus {
    outline: 2px solid rgba(15, 91, 119, .18);
    border-color: var(--steel);
}

.search-submit,
.mobile-site-search button,
.search-page-form button {
    min-height: 42px;
    padding: 0 16px;
    color: #fff;
    background: var(--steel);
    border: 1px solid var(--steel);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.search-close {
    width: 38px;
    height: 42px;
    padding: 0;
    color: #526975;
    background: #f3f7f8;
    border: 1px solid #c7d5dc;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.mobile-site-search {
    display: none;
}

@media (max-width: 1050px) {
    .header-search {
        display: none;
    }

    .mobile-site-search {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 7px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--line);
    }
}

.search-page {
    position: relative;
    max-width: 1180px;
    margin: -170px auto 70px;
    padding: 40px 44px 48px;
    background: #fff;
    border: 1px solid #c8d5dc;
    border-top: 4px solid var(--accent);
}

.search-page-heading {
    max-width: 760px;
}

.search-page-heading .eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.search-page-heading h1 {
    margin: 10px 0 10px;
    font-size: 38px;
    line-height: 1.08;
}

.search-page-heading p {
    color: var(--muted);
    font-size: 17px;
}

.search-page-form {
    max-width: 760px;
    margin-top: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.search-results {
    margin-top: 42px;
}

.search-results-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--steel);
}

.search-results-heading h2,
.search-results-heading p {
    margin: 0;
}

.search-results-heading h2 {
    font-size: 23px;
}

.search-results-heading p {
    color: var(--muted);
    font-size: 14px;
}

.search-message {
    margin: 0;
    padding: 28px 0;
    color: var(--muted);
}

.search-result-item {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.search-result-item > span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.search-result-item h2 {
    margin: 7px 0 8px;
    font-size: 23px;
}

.search-result-item h2 a {
    color: var(--ink);
}

.search-result-item h2 a:hover {
    color: var(--steel);
}

.search-result-item p {
    max-width: 840px;
    margin: 0 0 12px;
    color: var(--muted);
}

.search-result-link {
    color: var(--steel);
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 820px) {
    .header-search {
        display: none;
    }

    .mobile-site-search {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 7px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--line);
    }

    .search-page {
        margin: -172px 14px 50px;
        padding: 28px 22px 36px;
    }

    .search-page-heading h1 {
        font-size: 30px;
    }

    .search-results-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 420px) {
    .mobile-site-search button,
    .search-page-form button {
        padding-left: 11px;
        padding-right: 11px;
    }

    .search-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-page-form {
        grid-template-columns: 1fr;
    }
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--teal);
    background: #eef5f7;
}

.top-image-strip {
    height: 218px;
    background:
        linear-gradient(90deg, rgba(247,249,250,.92) 0%, rgba(247,249,250,.22) 18%, rgba(247,249,250,.22) 82%, rgba(247,249,250,.92) 100%),
        linear-gradient(180deg, rgba(247,249,250,.04) 0%, rgba(247,249,250,.18) 52%, #f7f9fa 100%),
        var(--top-strip-image, url('/assets/img/products/europe-flange-stock-banner.jpg')) center 50% / cover no-repeat;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.cta-band a,
.inquiry-form button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
}

.nav-cta,
.primary-btn,
.inquiry-form button {
    color: #fff;
    background: var(--accent);
}

.secondary-btn {
    color: var(--steel);
    background: #fff;
    border-color: var(--line);
}

.dossier-hero {
    max-width: 1180px;
    margin: -188px auto 0;
    padding: 0 20px 28px;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.standards-rail,
.dossier-main,
.evidence-card,
.contact-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 22px 45px rgba(16, 36, 50, .12);
}

.standards-rail {
    display: grid;
    align-content: start;
}

.standards-rail a {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-bottom: 1px solid #e1e8ed;
    color: #354b5a;
    font-weight: 800;
}

.standards-rail a:last-child {
    border-bottom: 0;
}

.standards-rail a:hover,
.standards-rail a.active {
    color: #fff;
    background: var(--steel);
}

.standards-rail span {
    color: inherit;
    opacity: .62;
    font-size: 11px;
    font-weight: 900;
}

.dossier-main {
    padding: 34px;
    border-top: 5px solid var(--accent);
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,252,253,.96)),
        #fff;
}

.eyebrow,
.section-heading span,
.cta-band span,
.site-footer span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dossier-main h1 {
    margin: 12px 0 14px;
    color: var(--steel);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
}

.dossier-main p {
    max-width: 720px;
    margin: 0;
    color: #425867;
    font-size: 17px;
}

.spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.spec-chips span {
    padding: 6px 9px;
    color: #344c5c;
    background: #edf4f6;
    border: 1px solid #cad8df;
    font-size: 12px;
    font-weight: 800;
}

.hero-certifications {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.hero-certification {
    display: grid;
    gap: 4px;
    min-height: 74px;
    padding: 10px;
    color: var(--steel);
    background: linear-gradient(180deg, #fff, #f5f9fb);
    border: 1px solid #c9d9e0;
}

.hero-certification:hover {
    border-color: #8aa1ad;
    background: #fff;
}

.hero-certification strong,
.hero-certification small {
    display: block;
}

.hero-certification strong {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.hero-certification small {
    color: #425867;
    font-size: 11px;
    line-height: 1.35;
}

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

.evidence-card {
    display: grid;
    grid-template-rows: 2fr 1fr;
    height: 100%;
    overflow: hidden;
}

.evidence-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.evidence-card picture {
    height: 100%;
    min-height: 0;
}

.evidence-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 18px;
}

.evidence-card span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.evidence-card strong {
    display: block;
    margin-top: 8px;
    color: var(--steel);
    font-size: 18px;
    line-height: 1.25;
}

.dossier-hero.page-certificates {
    align-items: start;
    grid-auto-rows: minmax(474px, auto);
}

.dossier-hero.page-certificates .dossier-main {
    align-self: stretch;
}

.dossier-hero.page-certificates .standards-rail,
.dossier-hero.page-certificates .evidence-card {
    align-self: stretch;
    height: 100%;
    grid-template-rows: minmax(0, 1fr) auto;
}

.dossier-hero.page-certificates .evidence-card picture {
    height: 100%;
    min-height: 0;
}

.dossier-hero.page-certificates .evidence-card img {
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: #fff;
}

.product-visual-section {
    padding-top: 12px;
    padding-bottom: 18px;
}

.product-visual-grid {
    display: grid;
    grid-template-columns: 1.35fr .82fr .82fr;
    gap: 12px;
}

.product-visual-grid figure {
    position: relative;
    min-height: 190px;
    margin: 0;
    overflow: hidden;
    background: #d9e3e8;
    border: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(16, 36, 50, .08);
}

.product-visual-grid img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    transform: scale(1.01);
}

.product-visual-grid picture {
    height: 100%;
}

.product-visual-grid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(180deg, transparent, rgba(7, 29, 42, .86));
}

.product-visual-grid figcaption span,
.product-visual-grid figcaption strong {
    display: block;
}

.product-visual-grid figcaption span {
    margin-bottom: 3px;
    color: #d7e9f0;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trust-strip {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trust-strip div {
    min-height: 96px;
    padding: 18px;
    background: #102d3d;
    border: 1px solid #274b5d;
    box-shadow: 0 14px 32px rgba(16, 36, 50, .08);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
}

.trust-strip span {
    margin-top: 8px;
    color: #c9dbe3;
    font-size: 13px;
    line-height: 1.45;
}

.content-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 38px 20px;
}

.section-heading {
    display: block;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.section-heading span {
    display: block;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin: 0;
    color: var(--steel);
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.12;
    letter-spacing: 0;
}

.range-list {
    display: grid;
    gap: 10px;
}

.range-row {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 80px;
    gap: 18px;
    align-items: center;
    min-height: 108px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(16, 36, 50, .045);
}

.range-row:hover {
    border-color: #8aa1ad;
    background: #fbfdfe;
}

.range-thumb {
    width: 118px;
    height: 84px;
    background: #dce7ec;
}

.range-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.range-thumb picture {
    height: 100%;
}

.range-copy strong,
.range-copy small {
    display: block;
}

.range-copy strong {
    color: var(--steel);
    font-size: 19px;
}

.range-copy small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.range-action {
    justify-self: end;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rfq-prep-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.rfq-prep-item {
    min-height: 150px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid #d8e3e8;
    box-shadow: 0 12px 28px rgba(16, 36, 50, .045);
}

.rfq-prep-item span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rfq-prep-item p {
    margin: 16px 0 0;
    color: #425867;
    font-size: 15px;
}

.compliance-section {
    padding-top: 24px;
}

.compliance-grid,
.technical-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.compliance-grid article,
.technical-service-grid article {
    min-height: 190px;
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,251,.96)),
        #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--teal);
    box-shadow: 0 12px 28px rgba(16, 36, 50, .05);
}

.compliance-grid span,
.technical-service-grid span {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.compliance-grid h3,
.technical-service-grid h3 {
    margin: 8px 0 10px;
    color: var(--steel);
    font-size: 18px;
    line-height: 1.24;
}

.compliance-grid p,
.technical-service-grid p {
    margin: 0;
    color: #425867;
    font-size: 14px;
}

.market-section {
    padding-top: 8px;
    padding-bottom: 24px;
}

.market-section p {
    max-width: 980px;
    margin: 0 0 14px;
    color: #425867;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.market-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    color: var(--steel);
    font-size: 13px;
    font-weight: 800;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(16, 36, 50, .035);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.sticky-heading {
    position: sticky;
    top: 108px;
}

.sticky-heading h2 {
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.notes-section {
    grid-template-columns: 1fr;
    gap: 18px;
}

.notes-section .sticky-heading {
    position: static;
    display: block;
    max-width: none;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.notes-section .sticky-heading h2 {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.12;
}

.notes-section .copy-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.copy-stack {
    display: grid;
    gap: 10px;
}

.info-block {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(16, 36, 50, .045);
}

.info-block:first-child {
    border-top: 4px solid var(--teal);
}

.info-block figure {
    margin: -22px -22px 18px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: #e8eef1;
}

.info-block figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-block h3 {
    margin: 0 0 7px;
    color: var(--steel);
    font-size: 19px;
}

.info-block p {
    margin: 0;
    color: var(--muted);
}

.rich-copy {
    color: var(--muted);
}

.rich-copy p,
.rich-copy div {
    margin: 0 0 10px;
}

.rich-copy p:last-child,
.rich-copy div:last-child {
    margin-bottom: 0;
}

.rich-copy ul,
.rich-copy ol {
    margin: 8px 0 0;
    padding-left: 20px;
}

.rich-copy li {
    margin: 4px 0;
}

.rich-copy h3,
.rich-copy h4 {
    margin: 12px 0 6px;
    color: var(--steel);
}

.rich-copy a {
    color: var(--accent);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.link-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.link-tile {
    min-height: 135px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid #d8e3e8;
    box-shadow: 0 12px 28px rgba(16, 36, 50, .045);
}

.link-tile:hover {
    border-top-color: var(--accent);
}

.link-tile span {
    display: block;
    color: var(--steel);
    font-size: 17px;
    font-weight: 900;
}

.link-tile p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.table-wrap {
    overflow: visible;
    background: #fff;
    border: 1px solid var(--line);
}

.spec-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

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

.spec-table th {
    color: #fff;
    background: var(--steel);
}

.dimension-table th,
.dimension-table td {
    white-space: normal;
    overflow-wrap: anywhere;
}

.table-note {
    max-width: 900px;
    margin: 12px 0 0;
    color: #587080;
    font-size: 13px;
}

.reference-table-block {
    margin-top: 18px;
}

.reference-table-block:first-of-type {
    margin-top: 0;
}

.reference-table-block h3 {
    margin: 0 0 10px;
    color: var(--steel);
    font-size: 18px;
}

.legacy-dimension-table {
    min-width: 0;
    table-layout: fixed;
}

.legacy-dimension-table th,
.legacy-dimension-table td {
    padding: 8px 7px;
    font-size: 11px;
    text-align: center;
    line-height: 1.25;
}

.legacy-dimension-table th {
    color: #fff;
    background: var(--steel);
}

.reference-image-grid {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.reference-image-grid figure {
    margin: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
}

.reference-image-grid img {
    display: block;
    width: 100%;
    height: auto;
}

.reference-image-grid figcaption {
    margin-top: 10px;
    color: #587080;
    font-size: 13px;
}

.product-rfq-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
}

.product-rfq-panel h2 {
    margin: 0 0 8px;
    color: var(--steel);
    font-size: 24px;
}

.product-rfq-panel p {
    margin: 0;
    color: #425867;
}

.parent-return-section {
    padding-top: 0;
    padding-bottom: 0;
}

.parent-return-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    background: var(--steel);
    border: 1px solid var(--steel);
    box-shadow: 0 12px 26px rgba(15, 44, 62, .16);
}

.parent-return-link::before {
    content: "<";
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--steel);
    background: #fff;
    font-size: 16px;
    line-height: 1;
}

.parent-return-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 16px 30px rgba(189, 75, 51, .18);
}

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 900px;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
}

.faq-list summary {
    cursor: pointer;
    padding: 17px 19px;
    color: var(--steel);
    font-weight: 900;
}

.faq-list .rich-copy {
    padding: 0 19px 18px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.certificate-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
}

.certificate-grid picture {
    width: 100%;
}

.certificate-library {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.certificate-library a {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 9px;
    padding: 12px;
    color: var(--steel);
    background: #fff;
    border: 1px solid var(--line);
}

.certificate-library a:hover {
    border-color: #aac1cc;
    box-shadow: 0 12px 26px rgba(11, 45, 65, .09);
}

.certificate-library img {
    height: 210px;
    aspect-ratio: auto;
}

.certificate-library picture {
    height: 210px;
}

.certificate-library strong {
    font-size: 15px;
}

.certificate-library span {
    color: #587080;
    font-size: 13px;
}

.certificate-modal[hidden] {
    display: none;
}

.certificate-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10, 28, 39, .78);
}

.certificate-modal figure {
    display: grid;
    gap: 12px;
    margin: 0;
    max-width: min(980px, 94vw);
}

.certificate-modal img {
    max-width: min(980px, 94vw);
    max-height: 82vh;
    object-fit: contain;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .38);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.certificate-modal figcaption {
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.certificate-modal-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .42);
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.cta-band {
    max-width: 1140px;
    margin: 28px auto 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    color: #fff;
    background: var(--steel);
}

.cta-band h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(23px, 2.4vw, 32px);
    line-height: 1.16;
}

.cta-band a {
    min-width: 150px;
    color: #fff;
    white-space: nowrap;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(201, 157, 74, .7);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.cta-band a:hover {
    color: #071d2a;
    background: var(--gold);
    border-color: var(--gold);
}

.page-context-cta {
    position: relative;
    z-index: 2;
}

.site-footer {
    margin-top: 0;
    padding: 36px max(20px, calc((100vw - 1140px) / 2));
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 28px;
    color: #c6d5dc;
    background: #071d2a;
}

.footer-image-strip {
    width: 100%;
    height: 218px;
    margin-top: 38px;
    padding: 0 20px 38px;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    background:
        linear-gradient(90deg, rgba(247,249,250,.92) 0%, rgba(247,249,250,.2) 18%, rgba(247,249,250,.2) 82%, rgba(247,249,250,.92) 100%),
        linear-gradient(0deg, rgba(247,249,250,.04) 0%, rgba(247,249,250,.2) 52%, #f7f9fa 100%),
        var(--footer-strip-image, url('/assets/img/products/europe-flange-stock-banner.jpg')) center 50% / cover no-repeat;
}

.footer-image-strip .page-context-cta {
    width: 100%;
    margin: 0 auto;
}

.site-footer strong {
    color: #fff;
    font-size: 19px;
}

.site-footer p {
    margin: 9px 0 0;
    max-width: 430px;
}

.site-footer div {
    display: grid;
    align-content: start;
    gap: 8px;
}

.contact-dossier {
    grid-template-columns: minmax(0, 1fr) 330px;
}

.contact-dossier .contact-panel {
    padding: 24px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(23, 56, 74, .96), rgba(7, 29, 42, .98)),
        var(--steel);
    border-color: rgba(201, 157, 74, .45);
}

.contact-panel a,
.contact-panel span,
.contact-panel strong,
.contact-panel p {
    display: block;
}

.contact-panel p {
    margin: 4px 0 0;
    color: #fff;
}

.contact-panel span {
    margin-top: 14px;
    color: #c8dbe4;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.contact-panel b {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.38;
}

.contact-panel a {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(201, 157, 74, .72);
    text-underline-offset: 4px;
}

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

.contact-detail-grid article {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
    box-shadow: 0 14px 30px rgba(16, 36, 50, .055);
}

.contact-detail-grid h3 {
    margin: 0 0 12px;
    color: var(--steel);
    font-size: 18px;
}

.contact-detail-grid p {
    margin: 8px 0 0;
    color: #425867;
}

.form-layout,
.contact-workspace {
    display: grid;
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.contact-workspace {
    padding-top: 20px;
}

.contact-sales-card,
.form-side {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(16, 36, 50, .075);
}

.contact-sales-card {
    position: sticky;
    top: 110px;
    overflow: hidden;
}

.contact-sales-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.contact-sales-card picture {
    height: 210px;
}

.sales-highlight {
    padding: 24px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(23, 56, 74, .96), rgba(7, 29, 42, .98)),
        var(--steel);
}

.sales-highlight span {
    display: block;
    color: #d9e7ed;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sales-highlight strong {
    display: block;
    margin-top: 9px;
    color: #fff;
    font-size: 32px;
    line-height: 1;
}

.sales-highlight a {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 5px;
}

.sales-highlight b {
    display: block;
    margin-top: 13px;
    color: #f6fbfd;
    font-size: 16px;
    line-height: 1.45;
}

.quick-contact-list {
    display: grid;
    gap: 0;
}

.quick-contact-list p {
    margin: 0;
    padding: 17px 20px;
    color: #425867;
    border-top: 1px solid #e3ebef;
}

.quick-contact-list strong,
.quick-contact-list a {
    display: block;
}

.quick-contact-list strong {
    margin-bottom: 4px;
    color: var(--steel);
}

.quick-contact-list a {
    color: var(--teal);
    font-weight: 900;
}

.form-side {
    padding: 24px;
    border-top: 4px solid var(--accent);
}

.form-side h2 {
    margin: 8px 0 0;
    color: var(--steel);
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.12;
}

.check-list {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.check-list li {
    margin: 10px 0;
}

.inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding: 0;
    background: transparent;
    border: 0;
}

.inquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--steel);
    font-weight: 800;
    font-size: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid #cbd8e0;
    padding: 11px 12px;
    font: inherit;
    color: var(--ink);
    background: #fbfdfe;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: 0;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15, 102, 132, .12);
}

.inquiry-form textarea {
    resize: vertical;
}

.form-privacy-note {
    margin: 14px 0 18px;
    padding: 12px 14px;
    border-left: 4px solid var(--accent);
    background: #f5f9fb;
    color: #36566a;
    font-size: .94rem;
    line-height: 1.55;
}

.privacy-consent,
.rfq-drawer__consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px !important;
    padding: 13px 14px;
    border: 1px solid #cbd8e0;
    background: #f5f9fb;
    color: #36566a !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.5;
}

.privacy-consent input,
.rfq-drawer__consent input {
    flex: 0 0 auto;
    width: 17px !important;
    height: 17px;
    margin: 2px 0 0;
    padding: 0;
    accent-color: var(--accent);
}

.privacy-consent a,
.rfq-drawer__consent a {
    color: var(--teal);
    font-weight: 850;
    text-decoration: underline;
}

.privacy-consent em,
.rfq-drawer__consent em {
    color: var(--accent);
    font-style: normal;
}

.rfq-drawer__consent {
    margin-top: 16px;
}

.privacy-page {
    max-width: 1120px;
}

.privacy-summary {
    margin-bottom: 10px;
    padding: 20px 22px;
    border-left: 4px solid var(--accent);
    background: #f3f7f9;
}

.privacy-summary p,
.privacy-page article p,
.privacy-page article li {
    color: #3d596a;
    line-height: 1.7;
}

.privacy-page article {
    padding: 22px 0;
    border-top: 1px solid #d8e3e9;
}

.privacy-page article h2 {
    margin: 0 0 10px;
    color: var(--steel);
    font-size: 25px;
}

.privacy-page article ul {
    margin: 0;
    padding-left: 22px;
}

.site-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px max(28px, calc((100% - 1180px) / 2));
    border-top: 1px solid rgba(255, 255, 255, .14);
    background: #102f3f;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 640px) {
    .site-copyright {
        justify-content: center;
        padding: 14px 20px;
    }
}

.inquiry-context-summary {
    margin: 2px 0 20px;
    padding: 18px;
    background: #f2f7f9;
    border: 1px solid #c9d9e1;
    border-top: 3px solid var(--teal);
}

.inquiry-context-summary > strong {
    display: block;
    margin-top: 6px;
    color: var(--steel);
    font-size: 18px;
}

.inquiry-context-summary > p {
    margin: 7px 0 0;
    color: #486171;
    line-height: 1.55;
}

.inquiry-context-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.inquiry-context-tags span {
    padding: 6px 9px;
    color: #153f55;
    background: #fff;
    border: 1px solid #c6d7df;
    font-size: 12px;
    font-weight: 850;
}

.field-hint {
    display: block;
    margin-top: 7px;
    color: #5d7483;
    font-size: .84rem;
    line-height: 1.45;
}

.inquiry-form .full-row,
.inquiry-form .form-message,
.inquiry-form .hidden-field,
.inquiry-form button {
    grid-column: 1 / -1;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    padding: 12px 14px;
    font-weight: 800;
}

.form-message.success {
    color: #21735b;
    background: #e8f5ef;
}

.form-message.error {
    color: var(--accent);
    background: #faece8;
}

.single-hero {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.single-hero .dossier-main {
    min-height: 360px;
}

.buyer-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.buyer-focus-grid article {
    min-height: 150px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,251,.96)),
        #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--teal);
}

.buyer-focus-grid span {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.buyer-focus-grid p {
    margin: 9px 0 0;
    color: #425867;
}

.procurement-guidance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.procurement-guidance article {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(16, 36, 50, .055);
}

.procurement-guidance span {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.procurement-guidance h3 {
    margin: 8px 0 10px;
    color: var(--steel);
    font-size: 19px;
    line-height: 1.25;
}

.procurement-guidance p {
    margin: 10px 0 0;
    color: #425867;
}

@media (max-width: 1000px) {
    .dossier-hero,
    .contact-dossier,
    .single-hero,
    .form-layout,
    .contact-workspace,
    .product-visual-grid,
    .inquiry-form {
        grid-template-columns: 1fr;
    }

    .standards-rail {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .standards-rail a {
        border-bottom: 0;
        border-right: 1px solid #e1e8ed;
    }

    .standards-rail a:last-child {
        border-right: 0;
    }

    .link-tile-grid,
    .hero-certifications,
    .trust-strip,
    .rfq-prep-grid,
    .compliance-grid,
    .technical-service-grid,
    .buyer-focus-grid,
    .procurement-guidance,
    .certificate-grid,
    .contact-detail-grid,
    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .contact-sales-card {
        position: static;
    }
}

@media (max-width: 680px) {
    .site-header {
        position: static;
    }

    .top-line,
    .nav-shell {
        align-items: flex-start;
    }

    .top-line {
        flex-wrap: wrap;
    }

    .top-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .nav-shell {
        flex-wrap: wrap;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 118px;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .nav-cta {
        width: 100%;
    }

    .dossier-hero,
    .content-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-image-strip {
        height: 128px;
    }

    .footer-image-strip {
        height: 128px;
        margin-top: 22px;
        padding: 0 16px 22px;
    }

    .dossier-hero {
        margin-top: -86px;
    }

    .dossier-main {
        padding: 24px;
        order: 1;
    }

    .evidence-card {
        order: 2;
    }

    .standards-rail {
        order: 3;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dossier-main h1 {
        font-size: 24px;
    }

    .section-heading,
    .notes-section .sticky-heading,
    .notes-section .copy-stack,
    .two-column,
    .range-row,
    .link-tile-grid,
    .hero-certifications,
    .trust-strip,
    .rfq-prep-grid,
    .compliance-grid,
    .technical-service-grid,
    .buyer-focus-grid,
    .procurement-guidance,
    .certificate-grid,
    .contact-detail-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .product-visual-grid figure,
    .product-visual-grid img {
        min-height: 220px;
    }

    .standards-rail a {
        border-right: 0;
        border-bottom: 1px solid #e1e8ed;
    }

    .legacy-dimension-table th,
    .legacy-dimension-table td {
        padding: 6px 4px;
        font-size: 10px;
    }

    .product-rfq-panel {
        grid-template-columns: 1fr;
    }

    .range-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .evidence-card {
        display: block;
        height: auto;
    }

    .dossier-hero.page-certificates {
        grid-auto-rows: auto;
    }

    .dossier-hero.page-certificates .evidence-card {
        height: auto;
    }

    .dossier-hero.page-certificates .evidence-card picture {
        height: auto;
    }

    .dossier-hero.page-certificates .evidence-card img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .evidence-card img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .range-action {
        justify-self: start;
    }

    .sticky-heading {
        position: static;
    }

    .cta-band {
        margin-left: 16px;
        margin-right: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Keep the closed mobile header compact after the legacy phone layout rules. */
@media (max-width: 1050px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .site-header .top-line {
        display: none;
    }

    .nav-shell {
        min-height: 58px;
        padding: 8px 14px;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .brand {
        min-width: 0;
        margin-right: auto;
    }

    .brand-logo {
        width: 104px;
        max-height: 38px;
    }

    .nav-shell .nav-cta {
        display: none;
    }
}

@media (max-width: 390px) {
    .nav-shell {
        padding-left: 10px;
        padding-right: 10px;
        gap: 6px;
    }

    .brand-logo {
        width: 92px;
    }

    .nav-shell .nav-cta {
        display: none;
    }
}
/* CMS-controlled modules keep the established page design while allowing safe ordering. */
.cms-component-flow {
    display: flex;
    flex-direction: column;
}

.cms-component {
    min-width: 0;
}

.cms-custom-content-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.cms-custom-content-section.has-image {
    grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
}

.cms-custom-content-section figure {
    margin: 0;
}

.cms-custom-content-section figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 760px) {
    .cms-custom-content-section.has-image {
        grid-template-columns: 1fr;
    }
}

.shipment-home-section,
.shipment-archive-section {
    padding-top: 38px;
    padding-bottom: 44px;
}

.shipment-home-section {
    order: 2147483000;
}

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

.shipment-view-all {
    flex: 0 0 auto;
    border: 1px solid #b8cad4;
    background: #fff;
    color: #173c50;
    padding: 11px 16px;
    font-weight: 800;
    text-decoration: none;
}

.shipment-view-all:hover,
.shipment-view-all:focus-visible {
    border-color: #c74a34;
    color: #a93624;
}

.shipment-home-intro {
    max-width: 760px;
    margin: -8px 0 24px;
    color: #526b79;
}

.shipment-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.shipment-archive-section .shipment-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shipment-card {
    min-width: 0;
    border: 1px solid #c9d8e0;
    border-top: 4px solid #c74a34;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.shipment-card:hover,
.shipment-card:focus-within {
    transform: translateY(-3px);
    border-color: #9eb5c1;
    box-shadow: 0 16px 30px rgba(16, 36, 50, .12);
}

.shipment-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.shipment-card-link:focus-visible {
    outline: 3px solid rgba(199, 74, 52, .35);
    outline-offset: 3px;
}

.shipment-card-link > img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.shipment-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.shipment-card time {
    display: block;
    color: #c3432d;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.shipment-card h3 {
    margin: 8px 0 9px;
    color: #12384c;
    font-size: 20px;
    line-height: 1.25;
}

.shipment-card p {
    margin: 0;
    color: #526b79;
    line-height: 1.6;
}

.shipment-card dl {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-top: 13px;
    border-top: 1px solid #dde6eb;
}

.shipment-card dl div {
    display: grid;
    grid-template-columns: minmax(90px, auto) 1fr;
    gap: 12px;
}

.shipment-card dt {
    color: #718592;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.shipment-card dd {
    margin: 0;
    color: #173c50;
    font-weight: 700;
}

.shipment-card-action {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 16px;
    color: #a93624;
    font-size: 13px;
    font-weight: 900;
}

.shipment-card-action::after {
    content: "›";
    margin-left: 7px;
    font-size: 19px;
    line-height: 1;
}

.shipment-page-hero {
    max-width: 1180px;
    margin: -188px auto 0;
    padding: 0 20px 28px;
    position: relative;
    z-index: 2;
}

.shipment-page-hero > div {
    width: 100%;
    max-width: none;
    border-top: 4px solid #c74a34;
    min-height: 188px;
    padding: 34px;
    background: rgba(255, 255, 255, .95);
    border-right: 1px solid #c9d8e0;
    border-bottom: 1px solid #c9d8e0;
    border-left: 1px solid #c9d8e0;
    box-shadow: 0 22px 45px rgba(16, 36, 50, .12);
}

.shipment-page-hero h1 {
    margin: 8px 0 12px;
    color: #12384c;
    font-size: 42px;
    line-height: 1.08;
}

.shipment-page-hero p {
    margin: 0;
    color: #526b79;
    font-size: 18px;
    line-height: 1.65;
}

.shipment-empty-state {
    border: 1px solid #c9d8e0;
    background: #fff;
    padding: 26px;
    color: #526b79;
}

.shipment-back-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 18px;
    color: #fff;
    background: #173c50;
    border-left: 5px solid #c74a34;
    box-shadow: 0 10px 24px rgba(16, 36, 50, .12);
    font-size: 14px;
    font-weight: 900;
}

.shipment-back-link:hover,
.shipment-back-link:focus-visible {
    background: #c74a34;
    outline: none;
}

.shipment-detail-hero .eyebrow {
    display: block;
}

.shipment-detail-navigation {
    max-width: 1180px;
    margin: 0 auto;
    padding: 6px 20px 0;
}

.shipment-back-link::before {
    content: "‹";
    margin-right: 7px;
    font-size: 19px;
    line-height: 1;
}

.shipment-detail-section {
    padding-top: 30px;
    padding-bottom: 54px;
}

.shipment-detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 46px;
    border-top: 1px solid #c9d8e0;
    border-left: 1px solid #c9d8e0;
}

.shipment-detail-facts > div {
    padding: 18px;
    background: #fff;
    border-right: 1px solid #c9d8e0;
    border-bottom: 1px solid #c9d8e0;
}

.shipment-detail-facts dt {
    color: #718592;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.shipment-detail-facts dd {
    margin: 7px 0 0;
    color: #173c50;
    font-weight: 800;
}

.shipment-photo-heading {
    margin-bottom: 22px;
}

.shipment-detail-photos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.shipment-detail-photo {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #c9d8e0;
    border-top: 4px solid #c74a34;
}

.shipment-detail-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.shipment-detail-photo figcaption {
    padding: 13px 16px;
    color: #526b79;
    font-size: 13px;
}

@media (max-width: 1000px) {
    .shipment-archive-section .shipment-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shipment-detail-photos,
    .shipment-detail-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .shipment-section-heading {
        align-items: start;
        flex-direction: column;
    }

    .shipment-archive-section .shipment-card-grid,
    .shipment-card-grid {
        grid-template-columns: 1fr;
    }

    .shipment-page-hero {
        margin-top: -82px;
        padding: 0 16px 18px;
    }

    .shipment-page-hero > div {
        min-height: 0;
        padding: 24px 20px;
    }

    .shipment-page-hero h1 {
        font-size: 32px;
    }

    .shipment-detail-photos,
    .shipment-detail-facts {
        grid-template-columns: 1fr;
    }
}
/* Context-preserving RFQ drawer */
body.rfq-drawer-open {
    overflow: hidden;
}

.rfq-drawer {
    position: fixed;
    z-index: 12000;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.rfq-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.rfq-drawer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(7, 34, 50, .58);
    opacity: 0;
    transition: opacity .22s ease;
}

.rfq-drawer.is-open .rfq-drawer__backdrop {
    opacity: 1;
}

.rfq-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(620px, 100%);
    height: 100%;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 48px rgba(8, 38, 55, .24);
    transform: translateX(102%);
    transition: transform .26s ease;
}

.rfq-drawer.is-open .rfq-drawer__panel {
    transform: translateX(0);
}

.rfq-drawer__header {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px 20px;
    border-top: 4px solid #c94a31;
    border-bottom: 1px solid #d9e4ea;
    background: #fff;
}

.rfq-drawer__header h2 {
    margin: 3px 0 5px;
    color: #0d3b52;
    font-size: 27px;
    line-height: 1.18;
    letter-spacing: 0;
}

.rfq-drawer__header p {
    margin: 0;
    color: #5a7180;
    font-size: 14px;
}

.rfq-drawer__eyebrow {
    color: #c9432a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.rfq-drawer__close {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #c8d7df;
    background: #fff;
    color: #173f54;
    font: 30px/36px Arial, sans-serif;
    cursor: pointer;
}

.rfq-drawer__form {
    padding: 24px 28px 32px;
}

.rfq-drawer__hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.rfq-drawer__context {
    display: grid;
    gap: 3px;
    margin-bottom: 20px;
    padding: 13px 15px;
    border-left: 3px solid #c94a31;
    background: #eef4f7;
}

.rfq-drawer__context span {
    color: #6a7e89;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.rfq-drawer__context strong {
    color: #123d53;
    font-size: 15px;
}

.rfq-drawer__context small {
    overflow-wrap: anywhere;
    color: #728590;
}

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

.rfq-drawer__grid label {
    display: grid;
    gap: 6px;
    min-width: 0;
    color: #294b5d;
    font-size: 12px;
    font-weight: 800;
}

.rfq-drawer__grid label > span {
    display: block;
}

.rfq-drawer__grid em {
    color: #c9432a;
    font-style: normal;
}

.rfq-drawer__grid input,
.rfq-drawer__grid textarea {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 10px 11px;
    border: 1px solid #bdcfd8;
    border-radius: 2px;
    background: #fff;
    color: #17384a;
    font: 14px/1.4 Arial, sans-serif;
}

.rfq-drawer__grid input:focus,
.rfq-drawer__grid textarea:focus {
    border-color: #087198;
    outline: 2px solid rgba(8, 113, 152, .13);
}

.rfq-drawer__wide {
    grid-column: 1 / -1;
}

.rfq-drawer__actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.rfq-drawer__submit {
    min-height: 44px;
    padding: 11px 22px;
    border: 0;
    background: #c94a31;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.rfq-drawer__submit:disabled {
    cursor: wait;
    opacity: .7;
}

.rfq-drawer__actions a {
    color: #075f84;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
}

.rfq-drawer__privacy {
    margin: 16px 0 0;
    color: #71838d;
    font-size: 12px;
}

@media (max-width: 640px) {
    .rfq-drawer__header {
        padding: 18px 18px 15px;
    }

    .rfq-drawer__header h2 {
        font-size: 22px;
    }

    .rfq-drawer__form {
        padding: 18px;
    }

    .rfq-drawer__grid {
        grid-template-columns: 1fr;
    }

    .rfq-drawer__wide {
        grid-column: auto;
    }

    .rfq-drawer__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .rfq-drawer__actions a {
        padding: 5px 0;
        text-align: center;
    }
}
