/* ==================== ABOUT PAGE ==================== */

/* ============ HERO ============ */
.about-hero {
    position: relative;
    padding: 72px 0 96px;
    overflow: hidden;
    background: var(--cream-50);
}

.about-hero__blob {
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 40% 40%, var(--clay-100), var(--cream-100) 70%);
    border-radius: var(--radius-blob);
    top: 20px;
    left: -180px;
    opacity: 0.6;
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

.about-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-hero__photo-col {
    position: relative;
    min-width: 0;
}

.about-hero__photo {
    aspect-ratio: 4/5;
    border-radius: var(--radius-blob);
    background: linear-gradient(160deg, var(--sage-100), var(--clay-100));
    position: relative;
    box-shadow: var(--shadow-photo);
    overflow: hidden;
}

.about-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__accent-dot {
    position: absolute;
    top: 32px;
    right: -32px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--terra-500);
    opacity: 0.9;
    z-index: -1;
}

.about-hero__text { max-width: 560px; }

.about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-hero__eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--primary);
    flex-shrink: 0;
}

.about-hero__name {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.98;
    color: var(--text);
}

.about-hero__role {
    margin-top: 16px;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.02em;
    font-style: italic;
    font-weight: 300;
}

.about-hero__bio {
    margin-top: 28px;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
}

.about-hero__bio + .about-hero__bio {
    margin-top: 16px;
}

.about-hero__cta-row {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============ PILLARS ============ */
.about-pillars {
    padding: 64px 0;
    background: var(--cream-100);
}

.about-pillars__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.about-pillars__head h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-top: 14px;
}

.about-pillars__head p {
    margin-top: 14px;
    color: var(--text-muted);
}

.about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-pillar {
    padding: 48px 40px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform var(--dur-base), border-color var(--dur-base), box-shadow var(--dur-base);
}

.about-pillar:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

.about-pillar__num {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 28px;
}

.about-pillar h3 {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.about-pillar p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ EDUCATION / TIMELINE ============ */
.about-education {
    padding: 64px 0;
}

.about-education__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 80px;
}

.about-education__head h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-top: 14px;
}

.about-education__head p {
    margin-top: 14px;
    color: var(--text-muted);
}

/* Timeline */
.education-timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--border-strong);
}

.education-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 20px 0 40px;
    position: relative;
}

.education-item:last-child { padding-bottom: 0; }

.education-year-col {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text);
    padding-top: 4px;
    font-variant-numeric: tabular-nums;
    text-align: right;
    padding-right: 20px;
}

.education-year {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text);
}

.education-dot {
    position: absolute;
    left: 114px;
    top: 28px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--cream-50);
    border: 2px solid var(--primary);
    z-index: 1;
}

.education-card {
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--dur-fast), transform var(--dur-fast);
    margin-bottom: 4px;
}

.education-card:hover {
    border-color: var(--border-strong);
    transform: translateX(4px);
}

.education-badge {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

/* Badge color variants */
.education-badge--green  { background: var(--sage-50);  color: var(--sage-700); }
.education-badge--pink   { background: var(--terra-50); color: var(--terra-700); }
.education-badge--tan    { background: var(--clay-50);  color: var(--clay-700); }

.education-name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.35;
    letter-spacing: -0.005em;
}

.education-institution {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============ FACTS / STATS ============ */
.about-facts {
    padding: 64px 0;
    background: var(--cream-100);
}

.about-facts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-facts__head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-top: 12px;
}

.about-facts__head p {
    margin-top: 18px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 440px;
}

.about-facts__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-facts__stat {
    padding: 40px 32px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-facts__stat b {
    font-size: 2.75rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1;
}

.about-facts__stat span {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.about-facts__stat em {
    font-style: italic;
    font-weight: 300;
    color: var(--primary);
    font-size: 0.88rem;
}

/* ============ CTA ============ */
.about-cta {
    padding: 64px 0;
    text-align: center;
}

.about-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 48px;
    background: var(--terra-500);
    color: #fff;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.about-cta__inner::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-blob);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.about-cta__inner > * { position: relative; z-index: 1; }

.about-cta .eyebrow { color: rgba(255,255,255,0.7); }

.about-cta h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-top: 14px;
}

.about-cta p {
    color: rgba(255,255,255,0.82);
    margin: 18px auto 32px;
    max-width: 480px;
}

.about-cta .btn {
    background: #fff;
    color: var(--terra-700);
    border-color: #fff;
}

.about-cta .btn:hover {
    background: var(--cream-100);
    border-color: var(--cream-100);
}

.about-cta .btn-primary {
    background: #fff;
    color: var(--terra-700);
    border-color: #fff;
}

.about-cta .btn-primary:hover {
    background: var(--cream-100);
    border-color: var(--cream-100);
}
