/* ===========================
   ABOUT PAGE
=========================== */

.about-hero {
    min-height: auto;
    padding: 168px 0 120px;
    background:
        radial-gradient(circle at 18% 40%, rgba(214, 163, 35, .06), transparent 30%),
        #020202;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

.about-copy h1 {
    max-width: 640px;
    margin-top: 32px;
    color: #f7f7f7;
    font-size: clamp(52px, 6.5vw, 88px);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
}

.about-copy h1 span {
    color: var(--gold);
}

.about-copy > p:last-of-type {
    max-width: 560px;
    margin-top: 32px;
    color: #8b8b92;
    font-size: 18px;
    line-height: 1.8;
}

.about-copy .eyebrow {
    margin-bottom: 0;
}

/* Stats 2×2 grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
    max-width: 480px;
}

.about-stats article {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    align-items: center;
    min-height: 100px;
    border: 1px solid rgba(255, 255, 255, .05);
    background: rgba(8, 8, 8, .85);
    padding: 24px 26px;
    transition: border-color .3s ease;
}

.about-stats article:hover {
    border-color: rgba(214, 163, 35, .2);
}

.stat-icon {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.about-stats strong {
    color: #f2f2f2;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.about-stats span {
    color: #67676f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .32em;
    text-transform: uppercase;
}

/* Hero image + badge */
.about-image {
    position: relative;
    overflow: visible;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #080808;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .75));
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-badge {
    position: absolute;
    right: -24px;
    bottom: 48px;
    z-index: 2;
    min-width: 220px;
    padding: 22px 28px;
    background: linear-gradient(135deg, #ff8a42, #ff5a0a);
    box-shadow: 0 18px 40px rgba(211, 155, 30, .28);
}

.about-badge strong {
    display: block;
    color: #050505;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.about-badge span {
    display: block;
    margin-top: 4px;
    color: #1a1200;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* Focus areas */
.focus-shell {
    padding: 0 0 160px;
    background: #020202;
}

.focus-panel {
    min-height: auto;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 88px 64px 72px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .012), transparent),
        #030303;
}

.focus-panel .section-heading h2 {
    font-size: clamp(48px, 5.5vw, 72px);
}

.focus-panel .section-heading p {
    max-width: 680px;
    margin-inline: auto;
    font-size: 17px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 80px;
}

.focus-grid article {
    min-height: 240px;
    border: 1px solid rgba(255, 255, 255, .045);
    background: linear-gradient(180deg, #080808, #050505);
    padding: 32px 28px;
    transition: border-color .3s ease, transform .3s ease;
}

.focus-grid article:hover {
    border-color: rgba(214, 163, 35, .2);
    transform: translateY(-4px);
}

.focus-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(214, 163, 35, .2);
    background: rgba(214, 163, 35, .06);
    color: var(--gold);
}

.focus-icon svg {
    width: 20px;
    height: 20px;
}

.focus-grid h3 {
    margin-top: 24px;
    color: #f4f4f4;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.focus-grid p {
    margin-top: 16px;
    color: #737373;
    font-size: 13px;
    line-height: 1.8;
}

/* Footer social (shared with index) */
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    color: var(--gold);
    transition: background .3s ease, border-color .3s ease;
}

.social-links a:hover {
    background: rgba(214, 163, 35, .12);
    border-color: rgba(214, 163, 35, .3);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

.social-links img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-links a,
.social-links a:hover {
    border-color: transparent;
    background: transparent;
}

@media (max-width: 1080px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-badge {
        right: 16px;
        bottom: 24px;
    }
}

@media (max-width: 900px) {
    .about-hero {
        padding: 128px 0 72px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-stats {
        max-width: 100%;
    }

    .about-image,
    .about-image img {
        min-height: 420px;
    }

    .about-badge {
        right: 20px;
        bottom: 20px;
    }

    .focus-panel {
        padding: 52px 28px 40px;
    }

    .focus-grid {
        margin-top: 48px;
    }
}

@media (max-width: 640px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-image,
    .about-image img {
        min-height: 340px;
    }

    .about-badge {
        right: 12px;
        bottom: 16px;
        min-width: 180px;
        padding: 16px 20px;
    }

    .about-badge strong {
        font-size: 15px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }
}
