
.about-page {
    background: var(--navbar-bg);
    overflow: hidden;
}


.about-hero {
    padding: 70px 24px 60px;
}

.about-hero__inner {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-hero__content {
    max-width: 560px;
}

.about-hero__kicker {
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.about-hero__title {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: clamp(32px, 4.2vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-hero__title span {
    color: var(--primary-color);
}

.about-hero__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-hero__text p {
    color: var(--text-color);
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.8;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(208,108,49,0.18);
    transition: transform .25s ease, background .25s ease;
}

.about-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}



.about-hero__right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}



.about-hero__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-highlight {
    padding: 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-highlight h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.about-highlight p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
}



.home-hero__bg {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.home-hero__bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.home-hero__bg-slide.is-active {
    opacity: 1;
}


.about-team {
    padding: 10px 24px 70px;
}

.about-team__inner {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-team__kicker {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-team__title {
    color: var(--text-color);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-team__lead {
    margin-top: 18px;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.8;
    max-width: 720px;
}

.about-team__tags {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-team__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 16px;
    background: rgba(195, 197, 148, 0.35);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-team__tag:nth-child(2n) {
    background: rgba(208, 108, 49, 0.12);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--text-color);
}


.about-values {
    padding: 10px 24px 90px;
}

.about-values__inner {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-values__kicker {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-values__title {
    color: var(--text-color);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-values__lead {
    margin-top: 18px;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.8;
    max-width: 720px;
}

.about-values__grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.about-value-card {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-value-card h3 {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-color);
}

.about-value-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}


.about-services {
    padding: 70px 24px;
    background: transparent;
}

.about-services__inner {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-services__kicker {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-services__title {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
}

.about-services__lead {
    margin: 20px 0 0;
    max-width: 700px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.8;
}

.about-services__grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.about-services__card {
    padding: 18px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-services__card h3 {
    font-weight: 800;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-color);
}

.about-services__card p {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
}


.location-section {
    padding: 60px 24px 90px;
}

.location-section__heading {
    max-width: var(--container, 1180px);
    margin: 0 auto 40px;
    text-align: left;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.location-section__kicker {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.location-section__title {
    color: var(--text-color);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.location-section__description {
    margin-top: 16px;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.8;
}



.location-map {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    border: 8px solid rgba(255,255,255,0.7);
}

#map {
    width: 100%;
    height: 520px;
}



.custom-marker {
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}


.leaflet-popup-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}


@media (max-width: 980px) {

    .about-hero__inner {
        grid-template-columns: 1fr;
    }

    .about-hero__content {
        max-width: 100%;
    }

    .about-hero__right {
        width: 100%;
    }

    .about-hero__highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {

    .about-hero {
        padding: 60px 18px;
    }

    .about-hero__highlights {
        grid-template-columns: 1fr;
    }

    .home-hero__bg {
        height: 180px;
    }

    .location-section {
        padding: 20px 18px 70px;
    }

    .about-values {
        padding: 10px 18px 70px;
    }

    .about-values__lead {
        font-size: 16px;
    }

    .location-map {
        border-radius: 24px;
    }

    #map {
        height: 400px;
    }

    .about-hero__text p,
    .location-section__description {
        font-size: 16px;
    }
}