/* ===== About page ===== */

/* message */
.abt-message {
    padding: 120px 0;
    background: #141414;
    overflow: hidden;
}
@media (max-width: 991px) { .abt-message { padding: 80px 0; } }
@media (max-width: 767px) { .abt-message { padding: 60px 0; } }

/* values */
.abt-values {
    padding: 100px 0;
    background: #0c0d0f;
    overflow: hidden;
}
@media (max-width: 767px) { .abt-values { padding: 70px 0; } }

.abt-value {
    border-top: 1px solid rgba(203,163,115,0.2);
    padding-top: 28px;
    padding-right: 32px;
}
@media (max-width: 767px) { .abt-value { padding-right: 0; } }

.abt-value__num {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(203,163,115,0.22);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
    display: block;
}

/* company */
.abt-company {
    padding: 0 0 100px;
    background: #141414;
    position: relative;
    z-index: 1;
}
.abt-company .container { padding-top: 70px; }
@media (max-width: 767px) {
    .abt-company { padding-bottom: 70px; }
    .abt-company .container { padding-top: 50px; }
}

.abt-table-row {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    gap: 32px;
    align-items: baseline;
}
.abt-table-row:last-child { border-bottom: none; }

.abt-table-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--base-color);
    flex-shrink: 0;
    width: 110px;
    padding-top: 3px;
}

.abt-table-value {
    font-size: 14px;
    color: #aaa;
    line-height: 1.85;
    letter-spacing: 0.03em;
}

/* access */
.abt-access {
    position: relative;
    height: 580px;
}
@media (max-width: 991px) { .abt-access { height: auto; } }

.abt-access__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: 0;
}
@media (max-width: 991px) {
    .abt-access__map {
        position: relative;
        height: 380px;
        inset: auto;
        display: block;
    }
}

.abt-access__card {
    background: rgba(20,20,22,0.95);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 44px 48px;
    width: 360px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
@media (max-width: 575px) { .abt-access__card { padding: 32px 24px; } }
@media (max-width: 991px) {
    .abt-access__card { width: 100%; border-radius: 0; border-left: none; border-right: none; border-bottom: none; }
}

/* hero parallax bg */
#abtHero { min-height: 50vh; }
#abtHero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
#abtHero .left-panel,
#abtHero .container { position: relative; z-index: 2; }
.abt-hero-bg {
    position: absolute;
    top: -200px;
    bottom: -200px;
    left: 0;
    right: 0;
    background-image: url(../img/about/about_header.jpg);
    background-size: cover;
    background-position: center center;
    z-index: 0;
    will-change: transform;
}
@media (max-width: 767px) {
    .abt-hero-bg { top: -60px; bottom: -60px; }
}
