/* _parts/our_journey/components/founders_note/founders_note.css */
.oj-founders-note {
    background: var(--bg-light, #f8f3ea);
    padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 4vw, 4rem);
    position: relative;
}

.oj-fn-inner {
    max-width: 1365px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 8vw, 6rem);
}

/* ── Letter (image + content) ─────────────── */
.oj-fn-letter {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.oj-fn-figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--surface, #fffdf9);
}

.oj-fn-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02);
    transition: transform 1.4s ease;
}

.oj-fn-figure:hover img {
    transform: scale(1.03);
}

.oj-fn-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oj-fn-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
}

.oj-fn-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--primary-dark);
    line-height: 1;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.oj-fn-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

.oj-fn-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted, #6b6258);
    margin: 0 0 1.25rem;
    text-align: left;
}

/* ── Belief Statement ─────────────────────── */
.oj-fn-statement {
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.oj-fn-statement-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--accent);
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.oj-fn-statement-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--primary-dark);
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.oj-fn-statement-text em {
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

/* ── Outro & Signature ────────────────────── */
.oj-fn-outro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.oj-fn-outro-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 2.5rem;
}

.oj-fn-signature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.oj-fn-signature-with {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.oj-fn-signature-names {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: var(--primary);
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

@media (min-width: 900px) {
    .oj-fn-letter {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 5rem;
    }
}
