/* =========================================================
   TARİHÇE — dört kuşaklık hikaye.
   A quieter register than the process pages: the story
   itself carries the drama, so the direction here is
   editorial and calm. One new idea: the spine gradient runs
   from a faded chart-teal (the sea, where the story starts)
   down into copper (the metals trade it becomes today).
   ========================================================= */

:root {
    --sea-deep: #33494c;
    --sea-bright: #5c8388;
}

.chronicle-hero {
    position: relative;
    padding: clamp(64px,10vw,120px) 0 clamp(40px,6vw,72px);
    overflow: hidden;
    background: radial-gradient(ellipse 700px 420px at 12% 0%, rgba(92,131,136,0.14), transparent 60%), var(--graphite-950);
}

    .chronicle-hero .years {
        position: absolute;
        right: clamp(-40px,-2vw,0px);
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--f-display);
        font-size: clamp(120px,18vw,260px);
        line-height: 0.8;
        color: transparent;
        -webkit-text-stroke: 1px var(--hairline-strong);
        user-select: none;
        pointer-events: none;
        white-space: nowrap;
    }

    .chronicle-hero h1 {
        font-size: clamp(38px,6vw,76px);
        max-width: 14ch;
    }

    .chronicle-hero .desc {
        max-width: 56ch;
        color: var(--paper-300);
        font-size: 17px;
        margin-top: 16px;
    }

.chronicle {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .chronicle::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--hairline-strong);
    }

    .chronicle::after {
        content: "";
        position: absolute;
        left: 8px;
        top: 0;
        width: 2px;
        height: var(--chronicle-fill, 0%);
        background: linear-gradient(to bottom, var(--sea-bright), var(--m-brass), var(--m-copper));
        box-shadow: 0 0 12px 1px rgba(92,131,136,0.4);
        transition: height .12s linear;
    }

.chapter {
    position: relative;
    padding: 0 0 clamp(56px,8vw,96px) 46px;
}

    .chapter:last-child {
        padding-bottom: 0;
    }

    .chapter::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--graphite-950);
        border: 2px solid var(--accent, var(--sea-bright));
    }

.chapter-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.chapter-years {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--accent, var(--sea-bright));
    text-transform: uppercase;
}

.chapter-head h2 {
    font-size: clamp(26px,3.2vw,38px);
    margin: 0;
}

.chapter-lede {
    font-family: var(--f-body);
    font-style: italic;
    color: var(--paper-300);
    font-size: 17px;
    max-width: 62ch;
    margin-bottom: 18px;
    border-left: 2px solid var(--accent, var(--sea-bright));
    padding-left: 16px;
}

.chapter-body p {
    color: var(--paper-300);
    font-size: 16px;
    max-width: 68ch;
}

.chapter-quote {
    margin: 26px 0;
    padding: 20px 24px;
    max-width: 56ch;
    background: var(--graphite-900);
    border: 1px solid var(--hairline);
    border-left: 3px solid var(--accent, var(--m-copper));
    font-family: var(--f-mono);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--paper-100);
    transform: rotate(-0.4deg);
}

    .chapter-quote span {
        display: block;
        margin-top: 10px;
        color: var(--paper-500);
        font-size: 11.5px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

.chapter-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--paper-500);
    background: var(--graphite-900);
    border: 1px solid var(--hairline);
    padding: 8px 14px;
}

    .chapter-note strong {
        color: var(--m-brass);
        font-weight: 500;
    }

@media (max-width:640px) {
    .chronicle, .chronicle::before, .chronicle::after {
        left: 6px;
    }

    .chapter {
        padding-left: 36px;
    }

    .chapter-quote {
        transform: none;
    }
}

.chapter[data-reveal] {
    transition-duration: .8s;
}

@media (prefers-reduced-motion: reduce) {
    .chronicle::after {
        transition: none;
    }
}

.chronicle-today {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 46px;
    position: relative;
}

    .chronicle-today .badge {
        display: inline-block;
        font-family: var(--f-mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--graphite-950);
        background: var(--m-brass);
        padding: 6px 12px;
        margin-bottom: 16px;
    }
