/* Hero */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

.about-hero-img {
    position: absolute;
    inset: 0;
}

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

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.about-hero-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Intro */
.about-intro {
    padding: 80px 0;
    background: #fff;
}

.about-intro-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.about-intro-divider {
    width: 48px;
    height: 3px;
    background: #C4132A;
    margin: 0 auto 32px;
    border-radius: 2px;
}

.about-intro p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* Stats */
.about-stats {
    padding: 60px 0;
    background: #1a1a1a;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stat-number {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story */
.about-story {
    padding: 80px 0;
    background: #fafafa;
}

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

.about-story-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #C4132A;
    display: inline-block;
}

.about-story-block p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 300px;
    }

    .about-hero-overlay {
        padding-bottom: 40px;
    }

    .about-hero-logo img {
        height: 40px;
    }

    .about-intro {
        padding: 50px 0;
    }

    .about-intro-heading {
        font-size: 26px;
    }

    .about-intro p {
        font-size: 15px;
    }

    .about-stats {
        padding: 40px 0;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stat-number {
        font-size: 36px;
    }

    .about-story {
        padding: 50px 0;
    }

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