/* About page styles
   page-only rules, shared bits still live in home.css */


/* current-page indicator in the top nav */
.nav-links a.current {
    color: var(--saffron);
}

.nav-links a.current::after {
    transform: scaleX(1);
}


/* ============ HERO ============ */

.about-hero {
    padding: 140px 0 70px;
    position: relative;
}

.about-hero-crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 38px;
}

.about-hero-crumb a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.about-hero-crumb a:hover { color: var(--saffron); }

.about-hero-crumb .bc-sep {
    color: var(--ink-mute);
    opacity: 0.6;
}

.about-hero-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(64px, 11vw, 188px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: 60px;
}

.about-hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(36px);
    animation: rise 1.1s var(--ease) forwards;
}

.about-hero-title .line:nth-child(1) { animation-delay: 0.25s; }
.about-hero-title .line:nth-child(2) {
    animation-delay: 0.4s;
    padding-left: 0.5em;
}

.about-hero-title em {
    font-style: italic;
    color: var(--saffron);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
}

.about-hero-lede {
    font-family: var(--display);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 56ch;
}

/* a small data-card thing on the right, like a magazine masthead */
.about-card {
    background: var(--bg-soft);
    border: 1px solid var(--rule);
    padding: 28px 28px 24px;
    border-radius: 2px;
}

.about-card dl {
    display: grid;
    gap: 18px;
}

.about-card dl > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: baseline;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
}

.about-card dl > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-card dt {
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.about-card dd {
    font-family: var(--display);
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.25;
}


/* ============ STORY ============ */

.story {
    border-top: 1px solid var(--rule);
}

.story-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

.story-aside {
    position: sticky;
    top: 120px;
}

.story-year {
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(56px, 6vw, 88px);
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: var(--saffron);
}

.story-year-sub {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.story-body {
    max-width: 62ch;
}

.story-body p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
}

.story-body p + p {
    margin-top: 22px;
}

/* first paragraph gets the lead treatment */
.story-body .lead {
    font-family: var(--display);
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 12px;
}


/* ============ PULL QUOTE ============ */

.quote-band {
    background: var(--bg-deep);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 110px 0;
    text-align: center;
}

.big-quote {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(30px, 4.2vw, 68px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 22ch;
    margin: 0 auto;
    position: relative;
}

.big-quote .qm {
    display: block;
    font-style: italic;
    font-size: 1.4em;
    color: var(--terracotta);
    line-height: 0.6;
    margin-bottom: 8px;
}

.quote-attrib {
    margin-top: 40px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
}


/* ============ BELIEFS ============ */
/* the markup reuses .practice-* from home.css. nothing to add here */


/* ============ TIMELINE ============ */

.timeline-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 56px;
    align-items: end;
    margin-bottom: 52px;
}

.timeline-head .section-tag {
    grid-column: 1 / -1;
}

.timeline-head h2 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(44px, 6vw, 104px);
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.timeline-head h2 em {
    font-style: italic;
    color: var(--saffron);
}

.tl-list {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.tl-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 48px;
    padding: 32px 0;
    border-bottom: 1px solid var(--rule);
    position: relative;
}

/* a small node sits on the year side, gives the timeline some shape */
.tl-row::before {
    content: "";
    position: absolute;
    left: 132px;
    top: 44px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--terracotta);
}

.tl-year {
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--ink);
    padding-top: 6px;
}

.tl-body h3 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    max-width: 28ch;
}

.tl-body p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 56ch;
}


/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
    .about-hero { padding: 124px 0 60px; }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .story-aside {
        position: static;
    }

    .story-year { font-size: 56px; }

    .quote-band { padding: 80px 0; }

    .timeline-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }

    .tl-row {
        grid-template-columns: 90px 1fr;
        gap: 28px;
        padding: 28px 0;
    }

    .tl-row::before { left: 82px; top: 38px; }

    .tl-year { font-size: 26px; padding-top: 4px; }
}

@media (max-width: 600px) {
    .about-hero { padding: 108px 0 48px; }

    .about-hero-crumb { margin-bottom: 26px; }

    .about-hero-title { margin-bottom: 40px; }

    .about-card { padding: 22px 22px 18px; }

    .about-card dl > div {
        grid-template-columns: 90px 1fr;
        gap: 12px;
    }

    .quote-band { padding: 64px 0; }

    .big-quote { max-width: 18ch; }

    .tl-row {
        grid-template-columns: 64px 1fr;
        gap: 18px;
    }

    .tl-row::before {
        left: 58px;
        top: 34px;
        width: 5px;
        height: 5px;
    }

    .tl-year { font-size: 22px; }

    .story-body p { font-size: 16px; }
    .story-body .lead { font-size: 20px; }
}