
:root{
    --ink:#000;
    --paper:#000;
    --dim:#000;
    --brass:#000;
    --brass-light:#000;
    --line:#e33a3b;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family: "Marcellus", sans-serif; background:var(--paper); color:var(--ink);}

.history{
    max-width:980px;
    margin:0 auto;
    padding:90px 32px 110px;
}

.history-head{
    text-align:center;
    max-width:600px;
    margin:0 auto 80px;
}
.history-head .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--brass);
    font-size:13px;
    letter-spacing:0.2em;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:16px;
}
.history-head .eyebrow::before,
.history-head .eyebrow::after{
    content:"";
    width:24px;
    height:1px;
    background:var(--brass);
}
.history-head h1{
    font-family: "Marcellus", sans-serif;
    font-weight:700;
    font-size:clamp(28px,4vw,42px);
    line-height:1.2;
    margin-bottom:16px;
}
.history-head p{
    color:var(--dim);
    font-size:15.5px;
    line-height:1.7;
}

.timeline{
    position:relative;
}
.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:1px;
    background:var(--line);
    transform:translateX(-50%);
}

.tl-item{
    position:relative;
    display:grid;
    grid-template-columns:1fr 60px 1fr;
    align-items:start;
    margin-bottom:70px;
}
.tl-item:last-child{margin-bottom:0;}

.tl-dot-col{
    display:flex;
    justify-content:center;
    position:relative;
}
.tl-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:var(--paper);
    border:2px solid var(--brass);
    position:relative;
    z-index:2;
    margin-top:6px;
    transition:background .3s ease, transform .3s ease;
}
.tl-item:hover .tl-dot{
    background:var(--brass);
    transform:scale(1.15);
}

.tl-card{
    background:#fff;
    border:1px solid var(--line);
    padding:28px 30px;
    transition:border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.tl-item:hover .tl-card{
    border-color:var(--brass);
    box-shadow:0 16px 32px rgba(19,17,15,0.06);
    border-radius:5px;
    transition: 1s;
}

.tl-year{
    font-family: "Marcellus", sans-serif;
    font-weight:700;
    font-size:30px;
    color:var(--brass);
    line-height:1;
    margin-bottom:10px;
}
.tl-title{
    font-family: "Marcellus", sans-serif;
    font-weight:600;
    font-size:19px;
    margin-bottom:10px;
    line-height:1.3;
}
.tl-desc{
    color:var(--dim);
    font-size:14.5px;
    line-height:1.65;
}

/* alternate sides */
.tl-item:nth-child(odd) .tl-card{grid-column:1; text-align:right;}
.tl-item:nth-child(odd) .tl-spacer{grid-column:3;}
.tl-item:nth-child(even) .tl-card{grid-column:3;}
.tl-item:nth-child(even) .tl-spacer{grid-column:1;}

@media (max-width:760px){
    .timeline::before{left:20px;}
    .tl-item{grid-template-columns:40px 1fr; margin-bottom:46px;}
    .tl-dot-col{grid-column:1; justify-content:flex-start;}
    .tl-item:nth-child(odd) .tl-card,
    .tl-item:nth-child(even) .tl-card{
        grid-column:2;
        text-align:left;
    }
    .tl-spacer{display:none;}
    .tl-card{padding:22px 22px;}
}
