/* FOUNDER — full-bleed Kathy photo, headline upper-left, copy upper-right,
   signature graphic lower-right, social pills below copy */

.founder {
    position: relative;
    background: var(--clr-red);
    color: #fff;
    overflow: hidden;
    min-height: 680px;
}

/* Photo as full-bleed background. 2560x1399 — Kathy is in the
   right portion of frame. Cover fully (no offsets) so the right
   edge always reaches the section boundary. Slight transform-scale
   provides the mockup's zoom level, with origin biased toward Kathy
   so the visible crop favors her face/body. */
.founder-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 28%;
    transform: scale(1.1);
    transform-origin: 70% 35%;
    z-index: 0;
    pointer-events: none;
}

/* Decorative blue circles */
.founder-circle {
    position: absolute;
    height: auto;
    z-index: 1;
    pointer-events: none;
}
/* Mockup: sits in the red space below her right arm (holding glasses)
   — lower than the original ~30% but kept above the body paragraph
   so it doesn't intrude on text. */
.founder-circle-paragraph {
    top: 33%;
    right: 24%;
    width: 56px;
    transform: rotate(-12deg);
}
/* Mockup: sits just under her elbow / above the pills */
.founder-circle-pills {
    top: 73%;
    left: 32%;
    width: 60px;
    transform: rotate(10deg);
}

.founder-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    /* Top padding pushes the headline DOWN from the top edge (mockup) */
    padding: 260px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 3-row layout: headline top, body text mid, pills/signature bottom */
    grid-template-rows: auto 1fr auto;
    gap: 0 80px;
    align-items: start;
    min-height: 600px;
}

/* Headline — upper-left, large, all caps, light weight */
.founder-headline-col {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    color: #fff;
}

.founder-eyebrow {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.8rem, 5.2vw, 4.9rem);
    line-height: 1;
    letter-spacing: -0.005em;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
}
.founder-eyebrow .line { display: block; }

.founder-divider {
    width: 320px;
    max-width: 85%;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Body copy — right column, vertically centered. Right edge is
   anchored with margin-right that matches .founder-signature so
   the signature sits directly underneath the paragraph. Width is
   expanded to fit the mockup's 24px body type at ~4 lines/paragraph. */
.founder-text-col {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    color: #fff;
    max-width: 520px;
    margin-right: 50px;
    padding-top: 0;
    padding-bottom: 0;
}

.founder-body {
    font-family: var(--font-body);
    font-weight: 100;
    /* Locked to 24px per mockup spec */
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 18px;
}

/* Connect-with-Kathy pill row — lower-left grid cell */
.founder-connect {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    color: #fff;
    margin-top: auto;
}
.founder-connect-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #fff;
    margin-bottom: 12px;
}

.founder-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.founder-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--clr-navy);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--clr-navy);
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.62rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: transform 0.18s ease, background 0.18s ease;
    text-decoration: none;
    white-space: nowrap;
}
.founder-pill:hover {
    background: var(--clr-navy);
    color: #fff;
    transform: translateY(-1px);
}

.pill-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.pill-text { display: inline-block; }

/* Kathy signature graphic — sits over her stomach, directly under
   her left arm. Spans the full grid so it can extend left past
   col 2's start while still right-anchored to match body copy.
   Sized ~30% smaller than the original visual target. */
.founder-signature {
    grid-column: 1 / 3;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    width: clamp(266px, 25vw, 364px);
    height: auto;
    margin: 8px 321px -16px 0;
    /* The signature PNG is peach/coral. Tint it white via filter. */
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* ---------- TABLET + PHONE: photo becomes a banner, content stacks below ---------- */
@media (max-width: 1024px) {
    .founder {
        min-height: auto;
        background: var(--clr-red);
    }
    .founder-bg {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 11;
        object-fit: cover;
        object-position: 60% 18%;
        transform: none;
    }
    .founder-circle { display: none; }

    .founder-inner {
        display: flex;
        flex-direction: column;
        padding: 48px 24px 56px;
        gap: 24px;
        min-height: 0;
        max-width: 640px;
    }
    .founder-headline-col,
    .founder-text-col,
    .founder-connect,
    .founder-signature {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
        max-width: 100%;
        justify-self: stretch;
        align-self: stretch;
    }

    .founder-eyebrow {
        font-size: clamp(2.4rem, 8vw, 3.6rem);
        margin-bottom: 14px;
    }
    .founder-divider { width: 220px; }

    .founder-text-col { padding-top: 0; }
    .founder-body {
        font-size: 18px;
        font-weight: 300;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .founder-signature {
        width: clamp(180px, 50vw, 260px);
        margin: 6px 0 0;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .founder-bg { aspect-ratio: 4 / 5; }
    .founder-inner { padding: 36px 20px 48px; gap: 20px; }
    .founder-eyebrow { font-size: clamp(2rem, 10vw, 2.6rem); }
    .founder-body { font-size: 16px; }
    .founder-pill { font-size: 0.58rem; padding: 7px 12px; }
}
