/* ============================================
   ABOUT PAGE: Enhanced visual interest
   ============================================ */

/* Enhanced page header */
.about-page-header {
    padding: var(--spacing-lg) 0;
    text-align: left;
}

.about-page-header .page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Opening section has more vertical space */
.about-opening-section {
    padding-top: var(--spacing-xl) !important;
    padding-bottom: var(--spacing-xl) !important;
}

/* Portrait image: taller, sharp edges */
.about-opening-section .about-page-image img {
    max-height: 700px;
    border-radius: 0;
    object-position: center top;
}

/* Sharp images throughout the about page */
.about-page .about-page-image img {
    border-radius: 0;
}

/* Integrated title above the intro text */
.about-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

/* Larger personal intro line */
.about-page .intro-text {
    font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: var(--spacing-sm) !important;
}

/* ── Milestone strip ── */
.about-milestones {
    display: flex;
    justify-content: center;
    background: var(--bg-medium);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-milestone {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    border-right: 1px solid var(--border-light);
}

.about-milestone:last-child {
    border-right: none;
}

.about-milestone-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--primary-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.about-milestone-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

/* ── Pull quote ── */
.about-pullquote {
    background: var(--bg-warm);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-pullquote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.5;
}

.about-pullquote blockquote::before {
    content: '\201C';
    display: block;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-accent);
    margin-bottom: 4px;
    font-style: normal;
}

.about-pullquote blockquote::after {
    content: '\201D';
    display: block;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-accent);
    margin-top: 4px;
    font-style: normal;
}

/* Full-width image break: taller on about page */
.about-page .about-image-break,
.about-page .about-image-break img {
    max-height: 480px;
    height: 480px;
}

.about-page .about-image-break img {
    object-position: center 25%;
}

/* ── Responsive ── */
@media (max-width: 968px) {
    .about-opening-section {
        padding-top: var(--spacing-lg) !important;
        padding-bottom: var(--spacing-md) !important;
    }

    .about-milestones {
        gap: 0;
    }

    .about-milestone {
        padding: var(--spacing-sm) var(--spacing-xs);
    }

    .about-page .about-image-break,
    .about-page .about-image-break img {
        max-height: 280px;
        height: 280px;
    }
}

@media (max-width: 600px) {
    .about-milestones {
        flex-wrap: wrap;
    }

    .about-milestone {
        flex: 0 0 50%;
        max-width: none;
    }

    .about-milestone:nth-child(2) {
        border-right: none;
    }

    .about-milestone:nth-child(3) {
        flex: 0 0 100%;
        border-right: none;
        border-top: 1px solid var(--border-light);
    }
}
