/* ═══════════ ABOUT ═══════════
   Christina's bio in the same bark/moss/linen language as the service and
   contact documents. Reuses .topbar, .crumbs, .svc-btn and .svc-foot. */

html, body {
    overflow: auto;
    height: auto;
    min-height: 100%;
}

.about {
    min-height: 100vh;
    background: var(--bark);
    color: var(--linen);
}

.about-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: calc(var(--topbar-h) + clamp(20px, 4vh, 44px)) 8vw clamp(64px, 9vh, 110px);
}

.about-head {
    margin-bottom: clamp(40px, 6vh, 68px);
}

.about-head .eyebrow {
    display: block;
    margin-bottom: 20px;
    color: var(--moss);
}

.about-head .display {
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 300;
    max-width: 16ch;
}

/* photo + prose */
.about-body {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
}

.about-figure {
    margin: 0;
}

.about-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.about-figure figcaption {
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(244, 241, 234, 0.72);
}

.about-prose {
    max-width: 54ch;
    padding-top: 6px;
}

.about-prose p {
    color: var(--stone);
    font-weight: 300;
    font-size: clamp(17px, 2.1vw, 21px);
    line-height: 1.7;
}

.about-prose p + p {
    margin-top: 20px;
}

/* Button and phone link share a row and a top margin, so the pair sits on one
   baseline no matter which of the two is taller. */
.about-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: clamp(28px, 4vh, 40px);
}

.about-prose .svc-btn {
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 760px) {
    .about-body {
        grid-template-columns: 1fr;
        gap: clamp(28px, 6vw, 40px);
    }

    .about-figure {
        max-width: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-btn:hover { transform: none; }
}
