/* ---------------------------------------------------------
   BLOCK: FOUNDER STORY (POLAROID)
   --------------------------------------------------------- */
.founder-block {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(8,24,50,0.05);
}

.founder__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Content (Mobile) ── */
.founder__content { opacity: 0; transform: translateY(20px); }

.founder__story {
    border-left: 3px solid var(--color-yellow);
    padding-left: 20px;
    margin-bottom: 40px;
}
.founder__story p { margin-bottom: 16px; }
.founder__story p:last-child { margin-bottom: 0; }
.founder__story strong { color: var(--color-black); font-family: var(--font-main); font-weight: 700; }

/* ── Visual Polaroid (Mobile) ── */
.founder__visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    opacity: 0; 
    transform: translateY(20px);
}

.founder__polaroid {
    background: var(--color-white);
    border-radius: 4px;
    padding: 16px 16px 56px;
    box-shadow: 0 8px 40px rgba(8,24,50,0.12), 0 2px 8px rgba(8,24,50,0.06);
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

/* Tape strip top */
.founder__tape {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%); width: 64px; height: 28px;
    background: rgba(253,211,44,0.7); border-radius: 2px; z-index: 5;
}

.founder__photo-inner {
    aspect-ratio: 1; overflow: hidden; background: #e2e8f0;
}

.founder__img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(60%) sepia(10%); transition: filter 0.5s;
}

.founder__polaroid:hover .founder__img { filter: grayscale(0%); }

.founder__caption {
    text-align: center; margin-top: 0; padding: 16px 8px 0;
    font-family: var(--font-tagline); font-weight: 700; font-size: 14px;
    color: var(--color-black); letter-spacing: 0.05em;
}

.founder__caption-sub {
    text-align: center; font-family: var(--font-tagline); font-size: 10px;
    letter-spacing: 0.12em; text-transform: uppercase; color: #a0aec0;
    margin-top: 4px; font-weight: 700;
}

/* Back Polaroid (Hidden on Mobile for space) */
.founder__polaroid-back { display: none; }

/* Yellow slab accent */
.founder__accent {
    position: absolute; bottom: -16px; right: -16px;
    width: 80px; height: 80px; background: var(--color-yellow);
    border-radius: 12px; z-index: 0;
}

.founder__content .heading-2 {
    margin-bottom: 24px;
}

/* ── Desktop Scaling ── */
@media (min-width: 960px) {
    .founder__grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
    .founder__visual { margin: 0 0 0 auto; }
    
    .founder__polaroid { transform: rotate(-1.5deg); }
    .founder__polaroid:hover { transform: rotate(0deg) scale(1.02); }
    
    .founder__polaroid-back {
        display: block; position: absolute; top: 12px; left: -16px;
        width: 100%; background: var(--color-white); border-radius: 4px;
        padding: 16px 16px 56px; transform: rotate(3deg); z-index: 1;
        box-shadow: 0 4px 16px rgba(8,24,50,0.08);
    }
    .founder__polaroid-back-inner { aspect-ratio: 1; background: rgba(8,24,50,0.04); }
}

/* ── Animations ── */
.founder-block.is-visible .founder__content { animation: fadeUp 0.6s ease forwards; }
.founder-block.is-visible .founder__visual { animation: fadeUp 0.6s 0.2s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }