/* ===================================
   ABOUT PAGE — PORTAFO STYLE
   =================================== */

.about-hero {
    padding: 11rem 0 5rem;
    text-align: center;
}

.about-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.about-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--gray);
    line-height: 1.4;
}

/* Philosophy */
.philosophy {
    padding: 5rem 0;
    background: var(--light-gray);
}

.philosophy .section-title { text-align: center; }

.philosophy-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.philosophy-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.25rem;
}

.philosophy-text strong {
    color: var(--black);
    font-weight: 600;
}

/* About Stats */
.about-stats { padding: 5rem 0; }

/* Experience */
.experience {
    padding: 5rem 0;
    background: var(--light-gray);
}

.experience .section-title { text-align: center; }

.experience-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.experience-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.experience-item:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }

.experience-period {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray);
}

.experience-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.experience-company {
    font-size: 1.0625rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.experience-description {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray);
}

/* About Works */
.about-works {
    padding: 5rem 0;
}

.about-works .section-title { text-align: center; }
.about-works .section-subtitle {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 3rem;
    color: var(--gray);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-hero { padding: 8rem 0 3rem; }
    .about-title { font-size: 2.25rem; }
    .about-subtitle { font-size: 1.125rem; }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .experience-period { font-size: 0.875rem; }
    .experience-title { font-size: 1.25rem; }
    .philosophy-text { font-size: 1rem; }
}
