:root {
    --ink: #2f328f;
    --ink-deep: #242773;
    --red: #e31e2d;
    --paper: #f6f6f3;
    --line: #d8d9e7;
    --muted: #6e7187
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink-deep);
    background: var(--paper);
    font-family: var(--font-body),Arial,sans-serif
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.site-header {
    height: 88px;
    padding: 0 clamp(22px,5vw,80px);
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 4px solid var(--red)
}

.mark {
    display: flex;
    align-items: center;
    gap: 8px;
    font: 700 clamp(24px,2.3vw,36px)/1 var(--font-display);
    letter-spacing: .16em
}

    .mark i {
        width: 23px;
        height: 29px;
        display: block;
        background: var(--red);
        clip-path: polygon(100% 0,45% 50%,100% 100%,56% 100%,0 50%,56% 0)
    }

.mark--light {
    color: #fff
}

.nav {
    display: flex;
    gap: 42px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500
}

    .nav a {
        opacity: .75;
        transition: .2s
    }

        .nav a:hover {
            opacity: 1
        }

.menu-button {
    display: none;
    background: transparent;
    border: 1px solid #ffffff55;
    color: #fff;
    padding: 8px
}

.hero {
    min-height: calc(100vh - 88px);
    background: var(--ink);
    color: #fff;
    padding: clamp(70px,12vh,150px) clamp(22px,8vw,130px) 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(#fff 1px,transparent 1px),linear-gradient(90deg,#fff 1px,transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg,transparent,black)
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 890px
}

.eyebrow {
    font: 600 13px/1 var(--font-body);
    letter-spacing: .22em;
    margin: 0 0 24px;
    color: #c8c9e2
}

h1, h2, h3, p {
    margin-top: 0
}

h1, h2, h3 {
    font-family: var(--font-display)
}

h1 {
    font-size: clamp(58px,8.2vw,132px);
    line-height: .79;
    letter-spacing: -.045em;
    margin-bottom: 36px;
    text-transform: uppercase
}

    h1 span, .about h2 span {
        color: #fff
    }

.hero-lead {
    max-width: 610px;
    color: #d5d6e7;
    font-size: clamp(16px,1.4vw,21px);
    line-height: 1.65
}

.cta {
    margin-top: 22px;
    display: inline-flex;
    gap: 24px;
    align-items: center;
    border-bottom: 2px solid var(--red);
    padding: 14px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero-emblem {
    position: absolute;
    right: -3vw;
    top: 14%;
    font: 700 min(48vw,740px)/1 var(--font-display);
    color: #ffffff09;
    transform: rotate(-8deg)
}

.hero-meta {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 60px;
    display: flex;
    gap: 50px;
    color: #afb1d5;
    font: 600 12px/1 var(--font-body);
    letter-spacing: .15em
}

.section {
    padding: clamp(80px,10vw,150px) clamp(22px,5vw,80px)
}

.section-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 70px
}

.eyebrow--dark {
    color: var(--red)
}

.section-heading h2, .about h2, .contact h2 {
    font-size: clamp(50px,6vw,92px);
    line-height: .88;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 0
}

.section-heading > p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 510px
}

.product-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 50px
}

.filters {
    border-top: 1px solid var(--ink)
}

.filter-title {
    background: var(--ink);
    color: #fff;
    padding: 14px;
    display: flex;
    gap: 10px;
    font: 600 16px var(--font-display);
    letter-spacing: .08em
}

.filters button {
    width: 100%;
    display: flex;
    gap: 15px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    padding: 17px 10px;
    text-align: left;
    font-weight: 600;
    cursor: pointer
}

    .filters button span {
        color: #a0a2b5;
        font-size: 11px
    }

    .filters button.active {
        background: #e7e7e5;
        border-left: 4px solid var(--red);
        padding-left: 6px
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.product-card {
    background: var(--paper);
    padding: 18px;
    min-width: 0
}

.product-visual {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: #ececea;
    margin-bottom: 22px
}

    .product-visual i {
        position: absolute;
        width: 180px;
        height: 180px;
        right: -28px;
        bottom: -35px;
        transform: rotate(35deg);
        border: 34px solid var(--ink);
        opacity: .9
    }

    .product-visual span {
        position: absolute;
        left: 18px;
        top: 18px;
        font: 700 11px var(--font-body);
        letter-spacing: .15em;
        color: #fff;
        z-index: 2
    }

.product-visual--red {
    background: #df2835
}

    .product-visual--red i, .product-visual--blue i {
        border-color: #fff
    }

.product-visual--blue {
    background: var(--ink)
}

.product-visual--silver {
    background: linear-gradient(135deg,#d7d8dc,#f3f3f2)
}

.product-card > p {
    font-size: 11px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.product-card h3 {
    font-size: 25px;
    line-height: 1.05;
    margin-bottom: 22px
}

.product-card > a {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em
}

.about {
    background: var(--ink);
    color: #fff;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 10vw
}

.about-title {
    position: sticky;
    top: 140px;
    align-self: start
}

.about-copy {
    font-size: clamp(17px,1.45vw,22px);
    line-height: 1.7;
    color: #d8d9e8
}

    .about-copy p {
        margin-bottom: 30px
    }

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid #ffffff44;
    margin-top: 65px;
    padding-top: 35px;
    gap: 20px
}

    .stats div {
        display: flex;
        flex-direction: column
    }

    .stats strong {
        font: 600 clamp(45px,5vw,76px)/1 var(--font-display);
        color: #fff
    }

    .stats span {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: #aeb0d0
    }

.contact {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 60px
}

.contact-intro {
    max-width: 480px;
    color: var(--muted);
    line-height: 1.6
}

.contact-list {
    margin-top: 10px;
    border-top: 1px solid var(--line)
}

    .contact-list a {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 20px 0;
        border-bottom: 1px solid var(--line);
        line-height: 1.55
    }

    .contact-list svg {
        color: var(--red);
        flex: none
    }

.map-wrap {
    min-height: 590px;
    background: #e3e3e0;
    position: relative
}

    .map-wrap:after {
        content: 'K';
        position: absolute;
        right: 20px;
        bottom: -70px;
        font: 700 230px var(--font-display);
        color: #ffffffbb;
        pointer-events: none
    }

    .map-wrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(1) contrast(.9)
    }

footer {
    background: var(--ink-deep);
    color: #fff;
    padding: 45px clamp(22px,5vw,80px);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
    gap: 30px
}

    footer p, footer span {
        margin: 0;
        color: #fff;
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase
    }

@media(max-width:1000px) {
    .product-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .product-layout {
        grid-template-columns: 190px 1fr
    }

    .about {
        grid-template-columns: 1fr
    }

    .about-title {
        position: static
    }

    .contact {
        grid-template-columns: 1fr
    }

    .map-wrap {
        min-height: 430px
    }
}

@media(max-width:700px) {
    .site-header {
        height: 72px
    }

    .menu-button {
        display: block
    }

    .nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--ink-deep);
        padding: 25px;
        flex-direction: column;
        gap: 20px;
        transform: translateY(-130%);
        transition: .25s;
        z-index: -1
    }

    .nav--open {
        transform: translateY(0)
    }

    .hero {
        min-height: calc(100svh - 72px);
        padding-top: 90px
    }

    .hero-meta {
        gap: 18px;
        flex-wrap: wrap
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 45px
    }

    .product-layout {
        grid-template-columns: 1fr
    }

    .filters {
        display: grid;
        grid-template-columns: repeat(2,1fr)
    }

    .filter-title {
        grid-column: 1/-1
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .product-visual {
        height: 220px
    }

    .stats {
        gap: 12px
    }

    .contact {
        gap: 40px
    }

        .contact h2, .about h2, .section-heading h2 {
            font-size: 48px
        }

    .map-wrap {
        min-height: 330px
    }

    footer {
        grid-template-columns: 1fr;
        align-items: start
    }

    .mark {
        font-size: 23px
    }

        .mark i {
            width: 18px;
            height: 23px
        }
}

@media(max-width:400px) {
    h1 {
        font-size: 50px
    }

    .stats {
        grid-template-columns: 1fr
    }

    .hero-meta {
        display: none
    }

    .filters {
        grid-template-columns: 1fr
    }

    .filter-title {
        grid-column: auto
    }
}

/* Multi-page structure */
.intro-page {
    background: #fff;
    overflow: hidden
}

.intro {
    min-height: 100svh;
    position: relative;
    display: grid;
    place-items: center;
    background: #fff
}

.intro-lines:before, .intro-lines:after {
    content: '';
    position: absolute;
    width: 58vw;
    height: 170px;
    background: #e8e8e7;
    transform: skewX(-45deg);
    right: -8vw;
    top: 14vh
}

.intro-lines:after {
    right: auto;
    left: 22vw;
    top: auto;
    bottom: -3vh
}

.intro-brand {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 54px auto;
    align-items: end;
    color: var(--ink);
    font-family: var(--font-display)
}

    .intro-brand strong {
        font-size: clamp(100px,16vw,250px);
        line-height: .58;
        letter-spacing: -.08em
    }

    .intro-brand i {
        width: 54px;
        height: 76px;
        background: var(--red);
        clip-path: polygon(100% 0,45% 50%,100% 100%,56% 100%,0 50%,56% 0);
        margin-left: 12px
    }

    .intro-brand small {
        grid-column: 1;
        font-size: clamp(25px,4vw,58px);
        letter-spacing: .36em;
        text-align: center
    }

    .intro-brand b {
        font-size: clamp(38px,6vw,90px);
        letter-spacing: .14em;
        margin-left: 24px
    }

    .intro-brand span {
        grid-column: 1/-1;
        justify-self: center;
        margin-top: 55px;
        border-bottom: 2px solid var(--red);
        padding: 12px 4px;
        font: 700 12px var(--font-body);
        letter-spacing: .18em
    }

.intro-social {
    position: absolute;
    right: 5vw;
    top: 6vh;
    color: var(--ink);
    font-size: 24px
}

.nav .current {
    opacity: 1
}

.slider {
    height: calc(100svh - 88px);
    min-height: 640px;
    position: relative;
    background: var(--ink);
    overflow: hidden;
    color: #fff
}

.slide {
    position: absolute;
    inset: 0;
    padding: clamp(70px,11vh,135px) clamp(22px,8vw,130px);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(4%);
    transition: opacity .7s ease,transform .7s ease,visibility .7s
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        transform: none;
        z-index: 2
    }

    .slide > div {
        position: relative;
        z-index: 2;
        max-width: 980px
    }

    .slide h1 {
        font-size: clamp(58px,8vw,125px)
    }

    .slide > div > p:not(.eyebrow) {
        font-size: clamp(16px,1.4vw,21px);
        color: #d5d6e7
    }

    .slide > b {
        position: absolute;
        right: 1vw;
        bottom: -18%;
        font: 700 min(53vw,780px)/1 var(--font-display);
        color: #ffffff09;
        transform: rotate(-7deg)
    }

.slide--2 {
    background: #252866
}

.slide--3 {
    background: #343796
}

.slider-controls {
    position: absolute;
    z-index: 5;
    bottom: 42px;
    left: clamp(22px,8vw,130px);
    right: clamp(22px,5vw,80px);
    display: flex;
    align-items: center;
    gap: 20px
}

    .slider-controls > button {
        width: 50px;
        height: 50px;
        border: 1px solid #ffffff66;
        color: #fff;
        background: transparent;
        font-size: 20px;
        cursor: pointer
    }

.slider-dots {
    display: flex;
    gap: 12px
}

    .slider-dots button {
        width: 72px;
        height: 4px;
        border: 0;
        background: #ffffff55;
        padding: 0;
        cursor: pointer
    }

        .slider-dots button.active {
            background: #fff
        }

.category-strip {
    display: grid;
    grid-template-columns: repeat(3,1fr)
}

    .category-strip a {
        min-height: 260px;
        padding: 45px;
        border-right: 1px solid var(--line);
        display: grid;
        grid-template-columns: 1fr auto;
        align-content: space-between;
        transition: .25s
    }

        .category-strip a:hover {
            background: var(--ink);
            color: #fff
        }

    .category-strip span {
        font-size: 11px;
        letter-spacing: .14em;
        color: var(--red)
    }

    .category-strip strong {
        grid-column: 1/-1;
        font: 600 clamp(34px,4vw,58px) var(--font-display);
        text-transform: uppercase
    }

    .category-strip i {
        font-style: normal;
        font-size: 25px
    }

.home-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end
}

    .home-about h2 {
        font: 600 clamp(50px,7vw,100px)/.85 var(--font-display);
        text-transform: uppercase;
        letter-spacing: -.04em
    }

    .home-about > div {
        color: var(--muted);
        line-height: 1.7;
        max-width: 480px
    }

.cta--dark {
    color: var(--ink)
}

.page-hero {
    min-height: 540px;
    padding: 110px clamp(22px,8vw,130px);
    background: var(--ink);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center
}

    .page-hero h1, .contact-page h1 {
        font-size: clamp(65px,9vw,25px);
        margin: 0 0 20px 0
    }

.page-hero--about {
    background: var(--ink-deep)
}

.category-pages {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--line)
}

    .category-pages > a {
        background: var(--paper);
        padding: 45px;
        min-height: 430px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: .25s
    }

        .category-pages > a:hover {
            /*background: var(--ink);
            color: #fff*/
        }

    .category-pages span {
        margin-bottom: auto;
        color: var(--red);
        font-size: 11px;
        letter-spacing: .13em
    }

    .category-pages h2 {
        font-size: clamp(45px,5vw,75px);
        text-transform: uppercase;
        margin-bottom: 14px
    }

    .category-pages p {
        line-height: 1.6;
        color: var(--muted)
    }

    .category-pages b {
        margin-top: 24px;
        font-size: 12px;
        letter-spacing: .12em
    }

.about-detail {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 10vw
}

    .about-detail > aside {
        display: flex;
        flex-direction: column
    }

        .about-detail > aside strong {
            font: 600 clamp(80px,10vw,150px)/.8 var(--font-display);
            color: var(--red)
        }

        .about-detail > aside span {
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: .15em;
            font-size: 11px
        }

    .about-detail > div > p {
        font-size: clamp(18px,1.7vw,25px);
        line-height: 1.7
    }

.stats--light {
    border-color: var(--line)
}

    .stats--light strong {
        color: var(--ink)
    }

.contact-page {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 60px
}

    .contact-page h1 span {
        color: var(--red)
    }

.category-hero {
    min-height: 480px;
    padding: 80px clamp(22px,8vw,130px);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden
}

    .category-hero:after {
/*        content: '+';
        position: absolute;
        right: 3vw;
        bottom: -42%;
        font: 700 480px var(--font-display);
        color: #ffffff12*/
    }

    .category-hero > a {
        position: absolute;
        top: 35px;
        font-size: 11px;
        letter-spacing: .15em
    }

    .category-hero p {
        font-size: 11px;
        letter-spacing: .15em
    }

    .category-hero h1 {
        font-size: clamp(85px,13vw,200px);
        line-height: .65;
        margin-bottom: 34px
    }

    .category-hero > span {
        font-size: 18px;
        color: #ffffffcc
    }

.category-hero--red {
    background: var(--red)
}

.category-hero--blue {
    background: var(--ink)
}

.category-hero--silver {
    background: #888b99
}

.catalog {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px
}

    .catalog aside {
        display: flex;
        flex-direction: column;
        position: sticky;
        top: 125px;
        align-self: start;
        border-top: 1px solid var(--ink)
    }

        .catalog aside a {
            padding: 18px 10px;
            border-bottom: 1px solid var(--line);
            font-weight: 600
        }

            .catalog aside a.active {
                background: var(--ink);
                color: #fff;
                border-left: 4px solid var(--red)
            }

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--line)
}

    .catalog-grid article {
        background: var(--paper);
        padding: 18px
    }

    .catalog-grid h2 {
        font-size: 25px;
        margin-bottom: 8px
    }

    .catalog-grid p {
        font-size: 13px;
        color: var(--muted)
    }

@media(max-width:900px) {
    .category-strip, .category-pages {
        grid-template-columns: 1fr
    }

        .category-strip a {
            min-height: 190px
        }

    .home-about, .about-detail {
        grid-template-columns: 1fr
    }

    .catalog {
        grid-template-columns: 1fr
    }

        .catalog aside {
            position: static;
            display: grid;
            grid-template-columns: repeat(3,1fr)
        }

    .catalog-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:700px) {
    .slider {
        height: calc(100svh - 72px);
        min-height: 620px
    }

    .slide {
        padding-top: 75px;
        align-items: flex-start
    }

        .slide h1 {
            font-size: 51px;
            margin-top: 35px
        }

    .slider-controls {
        bottom: 28px
    }

    .slider-dots button {
        width: 35px
    }

    .intro-brand {
        grid-template-columns: auto 30px
    }

        .intro-brand strong {
            font-size: 30vw
        }

        .intro-brand i {
            width: 30px;
            height: 43px
        }

        .intro-brand b {
            grid-column: 1/-1;
            margin: 16px 0 0;
            text-align: center;
            font-size: 12vw
        }

        .intro-brand small {
            font-size: 7vw
        }

    .intro-lines:before, .intro-lines:after {
        height: 100px
    }

    .category-pages > a {
        min-height: 320px
    }

    .catalog-grid {
        grid-template-columns: 1fr
    }

    .catalog aside {
        grid-template-columns: 1fr
    }

    .category-hero {
        min-height: 410px
    }

        .category-hero h1 {
            font-size: 25vw
        }

    .contact-page {
        grid-template-columns: 1fr
    }

    .page-hero {
        min-height: 440px;
        padding-top: 70px
    }
}

/* Supplied entrance artwork */
.entrance-page {
    margin: 0;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff
}

.entrance {
    position: relative;
    width: min(100vw,calc(100svh * 1.6666667));
    aspect-ratio: 5/3;
    max-height: 100svh
}

.entrance-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.entrance-logo-link {
    position: absolute;
    z-index: 2;
    left: 24%;
    top: 31%;
    width: 52%;
    height: 34%;
    display: grid;
    place-items: end center;
    cursor: pointer
}

    .entrance-logo-link span {
        opacity: 0;
        transform: translateY(18px);
        padding: 10px 18px;
        background: var(--ink);
        color: #fff;
        font: 700 11px var(--font-body);
        letter-spacing: .16em;
        text-transform: uppercase;
        transition: .2s
    }

    .entrance-logo-link:hover span, .entrance-logo-link:focus-visible span {
        opacity: 1;
        transform: none
    }

    .entrance-logo-link:focus-visible {
        outline: 3px solid var(--red);
        outline-offset: 4px
    }
/* Slider matched to supplied navy reference */
.slider--reference {
    height: calc(100svh - 88px);
    min-height: 0;
    background: #302d82
}

    .slider--reference:before {
        content: '';
        position: absolute;
        z-index: 6;
        left: 70%;
        right: 0;
        top: 0;
        height: 4px;
        background: #a5a99b
    }

    .slider--reference .slide {
        padding: 0;
        background: #302d82
    }

    .slider--reference .slide--2 {
        background: #2d2a7b
    }

    .slider--reference .slide--3 {
        background: #34318b
    }

    .slider--reference .slide--4 {
        background: #29266f
    }

    .slider--reference .slider-controls {
        left: 50%;
        right: auto;
        bottom: 7%;
        transform: translateX(-50%)
    }

    .slider--reference .slider-prev, .slider--reference .slider-next {
        display: none
    }

    .slider--reference .slider-dots {
        gap: 34px
    }

        .slider--reference .slider-dots button {
            width: 88px;
            height: 6px;
            background: #9899b9
        }

            .slider--reference .slider-dots button.active {
                background: #fff
            }

@media(max-width:700px) {
    .slider--reference {
        height: calc(100svh - 72px);
        min-height: 0
    }

        .slider--reference .slider-dots {
            gap: 14px
        }

            .slider--reference .slider-dots button {
                width: 42px;
                height: 4px
            }

    .entrance-logo-link {
        left: 20%;
        top: 27%;
        width: 60%;
        height: 42%
    }
}

/* Final supplied brand assets */
@font-face {
    font-family: 'AKCO';
    src: url('../fonts/Normal.otf') format('opentype');
    font-weight: 400 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'AKCO';
    src: url('../fonts/Bold.otf') format('opentype');
    font-weight: 700 900;
    font-style: normal;
    font-display: swap
}

:root {
    --font-body: 'AKCO',Arial,sans-serif;
    --font-display: 'AKCO',Arial,sans-serif
}

.mark {
    width: clamp(210px,24vw,410px);
    height: 64px;
    background: url('../images/logo.png') left center/contain no-repeat;
    font-size: 0;
    letter-spacing: 0;
    flex: none
}

    .mark span, .mark i {
        display: none
    }

.entrance-social {
    position: absolute;
    z-index: 3;
    right: 4.5%;
    top: 5%;
    display: flex;
    align-items: center;
    gap: clamp(12px,1.4vw,25px)
}

    .entrance-social a {
        display: grid;
        place-items: center;
        width: clamp(24px,2.2vw,40px);
        height: clamp(24px,2.2vw,40px);
        transition: transform .2s,opacity .2s
    }

        .entrance-social a:hover, .entrance-social a:focus-visible {
            transform: translateY(-2px);
            opacity: .7
        }

    .entrance-social img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain
    }

footer {
    position: relative;
    padding-right: clamp(100px,12vw,190px);
    min-height: 115px
}

    footer .mark {
        display: none
    }

    footer:after {
        content: '';
        position: absolute;
        right: clamp(22px,4vw,70px);
        bottom: 0;
        width: clamp(74px,9vw,145px);
        height: 100%;
        background: url('../images/footer_logo.png') center/auto 120% no-repeat
    }

@media(max-width:700px) {
    .mark {
        width: 210px;
        height: 48px
    }

    .entrance-social {
        right: 3.5%;
        top: 4%;
        gap: 9px
    }

        .entrance-social a {
            width: 24px;
            height: 24px
        }

    footer {
        padding-right: 105px
    }

        footer:after {
            right: 20px;
            width: 92px;
            background-size: auto 112%
        }
}

/* Final responsive imagery pass */
.entrance-page {
    width: 100%;
    height: 100svh;
    overflow: hidden;
    background: #fff
}

.entrance {
    width: 100%;
    height: 100svh;
    max-height: none;
    aspect-ratio: auto;
    background: url('../images/girisbg.jpg') center center/cover no-repeat
}

.entrance-image {
    display: none
}

.entrance-logo-link {
    left: 25%;
    top: 31%;
    width: 50%;
    height: 38%
}

.home-page {
    height: 100svh;
    overflow: hidden;
    background: var(--ink)
}

.home-slider-only {
    height: calc(100svh - 88px)
}

.slider--photos {
    height: 100%;
    min-height: 0
}

    .slider--photos .slide {
        padding: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat
    }

        .slider--photos .slide:before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,rgba(21,21,67,.76),rgba(29,30,98,.12) 70%)
        }



    .slider--photos .slide--welcome {
        background-image: url('../images/akco-partner-banner.jpg')
    }


    .slider--photos .slide--chemicals {
        background-image: url('../images/chemicals.jpeg')
    }

    .slider--photos .slide--hardware {
        background-image: url('../images/hardware.jpg')
    }

    .slider--photos .slide--electrical {
        background-image: url('../images/electrical.jpg')
    }

    .slider--photos .slide > div {
        position: absolute;
        left: clamp(22px,6vw,100px);
        bottom: clamp(100px,15vh,190px);
        z-index: 2
    }

    .slider--photos .slide p {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: .18em
    }

    .slider--photos .slide h1 {
        margin: 0;
        font-size: clamp(60px,9vw,145px);
        line-height: .8
    }

    .slider--photos .slide a {
        display: inline-block;
        margin-top: 25px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--red);
        font-size: 12px;
        letter-spacing: .12em
    }

    .slider--photos .slider-controls {
        bottom: 5%;
        z-index: 5
    }

    .slider--photos .slider-dots button {
        background: #ffffff77
    }

        .slider--photos .slider-dots button.active {
            background: #fff
        }

.category-pages > a {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-position: center;
    background-size: cover
}

    .category-pages > a:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg,rgba(25,25,71,.92),rgba(25,25,71,.12));
        transition: .3s
    }

    .category-pages > a > * {
        position: relative;
        z-index: 1
    }

    .category-pages > a:nth-child(1) {
        background-image: url('../images/chemical-kategori.jpg')
    }

    .category-pages > a:nth-child(2) {
        background-image: url('../images/handtools-kategori.jpg')
    }

    .category-pages > a:nth-child(3) {
        background-image: url('../images/electric-kategori-banner.jpg')
    }

    .category-pages > a:hover {
        background-color: transparent
    }

        .category-pages > a:hover:before {
            background: linear-gradient(0deg,rgba(227,30,45,.9),rgba(25,25,71,.18))
        }

        .category-pages > a:hover h2 {
            transform: translateY(-8px)
        }

.category-pages h2 {
    transition: .3s
}

.category-pages p {
    color: #e5e5ee
}

.category-hero {
    min-height: 300px;
    padding-top: 48px;
    padding-bottom: 48px;
    background-position: center;
    background-size: cover
}

    .category-hero:before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(31,31,91,.62)
    }

    .category-hero > * {
        position: relative;
        z-index: 2
    }

.category-hero--red {
    background-image: url('../images/chemical-kategori-banner.jpg')
}

.category-hero--blue {
    background-image: url('../images/handtools-kategori-banner.jpg')
}

.category-hero--silver {
    background-image: url('../images/electric-kategori-banner.jpg')
}

.category-hero h1 {
    font-size: clamp(58px,8vw,110px);
    margin-bottom: 18px
}

.category-hero > a {
    top: 24px
}

.catalog-grid article {
    transition: transform .3s ease,box-shadow .3s ease;
    position: relative;
    z-index: 1
}

    .catalog-grid article:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 38px rgba(26,27,76,.18);
        z-index: 3
    }

        .catalog-grid article:hover .product-visual {
            background-size: 115%
        }

.catalog-grid .product-visual {
    background-position: center;
    background-size: 105%;
    background-repeat: no-repeat;
    transition: background-size .45s ease
}

    .catalog-grid .product-visual:after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg,rgba(25,25,71,.55),transparent 60%)
    }

    .catalog-grid .product-visual i {
        display: none
    }

.category-hero--red + .catalog .product-visual {
    background-image: url('../images/chemicals.jpeg')
}

.category-hero--blue + .catalog .product-visual {
    background-image: url('../images/hardware.jpg')
}

.category-hero--silver + .catalog .product-visual {
    background-image: url('../images/electrical.jpg')
}

.catalog-grid article:nth-child(2n) .product-visual {
    background-position: 65% center
}

.catalog-grid article:nth-child(3n) .product-visual {
    background-position: 35% center
}

.page-hero {
    min-height: 260px;
    padding-top: 42px;
    padding-bottom: 42px
}

    .page-hero h1 {
        font-size: clamp(48px,6vw,82px);
        line-height: .9
    }

    .page-hero .eyebrow {
        margin-bottom: 15px
    }

.about-detail--clean {
    display: block;
    max-width: 1050px;
    margin: 0 auto
}

    .about-detail--clean > div > p {
        font-size: clamp(18px,1.65vw,24px)
    }

@media(max-width:700px) {
    .home-slider-only {
        height: calc(100svh - 72px)
    }

    .slider--photos {
        height: 100%;
        min-height: 0
    }

        .slider--photos .slide > div {
            bottom: 110px
        }

        .slider--photos .slide h1 {
            font-size: 14vw
        }

    .entrance-logo-link {
        left: 13%;
        top: 29%;
        width: 74%;
        height: 42%
    }

    .entrance-social {
        right: 18px;
        top: 18px
    }

    .category-hero {
        min-height: 230px;
        padding-top: 55px;
        padding-bottom: 30px
    }

        .category-hero h1 {
            font-size: 14vw
        }

    .page-hero {
        min-height: 200px;
        padding-top: 32px;
        padding-bottom: 32px
    }

        .page-hero h1 {
            font-size: 42px
        }

    .catalog-grid article:hover {
        transform: translateY(-5px)
    }
}

/* Requested brand colors and navigation system */
:root {
    --ink: #2a2b86;
    --ink-deep: #22236d;
    --red: #af2429
}

.slider--photos .slider-controls {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    justify-content: center;
    width: max-content
}

.slider--photos .slider-dots {
    justify-content: center
}

.side-menu {
    display: flex;
    flex-direction: column;
    align-self: start;
    position: sticky;
    top: 120px
}

    .side-menu strong {
        padding: 13px 18px;
        background: var(--ink);
        color: #fff;
        font-size: 14px;
        letter-spacing: .08em
    }

    .side-menu a {
        position: relative;
        padding: 13px 14px 13px 24px;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        font-size: 17px;
        transition: .2s
    }

        .side-menu a:before {
            content: '';
            position: absolute;
            left: 9px;
            top: 50%;
            width: 2px;
            height: 20px;
            border: 1px solid var(--ink);
            transform: translateY(-50%)
        }

        .side-menu a:hover, .side-menu a.active {
            background: #e7e7e7
        }

            .side-menu a.active:before {
                width: 4px;
                border: 0;
                background: var(--ink)
            }

    .side-menu .back-link {
        margin-top: 22px;
        padding-left: 10px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .1em
    }

        .side-menu .back-link:before {
            display: none
        }

.about-with-menu {
    display: grid;
    grid-template-columns: 220px minmax(0,1fr);
    gap: clamp(45px,7vw,110px)
}

.about-sections {
    max-width: 1000px
}

    .about-sections article {
        padding: 0 0 70px;
        margin-bottom: 70px;
        border-bottom: 1px solid var(--line);
        scroll-margin-top: 120px
    }

        .about-sections article:last-child {
            border-bottom: 0
        }

        .about-sections article > span {
            color: var(--red);
            font-size: 11px;
            letter-spacing: .16em
        }

    .about-sections h2 {
        font-size: clamp(44px,5vw,72px);
        text-transform: uppercase;
        margin: 14px 0 18px
    }

    .about-sections p {
        font-size: clamp(17px,1.55vw,23px);
        line-height: 1.7;
        color: #555875
    }

.catalog-grid article {
    cursor: pointer;
    outline: none
}

    .catalog-grid article:focus-visible {
        box-shadow: 0 0 0 4px var(--red),0 18px 38px rgba(26,27,76,.18);
        transform: translateY(-8px)
    }

.product-detail {
    display: grid;
    grid-template-columns: 220px minmax(0,1fr);
    gap: clamp(38px,6vw,90px)
}

.product-content {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
    gap: clamp(35px,5vw,75px)
}

.product-gallery {
    min-width: 0
}

.gallery-main {
    width: 100%;
    height: clamp(390px,53vw,720px);
    padding: 0;
    border: 0;
    background: #ddd;
    cursor: zoom-in;
    overflow: hidden
}

    .gallery-main img, .gallery-thumbs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s
    }

    .gallery-main:hover img {
        transform: scale(1.035)
    }

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 10px
}

    .gallery-thumbs button {
        height: 110px;
        border: 0;
        padding: 0;
        background: #ddd;
        cursor: zoom-in;
        overflow: hidden
    }

        .gallery-thumbs button:hover img {
            transform: scale(1.08)
        }

.product-info {
    align-self: start;
    position: sticky;
    top: 120px;
    min-width: 0
}

.product-code {
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em
}

.product-info h1 {
    font-size: clamp(55px,6vw,94px);
    line-height: .82;
    margin: 22px 0 30px;
    max-width: 100%;
    overflow-wrap: break-word
}

html[lang="ru"] .product-info h1 {
    font-size: clamp(42px,4.2vw,74px);
    line-height: .9;
    letter-spacing: -.025em
}

.product-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #60637b
}

.product-info dl {
    margin: 40px 0;
    border-top: 1px solid var(--line)
}

    .product-info dl div {
        display: grid;
        grid-template-columns: 120px 1fr;
        padding: 15px 0;
        border-bottom: 1px solid var(--line)
    }

.product-info dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #8a8c9e
}

.product-info dd {
    margin: 0;
    font-weight: 600
}

.product-enquiry {
    display: flex;
    justify-content: space-between;
    background: var(--ink);
    color: #fff;
    padding: 18px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: .2s
}

    .product-enquiry:hover {
        background: var(--red)
    }

.lightbox[hidden] {
    display: none
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(10,10,28,.94);
    display: grid;
    grid-template-columns: 70px minmax(0,1fr) 70px;
    align-items: center;
    padding: 60px
}

    .lightbox img {
        display: block;
        max-width: 100%;
        max-height: calc(100svh - 120px);
        margin: auto;
        object-fit: contain
    }

    .lightbox button {
        border: 1px solid #ffffff66;
        background: rgba(255,255,255,.06);
        color: #fff;
        width: 54px;
        height: 54px;
        font-size: 24px;
        cursor: pointer
    }

.lightbox-close {
    position: absolute;
    right: 25px;
    top: 22px
}

.lightbox-open {
    overflow: hidden
}

@media(max-width:1000px) {
    .product-detail {
        grid-template-columns: 180px minmax(0,1fr)
    }

    .product-content {
        grid-template-columns: 1fr
    }

    .product-info {
        position: static
    }

    .gallery-main {
        height: 58vw
    }
}

@media(max-width:700px) {
    .slider--photos .slider-controls {
        left: 50%;
        right: auto
    }

    .about-with-menu, .product-detail {
        grid-template-columns: 1fr
    }

    .side-menu {
        position: static;
        display: grid;
        grid-template-columns: 1fr
    }

    .about-sections article {
        padding-bottom: 45px;
        margin-bottom: 45px
    }

    .product-content {
        grid-template-columns: 1fr
    }

    .gallery-main {
        height: 82vw
    }

    .gallery-thumbs button {
        height: 70px
    }

    .product-info h1 {
        font-size: 58px
    }

    html[lang="ru"] .product-info h1 {
        font-size: clamp(38px,12vw,54px);
        line-height: .94
    }

    .lightbox {
        grid-template-columns: 45px minmax(0,1fr) 45px;
        padding: 55px 10px 20px
    }

        .lightbox button {
            width: 40px;
            height: 46px
        }

    .lightbox-close {
        right: 12px;
        top: 8px
    }

    .product-side .back-link {
        margin-top: 0
    }
}

/* Refined header, category cards and product detail */
.mark {
    width: clamp(210px,24vw,310px)
}

.nav {
    align-items: center;
    gap: 20px
}

    .nav > a, .nav-product > a {
        position: relative;
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 10px 14px;
        opacity: .9;
        isolation: isolate
    }

        .nav > a:before, .nav > a:after, .nav-product > a:before, .nav-product > a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            opacity: 0;
            transition: width .25s ease,height .25s ease,opacity .15s
        }

        .nav > a:before, .nav-product > a:before {
            left: 0;
            top: 0;
            border-left: 1px solid #fff;
            border-top: 1px solid #fff
        }

        .nav > a:after, .nav-product > a:after {
            right: 0;
            bottom: 0;
            border-right: 1px solid #fff;
            border-bottom: 1px solid #fff
        }

        .nav > a:hover:before, .nav > a:hover:after, .nav > a.current:before, .nav > a.current:after, .nav-product:hover > a:before, .nav-product:hover > a:after, .nav-product > a.current:before, .nav-product > a.current:after {
            width: 100%;
            height: 100%;
            opacity: .75
        }

.nav-product {
    position: relative
}

    .nav-product > a span {
        font-size: 13px;
        transition: transform .2s
    }

    .nav-product:hover > a span, .nav-product:focus-within > a span {
        transform: rotate(180deg)
    }

.product-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 13px);
    width: 230px;
    padding: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(15,16,60,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .22s;
    z-index: 30
}

.nav-product:hover .product-dropdown, .nav-product:focus-within .product-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
}

.product-dropdown a {
    display: flex;
    gap: 13px;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    opacity: 1
}

    .product-dropdown a:hover {
        background: #eeeeef
    }

    .product-dropdown a span {
        font-size: 10px;
        color: var(--red)
    }

.product-dropdown .all-products {
    justify-content: flex-end;
    background: var(--ink);
    color: #fff;
    margin-top: 7px;
    border: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.category-pages {
    gap: 18px;
    background: transparent
}

    .category-pages > a {
        min-height: 380px;
        border: 1px solid var(--line);
        background-color: #ddd
    }

        .category-pages > a:before {
            background: linear-gradient(0deg,rgba(30,31,85,.86),rgba(30,31,85,.05) 72%)
        }

        .category-pages > a:hover {
            border-color: var(--ink);
            box-shadow: 0 12px 30px rgba(28,29,81,.13)
        }

            .category-pages > a:hover:before {
                background: linear-gradient(0deg,rgba(30,31,85,.9),rgba(30,31,85,.08) 72%)
            }

            .category-pages > a:hover h2 {
                transform: none
            }

    .category-pages a b {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,.4)
    }

.product-info {
    position: static
}

.gallery-main:hover img, .gallery-thumbs button:hover img {
    transform: none
}

.gallery-main, .gallery-thumbs button {
    cursor: pointer
}

.product-content {
    align-items: start
}

.catalog-button {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 13px;
    border: 1px solid var(--ink);
    color: var(--ink);
    transition: background .25s,color .25s,border-color .25s
}

.catalog-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em
}

.catalog-button > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.catalog-button strong {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.catalog-button small {
    color: #777a8e;
    font-size: 11px
}

.catalog-button b {
    font-size: 24px;
    padding-right: 7px;
    transition: transform .25s
}

.catalog-button:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

    .catalog-button:hover small {
        color: #d7d8ea
    }

    .catalog-button:hover b {
        transform: translateY(4px)
    }

@media(max-width:700px) {
    .nav {
        align-items: stretch;
        gap: 8px
    }

        .nav > a, .nav-product > a {
            padding: 10px
        }

    .nav-product {
        width: 100%
    }

    .product-dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 8px;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #fff;
        transition: max-height .3s,padding .3s
    }

    .nav-product:hover .product-dropdown, .nav-product:focus-within .product-dropdown {
        max-height: 250px;
        padding: 8px
    }

    .category-pages {
        gap: 12px
    }

        .category-pages > a {
            min-height: 300px
        }

    .mark {
        width: clamp(210px,24vw,310px)
    }
}

/* Clean UI pass: unified mobile header and burgundy category hover */
html {
    background: #2a2b86;
    color-scheme: light
}

.site-header {
    background: #2a2b86;
    border-bottom-color: #af2429;
    box-shadow: none
}

.nav {
    background: #2a2b86
}

.product-dropdown a:hover, .product-dropdown a:focus-visible {
    background: #af2429;
    color: #fff
}

    .product-dropdown a:hover span, .product-dropdown a:focus-visible span {
        color: #fff
    }

.product-dropdown .all-products {
    background: #af2429;
    color: #fff
}

.category-pages > a:hover:before {
    background: linear-gradient(0deg,rgba(175,36,41,.94),rgba(175,36,41,.28) 75%)
}

.category-pages > a:hover {
    border-color: #af2429
}

.side-menu a:hover, .catalog aside a:hover {
    background: #af2429;
    color: #fff
}

    .side-menu a:hover:before {
        border-color: #fff
    }

.catalog aside a {
    transition: background .2s,color .2s
}

@media(max-width:700px) {
    body {
        background: #fff
    }

    .home-page {
        background: #2a2b86
    }

    .site-header {
        height: 72px;
        background: #2a2b86;
        padding-top: env(safe-area-inset-top);
        isolation: isolate
    }

    .menu-button {
        display: grid;
        place-items: center;
        width: 43px;
        height: 43px;
        padding: 0;
        border: 1px solid rgba(255,255,255,.55);
        background: #2a2b86;
        color: #fff;
        cursor: pointer
    }

        .menu-button span {
            display: block;
            font-family: Arial,sans-serif;
            font-size: 28px;
            font-weight: 300;
            line-height: 1;
            transition: transform .25s ease
        }

        .menu-button.is-open span {
            transform: rotate(45deg)
        }

    .nav {
        top: 72px;
        background: #2a2b86;
        border-top: 0;
        padding: 25px;
        min-height: calc(100svh - 72px);
        transform: translateY(-120%)
    }

    .nav--open {
        transform: translateY(0)
    }

    .nav > a, .nav-product > a {
        color: #fff
    }

    .product-dropdown {
        background: #fff
    }

    .nav-product:hover .product-dropdown, .nav-product:focus-within .product-dropdown {
        max-height: 0;
        padding: 0 8px
    }

    .nav-product.submenu-open .product-dropdown {
        max-height: 270px;
        padding: 8px
    }

    .nav-product.submenu-open > a span {
        transform: rotate(45deg)
    }

    .product-dropdown a {
        color: #2a2b86
    }

        .product-dropdown a:hover, .product-dropdown a:focus-visible {
            background: #af2429;
            color: #fff
        }

    .product-dropdown .all-products {
        background: #af2429;
        color: #fff
    }
}

/* Requested final fixes: two-line mobile menu and uncropped entrance artwork. */
@media(max-width:700px) {
    .menu-button {
        width: 38px;
        height: 38px
    }

        .menu-button span {
            position: relative;
            width: 23px;
            height: 15px;
            font-size: 0;
            line-height: 0;
            transform: none
        }

            .menu-button span:before, .menu-button span:after {
                content: '';
                position: absolute;
                left: 0;
                width: 23px;
                height: 1px;
                background: #fff;
                transition: top .22s ease,transform .22s ease
            }

            .menu-button span:before {
                top: 3px
            }

            .menu-button span:after {
                top: 11px
            }

        .menu-button.is-open span {
            transform: none
        }

            .menu-button.is-open span:before {
                top: 7px;
                transform: rotate(45deg)
            }

            .menu-button.is-open span:after {
                top: 7px;
                transform: rotate(-45deg)
            }

    .entrance {
        background-size: contain;
        background-position: center;
        background-color: #fff
    }

    .entrance-logo-link {
        left: 13vw;
        top: calc(50% - 15vw);
        width: 74vw;
        height: 30vw
    }
}

/* Usability pass: stable cards, clear actions and a hover-safe product menu. */
@media(min-width:701px) {
    .product-dropdown:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -18px;
        height: 18px
    }

    .nav-product:hover .product-dropdown, .nav-product:focus-within .product-dropdown {
        pointer-events: auto
    }
}

.category-pages > a {
}

    .category-pages > a:after {
        content: '→';
        position: absolute;
        z-index: 2;
        right: 28px;
        top: 28px;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,.65);
        display: grid;
        place-items: center;
        font-size: 19px;
    }

    .category-pages > a:hover:after, .category-pages > a:focus-visible:after {
        background: #af2429;
        border-color: #af2429;
        color: #fff
    }

    .category-pages > a:hover:before, .category-pages > a:focus-visible:before {
    }

    .category-pages > a:hover, .category-pages > a:focus-visible {
        border-color: #af2429;
        box-shadow: 0 14px 34px rgba(28,29,81,.18);
        outline: none
    }

        .category-pages > a:hover b, .category-pages > a:focus-visible b {
            color: #fff
        }

.category-pages a b {
    transition: color .2s ease
}

.catalog-grid article {
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color .25s ease,box-shadow .25s ease;
    background: #f6f6f3
}

    .catalog-grid .product-card-action {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid var(--line);
        color: var(--ink);
        font: 700 11px var(--font-body);
        letter-spacing: .1em;
        text-transform: uppercase;
        transition: color .2s ease,border-color .2s ease
    }

    .catalog-grid article:hover, .catalog-grid article:focus-visible {
        transform: none;
        border-color: #af2429;
        box-shadow: 0 13px 30px rgba(26,27,76,.14);
        z-index: 3
    }

        .catalog-grid article:hover .product-card-action, .catalog-grid article:focus-visible .product-card-action {
            color: #af2429;
            border-color: #af2429
        }

        .catalog-grid article:hover .product-visual, .catalog-grid article:focus-visible .product-visual {
           
        }

.catalog-grid .product-visual {
    transition: background-size .55s cubic-bezier(.2,.7,.2,1)
}

.contact-form {
    margin-top: 55px;
    padding-top: 35px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 20px
}

.contact-form-heading > span {
    color: #af2429;
    font: 700 15px var(--font-body);
    letter-spacing: .15em
}

.contact-form-heading h2 {
    margin: 9px 0 8px;
    font-size: clamp(26px,2.4vw,13px);
    color: var(--ink)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font: 700 11px var(--font-body);
    letter-spacing: .09em;
    text-transform: uppercase
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    color: var(--ink-deep);
    padding: 13px 14px;
    font: 400 15px var(--font-body);
    letter-spacing: 0;
    text-transform: none;
    outline: none;
    transition: border-color .2s,box-shadow .2s
}

.contact-form textarea {
    resize: vertical;
    min-height: 125px
}

    .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
        border-color: #2a2b86;
        box-shadow: 0 0 0 3px rgba(42,43,134,.1)
    }

.contact-form .form-consent {
    display: flex;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: 0
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: #af2429
}

.contact-form button {
    min-height: 54px;
    border: 0;
    background: #2a2b86;
    color: #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s
}

    .contact-form button:hover, .contact-form button:focus-visible {
        background: #af2429
    }

    .contact-form button b {
        font-size: 20px
    }

@media(max-width:700px) {
    .category-pages > a:after {
        right: 20px;
        top: 20px;
        width: 40px;
        height: 40px
    }

    .catalog-grid article:hover, .catalog-grid article:focus-visible {
        transform: none
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-form {
        margin-top: 42px;
        padding-top: 28px
    }
}
