﻿
:root {
    --navy: #12151c;
    --navy-2: #181c26;
    --red: #800000;
    --red-dark: #c22820;
    --cream: #f3f2ee;
    --line: #e3e1da;
    --ink: #171a20;
    --muted: #666a72;
    --green: #3f6b2e;
    --green-2: #2f5121;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Arial Black','Segoe UI',sans-serif;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.eyebrow {
    color: #800000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.rule {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 14px 0 18px;
}

    .rule.center {
        margin-left: auto;
        margin-right: auto;
    }

/*.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    transition: transform .2s ease, background .2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-red {
    background: var(--red);
    color: #fff;
}*/

/*  .btn-red:hover {
        background: var(--red-dark);
    }

.btn-dark {
    background: var(--navy);
    color: #fff;
}
     
.btn-outline {
    background: transparent;
    border: 2px solid var(--ink);
    color: var(--ink);
} */


/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    min-height: 300px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 40px 60px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
    gap:20px;
}

.breadcrumb {
    font-size: 12px;
    letter-spacing: 1px;
    color: #9aa0ac;
    font-weight: 700;
    margin-bottom: 0px;
}

    .breadcrumb a {
        color: #9aa0ac;
    }

    .breadcrumb span.sep {
        margin: 0 8px;
    }

    .breadcrumb .cur {
        color: var(--red);
    }

.hero h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 14px;
}

.hero p.sub {
    max-width: 520px;
    color: #c7cad1;
    font-size: 15px;
    font-weight: 400;
}

.hero-art {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

    .hero-art svg {
        width: 100%;
        height: 100%;
        display: block;
    }

/* ===== STORY SECTION ===== */
.story {
    background: var(--cream);
    padding: 30px 0;
    position: relative;
}
section.story::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    width: 30%;
    height: 100%;
    clip-path: polygon(13% 0, 100% 0%, 100% 100%, 6% 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 260px;
    gap: 50px;
    align-items: stretch;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

    .story-text h2 .accent {
        color: var(--red);
    }

.story-text p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 16px;
}

.signature {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

    .signature .sig-name {
        font-family: 'Brush Script MT', cursive;
        font-size: 26px;
        color: var(--red);
    }

    .signature .sig-role {
        font-size: 13px;
        font-weight: 700;
        margin-top: 4px;
    }

    .signature .sig-title {
        font-size: 12px;
        color: var(--muted);
    }

.story-photos {
    position: relative;
}

    .story-photos .main-photo {
        width: 100%;
        height: 440px;
        border-radius: 45px 10px 10px 10px;
        overflow: hidden;
        clip-path: polygon(5% 1%, 100% 0%, 99% 100%, 0% 100%);
    }
        .story-photos .main-photo img, .story-photos .overlay-photo img {
            height: 100%;
            object-fit: cover;
        }
        .story-photos .overlay-photo {
        position: absolute;
        right: -10px;
        bottom: 35px;
        width: 60%;
        height: 190px;
        border: 6px solid var(--cream);
        border-radius: 2px;
        overflow: hidden;
       
        clip-path: polygon(5% 0, 100% 0%, 96% 100%, 0% 100%);
        border: 5px solid white;
        border-radius: 20px;
        background: white;
    }

.stats-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    z-index: 999;
}

.stat-card {
    background: var(--navy);
    color: #fff;
    border-radius: 2px;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: center;
  
}
    .stat-card img {
        filter: brightness(0) saturate(100%) invert(40%) sepia(12%) saturate(1590%) hue-rotate(314deg) brightness(122%) contrast(108%);
        width: 50px;
    }

    .stat-card .icon {
        width: 34px;
        height: 34px;
        color: var(--red);
        flex: none;
    }

    .stat-card .num {
        font-size: 24px;
        font-weight: 900;
        color: #fff;
        line-height: 1;
    }

    .stat-card .lbl {
        font-size: 12px;
        color: #aeb2bc;
        margin-top: 4px;
    }

/* ===== MVV ===== */
.mvv {
    background-image: url(../img/about/4.png);
    color: #fff;
    padding: 30px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position:relative;
}
    .mvv::before{
        content:"";
        position:absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
        background:#000;
        opacity:0.8;
        width:100%;
        height:100%;
           
    }

.mvv-head {
    margin-bottom: 44px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

    .mvv-head .eyebrow {
        display: block;
    }

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.mvv-item {
    padding: 0 40px;
    text-align: center;
    position: relative;
}

    .mvv-item + .mvv-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        bottom: 10px;
        width: 1px;
        background: rgb(255 255 255 / 75%);
    }

    .mvv-item .icon-circle {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }

    .mvv-item h3 {
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .mvv-item p {
        color: #aeb2bc;
        font-size: 14px;
    }

    .mvv-item ul {
        text-align: center;
        margin-top: 6px;
    }

        .mvv-item ul li {
            color: #d3d5da;
            font-size: 13.5px;
            padding: 5px 0;
            display: flex;
            gap: 8px;
            align-items: center;
        }

            .mvv-item ul li .check {
                color: #ffffff;
                flex: none;
                margin-top: 2px;
                border: 1px solid #fff;
                padding: 0px 5px;
                border-radius: 90px;
            }

/* ===== MANUFACTURING ===== */
.manu {
    background: var(--cream);
    padding: 30px 0;
}

.manu-top {
    display: flex;
    gap: 20px;
    align-items: start;
    width: 100%;
}
.manu-text {
    width: 30%;
}
.second-item {
    width: 70%;
}

.manu-text h2 {
    font-size: 25px;
    margin-bottom: 16px;
}

    .manu-text h2 .accent {
        color: var(--red);
    }

.manu-text p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 26px;
}

.manu-icons {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.manu-icon-card {
    text-align: center;
    border-right: 1px dashed #0000007a;
    margin-bottom: 30px;
}
    .manu-icon-card:last-child {
        border: none;
    }

    .manu-icon-card .ic {
        width: 52px;
        height: 52px;
        margin: 0 auto 14px;
        color: var(--ink);
    }

    .manu-icon-card h4 {
        font-size: 14.5px;
        margin-bottom: 6px;
    }

    .manu-icon-card p {
        font-size: 12.5px;
        color: var(--muted);
    }

.manu-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 4px;
}

    .manu-strip .strip-img {
        height: 170px;
        overflow: hidden;
        clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
        margin: 0px -65px 0 0;
    }

/* ===== CERT / SUSTAIN ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cert {
    background-image: url('../img/about/certifications.jpg');
    color: #fff;
    padding: 20px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

    .cert p {
        color: #aeb2bc;
        font-size: 14px;
        max-width: 420px;
        margin-bottom: 34px;
    }

.cert-badges {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.badge {
    width: 78px;
    height: 78px;
  /*  border-radius: 50%;
    border: 2px solid #fff;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

    .badge small {
        font-size: 9px;
        font-weight: 400;
        letter-spacing: 0;
    }

.sustain {
    background-image: url('../img/about/Sustainability-1.jpg');
    color: #fff;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin: 0 0 0 -57px;
    padding: 40px 0 30px 80px;
}

    .sustain p {
        color: #ffffff;
        font-size: 14px;
        max-width: 420px;
        margin-bottom: 30px;
        opacity:1;
        position:relative;
    }

.sustain-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}
    .sustain-icons img {
        width: 60px;
        height: 62px;
        object-fit: cover;
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(3205%) hue-rotate(47deg) brightness(125%) contrast(110%);
    }

.sustain-icon {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px dashed #fff;
    padding-right: 20px;
}
.sustain-icon:last-child {
border:none;
}
    .sustain::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
    .sustain-icon .ic {
        width: 36px;
        height: 36px;
        margin: 0 auto 8px;
    }

.globe-deco {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    opacity: .18;
}

/* ===== GLOBAL PRESENCE ===== */
.global {
    padding: 50px 0;
    position: relative;
    background: linear-gradient(to left, #e7e7e7 0%, #e6e6e6 100%);
}
    .global::before, .global::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        opacity: 1;
        width: 35%;
        background-size:100% 100%;
        background-repeat:no-repeat;
        background-position:center;
        
    }
.global::before{
    background-image:url(../img/about/icon/GLOBAL-1.jpeg);
   left:0;
   right:auto;
}
    .global::after {
        background-image: url(../img/about/icon/GLOBAL-2.jpeg);
        left: auto;
        right: 0;

    }

.global-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 999;
    justify-content: center;
}

.global-text h3 {
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--red);
    margin-bottom: 14px;
}

.global-text p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 22px;
    max-width: 420px;
}
/*.world-map-wrap {
    background-image: url('../img/about/GLOBAL-PRESENCE-left.png');
    background-size:cover;
    background-repeat:no-repeat;
    padding:145px 0px;
}
.global-right {
    background-image: url('../img/about/GLOBAL-PRESENCE-right.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 145px 0px;
}*/
.world-map {
    width: 100%;
    height: auto;
    color: var(--ink);
}

/* ===== FOOTER CTA ===== */
.cta-bar {
    background: var(--red);
    color: #fff;
    padding: 34px 0;
    display: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

    .cta-inner h2 {
        font-size: 22px;
        letter-spacing: .5px;
    }

.cta-contacts {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    font-size: 13.5px;
}

    .cta-contacts .item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cta-contacts svg {
        width: 18px;
        height: 18px;
        flex: none;
    }

.cta-bar .btn-dark {
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1280px) {
    .sustain-icons {
        flex-wrap: nowrap;
    }
}
@media (max-width:1180px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero p.sub {
        max-width: 420px;
    }
}
    @media (max-width:1024px) {
        .story-grid {
            grid-template-columns: 1fr 1fr;
            grid-template-areas: "text photos" "stats stats";
        }

        .story-text {
            grid-area: text;
        }

        .story-photos {
            grid-area: photos;
        }

        .stats-col {
            grid-area: stats;
            flex-direction: row;
            flex-wrap: wrap;
        }

        .stat-card {
            flex: 1 1 220px;
        }

        .manu-top {
            grid-template-columns: 1fr;
        }

        .manu-icons {
            grid-template-columns: repeat(4,1fr);
            row-gap: 30px;
        }

        .manu-text h2 {
            font-size: 18px;
        }

        .manu-strip .strip-img {
            margin: 0px -35px 0 0;
        }

        .split {
            grid-template-columns: 1fr 1fr;
        }

        .sustain-icon {
            font-size: 10px;
            padding-right: 11px;
        }

        .sustain-icons img {
            width: 40px;
            height: 40px;
        }

        .global-grid {
            grid-template-columns: 1fr;
        }

        .story::before {
            display: none;
        }

        .story-photos .main-photo {
            height: 340px;
        }

        .story-photos .overlay-photo {
            bottom: 10px;
        }

        .hero h1 {
            font-size: 35px;
        }

        .hero p.sub {
            max-width: 360px;
        }

        .hero {
            min-height: 250px;
        }

        .story-grid {
            gap: 20px;
        }

    }

    @media (max-width:920px) {
        .stats-col {
            flex-wrap: nowrap;
        }
        .mvv-item {
            padding: 0 10px;
        }
        .cert-badges {
           
            flex-wrap: nowrap;
            gap:10px;
        }
        .fa-bars:before, .fa-navicon:before {
            content: "\f0c9";
            font-family: "FontAwesome";
        }
        .fa-close:before, .fa-multiply:before, .fa-remove:before, .fa-times:before, .fa-xmark:before {
            content: "\f00d";
            font-family: "FontAwesome";
        }
    }
    @media (max-width:860px) {

        .burger {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-size: 25px;
            margin-top: 15px;
        }

        .hero-art {
            width: 60%;
            opacity: .5;
        }

        .mvv-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .mvv-item + .mvv-item::before {
            display: none;
        }

        .manu-strip {
            grid-template-columns: repeat(4,1fr);
        }

        .cta-inner {
            flex-direction: column;
            align-items: flex-start;
        }

        .mvv-grid {
            grid-template-columns: repeat(3,1fr);
            gap: 10px;
        }

        .mvv-item {
            padding: 0 10px;
        }

        .second-item, .manu-text {
            width: 100%;
        }

        .manu-top {
            display: block;
        }

        .manu-strip .strip-img:not(:last-child) {
            margin: 0px -50px 0 0;
        }

        .manu-icons {
            margin-top: 30px;
        }

        .sustain-icons {
            flex-wrap: nowrap;
        }

        .sustain-icon p {
            font-size: 12px;
            margin-bottom: 0;
        }

        .badge {
            width: 50px;
            height: 50px;
        }

        .cta-contacts {
            gap: 12px;
        }

        .hero-inner {
            padding: 33px 10px 30px;
            gap: 0px;
        }

        .hero {
            min-height: 215px;
        }
    }

    @media (max-width:820px) {
        .story-text h2 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        .stats-col {
            flex-wrap: nowrap;
        }
    }
    @media (max-width:768px) {
        .story-text h2 {
            font-size: 25px;
            margin-bottom: 15px;
        }
    }

    @media (max-width:600px) {
        .wrap {
            padding: 0 20px;
        }

        .nav-inner {
            padding: 14px 20px;
        }

        .hero-inner {
            padding: 24px 20px 40px;
        }

        .hero h1 {
            font-size: 30px;
        }

        .story {
            padding: 50px 0;
        }

        .story-grid {
            grid-template-columns: 1fr;
            grid-template-areas: "text" "photos" "stats";
        }

        .stats-col {
            display: grid;
            grid-template-columns: repeat(2,1fr);
        }
        .mvv-grid {
            grid-template-columns: repeat(2,1fr);
            gap: 10px;
        }
        .mvv-item:last-child {
            grid-column-start: 1;
            grid-column-end: 4;
        }
            .story-photos .overlay-photo {
            position: static;
            width: 100%;
            margin-top: 10px;
            border: none;
            display:none;
        }

        .story-photos .main-photo {
            height: 100%;
            border-radius: 10px;
            clip-path: none;
        }

        .manu-icons {
            grid-template-columns: 1fr 1fr;
        }

        .manu-strip {
            grid-template-columns: 1fr 1fr;
        }

        .cert, .sustain {
            padding: 10px 24px;
        }

        .cta-contacts {
            gap: 16px;
            flex-direction: column;
        }
        .hero-art {
            width: 125%;
            opacity: .5;
        }
        .manu-icons, .manu-icon-card {
            margin: 0;
            padding: 10px 20px;
            gap: 0;
            row-gap: 0;
        }
        .manu-icon-card:last-child, .manu-icon-card:nth-child(2) {
            border: none;
        }
        .manu-icon-card:first-child, .manu-icon-card:nth-child(2) {
            border-bottom: 1px dashed;
        }
        .manu-strip .strip-img {
            height: 100%;
            overflow: hidden;
            clip-path: none;
            margin: 0px !important;
        }
        .split {
            grid-template-columns: 1fr;
        }
        .cert {
            clip-path: none;
        }
        .sustain {
            clip-path: none;
            margin: 0px;
        }
    }

