/* ============================================
   About Page Styles
   ============================================ */

.about-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 1.5rem 6rem;
}

/* Eyebrow */
.eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--a-gold);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* Hero */
.about-hero {
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--a-text);
}

.about-hero h1 em {
    font-style: italic;
    color: var(--a-gold);
}

/* Divider */
.about-page .divider {
    width: 50px;
    height: 2px;
    background: var(--a-gold-light, #c4a87c);
    border: none;
    margin: 3rem 0;
}

/* Body copy */
.about-page .prose p {
    font-size: 1rem;
    color: var(--a-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-page .prose p:last-child {
    margin-bottom: 0;
}

.about-page .prose em {
    font-style: italic;
}

/* Stacked short lines */
.sparse-block {
    margin: 1.75rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--a-gold-light, #c4a87c);
}

.sparse-block p {
    font-size: 0.95rem;
    color: var(--a-muted);
    line-height: 1.7;
    margin-bottom: 0.35rem;
    font-weight: 300;
}

.sparse-block p:last-child {
    margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    border-left: 2px solid var(--a-gold);
}

.pull-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--a-text);
    font-weight: 400;
}

/* Career block */
.career-block {
    background: var(--a-surface);
    border: 1px solid var(--a-border);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}

.career-block p {
    font-size: 0.92rem;
    color: var(--a-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.career-block p:last-child {
    margin-bottom: 0;
}

.career-block .career-closer {
    font-size: 0.92rem;
    color: var(--a-hint);
    font-style: italic;
    line-height: 1.75;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 0.5px solid var(--a-border);
}

/* Identity cards */
.identity-trio {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.identity-item {
    background: var(--a-surface);
    border: 1px solid var(--a-border);
    border-left: 3px solid var(--a-gold-light, #c4a87c);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
}

.identity-item__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--a-text);
    margin-bottom: 0.3rem;
}

.identity-item__body {
    font-size: 0.88rem;
    color: var(--a-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* Bio line */
.bio-line {
    font-size: 0.85rem;
    color: var(--a-hint);
    line-height: 1.75;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.5px solid var(--a-border);
}

.bio-line a {
    color: var(--a-gold);
    text-decoration: none;
}

.bio-line a:hover {
    color: var(--a-gold-hover);
}

/* Before you begin block */
.begin-block {
    background: var(--a-surface);
    border: 1px solid var(--a-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.begin-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--a-text);
    margin-bottom: 1.25rem;
}

.begin-block p {
    font-size: 0.95rem;
    color: var(--a-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.begin-block p:last-of-type {
    margin-bottom: 0;
}

.begin-block .closing-line {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.98rem;
    color: var(--a-text);
    line-height: 1.75;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 0.5px solid var(--a-border);
}

.begin-block .cta-btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    background-color: var(--a-gold);
    color: var(--a-bg);
    margin-top: 1.75rem;
}

.begin-block .cta-btn:hover {
    background-color: var(--a-gold-hover);
}

/* Responsive */
@media (max-width: 640px) {
    .about-page {
        padding: 3rem 1.25rem 4rem;
    }

    .pull-quote {
        padding: 1.25rem 1.25rem;
    }

    .begin-block {
        padding: 1.75rem 1.25rem;
    }

    .career-block {
        padding: 1.25rem;
    }
}
