.about-hero {
    position: relative;
    min-height: clamp(560px, 78vh, 760px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #0f172a;
}

.about-hero__media {
    position: absolute;
    inset: 0;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 32, .88), rgba(8, 18, 32, .38) 58%, rgba(8, 18, 32, .18));
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    padding: 150px 0 72px;
}

.about-hero__content {
    max-width: 760px;
    color: #fff;
}

.about-eyebrow,
.about-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #f8fafc;
    font-size: .86rem;
    font-weight: 800;
}

.about-hero h1 {
    margin: 18px 0;
    max-width: 820px;
    color: #fff;
    font-size: 4.6rem;
    line-height: 1;
    letter-spacing: 0;
}

.about-hero p {
    max-width: 680px;
    color: #e5edf5;
    font-size: 1.22rem;
    line-height: 1.7;
}

.about-hero__actions,
.about-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.about-split,
.about-final__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

.about-copy h2,
.about-final h2 {
    margin: 8px 0 16px;
    font-size: 3rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.about-copy p,
.about-final p {
    color: var(--color-muted, #526173);
    line-height: 1.8;
}

.about-stats,
.about-values-grid,
.about-commitments,
.about-destinations {
    display: grid;
    gap: 14px;
}

.about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-stats div,
.about-feature,
.about-commitment,
.about-destination-card {
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.about-stats div {
    min-height: 132px;
    padding: 22px;
}

.about-stats span,
.about-destination-card span {
    display: block;
    color: #64748b;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-stats strong {
    display: block;
    margin-top: 12px;
    color: #0f766e;
    font-size: 2.45rem;
    line-height: 1;
}

.about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-feature {
    padding: clamp(24px, 4vw, 38px);
}

.about-feature i {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 8px;
    color: #0f766e;
    background: #e6fffb;
    font-size: 1.25rem;
}

.about-feature h2 {
    margin: 18px 0 10px;
}

.about-feature p {
    color: #536171;
    line-height: 1.75;
}

.about-commitments {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-commitment {
    min-height: 148px;
    padding: 22px;
}

.about-commitment span {
    color: #db2777;
    font-weight: 900;
}

.about-commitment strong {
    display: block;
    margin-top: 18px;
    color: #132033;
    line-height: 1.35;
}

.about-destinations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-destination-card {
    display: grid;
    min-height: 168px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease;
}

.about-destination-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 118, 110, .35);
}

.about-destination-card strong {
    margin-top: 12px;
    color: #132033;
    font-size: 1.1rem;
}

.about-destination-card small {
    margin-top: 8px;
    color: #64748b;
    line-height: 1.5;
}

.about-final {
    background: #fff7ed;
}

.about-final__grid {
    align-items: start;
}

@media (max-width: 980px) {
    .about-split,
    .about-final__grid,
    .about-values-grid,
    .about-commitments,
    .about-destinations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .about-hero {
        min-height: 620px;
    }

    .about-hero__inner {
        padding: 126px 0 46px;
    }

    .about-hero h1 {
        font-size: 2.7rem;
    }

    .about-hero p {
        font-size: 1.05rem;
    }

    .about-copy h2,
    .about-final h2 {
        font-size: 2rem;
    }

    .about-stats strong {
        font-size: 2rem;
    }

    .about-split,
    .about-stats,
    .about-values-grid,
    .about-commitments,
    .about-destinations,
    .about-final__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__actions .btn,
    .about-final__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
