/* public/assets/css/about_editorial.css */

:root {
    /* Palette: Earthy, Calm, Premium */
    --c-bg: #FAF9F6;
    /* Off-white / Eggshell */
    --c-text-main: #2C2C2C;
    /* Soft Black */
    --c-text-muted: #66605B;
    /* Warm Grey */
    --c-accent: #B08D55;
    /* Muted Gold / Bronze */
    --c-green-deep: #2A3B2A;
    /* Deep Forest */

    --f-serif: 'Playfair Display', serif;
    --f-sans: 'Outfit', sans-serif;

    --s-container: 1400px;
    --s-pad: 8vw;
    /* Responsive padding */
}

/* Base */
body.about-page {
    background-color: var(--c-bg);
    color: var(--c-text-main);
    font-family: var(--f-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--f-serif);
    font-weight: 400;
    /* Elegant thin */
    line-height: 1.1;
    margin: 0;
}

.container-editorial {
    max-width: var(--s-container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.text-display {
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -0.02em;
}

.text-xxl {
    font-size: clamp(2rem, 4vw, 4rem);
}

.text-xl {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.text-lg {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.text-gold {
    color: var(--c-accent);
}

.text-serif {
    font-family: var(--f-serif);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--c-accent);
    margin: 2rem 0;
}

/* Sections */

/* 1. Hero: Editorial Split Layout */
.sect-hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--c-green-deep);
    /* Fallback */
}

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background-color: #1a2f1a;
    /* Darker Forest Green */
    color: #FAF9F6;
    position: relative;
}

.hero-image-side {
    flex: 1.2;
    /* Image takes slightly more width */
    background: url('../../assets/images/about_beekeeper.jpg') center/cover no-repeat;
    min-height: 500px;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    /* Editorial diagonal cut */
    margin-left: -50px;
    /* Overlap effect */
}

.hero-eyebrow {
    font-family: var(--f-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2rem;
    color: var(--c-accent);
    /* Gold */
    display: block;
}

/* Typography Overrides for Split */
.text-display {
    font-size: clamp(3.5rem, 5vw, 6rem);
    line-height: 1.05;
    color: #FAF9F6;
}

/* Mobile */
@media (max-width: 900px) {
    .sect-hero-split {
        flex-direction: column-reverse;
        /* Image on top, Text below */
        height: auto;
    }

    .hero-image-side {
        width: 100%;
        height: 50vh;
        flex: none;
        margin-left: 0;
        clip-path: none;
    }

    .hero-content-side {
        padding: 3rem 1.5rem;
        flex: none;
    }
}

/* 2. Narrative: Split / Asymmetric */
.sect-narrative {
    padding: var(--s-pad) 0;
}

.grid-narrative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}

.narrative-img-box {
    position: relative;
}

.narrative-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* Minimal radius */
}

/* Overlapping text effect */
.narrative-quote {
    margin-top: -3rem;
    /* Overlap */
    margin-left: 3rem;
    background: var(--c-bg);
    padding: 2rem;
    font-family: var(--f-serif);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--c-green-deep);
    border-left: 2px solid var(--c-accent);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 3. The Difference: Clean Matrix */
.sect-difference {
    padding: var(--s-pad) 0;
    background-color: white;
}

.diff-header {
    text-align: center;
    margin-bottom: 5rem;
}

.grid-diff {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns */
    gap: 0;
    /* Connected */
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}

.diff-item {
    padding: 3rem 2rem;
    border-right: 1px solid #EAEAEA;
    transition: background 0.3s;
}

.diff-item:last-child {
    border-right: none;
}

.diff-item:hover {
    background: #FCFCFC;
}

.diff-num {
    display: block;
    font-family: var(--f-serif);
    font-size: 2rem;
    color: var(--c-accent);
    /* Muted Gold */
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.diff-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.diff-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

/* 4. Promise: Minimal List */
.sect-promise {
    padding: var(--s-pad) 0;
    /* Two column layout: Title left, List right */
}

.grid-promise {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
}

.promise-list-clean {
    list-style: none;
    padding: 0;
}

.promise-item-clean {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    font-family: var(--f-serif);
    font-size: 1.5rem;
    color: var(--c-green-deep);
}

.promise-item-clean:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.promise-icon {
    font-size: 1rem;
    color: var(--c-accent);
    margin-right: 1.5rem;
    transform: translateY(-2px);
}

/* 5. Mission/Vision: Modern Cards */
.sect-mv {
    background-color: var(--c-green-deep);
    color: white;
    padding: 8rem 0;
    /* More breathing room */
    position: relative;
    overflow: hidden;
}

/* Subtle background accent? */
.sect-mv::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 141, 85, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mv-grid-text {
    max-width: 1200px;
    /* Wider for side-by-side */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Side by Side */
    gap: 4rem;
    align-items: stretch;
}

.mv-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Thin glass border */
    padding: 4rem 3rem;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    /* Very subtle fill */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.mv-card h3 {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-accent);
    /* Bronze/Gold */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mv-card h3::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
}

.mv-card p {
    font-family: var(--f-serif);
    font-size: 1.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* Mobile Stack */
@media (max-width: 900px) {
    .mv-grid-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-card {
        padding: 3rem 1.5rem;
    }

    .mv-card p {
        font-size: 1.5rem;
    }
}

/* CTA */
.sect-cta {
    padding: 6rem 0 4rem 0;
    /* Reduced bottom padding to fix footer gap */
    text-align: center;
    background: white;
}

/* Home Page Style Button */
.btn-editorial {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--c-accent);
    /* Gold */
    color: #2D2720;
    /* Dark text */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 10px 25px rgba(176, 141, 85, 0.4);
    transition: all 0.3s ease;
    margin-top: 2rem;
    border: none;
}

.btn-editorial:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(176, 141, 85, 0.6);
    background-color: #DA8E00;
    /* Darker Gold on hover */
    color: #2D2720;
}

/* Responsive */
@media (max-width: 900px) {

    .grid-narrative,
    .grid-diff,
    .grid-promise {
        grid-template-columns: 1fr;
    }

    .grid-diff {
        border: none;
    }

    .diff-item {
        border-right: none;
        border-bottom: 1px solid #EAEAEA;
        padding: 2rem 0;
    }

    .text-display {
        font-size: 3rem;
    }

    .hero-overlay-text {
        padding-left: 2rem;
    }

    .narrative-quote {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}