/* ==========================================================================
   PHILOSOPHY / ABOUT PAGE STYLES
   ========================================================================== */

/* Hero Image Section */
.about-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    /* Darken for text contrast */
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

.hero-text-overlay h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* Editorial Grids */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.editorial-grid.reverse-layout {
    grid-template-columns: 1.2fr 1fr;
}

@media (min-width: 951px) {
    .editorial-grid.reverse-layout .editorial-col:first-child {
        order: 2;
    }

    .editorial-grid.reverse-layout .img-col {
        order: 1;
    }
}

.editorial-col {
    position: relative;
}

.chapter-num {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.editorial-col h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.editorial-col p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Magazine Dropcap */
.dropcap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 0.1rem;
    padding-right: 0.5rem;
    padding-left: 0.1rem;
    font-family: var(--font-heading);
    color: var(--primary);
}

.img-col img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


/* Sourcing Section Highlights */
.highlight-bg {
    background: #ebe9e2;
}

.principles {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prin-item {
    border-left: 2px solid var(--primary);
    padding-left: 1.5rem;
}

.prin-item strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.prin-item p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}


/* Responsive */
@media (max-width: 950px) {

    .editorial-grid,
    .editorial-grid.reverse-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .editorial-col h2 {
        font-size: 2.5rem;
    }
}