/* ==========================================================================
   About Us Section ([about_us_section])
   ========================================================================== */

.about-us {
    background: #fff;
    color: #1a1a1d;
    font-family: 'Montserrat', sans-serif;
}

.about-us *,
.about-us *::before,
.about-us *::after {
    box-sizing: border-box;
}

.about-us h1,
.about-us h2,
.about-us h3,
.about-us h4,
.about-us h5,
.about-us h6 {
    font-family: 'Montserrat', sans-serif !important;
}

.about-us p,
.about-us h2,
.about-us ul,
.about-us li {
    padding: 0;
}

.about-us__container {
    width: 100%;
    max-width: 1208px;
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ---------- Media column ---------- */

.about-us__media {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
}

.about-us__placeholder {
    position: absolute;
    inset: 0;
    background-color: #1a1a1d;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px);
    overflow: hidden;
}

.about-us__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-us__placeholder-caption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 8px;
    letter-spacing: 0.3px;
}

.about-us__badge {
    position: absolute;
    right: 0;
    top: 30px;
    background: #f26622;
    color: #fff;
    padding: 20px 28px;
    min-width: 160px;
    text-align: left;
}

.about-us__badge-number {
    display: block;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.about-us__badge-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 700;
}

/* ---------- Content column ---------- */

.about-us__content {
    min-width: 0;
}

.about-us__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f26622;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.about-us__eyebrow-bar {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #f26622;
}

.about-us__headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    color: #1a1a1d;
    text-transform: uppercase;
    margin: 12px 0 24px;
    letter-spacing: -0.5px;
}

.about-us__subhead {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    color: #6b6b70;
    margin: 0 0 24px;
    line-height: 1.2;
}

.about-us__paragraph {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 12px;
    padding: 0;
}

.about-us__paragraph:last-of-type {
    margin-bottom: 0;
}

.about-us__divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 32px 0;
}

/* ---------- Stats row ---------- */

.about-us__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0 0 32px;
}

.about-us__stat {
    position: relative;
    list-style: none;
    list-style-type: none;
}

.about-us__stat::marker {
    content: none;
    display: none;
}

.about-us__stat::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #e5e5e5;
}

.about-us__stat:first-child::before {
    content: none;
}

.about-us__stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1d;
    line-height: 1.1;
}

.about-us__stat-value--accent {
    color: #f26622;
}

.about-us__stat-label {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
}

/* ---------- Actions / buttons ---------- */

.about-us__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-us__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    line-height: 1;
    cursor: pointer;
}

.about-us__btn--primary {
    background: #f26622;
    color: #fff;
    border: 1px solid #f26622;
}

.about-us__btn--primary:hover,
.about-us__btn--primary:focus {
    background: #d4551a;
    border-color: #d4551a;
    color: #fff;
}

.about-us__btn--secondary {
    background: #fff;
    color: #1a1a1d;
    border: 1px solid #1a1a1d;
}

.about-us__btn--secondary:hover,
.about-us__btn--secondary:focus {
    background: #1a1a1d;
    color: #fff;
}

.about-us__btn-arrow {
    font-size: 16px;
    line-height: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .about-us__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-us__media {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-us__container {
        padding: 56px 0;
    }

    .about-us__headline {
        font-size: 32px;
    }

    .about-us__badge {
        padding: 14px 20px;
        min-width: 130px;
        top: 20px;
    }

    .about-us__badge-number {
        font-size: 34px;
    }

    .about-us__stats {
        gap: 40px;
    }

    .about-us__stat:not(:first-child)::before {
        left: -20px;
    }

    .about-us__stat-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-us__container {
        padding: 40px 0;
    }

    .about-us__stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-us__stat {
        padding: 16px 0;
        border-top: 1px solid #e5e5e5;
    }

    .about-us__stat::before {
        content: none;
    }

    .about-us__stat:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .about-us__actions .about-us__btn {
        width: 100%;
    }
}
