/* =========================================
   ABOUT PAGE STYLES (about.css)
   ========================================= */

/* Hero Styles now handled in css/style.css globally */

.about-content {
    padding-top: 60px;
    background-color: #fcfbf9;
    /* Premium Off-White */
    margin-bottom: 0px;
    padding-bottom: 0;
}

.process-section {
    background: inherit;
    padding: 60px 80px 160px;
    margin-top: -40px;
}

.why-section {
    padding: 10px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.process-card {
    background: transparent;
    padding: 30px;
    border-radius: 12px;
    transition: transform .4s ease, box-shadow .4s ease;
    border: 1px solid rgba(134, 63, 29, 0.05);
    box-shadow: 0 10px 25px rgba(134, 63, 29, 0.08);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.text-block p {
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.image-block img {
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-bg-secondary);
}

/* TEAM / STATS SECTION */
/* TEAM / STATS SECTION */
.team-section {
    background-color: var(--color-bg-secondary);
    /* Restored to light beige */
    padding: 50px 0;
    /* Reduced from 80px */
    color: var(--color-text-primary);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
    /* Reduced gap */
}

.stat-item .number {
    display: block;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--color-text-primary);
    /* Dark text for visibility */
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .image-block img {
        box-shadow: none;
    }
}

/* ===== CONFIDENT STAT REVEAL (LUXURY) ===== */

.reveal-stat {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease,
        filter 0.9s ease;
}

.reveal-stat.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-stat .number {
    display: block;
    font-size: 3.8rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 12px;
}

.stat-line {
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 auto 12px;
    transition: width 0.8s ease;
}

.reveal-stat.visible .stat-line {
    width: 72px;
}

.reveal-stat .label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--color-text-primary);
}

.stats-grid {
    gap: 60px;
}

/* About Page Specific Layout Fixes */
.about .section:last-of-type {
    padding-bottom: 0 !important;
}