.page-about .site-main {
    background: #ffffff;
    padding-top: 0;
}

.about-hero {
    padding: 4rem 0 4rem;
    background:
        linear-gradient(135deg, rgba(13, 36, 90, 0.94), rgba(6, 49, 149, 0.82)),
        linear-gradient(180deg, #0d245a 0%, #063195 100%);
    color: #ffffff;
    margin-top: -1px;
    position: relative;
    z-index: 1;
}

.about-hero__content {
    max-width: 1400px;
}

.about-hero__eyebrow,
.about-section__eyebrow {
    margin: 0 0 0.75rem;
    color: #b89a61;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero__title {
    margin: 0;
    max-width: auto;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.about-hero__text {
    max-width: auto;
    margin: 1.35rem 0 0;
    font-size: 1.18rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
}

.about-story {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.about-story__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

.about-story__media {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 36, 90, 0.12);
}

.about-story__media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    object-position: center top;
}

.about-section__title {
    margin: 0;
    max-width: 720px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0d245a;
}

.about-story__text {
    margin-top: 1.4rem;
    display: grid;
    gap: 1rem;
}

.about-story__text p {
    margin: 0;
    color: rgba(13, 36, 90, 0.76);
    font-size: 1.1rem;
    line-height: 1.75;
}

.about-local {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.about-local__box {
    padding: 3.2rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
    border-radius: 6px;
    background: #0d245a;
    box-shadow: 0 26px 60px rgba(13, 36, 90, 0.16);
}

.about-local__box .about-section__title {
    color: #ffffff;
}

.about-local__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.75;
}

.about-cta {
    padding: 0 0 5rem;
    background: #ffffff;
}

.about-cta__box {
    padding: 3.2rem;
    border: 1px solid rgba(13, 36, 90, 0.08);
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    text-align: center;
    box-shadow: 0 18px 45px rgba(13, 36, 90, 0.07);
}

.about-cta__box h2 {
    margin: 0;
    color: #0d245a;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-cta__box p {
    max-width: 620px;
    margin: 1rem auto 0;
    color: rgba(13, 36, 90, 0.74);
    font-size: 1.02rem;
    line-height: 1.7;
}

.about-cta__actions {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.about-cta__button {
    min-height: 50px;
    padding: 0 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.about-cta__button--primary {
    background: transparent;
    border: 1px solid #063195;
    color: #063195;
    box-shadow: 0 12px 26px rgba(6, 49, 149, 0.18);
}

.about-cta__button--primary:hover {
    background: #0d245a;
    border-color: #0d245a;
    color: #ffffff;
    transform: translateY(-1px);
}

.about-cta__button--secondary {
    background: transparent;
    border: 1px solid #063195;
    color: #063195;
    box-shadow: 0 12px 26px rgba(6, 49, 149, 0.18);
}

.about-cta__button--secondary:hover {
    background: #0d245a;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .about-hero {
        padding: 2rem 0 2rem;
    }

    .about-story,
    .about-local {
        padding: 3.5rem 0;
    }

    .about-story__grid,
    .about-local__box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story__media img {
        min-height: 340px;
        max-height: 420px;
        object-position: center top;
    }

    .about-local__box {
        padding: 2.4rem;
    }

    .about-cta {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 580px) {
    .about-hero {
        padding: 1rem 0 1rem;
    }

    .about-hero__title {
        font-size: 1.5rem;
        line-height: 1.1;
        letter-spacing: -0.035em;
    }

    .about-hero__text {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .about-story,
    .about-local {
        padding: 2.3rem 0;
    }

    .about-story__grid {
        gap: 1.4rem;
    }

    .about-story__media img {
        min-height: 190px;
        max-height: 200px;
        object-position: center top;
    }

    .about-section__title {
        font-size: 1.75rem;
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    .about-story__text p,
    .about-local__text,
    .about-cta__box p {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .about-local__box {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .about-cta {
        padding-bottom: 2.5rem;
    }

    .about-cta__box {
        padding: 1.6rem;
    }

    .about-cta__actions {
        flex-direction: column;
    }

    .about-cta__button {
        width: 100%;
    }
}