/* =========================================================
   ABOUT.CSS — Premium editorial style
   ========================================================= */

body.about-dark {
    background-color: var(--bg-page);
    color: var(--text-primary);
}

/* === HERO === */
.about-hero {
    background: var(--bg-page);
    padding: 60px 0 60px;
    text-align: center;
}

.about-label {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.15);
    padding: .4rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,.5);
    margin-bottom: 1rem;
    letter-spacing: .3px;
}

.about-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* === STORY === */
.about-story {
    background: var(--bg-page);
    padding: 40px 0 70px;
}

.about-story-inner {
    display: flex;
    align-items: stretch;
    gap: 3.5rem;
}

.about-story-photo {
    flex: 1 1 0;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.06);
    transition: transform .4s ease, box-shadow .4s ease;
}

.about-photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 72px rgba(0,0,0,.6);
}

.about-story-content {
    flex: 1;
}

.about-story-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about-story-content p {
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    font-size: .97rem;
    margin-bottom: .8rem;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: .6rem;
    margin-bottom: .6rem;
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.about-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    box-shadow: 0 0 6px rgba(255,255,255,.15);
}

/* === FACTS === */
.about-facts {
    background: var(--bg-page);
    padding: 0 0 80px;
}

.about-facts-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
    margin-bottom: 2.5rem;
    letter-spacing: .3px;
}

.about-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.about-fact {
    text-align: center;
    padding: 1.5rem 1rem;
}

.about-fact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,.1);
    line-height: 1;
    margin-bottom: .6rem;
    letter-spacing: -1px;
}

.about-fact p {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    line-height: 1.5;
    margin: 0;
}

/* Extra text under facts */
.about-extra {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-extra p {
    color: rgba(255,255,255,.5);
    font-size: .93rem;
    line-height: 1.6;
    margin-bottom: .5rem;
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .about-story-inner {
        flex-direction: column;
        gap: 2rem;
    }
    .about-story-photo {
        flex: none;
        max-width: 100%;
    }
    .about-photo {
        max-height: 400px;
    }
    .about-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-hero {
        padding: 50px 0 40px;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 1.75rem;
    }
    .about-facts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .about-fact-number {
        font-size: 2rem;
    }
}
