:root {
    --ink: #17221e;
    --cream: #f7f5ef;
    --lime: #c9e968;
    --line: rgba(23, 34, 30, .16)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Manrope, Arial, sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px
}

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

section {
    scroll-margin-top: 80px
}

.navbar {
    padding: 18px 0;
    transition: .25s;
    background: rgba(247, 245, 239, .86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent
}

.navbar.scrolled {
    border-color: var(--line);
    padding: 12px 0
}

.navbar-brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -.7px
}

.navbar-brand img,
.footer-brand img {
    height: 27px;
    width: auto
}

.navbar-toggler {
    border: 0;
    font-size: 26px;
    padding: 0
}

.navbar-toggler:focus {
    box-shadow: none
}

.navbar-nav {
    gap: 12px
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    padding: 10px 12px !important;
    color: rgba(23, 34, 30, .65) !important
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink) !important
}

.nav-cta {
    background: var(--ink);
    color: #fff !important;
    border-radius: 999px;
    padding: 11px 17px !important;
    margin-left: 8px
}

.nav-cta:hover {
    background: #405148;
    color: #fff !important
}

.hero {
    padding: 155px 0 0
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .13em;
    font: 500 11px 'DM Mono', monospace;
    margin: 0 0 22px;
    color: #647068
}

.hero h1,
h2 {
    letter-spacing: -.065em;
    line-height: .98;
    font-weight: 600
}

.hero h1 {
    font-size: clamp(54px, 7vw, 106px);
    max-width: 720px;
    margin: 0
}

.hero h1 em {
    font-family: 'Playfair Display', serif;
    font-weight: 500
}

.hero-intro {
    max-width: 485px;
    font-size: 18px;
    line-height: 1.65;
    color: #566159;
    margin: 32px 0
}

.hero-actions {
    display: flex;
    gap: 25px;
    align-items: center
}

.button {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding: 15px 20px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700
}

.button-dark {
    background: var(--ink);
    color: #fff
}

.button-dark:hover {
    background: #405148
}

.text-link {
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px
}

.hero-image-wrap {
    position: relative
}

.hero-image {
    width: 100%;
    height: min(610px, 66vh);
    object-fit: cover;
    object-position: center
}

.image-caption {
    display: flex;
    justify-content: space-between;
    font: 500 10px 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 12px
}

.brands-row {
    border-top: 1px solid var(--line);
    margin-top: 80px;
    padding: 23px 0;
    display: flex;
    gap: 45px;
    align-items: center
}

.brands-row>p {
    font: 500 10px 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin: 0;
    white-space: nowrap;
    color: #68736b
}

.brand-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%
}

.brand-logos img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .80
}

.statement-section {
    background: var(--ink);
    color: #fff;
    padding: 135px 0
}

.statement-section .eyebrow {
    color: var(--lime)
}

h2 {
    font-size: clamp(43px, 5vw, 72px);
    margin: 0
}

.statement-section h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500
}

.statement-section .row>div:last-child p {
    line-height: 1.7;
    color: #c5ccc7;
    margin: 0
}

.stats-grid {
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 85px;
    padding-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.stats-grid strong {
    font-size: clamp(38px, 4.4vw, 64px);
    letter-spacing: -.07em
}

.stats-grid strong span {
    color: var(--lime)
}

.stats-grid p {
    font-size: 13px;
    color: #b9c1bc;
    margin: 7px 0
}

.products-section {
    padding: 140px 0
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 55px
}

.section-heading>p {
    max-width: 320px;
    color: #68736b;
    line-height: 1.7;
    font-size: 14px;
    margin: 0
}

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

.product-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: var(--ink)
}

.product-card-wide {
    grid-column: span 2
}

.product-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    transition: transform .6s ease
}

.product-card:hover img {
    transform: scale(1.055)
}

.product-overlay {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    background: linear-gradient(0deg, rgba(12, 20, 17, .75), rgba(12, 20, 17, 0) 55%)
}

.product-overlay span {
    font: 500 10px 'DM Mono', monospace;
    letter-spacing: .1em;
    position: absolute;
    top: 21px
}

.product-overlay h3 {
    font-size: 20px;
    letter-spacing: -.04em;
    margin: 0 0 5px
}

.product-overlay p {
    font-size: 12px;
    margin: 0;
    opacity: .82
}

.about-section {
    background: #e9e5db;
    padding: 130px 0
}

.about-section h2 {
    margin-bottom: 30px
}

.body-copy {
    font-size: 15px;
    line-height: 1.75;
    color: #4f5a53
}

.certifications {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 18px;
    font: 500 10px 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .08em
}

.certifications img {
    max-height: 80px;
    max-width: 120px;
    object-fit: contain
}

.factory-collage {
    position: relative;
    padding: 0 0 70px 40px
}

.factory-main {
    width: 90%;
    height: 500px;
    object-fit: cover
}

.factory-detail {
    position: absolute;
    width: 36%;
    height: 170px;
    object-fit: cover;
    border: 7px solid #e9e5db
}

.factory-detail.one {
    bottom: 0;
    left: 0
}

.factory-detail.two {
    right: 0;
    bottom: 38px
}

.contact-section {
    padding: 130px 0
}

.contact-panel {
    background: var(--lime);
    padding: 70px
}

.contact-panel h2 {
    max-width: 480px
}

.contact-panel h2+p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
    margin: 25px 0
}

.contact-email {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 700;
    letter-spacing: -.05em;
    border-bottom: 1px solid var(--ink)
}

.contact-label {
    font: 500 10px 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .1em
}

.region-list {
    border-top: 1px solid rgba(23, 34, 30, .35)
}

.region-list a {
    display: grid;
    grid-template-columns: 25px 110px 1fr;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(23, 34, 30, .35);
    padding: 13px 0;
    font-size: 13px;
    font-weight: 700
}

.region-list img {
    width: 20px
}

.region-list span {
    font-weight: 500;
    font-size: 12px;
    opacity: .7
}

footer {
    background: var(--ink);
    color: #fff;
    padding: 60px 0 24px
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 30px;
    align-items: start
}

.footer-brand {
    color: #fff
}

.footer-top p {
    font-size: 12px;
    line-height: 1.8;
    color: #c1c9c4;
    margin: 0
}

.footer-top p a:hover {
    color: var(--lime)
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    justify-content: space-between;
    color: #aab5ae;
    font: 400 10px 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .06em
}

@media(max-width:991px) {
    .navbar-collapse {
        background: var(--cream);
        padding: 15px;
        border: 1px solid var(--line);
        margin-top: 15px
    }

    .nav-cta {
        display: inline-block;
        margin: 7px 0
    }

    .hero {
        padding-top: 130px
    }

    .hero-copy {
        padding-bottom: 35px
    }

    .hero-image {
        height: 480px
    }

    .brands-row {
        margin-top: 50px;
        display: block
    }

    .brands-row>p {
        margin-bottom: 18px
    }

    .section-heading {
        display: block
    }

    .section-heading>p {
        margin-top: 20px
    }

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

    .factory-main {
        width: 90%
    }
}

@media(max-width:575px) {
    .hero h1 {
        font-size: 54px
    }

    .hero-intro {
        font-size: 16px
    }

    .hero-actions {
        gap: 18px;
        flex-wrap: wrap
    }

    .hero-image {
        height: 380px
    }

    .brand-logos {
        gap: 18px;
        flex-wrap: wrap
    }

    .brand-logos img {
        max-width: 55px
    }

    .statement-section,
    .products-section,
    .about-section,
    .contact-section {
        padding: 80px 0
    }

    .stats-grid {
        margin-top: 55px;
        grid-template-columns: 1fr;
        gap: 18px
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .product-card,
    .product-card-wide {
        grid-column: span 1;
        min-height: 350px
    }

    .contact-panel {
        padding: 38px 25px
    }

    .region-list a {
        grid-template-columns: 23px 1fr
    }

    .region-list span {
        grid-column: 2
    }

    .factory-collage {
        padding-left: 20px
    }

    .factory-main {
        height: 380px
    }

    .factory-detail {
        height: 115px;
        border-width: 4px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .footer-bottom {
        display: block;
        line-height: 2
    }

    .footer-bottom span {
        display: block
    }
}