/* About Page */
.about-page {
    background: #111;
}

/* Hero */
.about-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.78)),
        url('https://hewnspace.com/wp-content/uploads/2022/03/The-Urban-Building.jpg') center center/cover no-repeat;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.about-hero-content h1 {
    font-size: 76px;
    line-height: 1;
    margin: 18px 0 28px;
}

.about-hero-content p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.8;
    max-width: 720px;
}

/* Intro Section */
.about-intro {
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 54px;
    margin-bottom: 24px;
}

.about-intro-content p {
    color: #aaa;
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 17px;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid #222;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.about-stat-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    transition: 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.about-stat-card strong {
    display: block;
    font-size: 52px;
    color: #C4622D;
    margin-bottom: 10px;
}

.about-stat-card span {
    color: #aaa;
}

/* Why Choose Section */
.about-why {
    padding: 100px 0;
    background: #0d0d0d;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-why-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 38px;
    transition: 0.3s ease;
}

.about-why-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.about-why-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.about-why-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.about-why-card p {
    color: #aaa;
    line-height: 1.8;
}

/* Building Section */
.about-building {
    padding: 100px 0;
}

.about-building-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-building-image img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid #222;
}

.about-building-content h2 {
    font-size: 52px;
    margin-bottom: 24px;
}

.about-building-content p {
    color: #aaa;
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 17px;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 35%),
        #161616;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.about-cta-inner {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.about-cta-inner h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.about-cta-inner p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 18px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media(max-width: 1100px) {

    .about-intro-grid,
    .about-building-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px) {

    .about-hero {
        min-height: 60vh;
    }

    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-hero-content p {
        font-size: 18px;
    }

    .about-intro-content h2,
    .about-building-content h2 {
        font-size: 38px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat-card strong {
        font-size: 40px;
    }

    .about-cta-inner h2 {
        font-size: 38px;
    }

}