/* ==========================================================================
   Founder page — A Note from Our Founder
   ========================================================================== */

.page-founder .page-content {
    background-color: #E2D6C4;
}

.founder-hero {
    position: relative;
    padding: clamp(48px, 6vw, 88px) 0 clamp(28px, 3.5vw, 40px);
    text-align: center;
    overflow: hidden;
}

.founder-hero::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: min(480px, 88vw);
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(245, 81, 28, 0.18) 0%, transparent 72%);
    pointer-events: none;
}

.founder-hero__inner {
    position: relative;
    z-index: 1;
    max-width: min(900px, 100%);
    margin: 0 auto;
}

.founder-hero__eyebrow {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #757575;
    margin-bottom: clamp(16px, 2vw, 24px);
}

.founder-hero__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #181818;
    margin: 0;
}

.founder-hero__title-line {
    display: block;
}

.founder-main {
    padding: 0 0 clamp(80px, 10vw, 120px);
}

.founder-main__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.founder-note {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 4.5vw, 64px);
    align-items: start;
}

.founder-note__media {
    position: sticky;
    top: calc(var(--header-height, 72px) + 24px);
    min-width: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: clamp(18px, 2vw, 28px);
    background-color: #D4C8B6;
    box-shadow: 0 22px 50px rgba(24, 24, 24, 0.1);
}

.founder-note__media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.founder-note__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-note__content {
    min-width: 0;
    max-width: 620px;
    padding-top: clamp(4px, 1vw, 12px);
}

.founder-note__subtitle {
    margin: 0 0 18px;
    font-family: var(--font-serif);
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    color: #181818;
}

.founder-note__rule {
    display: block;
    width: 52px;
    height: 2px;
    margin: 0 0 clamp(22px, 2.5vw, 32px);
    background-color: #F5511C;
}

.founder-note__text {
    margin: 0 0 1.15em;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.78;
    letter-spacing: 0.01em;
    color: #4A4A4A;
}

.founder-note__text:first-of-type {
    font-size: clamp(15px, 1.15vw, 18px);
    color: #181818;
}

.founder-note__signoff {
    margin: clamp(28px, 3.5vw, 40px) 0 0;
    padding-top: clamp(20px, 2.4vw, 28px);
    border-top: 1px solid rgba(24, 24, 24, 0.12);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-note__name {
    font-family: var(--font-serif);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 400;
    line-height: 1.2;
    color: #181818;
}

.founder-note__role {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F5511C;
}

@media (max-width: 900px) {
    .founder-note {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .founder-note__media {
        position: relative;
        top: auto;
        max-width: 380px;
        width: 100%;
        margin: 0 auto;
        aspect-ratio: 3 / 4;
    }

    .founder-note__content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .founder-main {
        padding-bottom: 64px;
    }

    .founder-hero__title {
        font-size: clamp(30px, 8.5vw, 42px);
    }

    .founder-note__subtitle {
        font-size: clamp(22px, 6.5vw, 30px);
    }
}
