.about-page {
    --page-gutter: clamp(16px, 1.667vw, 24px);
    background: #ffffff;
}

.about-hero-section {
    position: relative;
    height: clamp(720px, 67.7vw, 975px);
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(119.88% 90.66% at 50% 0%, #1a2a5e 0%, #0b1120 70%);
}

.about-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.about-header__active {
    border-color: rgba(255, 255, 255, 0.36);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(92px, 8.2vw, 118px);
    text-align: center;
}

.about-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 2.5vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.about-hero-map {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.about-hero-map img {
    display: block;
    flex: 0 0 auto;
    width: min(100%, 1440px);
    max-width: none;
    height: auto;
}

.about-main {
    padding: 44px 0 48px;
}

.about-story {
    display: grid;
    gap: 40px;
}

.about-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    align-items: center;
    min-height: 596px;
    gap: clamp(48px, 6vw, 92px);
    padding: 64px 68px;
    background: #f3f6fe;
    border-radius: 16px;
}

.about-card--reverse {
    grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1fr);
}

.about-card--reverse .about-card__copy {
    order: 2;
}

.about-card--reverse .about-card__media {
    order: 1;
}

.about-card__copy h2 {
    color: #000000;
    font-size: clamp(2.25rem, 3vw, 3rem);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0;
}

.about-card__copy p {
    max-width: 560px;
    margin-top: 54px;
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.72;
    font-weight: 400;
}

.about-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.about-card__media img {
    display: block;
    width: min(100%, 480px);
    height: auto;
    object-fit: contain;
}

.nav-link--active {
    position: relative;
    color: #ffffff;
}

.nav-link--active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

@media (max-width: 1180px) and (min-width: 961px) {
    .about-card,
    .about-card--reverse {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
        min-height: 500px;
        gap: 40px;
        padding: 52px 46px;
    }

    .about-card__copy h2 {
        font-size: 2.25rem;
    }

    .about-card__copy p {
        margin-top: 38px;
    }
}

@media (max-width: 960px) {
    .about-hero-section {
        height: clamp(600px, 88vw, 720px);
    }

    .about-hero-content {
        padding-top: clamp(72px, 11vw, 96px);
    }

    .about-hero-map img {
        width: 980px;
    }

    .about-main {
        padding: 32px 0 36px;
    }

    .about-story {
        gap: 28px;
    }

    .about-card,
    .about-card--reverse {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 30px;
        padding: 44px;
    }

    .about-card--reverse .about-card__copy {
        order: 1;
    }

    .about-card--reverse .about-card__media {
        order: 2;
    }

    .about-card__copy p {
        max-width: none;
        margin-top: 30px;
    }

    .about-card__media img {
        width: min(100%, 430px);
    }
}

@media (max-width: 640px) {
    .about-hero-section {
        height: clamp(470px, 132vw, 560px);
    }

    .about-hero-content {
        padding-top: 54px;
    }

    .about-hero-title {
        font-size: clamp(1.6rem, 7vw, 1.875rem);
    }

    .about-hero-map img {
        width: 760px;
    }

    .about-main {
        padding: 20px 0 28px;
    }

    .about-story {
        gap: 18px;
    }

    .about-card,
    .about-card--reverse {
        gap: 22px;
        padding: 28px 20px;
        border-radius: 14px;
    }

    .about-card__copy h2 {
        font-size: 1.625rem;
    }

    .about-card__copy p {
        margin-top: 18px;
        font-size: 0.8125rem;
        line-height: 1.68;
    }

    .about-card__media img {
        width: min(100%, 330px);
    }

    .nav-link--active::after {
        display: none;
    }
}

@media (max-width: 390px) {
    .about-hero-section {
        height: 480px;
    }

    .about-hero-map img {
        width: 700px;
    }

    .about-card,
    .about-card--reverse {
        padding: 26px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-page * {
        scroll-behavior: auto;
    }
}
