/* About Page (Our Story & Philosophy) Styles */
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--moss-dark); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-glow); }

body {
    background-color: var(--moss-dark);
    color: var(--void);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section { position: relative; overflow: hidden; }

@keyframes gentle-breath {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.03); opacity: 1; }
}
.breathe-element { animation: gentle-breath 4s ease-in-out infinite; }

/* ── STORY SPLIT IMAGE ── */
.story-image-wrap {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

/* ── VIDEO EMBED CONTAINER ── */
.video-embed-wrap {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    position: relative;
}

/* ── PILLAR CARD H1 ── */
.about-pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 161, 6, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ── MANIFESTO ACCENT BLOCK ── */
.manifesto-box {
    position: relative;
    border-left: 2px solid var(--gold-glow);
    padding-left: 24px;
}

/* ── PARALLAX OR FLOATING LEAF ACCENTS ── */
.about-decor-leaf {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}
