

.about-hero {
    position: relative;
    min-height: 560px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.15) 100%),
        url('../img/about-hero.jpg') center center / cover no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
}

.min-vh-50 {
    min-height: 560px;
}

.about-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero-title {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 600;
}

.about-hero-text {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 18px;
    line-height: 1.8;
}


/* =========================================
   GENERAL
========================================= */

.section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #8a6a42;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 25px;

    color: #222222;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 600;
}

.section-text {
    margin-bottom: 18px;

    color: #666666;

    font-size: 16px;
    line-height: 1.9;
}

.section-intro {
    color: #666666;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   OUR STORY
========================================= */

.about-story {
    background: #ffffff;
}

.about-image-wrapper {
    overflow: hidden;
}

.about-story-image {
    width: 100%;
    height: 560px;

    display: block;

    object-fit: cover;
}


/* =========================================
   MANUFACTURING
========================================= */

.about-manufacturing {
    background: #f7f5f1;
}

.about-feature-card {
    height: 100%;

    padding: 40px 35px;

    background: #ffffff;

    border: 1px solid #e9e5df;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.feature-number {
    margin-bottom: 30px;

    color: #a17b4d;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 2px;
}

.about-feature-card h3 {
    margin-bottom: 15px;

    color: #222222;

    font-size: 25px;
}

.about-feature-card p {
    margin: 0;

    color: #666666;

    line-height: 1.8;
}


/* =========================================
   QUALITY
========================================= */

.about-quality {
    background: #ffffff;
}

.quality-image-wrapper {
    overflow: hidden;
}

.quality-image {
    width: 100%;
    height: 560px;

    display: block;

    object-fit: cover;
}

.quality-points {
    margin-top: 30px;
}

.quality-point {
    display: flex;

    gap: 15px;

    margin-bottom: 22px;
}

.quality-icon {
    width: 30px;
    height: 30px;

    min-width: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1eadf;

    color: #8a6a42;

    font-weight: 700;
}

.quality-point strong {
    display: block;

    margin-bottom: 4px;

    color: #222222;

    font-size: 16px;
}

.quality-point p {
    margin: 0;

    color: #777777;

    line-height: 1.6;
}


/* =========================================
   VISION
========================================= */

.about-vision {
    background: #f7f5f1;
}


/* =========================================
   CTA
========================================= */

.about-cta {
    padding: 100px 0;

    background:
        linear-gradient(rgba(20, 20, 20, 0.82),
            rgba(20, 20, 20, 0.82)),
        url('../images/about-cta.jpg') center / cover no-repeat;
}

.about-cta-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #d2b083;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-cta h2 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.15;
}

.about-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 17px;
    line-height: 1.8;
}

.about-cta-btn {
    display: inline-block;

    padding: 13px 30px;

    color: #ffffff;

    background: transparent;

    border: 1px solid #ffffff;
    border-radius: 0;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.about-cta-btn:hover {
    color: #222222;

    background: #ffffff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-hero,
    .min-vh-50 {
        min-height: 500px;
    }

    .about-story-image,
    .quality-image {
        height: 450px;
    }

}


@media (max-width: 767px) {

    .about-hero,
    .min-vh-50 {
        min-height: 500px;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-hero-text {
        font-size: 16px;
    }

    .about-story-image,
    .quality-image {
        height: 350px;
    }

    .about-feature-card {
        padding: 30px;
    }

    .about-cta {
        padding: 70px 20px;
    }

}
