/* ── Hero-sub override (company needs 680px, global uses 620px) ── */
.hero-sub {
    max-width: 680px;
}

/* ── Origin Section (grey box, two-column) ──────── */
.origin-section {
    background-color: var(--warm-grey);
    padding: 64px 72px;
    max-width: 1300px;
    margin: 0 auto 32px auto;
    border-radius: 24px;
}
.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.origin-headline {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 20px;
}
.origin-body {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}
.milestones {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.milestone {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.milestone:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.milestone h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}
.milestone p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* ── Team Section ───────────────────────────────── */
.team-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 80px;
}
.team-header { margin-bottom: 56px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}
.team-member {
    text-align: center;
}
.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    background: var(--warm-grey);
}
.member-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}
.member-title {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}
.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 16px;
}
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.social-link {
    width: 20px;
    height: 20px;
    color: var(--light-gray);
    transition: color 0.2s ease;
}
.social-link:hover { color: var(--black); }
.social-link svg { width: 100%; height: 100%; }

/* ── Thesis Section ─────────────────────────────── */
.thesis-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 80px 80px 80px;
}
.thesis-inner {
    max-width: 780px;
}
.thesis-headline {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 28px;
}
.thesis-body {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

/* ── MOBILE OVERRIDES (page-specific) ────────────── */
@media (max-width: 1024px) {
    .origin-section { padding: 40px 24px; margin: 0 12px 12px 12px; }
    .origin-grid { grid-template-columns: 1fr; gap: 40px; }
    .origin-headline { font-size: 28px; }

    .team-section { padding: 64px 24px; }
    .team-header { margin-bottom: 40px; }
    .section-headline { font-size: 28px; }
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .profile-pic { width: 140px; height: 140px; }
    .member-bio { font-size: 13px; }

    .thesis-section { padding: 32px 24px 64px 24px; }
    .thesis-headline { font-size: 28px; }
    .thesis-body { font-size: 16px; }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; gap: 48px; }
    .profile-pic { width: 150px; height: 150px; }
}
