/* ============================================
   KAMAL TRADING — CLEAN DESIGN SYSTEM
   Blue + Royal Blue + Gold + White
   ============================================ */

:root {
    --navy-900: #0B2D5C;
    --navy-800: #123F78;
    --navy-700: #1261B0;
    --blue: #1261B0;
    --gold-600: #D99A00;
    --gold-500: #F5B400;
    --gold-400: #FFD35A;
    --steel-600: #52657A;
    --steel-400: #8293A6;
    --steel-200: #D9E3EF;
    --paper: #F7F9FC;
    --paper-dim: #EAF2FA;
    --white: #FFFFFF;
    --ink: #172B4D;
    --line: #D9E3EF;
    --line-dark: rgba(255,255,255,0.16);
    --f-display: 'Big Shoulders', sans-serif;
    --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --f-mono: 'IBM Plex Mono', monospace;
    --container: 1240px;
    --gutter: 32px;
    --radius-s: 2px;
    --radius-m: 4px;
    --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================
   RESET / GLOBAL
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--f-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 700;
    letter-spacing: 0.005em;
    line-height: 1.02;
}

p {
    margin: 0;
}

:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 3px;
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

@media (max-width: 640px) {
    .wrap {
        padding: 0 20px;
    }
}

/* ============================================
   SECTIONS / TYPOGRAPHY
   ============================================ */

.section {
    padding: 104px 0;
}

.section--dark {
    background: var(--navy-900);
    color: var(--paper);
}

.section--panel {
    background: var(--paper-dim);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--blue);
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--gold-500);
        display: inline-block;
    }

.section--dark .eyebrow {
    color: var(--gold-400);
}

.head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 52px;
}

    .head-row h2 {
        max-width: 640px;
    }

    .head-row .head-copy {
        max-width: 340px;
        padding-bottom: 6px;
        color: var(--steel-600);
        font-size: 15.5px;
    }

.section--dark .head-row .head-copy {
    color: var(--steel-400);
}

h2.h-lg {
    font-size: clamp(30px, 3.6vw, 46px);
    text-transform: uppercase;
    color: var(--navy-900);
}

.body-lg {
    max-width: 56ch;
    font-size: 18px;
    color: var(--steel-600);
}

.section--dark .body-lg {
    color: var(--steel-400);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    font-family: var(--f-body);
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn--primary {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}

    .btn--primary:hover {
        background: var(--gold-600);
        color: var(--white);
        border-color: var(--gold-600);
    }

.btn--outline-dark {
    border-color: var(--navy-900);
    color: var(--navy-900);
    background: transparent;
}

    .btn--outline-dark:hover {
        background: var(--navy-900);
        color: var(--white);
    }

.btn--outline-light {
    border-color: rgba(255,255,255,0.35);
    color: var(--white);
}

    .btn--outline-light:hover {
        border-color: var(--gold-500);
        background: var(--gold-500);
        color: var(--navy-900);
    }

.btn--ghost {
    color: var(--navy-900);
    padding: 15px 4px;
    border-bottom: 1px solid var(--navy-900);
    border-radius: 0;
}

/* ============================================
   TECHNICAL BRACKET
   ============================================ */

.bracket {
    position: relative;
}

    .bracket::before,
    .bracket::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .bracket::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .bracket::after {
        bottom: -1px;
        right: -1px;
        border-left: none;
        border-top: none;
    }

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(11,45,92,0.08);
}

    .site-header.floating-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    width: 175px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-desktop a {
        position: relative;
        padding: 6px 0;
        color: var(--ink);
        font-size: 14px;
        font-weight: 500;
        transition: color .2s var(--ease);
    }

        .nav-desktop a:hover {
            color: var(--blue);
        }

        .nav-desktop a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--gold-500);
            transition: width .25s var(--ease);
        }

        .nav-desktop a:hover::after {
            width: 100%;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .header-actions .btn {
        padding: 12px 22px;
        font-size: 13.5px;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--navy-900);
        display: block;
        transition: transform .25s var(--ease), opacity .25s var(--ease);
    }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--navy-900);
    z-index: 999;
    padding: 32px var(--gutter);
    overflow-y: auto;
}

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

    .mobile-nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--line-dark);
        color: var(--white);
        font-family: var(--f-display);
        font-size: 26px;
        font-weight: 600;
        text-transform: uppercase;
    }

        .mobile-nav a:hover {
            color: var(--gold-400);
        }

    .mobile-nav .btn {
        margin-top: 28px;
        width: 100%;
        justify-content: center;
    }

.site-header.scrolled {
    position: fixed;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 5px 25px rgba(11,45,92,0.10);
}

body.nav-open {
    overflow: hidden;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    background: #F4F7FB !important;
    color: var(--ink);
    overflow: hidden;
    padding: 96px 0 0;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11,45,92,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11,45,92,0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 90%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 90%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1261B0 !important
}

    .hero-eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #F5B400 !important;
        box-shadow: 0 0 0 5px rgba(245,180,0,0.14);
        border-radius: 50%;
    }

.hero h1 {
    max-width: 14ch;
    color: var(--navy-900);
    font-size: clamp(40px, 6vw, 74px);
    text-transform: uppercase;
}

    .hero h1 em {
        font-style: normal;
        color: var(--blue);
    }

.hero-sub {
    max-width: 52ch;
    margin-top: 26px;
    color: var(--steel-600);
    font-size: 18px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}



    .hero-meta div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

.hero-meta {
    display: flex;
    gap: 42px;
    margin-top: 58px;
    padding-top: 28px;
    border-top: 1px solid #D9E3EF;
    flex-wrap: wrap;
}

    .hero-meta .num {
        font-family: var(--f-mono);
        font-size: 24px;
        font-weight: 600;
        color: #0B2D5C;
    }

    .hero-meta .lbl {
        font-size: 12.5px;
        color: #52657A;
    }


/* ============================================
   HERO VISUAL / IMAGE
   ============================================ */

.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    background: #EAF2FA;
    border: 1px solid var(--line);
    overflow: hidden;
}

/* Make image wrapper fill the complete frame */
.hero-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    /* Make actual image fill the frame */
    .hero-visual-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* Inner technical border */
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(11,45,92,0.15);
    pointer-events: none;
    z-index: 3;
}

/* Gold bottom line */
.hero-visual::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 5px;
    background: #F5B400;
    z-index: 4;
}

/* Technical labels stay above image */
.hero-visual .spec-line {
    position: absolute;
    z-index: 5;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.02em;
}

    .hero-visual .spec-line.tl {
        top: 22px;
        left: 22px;
        color: #52657A;
    }

    .hero-visual .spec-line.br {
        bottom: 22px;
        right: 22px;
        color: #52657A;
    }
@media (max-width: 960px) {
    .hero-visual {
        height: 430px;
    }

    .hero-visual-img {
        height: 100%;
    }
}

.hero-visual .spec-line {
    position: absolute;
    z-index: 2;
    font-family: var(--f-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}

    .hero-visual .spec-line.tl {
        top: 22px;
        left: 22px;
        color: #52657A;
        z-index: 5;
    }

    .hero-visual .spec-line.br {
        bottom: 22px;
        right: 22px;
        color: #52657A;
        z-index: 5;
    }

.hero-visual-placeholder {
    text-align: center;
    padding: 0 30px;
    color: var(--steel-400);
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
}

    .hero-visual-placeholder .ph-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 18px;
        border: 1px solid var(--gold-500);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hero-visual-placeholder .ph-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--gold-500);
        }

/* ============================================
   HERO STRIP
   ============================================ */

.hero-strip {
    border-top: 1px solid rgba(255,255,255,0.12);
    background: var(--navy-900);
}

    .hero-strip .wrap {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

.hero-strip-item {
    padding: 28px 32px;
    border-right: none;
    position: relative;
    box-sizing: border-box;
}

    .hero-strip-item:not(:last-child) {
        border-right: 1px solid rgba(255,255,255,0.14);
    }

    .hero-strip-item:last-child {
        border-right: none;
    }

    .hero-strip-item .n {
        color: var(--gold-400);
        font-family: var(--f-mono);
        font-size: 26px;
        font-weight: 600;
    }

    .hero-strip-item .l {
        margin-top: 6px;
        color: var(--steel-200);
        font-size: 13px;
    }

/* ============================================
   ABOUT
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-frame {
    position: relative;
    aspect-ratio: 1 / 1.05;
    background: var(--navy-900);
    border: 1px solid var(--line);
    overflow: hidden;
}

    .about-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-frame-inner {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

    .about-frame-inner span {
        color: var(--steel-400);
        font-family: var(--f-mono);
        font-size: 12px;
        letter-spacing: 0.05em;
    }

.about-copy p {
    margin-bottom: 20px;
    color: var(--steel-600);
    font-size: 16.5px;
}

    .about-copy p:last-of-type {
        margin-bottom: 32px;
    }

/* ============================================
   INDUSTRIES
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.ind-card {
    background: var(--white);
    padding: 38px 30px;
    transition: background .25s var(--ease), transform .25s var(--ease);
}

    .ind-card:hover {
        background: var(--paper-dim);
    }

    .ind-card .ic {
        width: 42px;
        height: 42px;
        margin-bottom: 26px;
        color: var(--blue);
    }

        .ind-card .ic svg {
            width: 100%;
            height: 100%;
        }

    .ind-card h3 {
        margin-bottom: 10px;
        color: var(--navy-900);
        font-size: 19px;
        text-transform: uppercase;
    }

    .ind-card p {
        color: var(--steel-600);
        font-size: 14.5px;
        line-height: 1.6;
    }

/* ============================================
   PRODUCTS
   ============================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    padding: 2px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

    .product-card:hover {
        border-color: var(--blue);
        box-shadow: 0 12px 30px rgba(11,45,92,0.10);
        transform: translateY(-2px);
    }

.product-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(160deg, #F2F7FC, #E3EDF7);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-thumb .code {
        position: absolute;
        top: 14px;
        left: 16px;
        color: var(--steel-600);
        font-family: var(--f-mono);
        font-size: 10.5px;
        letter-spacing: 0.04em;
    }

    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 18px;
    }

    .product-thumb svg {
        width: 44px;
        height: 44px;
        stroke: var(--steel-600);
        opacity: 0.55;
    }

.product-body {
    padding: 22px 20px 26px;
}

    .product-body h3 {
        margin-bottom: 6px;
        color: var(--navy-900);
        font-family: var(--f-body);
        font-size: 17px;
        font-weight: 600;
    }

    .product-body p {
        color: var(--steel-600);
        font-size: 13.5px;
    }

/* ============================================
   MANUFACTURING
   ============================================ */

.mfg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.mfg-visual {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
}

    .mfg-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mfg-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

.cap-list {
    display: flex;
    flex-direction: column;
}

.cap-item {
    display: flex;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

    .cap-item:first-child {
        padding-top: 0;
    }

    .cap-item .idx {
        flex-shrink: 0;
        width: 26px;
        padding-top: 3px;
        color: var(--gold-600);
        font-family: var(--f-mono);
        font-size: 13px;
    }

    .cap-item h3 {
        margin-bottom: 6px;
        color: var(--navy-900);
        font-family: var(--f-body);
        font-size: 18px;
        font-weight: 600;
    }

    .cap-item p {
        color: var(--steel-600);
        font-size: 14.5px;
    }

/* ============================================
   QUALITY
   ============================================ */

.quality-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.cert-list {
    display: flex;
    flex-direction: column;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-dark);
}

    .cert-item:first-child {
        padding-top: 0;
    }

    .cert-item .dot {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
        background: var(--gold-500);
    }

    .cert-item h4 {
        color: var(--white);
        font-family: var(--f-body);
        font-size: 16.5px;
        font-weight: 600;
    }

    .cert-item span {
        display: block;
        margin-top: 3px;
        color: var(--steel-400);
        font-size: 13.5px;
    }

.quality-panel {
    padding: 38px;
    background: var(--navy-800);
    border: 1px solid rgba(255,255,255,0.14);
}

    .quality-panel .big-num {
        color: var(--gold-400);
        font-family: var(--f-mono);
        font-size: 56px;
        font-weight: 600;
        line-height: 1;
    }

    .quality-panel .big-lbl {
        margin-top: 10px;
        color: var(--steel-400);
        font-size: 14px;
    }

    .quality-panel hr {
        border: none;
        border-top: 1px solid rgba(255,255,255,0.14);
        margin: 30px 0;
    }

/* ============================================
   MATERIALS
   ============================================ */

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 13px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--navy-900);
    font-family: var(--f-mono);
    font-size: 13.5px;
    transition: border-color .2s var(--ease), color .2s var(--ease);
}

    .tag:hover {
        border-color: var(--gold-500);
        color: var(--gold-600);
    }

/* ============================================
   OEM CTA
   ============================================ */

.oem-cta {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    background: var(--navy-900);
    color: var(--white);
}

    .oem-cta::before {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 340px;
        height: 340px;
        border: 1px solid rgba(245,180,0,0.25);
        border-radius: 50%;
    }

.oem-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

    .oem-inner h2 {
        max-width: 14ch;
        color: var(--white);
        font-size: clamp(28px, 4vw, 42px);
        text-transform: uppercase;
    }

    .oem-inner p {
        max-width: 44ch;
        margin-top: 16px;
        color: rgba(255,255,255,0.78);
        font-size: 16px;
    }

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, #F2F7FC, #E3EDF7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-item span {
        color: var(--steel-600);
        font-family: var(--f-mono);
        font-size: 11.5px;
        letter-spacing: 0.03em;
    }

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 8px;
    color: var(--navy-900);
    font-family: var(--f-body);
    font-size: 22px;
    font-weight: 700;
}

.contact-addr {
    max-width: 36ch;
    margin-bottom: 32px;
    color: var(--steel-600);
    font-size: 15.5px;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

    .contact-row .k {
        flex-shrink: 0;
        width: 90px;
        color: var(--steel-600);
        font-family: var(--f-mono);
        font-size: 12px;
    }

    .contact-row .v {
        color: var(--navy-900);
        font-size: 15px;
        font-weight: 500;
    }

.contact-map {
    min-height: 320px;
    background: var(--paper-dim);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-map span {
        padding: 0 30px;
        color: var(--steel-600);
        font-family: var(--f-mono);
        font-size: 12px;
        text-align: center;
    }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    padding: 80px 0 0;
    background: #071F3F;
    color: var(--steel-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand .mark {
    color: var(--white);
    font-family: var(--f-display);
    font-size: 24px;
    text-transform: uppercase;
}

    .footer-brand .mark span {
        color: var(--gold-500);
    }

.footer-brand p {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 14.5px;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--steel-200);
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-col a {
    font-size: 14.5px;
    transition: color .2s var(--ease);
}

    .footer-col a:hover {
        color: var(--gold-400);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   ANIMATION
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp .7s var(--ease) forwards;
}

    .fade-up.d1 {
        animation-delay: .08s;
    }

    .fade-up.d2 {
        animation-delay: .18s;
    }

    .fade-up.d3 {
        animation-delay: .28s;
    }

    .fade-up.d4 {
        animation-delay: .38s;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 960px) {

    .nav-desktop,
    .header-actions .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 56px;
    }

    .hero-visual {
        aspect-ratio: 16 / 9;
    }

    .about-grid,
    .mfg-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 76px 0;
    }

    .head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 800px) {

    .hero-strip .wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-strip-item {
        padding: 22px 16px 22px 0;
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {

    .section {
        padding: 64px 0;
    }

    .header-inner {
        height: 70px;
    }

    .header-logo {
        width: 145px;
        max-height: 52px;
    }

    .mobile-nav {
        inset: 70px 0 0 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding-top: 104px;
    }

        .hero h1 {
            font-size: clamp(40px, 6vw, 74px);
            text-transform: uppercase;
            color: #0B2D5C !important;
            max-width: 14ch;
            letter-spacing: -0.015em;
        }
            .hero h1 em {
                font-style: normal;
                color: #1261B0 !important;
            }



        .hero .btn--outline-light,
        .hero .btn--outline-dark {
            border: 1px solid #0B2D5C !important;
            color: #0B2D5C !important;
            background: transparent;
        }

            .hero .btn--outline-light:hover,
            .hero .btn--outline-dark:hover {
                background: #0B2D5C !important;
                color: #FFFFFF !important;
            }
        .hero .btn--primary {
            background: #F5B400 !important;
            color: #0B2D5C !important;
            border: 1px solid #F5B400 !important;
            box-shadow: 0 8px 20px rgba(245,180,0,0.20);
        }

            .hero .btn--primary:hover {
                background: #D99A00 !important;
                border-color: #D99A00 !important;
                color: #FFFFFF !important;
                transform: translateY(-2px);
            }
    .hero-sub {
        font-size: 16px;
    }

    .hero-meta {
        gap: 24px;
        margin-top: 44px;
    }

    .product-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .oem-cta {
        padding: 64px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        animation: none;
    }
}



.product-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .product-thumb .code {
        position: absolute;
        top: 14px;
        left: 16px;
        z-index: 2;
    }

    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 28px;
        display: block;
        transition: transform .35s var(--ease);
    }

.product-card:hover .product-thumb img {
    transform: scale(1.04);
}





























































/* ============================================
   ABOUT PAGE — add at the end of site.css
   Uses the same tokens (colours, fonts) as the home page
   ============================================ */

/* ---- Page hero ---- */
.page-hero {
    position: relative;
    padding: 150px 0 72px;
    background: #F4F7FB;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

    .page-hero .wrap {
        position: relative;
    }

    .page-hero h1 {
        max-width: 16ch;
        color: var(--navy-900);
        font-size: clamp(38px, 5.5vw, 68px);
        text-transform: uppercase;
    }

    .page-hero p {
        max-width: 60ch;
        margin-top: 24px;
        color: var(--steel-600);
        font-size: 18px;
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

    .breadcrumb a {
        color: var(--blue);
        transition: color .2s var(--ease);
    }

        .breadcrumb a:hover {
            color: var(--gold-600);
        }

    .breadcrumb span[aria-hidden] {
        color: var(--steel-400);
    }

/* ---- Mission / Vision / Values ---- */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

/* ---- What we do (left copy) ---- */
.split-copy p {
    max-width: 52ch;
    margin-bottom: 30px;
    color: var(--steel-600);
    font-size: 16.5px;
}

/* ---- Industries & materials ---- */
.tag-group + .tag-group {
    margin-top: 48px;
}

.tag-group h3 {
    margin-bottom: 20px;
    color: var(--navy-900);
    font-size: 22px;
    text-transform: uppercase;
}

/* ---- Why us ---- */
.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 64px;
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

    .why-item .dot {
        width: 8px;
        height: 8px;
        margin-top: 9px;
        flex-shrink: 0;
        background: var(--gold-500);
    }

    .why-item h3 {
        margin-bottom: 6px;
        color: var(--navy-900);
        font-family: var(--f-body);
        font-size: 18px;
        font-weight: 600;
    }

    .why-item p {
        color: var(--steel-600);
        font-size: 14.5px;
    }

/* ---- Location ---- */
.contact-row .v a {
    transition: color .2s var(--ease);
}

    .contact-row .v a:hover {
        color: var(--blue);
    }

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .why-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 118px 0 52px;
    }

        .page-hero p {
            font-size: 16px;
        }

    .tag {
        padding: 11px 16px;
        font-size: 12.5px;
    }
}
































/* ============================================
   PRODUCTS PAGE
   Every class here starts with "kp-", so nothing in
   site.css is overridden. Only the :root variables
   (colours, fonts) from site.css are reused.
   ============================================ */

.kp-page {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    line-height: 1.55;
}

.kp-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

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

.kp-page [hidden] {
    display: none !important;
}

/* ---------- Buttons ---------- */
.kp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.kp-btn--gold {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

    .kp-btn--gold:hover {
        background: var(--gold-600);
        border-color: var(--gold-600);
        color: var(--white);
    }

.kp-btn--line {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

    .kp-btn--line:hover {
        background: var(--navy-900);
        color: var(--white);
    }

.kp-btn--light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

    .kp-btn--light:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--navy-900);
    }

/* ---------- Shared headings ---------- */
.kp-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--blue);
}

    .kp-eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--gold-500);
    }

.kp-eyebrow--light {
    color: var(--gold-400);
}

.kp-h2 {
    margin: 0 0 48px;
    font-family: var(--f-display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kp-h2--light {
    margin-bottom: 20px;
    color: var(--white);
}

/* ---------- Hero ---------- */
.kp-hero {
    position: relative;
    padding: 150px 0 64px;
    background: #F4F7FB;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.kp-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 45, 92, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 45, 92, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
}

.kp-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
    animation: kpRise .7s var(--ease) both;
}

.kp-crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

    .kp-crumbs a {
        color: var(--blue);
        transition: color .2s var(--ease);
    }

        .kp-crumbs a:hover {
            color: var(--gold-600);
        }

    .kp-crumbs span[aria-hidden] {
        color: var(--steel-400);
    }

.kp-hero__title {
    max-width: 14ch;
    margin: 0;
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kp-hero__lead {
    max-width: 58ch;
    margin: 24px 0 0;
    font-size: 18px;
    color: var(--steel-600);
}

.kp-facts {
    position: relative;
    flex-shrink: 0;
    min-width: 260px;
    margin: 0;
    padding: 26px 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

    .kp-facts::before,
    .kp-facts::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kp-facts::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kp-facts::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.kp-facts__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

    .kp-facts__item:first-child {
        padding-top: 0;
    }

    .kp-facts__item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .kp-facts__item dt {
        font-size: 13.5px;
        color: var(--steel-600);
    }

    .kp-facts__item dd {
        margin: 0;
        font-family: var(--f-mono);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy-900);
    }

/* ---------- Catalogue layout ---------- */
.kp-catalog {
    padding: 72px 0 96px;
}

.kp-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 44px;
    align-items: start;
}

/* ---------- Sidebar ---------- */
.kp-side {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kp-search {
    position: relative;
}

    .kp-search svg {
        position: absolute;
        top: 50%;
        left: 14px;
        width: 18px;
        height: 18px;
        transform: translateY(-50%);
        color: var(--steel-400);
        pointer-events: none;
    }

    .kp-search input {
        width: 100%;
        padding: 13px 14px 13px 42px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-s);
        font-family: var(--f-body);
        font-size: 14.5px;
        color: var(--ink);
    }

        .kp-search input::placeholder {
            color: var(--steel-400);
        }

        .kp-search input:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(18, 97, 176, 0.12);
        }

.kp-cats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kp-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 13px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid transparent;
    font-family: var(--f-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

    .kp-cat:hover {
        border-color: var(--blue);
        border-left-color: var(--blue);
    }

    .kp-cat.is-active {
        background: var(--navy-900);
        border-color: var(--navy-900);
        border-left-color: var(--gold-500);
        color: var(--white);
    }

.kp-cat__n {
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

.kp-cat.is-active .kp-cat__n {
    color: var(--gold-400);
}

.kp-help {
    padding: 26px 24px;
    background: var(--navy-900);
    color: var(--steel-200);
}

.kp-help__title {
    margin: 0 0 10px;
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.kp-help p {
    margin: 0 0 20px;
    font-size: 14.5px;
}

.kp-help .kp-btn {
    width: 100%;
}

/* ---------- Results ---------- */
.kp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.kp-count {
    margin: 0;
    font-size: 14.5px;
    color: var(--steel-600);
}

    .kp-count strong {
        color: var(--navy-900);
        font-weight: 600;
    }

.kp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ---------- Product card ---------- */
.kp-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

    .kp-card:hover {
        border-color: var(--blue);
        box-shadow: 0 12px 30px rgba(11, 45, 92, 0.08);
    }

.kp-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

    .kp-card__media::before,
    .kp-card__media::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        border: 1px solid var(--gold-500);
    }

    .kp-card__media::before {
        top: 10px;
        right: 10px;
        border-left: none;
        border-bottom: none;
    }

    .kp-card__media::after {
        bottom: 10px;
        left: 10px;
        border-right: none;
        border-top: none;
    }

    .kp-card__media img {
        display: block;
        width: 100%;
        height: 100%;
        padding: 28px;
        object-fit: contain;
    }

.kp-card__code {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 2;
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.04em;
    color: var(--steel-600);
}

.kp-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 22px 8px;
}

.kp-card__cat {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 4px 10px;
    background: var(--paper-dim);
    font-family: var(--f-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--blue);
}

.kp-card__name {
    margin: 0 0 8px;
    font-family: var(--f-body);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy-900);
}

.kp-card__desc {
    margin: 0;
    font-size: 14.5px;
    color: var(--steel-600);
}

.kp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

    .kp-chips li {
        padding: 5px 10px;
        border: 1px solid var(--line);
        font-size: 12.5px;
        color: var(--steel-600);
    }

.kp-card__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 20px 22px 22px;
}

/* ---------- Empty state ---------- */
.kp-empty {
    padding: 56px 32px;
    background: var(--white);
    border: 1px dashed var(--steel-400);
    text-align: center;
}

    .kp-empty h3 {
        margin: 0 0 8px;
        font-family: var(--f-body);
        font-size: 19px;
        font-weight: 600;
        color: var(--navy-900);
    }

    .kp-empty p {
        max-width: 44ch;
        margin: 0 auto 22px;
        color: var(--steel-600);
    }

/* ---------- Custom components ---------- */
.kp-custom {
    position: relative;
    padding: 96px 0;
    background: var(--navy-900);
    color: var(--white);
    overflow: hidden;
}

    .kp-custom::before {
        content: "";
        position: absolute;
        top: -90px;
        right: -90px;
        width: 340px;
        height: 340px;
        border: 1px solid rgba(245, 180, 0, 0.25);
        border-radius: 50%;
    }

.kp-custom__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.kp-custom .kp-h2 {
    max-width: 16ch;
}

.kp-custom__lead {
    max-width: 52ch;
    margin: 0 0 32px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
}

.kp-custom__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.kp-checklist {
    position: relative;
    padding: 34px;
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

    .kp-checklist::before,
    .kp-checklist::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kp-checklist::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kp-checklist::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.kp-checklist__title {
    margin: 0 0 18px;
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.kp-checklist ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kp-checklist li {
    position: relative;
    padding: 14px 0 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 15px;
    color: var(--steel-200);
}

    .kp-checklist li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .kp-checklist li::before {
        content: "";
        position: absolute;
        top: 22px;
        left: 0;
        width: 8px;
        height: 8px;
        background: var(--gold-500);
    }

    .kp-checklist li:last-child::before {
        top: 8px;
    }

/* ---------- How to order ---------- */
.kp-process {
    padding: 96px 0 104px;
    background: var(--paper-dim);
}

.kp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--steel-400);
}

.kp-step {
    position: relative;
    padding: 34px 32px 0 0;
}

    .kp-step::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 0;
        width: 9px;
        height: 9px;
        background: var(--gold-500);
    }

.kp-step__no {
    display: block;
    margin-bottom: 12px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-600);
}

.kp-step h3 {
    margin: 0 0 8px;
    font-family: var(--f-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-900);
}

.kp-step p {
    margin: 0;
    font-size: 14.5px;
    color: var(--steel-600);
}

/* ---------- Motion ---------- */
@keyframes kpRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kp-hero__inner {
        animation: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .kp-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .kp-facts {
        width: 100%;
    }

    .kp-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kp-side {
        position: static;
    }

    .kp-cats {
        flex-direction: row;
        gap: 8px;
        padding-bottom: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .kp-cat {
        width: auto;
        flex-shrink: 0;
        gap: 10px;
        white-space: nowrap;
    }

    .kp-help {
        display: none;
    }

    .kp-custom__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .kp-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        border-top: none;
    }

    .kp-step {
        border-top: 1px solid var(--steel-400);
    }
}

@media (max-width: 640px) {
    .kp-wrap {
        padding: 0 20px;
    }

    .kp-hero {
        padding: 118px 0 48px;
    }

    .kp-hero__lead {
        font-size: 16px;
    }

    .kp-catalog {
        padding: 48px 0 64px;
    }

    .kp-grid {
        grid-template-columns: 1fr;
    }

    .kp-card__actions {
        grid-template-columns: 1fr;
    }

    .kp-custom,
    .kp-process {
        padding: 64px 0;
    }

    .kp-steps {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .kp-checklist {
        padding: 26px 22px;
    }
}
























/* ============================================
   INDUSTRIES PAGE
   Every class here starts with "ki-", so nothing in
   site.css or products.css is overridden. Only the
   :root variables (colours, fonts) are reused.
   ============================================ */

.ki-page {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    line-height: 1.55;
}

.ki-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.ki-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    font-family: var(--f-body);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.ki-btn--gold {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

    .ki-btn--gold:hover {
        background: var(--gold-600);
        border-color: var(--gold-600);
        color: var(--white);
    }

.ki-btn--line {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

    .ki-btn--line:hover {
        background: var(--navy-900);
        color: var(--white);
    }

/* ---------- Shared headings ---------- */
.ki-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--blue);
}

    .ki-eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--gold-500);
    }

.ki-eyebrow--light {
    color: var(--gold-400);
}

.ki-h2 {
    max-width: 18ch;
    margin: 0 0 52px;
    font-family: var(--f-display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--white);
}

/* ---------- Hero ---------- */
.ki-hero {
    position: relative;
    padding: 150px 0 64px;
    background: #F4F7FB;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.ki-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 45, 92, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 45, 92, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
}

.ki-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
    animation: kiRise .7s var(--ease) both;
}

.ki-crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

    .ki-crumbs a {
        color: var(--blue);
        transition: color .2s var(--ease);
    }

        .ki-crumbs a:hover {
            color: var(--gold-600);
        }

    .ki-crumbs span[aria-hidden] {
        color: var(--steel-400);
    }

.ki-hero__title {
    max-width: 12ch;
    margin: 0;
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--navy-900);
}

.ki-hero__lead {
    max-width: 58ch;
    margin: 24px 0 0;
    font-size: 18px;
    color: var(--steel-600);
}

.ki-facts {
    position: relative;
    flex-shrink: 0;
    min-width: 270px;
    margin: 0;
    padding: 26px 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

    .ki-facts::before,
    .ki-facts::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .ki-facts::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .ki-facts::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.ki-facts__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

    .ki-facts__item:first-child {
        padding-top: 0;
    }

    .ki-facts__item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .ki-facts__item dt {
        font-size: 13.5px;
        color: var(--steel-600);
    }

    .ki-facts__item dd {
        margin: 0;
        font-family: var(--f-mono);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy-900);
    }

/* ---------- Sticky sector bar ---------- */
.ki-jump {
    position: sticky;
    top: 78px;
    z-index: 900;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.ki-jump__list {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

    .ki-jump__list::-webkit-scrollbar {
        display: none;
    }

.ki-jump__link {
    display: block;
    padding: 9px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

    .ki-jump__link:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    .ki-jump__link.is-active {
        background: var(--navy-900);
        border-color: var(--navy-900);
        color: var(--white);
    }

/* ---------- Industry chapters ---------- */
.ki-chapter {
    padding: 88px 0;
    background: var(--paper);
    scroll-margin-top: 130px;
}

.ki-chapter--alt {
    background: var(--paper-dim);
}

.ki-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.ki-row--flip .ki-media {
    order: 2;
}

/* Media: product photos */
.ki-media {
    position: relative;
}

    .ki-media::before,
    .ki-media::after {
        content: "";
        position: absolute;
        z-index: 2;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
        pointer-events: none;
    }

    .ki-media::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .ki-media::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.ki-shots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ki-shot {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
}

    .ki-shot:first-child {
        grid-column: 1 / -1;
        height: 320px;
    }

    .ki-shot:nth-child(2):last-child {
        grid-column: 1 / -1;
    }

    .ki-shot img {
        display: block;
        width: 100%;
        height: 100%;
        padding: 20px;
        object-fit: contain;
    }

/* Media: icon panel (sectors without product photos) */
.ki-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 400px;
    padding: 40px;
    background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
    text-align: center;
    overflow: hidden;
}

    .ki-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

    .ki-panel svg {
        position: relative;
        width: 104px;
        height: 104px;
        color: var(--gold-500);
    }

    .ki-panel p {
        position: relative;
        max-width: 26ch;
        margin: 0;
        font-family: var(--f-mono);
        font-size: 13px;
        color: var(--steel-200);
    }

/* Copy */
.ki-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--blue);
}

    .ki-icon svg {
        width: 28px;
        height: 28px;
    }

.ki-title {
    margin: 0 0 12px;
    font-family: var(--f-display);
    font-size: clamp(32px, 3.8vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--navy-900);
}

.ki-tagline {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
}

.ki-desc {
    max-width: 54ch;
    margin: 0;
    font-size: 16.5px;
    color: var(--steel-600);
}

.ki-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 30px 0 34px;
    padding-top: 26px;
    border-top: 1px solid var(--steel-200);
}

.ki-list h3 {
    margin: 0 0 14px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--steel-600);
}

.ki-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ki-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--navy-900);
}

    .ki-list li::before {
        content: "";
        position: absolute;
        top: 8px;
        left: 0;
        width: 7px;
        height: 7px;
        background: var(--gold-500);
    }

/* ---------- Common standards ---------- */
.ki-common {
    padding: 96px 0;
    background: var(--navy-900);
    color: var(--white);
}

.ki-common__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ki-common__item {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ki-common__big {
    margin-bottom: 10px;
    font-family: var(--f-mono);
    font-size: 21px;
    font-weight: 600;
    color: var(--gold-400);
}

.ki-common__item p {
    margin: 0;
    font-size: 14.5px;
    color: var(--steel-400);
}

/* ---------- CTA ---------- */
.ki-cta {
    padding: 80px 0 96px;
    background: var(--paper);
}

.ki-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold-500);
}

.ki-cta__title {
    margin: 0 0 10px;
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy-900);
}

.ki-cta__text {
    max-width: 50ch;
    margin: 0;
    color: var(--steel-600);
}

.ki-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ---------- Motion ---------- */
@keyframes kiRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ki-hero__inner {
        animation: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .ki-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .ki-facts {
        width: 100%;
    }

    .ki-chapter {
        padding: 72px 0;
    }

    .ki-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ki-row--flip .ki-media {
        order: 0;
    }

    .ki-panel {
        min-height: 300px;
    }

    .ki-common__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

@media (max-width: 640px) {
    .ki-wrap {
        padding: 0 20px;
    }

    .ki-hero {
        padding: 118px 0 48px;
    }

    .ki-hero__lead {
        font-size: 16px;
    }

    .ki-jump {
        top: 70px;
    }

    .ki-chapter {
        padding: 56px 0;
        scroll-margin-top: 120px;
    }

    .ki-shot {
        height: 140px;
    }

        .ki-shot:first-child {
            height: 240px;
        }

    .ki-panel {
        min-height: 260px;
        padding: 28px;
    }

        .ki-panel svg {
            width: 80px;
            height: 80px;
        }

    .ki-lists {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ki-common {
        padding: 64px 0;
    }

    .ki-common__grid {
        grid-template-columns: 1fr;
    }

    .ki-cta {
        padding: 56px 0 72px;
    }

    .ki-cta__box {
        padding: 30px 24px;
    }

    .ki-cta__actions,
    .ki-cta__actions .ki-btn {
        width: 100%;
    }
}




















/* ============================================
   MANUFACTURING PAGE
   Every class here starts with "km-", so nothing in
   site.css, products.css or industries.css is overridden.
   Only the :root variables (colours, fonts) are reused.
   ============================================ */

.km-page {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    line-height: 1.55;
}

.km-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.km-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    font-family: var(--f-body);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.km-btn--gold {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

    .km-btn--gold:hover {
        background: var(--gold-600);
        border-color: var(--gold-600);
        color: var(--white);
    }

.km-btn--line {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

    .km-btn--line:hover {
        background: var(--navy-900);
        color: var(--white);
    }

.km-btn--light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

    .km-btn--light:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--navy-900);
    }

/* ---------- Shared headings ---------- */
.km-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--blue);
}

    .km-eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--gold-500);
    }

.km-eyebrow--light {
    color: var(--gold-400);
}

.km-h2 {
    max-width: 16ch;
    margin: 0 0 28px;
    font-family: var(--f-display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--navy-900);
}

.km-h2--light {
    margin-bottom: 0;
    color: var(--white);
}

/* ---------- Hero ---------- */
.km-hero {
    position: relative;
    padding: 150px 0 64px;
    background: #F4F7FB;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.km-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 45, 92, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 45, 92, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
}

.km-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
    animation: kmRise .7s var(--ease) both;
}

.km-crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

    .km-crumbs a {
        color: var(--blue);
        transition: color .2s var(--ease);
    }

        .km-crumbs a:hover {
            color: var(--gold-600);
        }

    .km-crumbs span[aria-hidden] {
        color: var(--steel-400);
    }

.km-hero__title {
    max-width: 14ch;
    margin: 0;
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--navy-900);
}

.km-hero__lead {
    max-width: 58ch;
    margin: 24px 0 0;
    font-size: 18px;
    color: var(--steel-600);
}

.km-facts {
    position: relative;
    flex-shrink: 0;
    min-width: 270px;
    margin: 0;
    padding: 26px 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

    .km-facts::before,
    .km-facts::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .km-facts::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .km-facts::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.km-facts__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

    .km-facts__item:first-child {
        padding-top: 0;
    }

    .km-facts__item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .km-facts__item dt {
        font-size: 13.5px;
        color: var(--steel-600);
    }

    .km-facts__item dd {
        margin: 0;
        font-family: var(--f-mono);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy-900);
    }

/* ---------- Capabilities ---------- */
.km-caps {
    padding: 104px 0;
    background: var(--white);
}

.km-caps__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.km-caps__intro {
    position: sticky;
    top: 110px;
}

    .km-caps__intro p {
        max-width: 42ch;
        margin: 0 0 32px;
        font-size: 16.5px;
        color: var(--steel-600);
    }

.km-cap {
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

    .km-cap:first-child {
        padding-top: 0;
        border-top: none;
    }

    .km-cap:last-child {
        padding-bottom: 0;
    }

.km-cap__title {
    margin: 0 0 10px;
    font-family: var(--f-body);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-900);
}

.km-cap__text {
    max-width: 56ch;
    margin: 0 0 18px;
    font-size: 15.5px;
    color: var(--steel-600);
}

.km-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .km-tags li {
        padding: 6px 12px;
        background: var(--paper-dim);
        font-family: var(--f-mono);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--blue);
    }

/* ---------- Process ---------- */
.km-flow {
    padding: 104px 0;
    background: var(--paper-dim);
}

.km-flow__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.km-flow__media {
    position: sticky;
    top: 110px;
    aspect-ratio: 4 / 5;
    background: var(--navy-900);
    border: 1px solid var(--line);
}

    .km-flow__media::before,
    .km-flow__media::after {
        content: "";
        position: absolute;
        z-index: 2;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .km-flow__media::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .km-flow__media::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

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

.km-steps {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .km-steps::before {
        content: "";
        position: absolute;
        top: 8px;
        bottom: 8px;
        left: 23px;
        width: 1px;
        background: var(--steel-400);
    }

.km-step {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding-bottom: 34px;
}

    .km-step:last-child {
        padding-bottom: 0;
    }

.km-step__no {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--navy-900);
    font-family: var(--f-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-400);
}

.km-step h3 {
    margin: 4px 0 6px;
    font-family: var(--f-body);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-900);
}

.km-step p {
    max-width: 50ch;
    margin: 0;
    font-size: 15px;
    color: var(--steel-600);
}

/* ---------- Materials ---------- */
.km-materials {
    padding: 104px 0;
    background: var(--paper);
}

    .km-materials .km-h2 {
        max-width: 18ch;
        margin-bottom: 48px;
    }

.km-mat {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding: 34px 0;
    border-top: 1px solid var(--steel-200);
}

    .km-mat:last-child {
        border-bottom: 1px solid var(--steel-200);
    }

.km-mat__name {
    margin: 0 0 6px;
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy-900);
}

.km-mat__note {
    margin: 0;
    font-size: 14px;
    color: var(--steel-600);
}

.km-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.km-tile {
    position: relative;
    padding: 16px 16px 16px 36px;
    background: var(--white);
    border: 1px solid var(--line);
    font-family: var(--f-mono);
    font-size: 13.5px;
    color: var(--navy-900);
}

    .km-tile::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 16px;
        width: 7px;
        height: 7px;
        margin-top: -3.5px;
        background: var(--gold-500);
    }

/* ---------- Quality ---------- */
.km-quality {
    padding: 96px 0;
    background: var(--navy-900);
    color: var(--white);
}

.km-quality__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 56px;
}

.km-quality__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.km-quality__item {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.km-quality__big {
    margin-bottom: 10px;
    font-family: var(--f-mono);
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-400);
}

.km-quality__item p {
    margin: 0;
    font-size: 14.5px;
    color: var(--steel-400);
}

/* ---------- CTA ---------- */
.km-cta {
    padding: 88px 0 104px;
    background: var(--paper-dim);
    scroll-margin-top: 90px;
}

.km-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
    padding: 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold-500);
}

.km-cta__title {
    margin: 0 0 12px;
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy-900);
}

.km-cta__text {
    max-width: 48ch;
    margin: 0 0 14px;
    color: var(--steel-600);
}

.km-cta__addr {
    max-width: 44ch;
    margin: 0;
    font-family: var(--f-mono);
    font-size: 12.5px;
    color: var(--steel-600);
}

.km-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
}

/* ---------- Motion ---------- */
@keyframes kmRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .km-hero__inner {
        animation: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .km-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .km-facts {
        width: 100%;
    }

    .km-caps,
    .km-flow,
    .km-materials {
        padding: 76px 0;
    }

    .km-caps__grid,
    .km-flow__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .km-caps__intro,
    .km-flow__media {
        position: static;
    }

    .km-flow__media {
        aspect-ratio: 16 / 9;
    }

    .km-mat {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .km-quality__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

@media (max-width: 640px) {
    .km-wrap {
        padding: 0 20px;
    }

    .km-hero {
        padding: 118px 0 48px;
    }

    .km-hero__lead {
        font-size: 16px;
    }

    .km-caps,
    .km-flow,
    .km-materials,
    .km-quality {
        padding: 56px 0;
    }

    .km-cap {
        padding: 26px 0;
    }

    .km-step {
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }

    .km-step__no {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .km-steps::before {
        left: 19px;
    }

    .km-tiles {
        grid-template-columns: 1fr 1fr;
    }

    .km-tile {
        padding: 14px 12px 14px 30px;
        font-size: 12.5px;
    }

        .km-tile::before {
            left: 12px;
        }

    .km-quality__grid {
        grid-template-columns: 1fr;
    }

    .km-cta {
        padding: 56px 0 72px;
    }

    .km-cta__box {
        padding: 30px 24px;
    }

    .km-cta__actions {
        width: 100%;
        min-width: 0;
    }
}



















/* ============================================
   CERTIFICATIONS PAGE
   Every class here starts with "kc-", so nothing in
   the other stylesheets is overridden. Only the :root
   variables (colours, fonts) from site.css are reused.
   ============================================ */

.kc-page {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    line-height: 1.55;
}

.kc-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.kc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.kc-btn--gold {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

    .kc-btn--gold:hover {
        background: var(--gold-600);
        border-color: var(--gold-600);
        color: var(--white);
    }

.kc-btn--line {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

    .kc-btn--line:hover {
        background: var(--navy-900);
        color: var(--white);
    }

/* ---------- Shared headings ---------- */
.kc-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--blue);
}

    .kc-eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--gold-500);
    }

.kc-h2 {
    max-width: 18ch;
    margin: 0 0 48px;
    font-family: var(--f-display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--navy-900);
}

/* ---------- Hero ---------- */
.kc-hero {
    position: relative;
    padding: 150px 0 64px;
    background: #F4F7FB;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.kc-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 45, 92, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 45, 92, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
}

.kc-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
    animation: kcRise .7s var(--ease) both;
}

.kc-crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

    .kc-crumbs a {
        color: var(--blue);
        transition: color .2s var(--ease);
    }

        .kc-crumbs a:hover {
            color: var(--gold-600);
        }

    .kc-crumbs span[aria-hidden] {
        color: var(--steel-400);
    }

.kc-hero__title {
    max-width: 15ch;
    margin: 0;
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kc-hero__lead {
    max-width: 58ch;
    margin: 24px 0 0;
    font-size: 18px;
    color: var(--steel-600);
}

.kc-facts {
    position: relative;
    flex-shrink: 0;
    min-width: 270px;
    margin: 0;
    padding: 26px 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

    .kc-facts::before,
    .kc-facts::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kc-facts::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kc-facts::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.kc-facts__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

    .kc-facts__item:first-child {
        padding-top: 0;
    }

    .kc-facts__item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .kc-facts__item dt {
        font-size: 13.5px;
        color: var(--steel-600);
    }

    .kc-facts__item dd {
        margin: 0;
        font-family: var(--f-mono);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy-900);
    }

/* ---------- Certificates ---------- */
.kc-certs {
    padding: 40px 0 96px;
}

.kc-cert {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
    padding: 64px 0;
    border-bottom: 1px solid var(--steel-200);
    scroll-margin-top: 110px;
}

    .kc-cert:last-child {
        border-bottom: none;
    }

/* Preview */
.kc-cert__media {
    position: sticky;
    top: 110px;
}

.kc-thumb {
    position: relative;
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(11, 45, 92, 0.10);
}

    .kc-thumb::before,
    .kc-thumb::after {
        content: "";
        position: absolute;
        z-index: 2;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kc-thumb::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kc-thumb::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

    .kc-thumb img {
        display: block;
        width: 100%;
        height: auto;
    }

.kc-thumb__hint {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 12px 16px;
    background: rgba(11, 45, 92, 0.88);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transition: opacity .25s var(--ease);
}

.kc-thumb:hover .kc-thumb__hint,
.kc-thumb:focus-visible .kc-thumb__hint {
    opacity: 1;
}

/* Badge panel (no image) */
.kc-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    aspect-ratio: 1 / 1.3;
    padding: 32px 24px;
    background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
    text-align: center;
    overflow: hidden;
}

    .kc-badge::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

.kc-badge__label,
.kc-badge__num,
.kc-badge__note {
    position: relative;
}

.kc-badge__label {
    font-family: var(--f-mono);
    font-size: 12.5px;
    color: var(--steel-400);
}

.kc-badge__num {
    font-family: var(--f-mono);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--gold-400);
    word-break: break-all;
}

.kc-badge__note {
    margin-top: 6px;
    font-size: 13px;
    color: var(--steel-200);
}

/* Details */
.kc-cert__title {
    margin: 0 0 10px;
    font-family: var(--f-display);
    font-size: clamp(32px, 3.8vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kc-cert__issuer {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
}

.kc-cert__summary {
    max-width: 58ch;
    margin: 0 0 30px;
    font-size: 16.5px;
    color: var(--steel-600);
}

.kc-details {
    margin: 0 0 30px;
    border-top: 1px solid var(--steel-200);
}

.kc-details__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--steel-200);
}

    .kc-details__row dt {
        font-family: var(--f-mono);
        font-size: 12.5px;
        color: var(--steel-600);
    }

    .kc-details__row dd {
        margin: 0;
        font-size: 15.5px;
        font-weight: 500;
        color: var(--navy-900);
    }

.kc-scope {
    margin-bottom: 32px;
}

    .kc-scope h3 {
        margin: 0 0 14px;
        font-family: var(--f-mono);
        font-size: 12.5px;
        font-weight: 600;
        letter-spacing: 0.03em;
        color: var(--steel-600);
    }

.kc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .kc-tags li {
        padding: 7px 13px;
        background: var(--paper-dim);
        font-size: 13.5px;
        font-weight: 500;
        color: var(--navy-900);
    }

.kc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Meaning ---------- */
.kc-meaning {
    padding: 96px 0;
    background: var(--navy-900);
    color: var(--white);
}

    .kc-meaning .kc-eyebrow {
        color: var(--gold-400);
    }

    .kc-meaning .kc-h2 {
        color: var(--white);
    }

.kc-meaning__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.kc-meaning__item {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

    .kc-meaning__item h3 {
        margin: 0 0 12px;
        font-family: var(--f-mono);
        font-size: 20px;
        font-weight: 600;
        color: var(--gold-400);
    }

    .kc-meaning__item p {
        max-width: 40ch;
        margin: 0;
        font-size: 15px;
        color: var(--steel-200);
    }

/* ---------- CTA ---------- */
.kc-cta {
    padding: 88px 0 104px;
    background: var(--paper-dim);
}

.kc-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold-500);
}

.kc-cta__title {
    margin: 0 0 10px;
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kc-cta__text {
    max-width: 50ch;
    margin: 0;
    color: var(--steel-600);
}

.kc-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Certificate viewer (lightbox) ---------- */
.kc-viewer {
    width: min(92vw, 860px);
    max-height: 92vh;
    padding: 0;
    background: var(--white);
    border: none;
    overflow: hidden;
}

    .kc-viewer::backdrop {
        background: rgba(7, 31, 63, 0.75);
    }

.kc-viewer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px 12px 20px;
    background: var(--navy-900);
}

.kc-viewer__cap {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--white);
}

.kc-viewer__close {
    padding: 8px 16px;
    background: var(--gold-500);
    border: none;
    font-family: var(--f-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
}

    .kc-viewer__close:hover {
        background: var(--gold-400);
    }

.kc-viewer__body {
    max-height: calc(92vh - 56px);
    overflow: auto;
    background: #F4F7FB;
}

    .kc-viewer__body img {
        display: block;
        width: 100%;
        height: auto;
    }

/* ---------- Motion ---------- */
@keyframes kcRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kc-hero__inner {
        animation: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .kc-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .kc-facts {
        width: 100%;
    }

    .kc-cert {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0;
    }

    .kc-cert__media {
        position: static;
        max-width: 340px;
    }

    .kc-meaning__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .kc-wrap {
        padding: 0 20px;
    }

    .kc-hero {
        padding: 118px 0 48px;
    }

    .kc-hero__lead {
        font-size: 16px;
    }

    .kc-certs {
        padding: 16px 0 64px;
    }

    .kc-cert__media {
        max-width: 100%;
    }

    .kc-thumb__hint {
        opacity: 1;
    }

    .kc-details__row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .kc-actions .kc-btn {
        width: 100%;
    }

    .kc-meaning {
        padding: 64px 0;
    }

    .kc-cta {
        padding: 56px 0 72px;
    }

    .kc-cta__box {
        padding: 30px 24px;
    }

    .kc-cta__actions,
    .kc-cta__actions .kc-btn {
        width: 100%;
    }
}












/* ============================================
   GALLERY PAGE
   Every class here starts with "kg-", so nothing in
   the other stylesheets is overridden. Only the :root
   variables (colours, fonts) from site.css are reused.
   ============================================ */

.kg-page {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    line-height: 1.55;
}

.kg-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.kg-page [hidden] {
    display: none !important;
}

/* ---------- Buttons ---------- */
.kg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.kg-btn--gold {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

    .kg-btn--gold:hover {
        background: var(--gold-600);
        border-color: var(--gold-600);
        color: var(--white);
    }

.kg-btn--line {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

    .kg-btn--line:hover {
        background: var(--navy-900);
        color: var(--white);
    }

/* ---------- Hero ---------- */
.kg-hero {
    position: relative;
    padding: 150px 0 64px;
    background: #F4F7FB;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.kg-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 45, 92, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 45, 92, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
}

.kg-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
    animation: kgRise .7s var(--ease) both;
}

.kg-crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

    .kg-crumbs a {
        color: var(--blue);
        transition: color .2s var(--ease);
    }

        .kg-crumbs a:hover {
            color: var(--gold-600);
        }

    .kg-crumbs span[aria-hidden] {
        color: var(--steel-400);
    }

.kg-hero__title {
    max-width: 14ch;
    margin: 0;
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kg-hero__lead {
    max-width: 58ch;
    margin: 24px 0 0;
    font-size: 18px;
    color: var(--steel-600);
}

.kg-facts {
    position: relative;
    flex-shrink: 0;
    min-width: 270px;
    margin: 0;
    padding: 26px 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

    .kg-facts::before,
    .kg-facts::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kg-facts::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kg-facts::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.kg-facts__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

    .kg-facts__item:first-child {
        padding-top: 0;
    }

    .kg-facts__item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .kg-facts__item dt {
        font-size: 13.5px;
        color: var(--steel-600);
    }

    .kg-facts__item dd {
        margin: 0;
        font-family: var(--f-mono);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy-900);
    }

/* ---------- Gallery ---------- */
.kg-gallery {
    padding: 56px 0 96px;
}

.kg-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.kg-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kg-filter {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

    .kg-filter:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

    .kg-filter.is-active {
        background: var(--navy-900);
        border-color: var(--navy-900);
        color: var(--white);
    }

.kg-count {
    margin: 0;
    font-size: 14.5px;
    color: var(--steel-600);
}

    .kg-count strong {
        color: var(--navy-900);
        font-weight: 600;
    }

.kg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 16px;
}

.kg-item {
    position: relative;
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

    .kg-item:hover {
        border-color: var(--blue);
        box-shadow: 0 12px 30px rgba(11, 45, 92, 0.10);
    }

.kg-item--wide {
    grid-column: span 2;
}

.kg-item__link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

/* Equal height for every photo, so wide and normal photos line up */
.kg-grid {
    grid-auto-rows: 340px;
}

.kg-item {
    display: flex;
}

.kg-item__link,
.kg-item--wide .kg-item__link {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

@media (max-width: 640px) {
    .kg-grid {
        grid-auto-rows: auto;
    }

    .kg-item__link,
    .kg-item--wide .kg-item__link {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

.kg-item__link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.kg-item:hover .kg-item__link img {
    transform: scale(1.04);
}

.kg-item__cap {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 40px 18px 16px;
    background: linear-gradient(180deg, rgba(11, 45, 92, 0), rgba(11, 45, 92, 0.88));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.kg-item__link:hover .kg-item__cap,
.kg-item__link:focus-visible .kg-item__cap {
    opacity: 1;
    transform: translateY(0);
}

.kg-item__tag {
    align-self: flex-start;
    padding: 3px 9px;
    background: var(--gold-500);
    font-family: var(--f-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy-900);
}

.kg-item__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* ---------- Empty state ---------- */
.kg-empty {
    padding: 56px 32px;
    background: var(--white);
    border: 1px dashed var(--steel-400);
    text-align: center;
}

    .kg-empty h3 {
        margin: 0 0 8px;
        font-family: var(--f-body);
        font-size: 19px;
        font-weight: 600;
        color: var(--navy-900);
    }

    .kg-empty p {
        max-width: 44ch;
        margin: 0 auto 22px;
        color: var(--steel-600);
    }

/* ---------- CTA ---------- */
.kg-cta {
    padding: 80px 0 104px;
    background: var(--paper-dim);
}

.kg-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold-500);
}

.kg-cta__title {
    margin: 0 0 10px;
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kg-cta__text {
    max-width: 50ch;
    margin: 0;
    color: var(--steel-600);
}

.kg-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Photo viewer (lightbox) ---------- */
.kg-viewer {
    width: min(94vw, 1100px);
    max-height: 94vh;
    padding: 0;
    background: var(--navy-900);
    border: none;
    overflow: hidden;
}

    .kg-viewer::backdrop {
        background: rgba(7, 31, 63, 0.85);
    }

.kg-viewer__bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px 12px 20px;
    background: var(--navy-900);
}

.kg-viewer__cap {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.kg-viewer__pos {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--steel-400);
}

.kg-viewer__close {
    padding: 8px 16px;
    background: var(--gold-500);
    border: none;
    font-family: var(--f-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
}

    .kg-viewer__close:hover {
        background: var(--gold-400);
    }

.kg-viewer__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071F3F;
}

    .kg-viewer__stage img {
        display: block;
        max-width: 100%;
        max-height: calc(94vh - 130px);
        width: auto;
        height: auto;
        object-fit: contain;
    }

.kg-viewer__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 56px;
    transform: translateY(-50%);
    background: rgba(11, 45, 92, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 32px;
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease);
}

    .kg-viewer__nav:hover {
        background: var(--gold-500);
        color: var(--navy-900);
    }

.kg-viewer__nav--prev {
    left: 12px;
}

.kg-viewer__nav--next {
    right: 12px;
}

.kg-viewer__text {
    min-height: 20px;
    margin: 0;
    padding: 12px 20px 16px;
    font-size: 14.5px;
    color: var(--steel-200);
}

/* ---------- Motion ---------- */
@keyframes kgRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kg-hero__inner {
        animation: none;
    }

    .kg-item__link img,
    .kg-item__cap {
        transition: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .kg-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .kg-facts {
        width: 100%;
    }

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

/* Touch screens have no hover, so always show the caption */
@media (hover: none) {
    .kg-item__cap {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 640px) {
    .kg-wrap {
        padding: 0 20px;
    }

    .kg-hero {
        padding: 118px 0 48px;
    }

    .kg-hero__lead {
        font-size: 16px;
    }

    .kg-gallery {
        padding: 40px 0 64px;
    }

    .kg-filters {
        flex-wrap: nowrap;
        width: 100%;
        padding-bottom: 6px;
        overflow-x: auto;
    }

    .kg-filter {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .kg-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kg-item--wide {
        grid-column: auto;
    }

        .kg-item--wide .kg-item__link {
            aspect-ratio: 4 / 3;
        }

    .kg-cta {
        padding: 56px 0 72px;
    }

    .kg-cta__box {
        padding: 30px 24px;
    }

    .kg-cta__actions,
    .kg-cta__actions .kg-btn {
        width: 100%;
    }

    .kg-viewer__nav {
        width: 38px;
        height: 48px;
    }
}











/* ============================================
   CONTACT PAGE
   Every class here starts with "kn-", so nothing in
   the other stylesheets is overridden. Only the :root
   variables (colours, fonts) from site.css are reused.
   ============================================ */

.kn-page {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    line-height: 1.55;
}

.kn-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.kn-page [hidden] {
    display: none !important;
}

/* ---------- Buttons ---------- */
.kn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-s);
    font-family: var(--f-body);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.kn-btn--gold {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

    .kn-btn--gold:hover {
        background: var(--gold-600);
        border-color: var(--gold-600);
        color: var(--white);
    }

.kn-btn--line {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}

    .kn-btn--line:hover {
        background: var(--navy-900);
        color: var(--white);
    }

/* ---------- Shared headings ---------- */
.kn-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--gold-400);
}

    .kn-eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--gold-500);
    }

.kn-h2 {
    max-width: 16ch;
    margin: 0 0 20px;
    font-family: var(--f-display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--white);
}

.kn-h3 {
    margin: 0 0 8px;
    font-family: var(--f-display);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy-900);
}

/* ---------- Hero ---------- */
.kn-hero {
    position: relative;
    padding: 150px 0 64px;
    background: #F4F7FB;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.kn-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 45, 92, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 45, 92, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
    pointer-events: none;
}

.kn-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
    animation: knRise .7s var(--ease) both;
}

.kn-crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

    .kn-crumbs a {
        color: var(--blue);
        transition: color .2s var(--ease);
    }

        .kn-crumbs a:hover {
            color: var(--gold-600);
        }

    .kn-crumbs span[aria-hidden] {
        color: var(--steel-400);
    }

.kn-hero__title {
    max-width: 15ch;
    margin: 0;
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--navy-900);
}

.kn-hero__lead {
    max-width: 58ch;
    margin: 24px 0 0;
    font-size: 18px;
    color: var(--steel-600);
}

.kn-facts {
    position: relative;
    flex-shrink: 0;
    min-width: 270px;
    margin: 0;
    padding: 26px 30px;
    background: var(--white);
    border: 1px solid var(--line);
}

    .kn-facts::before,
    .kn-facts::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kn-facts::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kn-facts::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.kn-facts__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

    .kn-facts__item:first-child {
        padding-top: 0;
    }

    .kn-facts__item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .kn-facts__item dt {
        font-size: 13.5px;
        color: var(--steel-600);
    }

    .kn-facts__item dd {
        margin: 0;
        font-family: var(--f-mono);
        font-size: 18px;
        font-weight: 600;
        color: var(--navy-900);
    }

/* ---------- Form + details ---------- */
.kn-main {
    padding: 72px 0 40px;
}

.kn-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 44px;
    align-items: start;
}

.kn-formcard {
    position: relative;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--line);
}

    .kn-formcard::before,
    .kn-formcard::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kn-formcard::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kn-formcard::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

.kn-formcard__note {
    margin: 0 0 28px;
    font-size: 15px;
    color: var(--steel-600);
}

.kn-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kn-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .kn-field label {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--navy-900);
    }

    .kn-field input,
    .kn-field textarea {
        width: 100%;
        padding: 13px 14px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius-s);
        font-family: var(--f-body);
        font-size: 15px;
        color: var(--ink);
        transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    }

    .kn-field textarea {
        resize: vertical;
        min-height: 140px;
    }

        .kn-field input::placeholder,
        .kn-field textarea::placeholder {
            color: var(--steel-400);
        }

        .kn-field input:focus,
        .kn-field textarea:focus {
            outline: none;
            background: var(--white);
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(18, 97, 176, 0.12);
        }

    .kn-field.is-invalid input,
    .kn-field.is-invalid textarea {
        border-color: #C0392B;
        box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
    }

.kn-status {
    margin: 0;
    padding: 12px 14px;
    background: #FDECEA;
    border-left: 3px solid #C0392B;
    font-size: 14px;
    color: #7B241C;
}

.kn-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

/* Contact cards */
.kn-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kn-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 26px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold-500);
}

.kn-card__label {
    font-family: var(--f-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--steel-600);
}

.kn-card__value {
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-900);
    word-break: break-word;
    transition: color .2s var(--ease);
}

    .kn-card__value:hover {
        color: var(--blue);
    }

.kn-card__addr {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: var(--navy-900);
}

.kn-card__link {
    align-self: flex-start;
    margin-top: 8px;
    border-bottom: 1px solid var(--blue);
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    transition: color .2s var(--ease), border-color .2s var(--ease);
}

    .kn-card__link:hover {
        color: var(--gold-600);
        border-color: var(--gold-600);
    }

/* ---------- Map ---------- */
.kn-map {
    padding: 40px 0 88px;
}

.kn-map__frame {
    position: relative;
    height: 400px;
    background: var(--paper-dim);
    border: 1px solid var(--line);
}

    .kn-map__frame::before,
    .kn-map__frame::after {
        content: "";
        position: absolute;
        z-index: 2;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
        pointer-events: none;
    }

    .kn-map__frame::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kn-map__frame::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

    .kn-map__frame iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ---------- What to send ---------- */
.kn-send {
    padding: 96px 0;
    background: var(--navy-900);
    color: var(--white);
}

.kn-send__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.kn-send__lead {
    max-width: 44ch;
    margin: 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
}

.kn-checklist {
    position: relative;
    padding: 34px;
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

    .kn-checklist::before,
    .kn-checklist::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid var(--gold-500);
    }

    .kn-checklist::before {
        top: -1px;
        left: -1px;
        border-right: none;
        border-bottom: none;
    }

    .kn-checklist::after {
        right: -1px;
        bottom: -1px;
        border-left: none;
        border-top: none;
    }

    .kn-checklist ul {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .kn-checklist li {
        position: relative;
        padding: 14px 0 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 15px;
        color: var(--steel-200);
    }

        .kn-checklist li:first-child {
            padding-top: 0;
        }

        .kn-checklist li:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }

        .kn-checklist li::before {
            content: "";
            position: absolute;
            top: 22px;
            left: 0;
            width: 8px;
            height: 8px;
            background: var(--gold-500);
        }

        .kn-checklist li:first-child::before {
            top: 8px;
        }

/* ---------- Motion ---------- */
@keyframes knRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kn-hero__inner {
        animation: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .kn-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .kn-facts {
        width: 100%;
    }

    .kn-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .kn-send__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .kn-wrap {
        padding: 0 20px;
    }

    .kn-hero {
        padding: 118px 0 48px;
    }

    .kn-hero__lead {
        font-size: 16px;
    }

    .kn-main {
        padding: 48px 0 24px;
    }

    .kn-formcard {
        padding: 28px 22px;
    }

    .kn-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kn-actions .kn-btn {
        width: 100%;
    }

    .kn-map {
        padding: 24px 0 64px;
    }

    .kn-map__frame {
        height: 320px;
    }

    .kn-send {
        padding: 64px 0;
    }

    .kn-checklist {
        padding: 26px 22px;
    }
}


/* Product photos: show the whole image, no cropping */
.kg-item[data-cat="products"] .kg-item__link {
    background: #FFFFFF;
}

    .kg-item[data-cat="products"] .kg-item__link img {
        object-fit: contain;
        padding: 20px;
    }



.mfg-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}









/* ===== Gallery: masonry, full photos, no gaps ===== */

.kg-grid {
    display: block;
    column-count: 3;
    column-gap: 16px;
}

.kg-item,
.kg-item--wide {
    display: block;
    grid-column: auto;
    width: 100%;
    margin: 0 0 16px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    background: var(--white);
}

    .kg-item__link,
    .kg-item--wide .kg-item__link {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        overflow: hidden;
    }

.kg-grid .kg-item img,
.kg-grid .kg-item--wide img {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    object-fit: initial;
}

/* Tablet */
@media (max-width: 1024px) {
    .kg-grid {
        column-count: 2;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .kg-grid {
        column-count: 1;
        column-gap: 0;
    }

    .kg-item,
    .kg-item--wide {
        margin-bottom: 12px;
    }
}