/* ==========================================================================
   ABOUT US PAGE STYLESHEET (FULL ARCHITECTURE)
   ========================================================================== */


/* --- CORE PAGE LAYOUT --- */

.about-page-layout {
    padding: 140px 0 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}


/* --- REUSABLE UTILITIES & HEADERS --- */

.category-meta {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--brand-accent, #2ecc71);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: black;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}


/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.about-hero {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-glass-line, rgba(255, 255, 255, 0.08));
    margin-bottom: 80px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: black;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 8px;
    max-width: 850px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: black;
    line-height: 1.6;
    margin-top: 24px;
    max-width: 720px;
}


/* ==========================================================================
   2. OUR STORY SECTION
   ========================================================================== */

.about-story-section {
    padding-bottom: 100px;
}

.about-story-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.story-rich-text p {
    font-size: 1.05rem;
    color: black;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-rich-text p:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass-line, rgba(255, 255, 255, 0.08));
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
}

.about-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ==========================================================================
   3. BRAND VALUES & MISSION
   ========================================================================== */

.about-values-section {
    padding-bottom: 100px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--surface-card-bg, #111827);
    border: 1px solid var(--border-glass-line, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 40px;
}

.value-meta {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-slate-muted, #006aff);
    letter-spacing: 0.1em;
}

.value-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-pure-white, #ffffff);
    margin: 12px 0 16px 0;
}

.value-card-text {
    color: var(--text-slate-muted, #94a3b8);
    font-size: 1rem;
    line-height: 1.6;
}

.value-card.highlight-accent-card {
    border-color: rgba(46, 204, 113, 0.25);
    background: linear-gradient(135deg, var(--surface-card-bg, #111827) 0%, rgba(46, 204, 113, 0.02) 100%);
}

.value-card.highlight-accent-card .value-meta {
    color: var(--brand-accent, #2ecc71);
}


/* ==========================================================================
   4. SOURCING CAPABILITIES (RESTRUCTURED ALTERNATING ROWS)
   ========================================================================== */

.about-expertise-section {
    padding-top: 60px;
    border-top: 1px solid var(--border-glass-line, rgba(255, 255, 255, 0.08));
}

.commodities-rows-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 60px;
}


/* Base structural flex engine for the layout */

.commodity-row {
    display: flex;
    align-items: center;
    gap: 80px;
}


/* Reverse layout modifier for alternating imagery left/right */

.commodity-row.row-reverse {
    flex-direction: row-reverse;
}


/* Image Column configuration */

.commodity-image-column {
    flex: 1;
    max-width: 50%;
}

.commodity-row-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    /* Matches the rounded image panels in your boss's version */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}


/* Text & Paragraph structural layout */

.commodity-text-column {
    flex: 1;
    max-width: 50%;
}

.commodity-row-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: black;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.commodity-row-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: black;
    margin-bottom: 16px;
}

.commodity-row-text:last-of-type {
    margin-bottom: 0;
}


/* Bold accent subtext link descriptor */

.commodity-row-text.highlight-subtext {
    margin-top: 24px;
    font-weight: 600;
    color: var(--text-pure-white, #ffffff);
}


/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .about-story-container,
    .commodity-row,
    .commodity-row.row-reverse {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }
    .commodity-image-column,
    .commodity-text-column {
        max-width: 100%;
        flex: none;
    }
    .story-image-column {
        order: -1;
        /* Image stays up top on responsive tablets/mobile phones */
    }
    .about-hero-title {
        font-size: 2.8rem;
    }
    .commodity-row-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-page-layout {
        padding-top: 100px;
    }
    .about-hero-title {
        font-size: 2.2rem;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-section-heading {
        font-size: 1.75rem;
    }
    .value-card {
        padding: 30px 24px;
    }
    .commodities-rows-container {
        gap: 80px;
    }
}