/* ==========================================================================
   50 JAAR JUBILEUM SECTION
   ========================================================================== */

.jubileum {
    background: var(--blue-dark, #001f3d);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.jubileum::before {
    content: '50';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display, 'Barlow', sans-serif);
    font-size: clamp(300px, 30vw, 500px);
    font-weight: 900;
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.jubileum__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Overline gold variant */
.overline--gold {
    color: #d4a853 !important;
    border-color: #d4a853 !important;
    letter-spacing: .12em;
}

.overline--gold::before {
    background: #d4a853 !important;
}

/* Title with big number */
.jubileum__title {
    font-family: var(--font-display, 'Barlow', sans-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.jubileum__number {
    font-size: clamp(64px, 7vw, 96px);
    font-weight: 900;
    background: linear-gradient(135deg, #d4a853, #f0d08c, #d4a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
}

.jubileum__intro {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px;
    max-width: 540px;
}

/* Quote */
.jubileum__quote {
    border-left: 3px solid #d4a853;
    padding: 20px 0 20px 24px;
    margin: 0;
}

.jubileum__quote p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 8px;
}

.jubileum__quote cite {
    font-size: 14px;
    font-style: normal;
    color: #d4a853;
    font-weight: 600;
}

/* Timeline */
.jubileum__timeline {
    position: relative;
    padding-left: 0;
}

.timeline__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding-bottom: 32px;
    position: relative;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

/* Vertical line through dots */
.timeline__item::after {
    content: '';
    position: absolute;
    left: 79px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, .15);
}

.timeline__item:last-child::after {
    display: none;
}

.timeline__marker {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.timeline__year {
    font-family: var(--font-display, 'Barlow', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #d4a853;
    white-space: nowrap;
}

.timeline__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: 2px solid #d4a853;
    flex-shrink: 0;
    position: relative;
    right: -7px; /* center on the line */
}

.timeline__item--highlight .timeline__dot {
    background: #d4a853;
    width: 16px;
    height: 16px;
    right: -9px;
    box-shadow: 0 0 12px rgba(212, 168, 83, .5);
}

.timeline__body h4 {
    font-family: var(--font-display, 'Barlow', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
}

.timeline__body p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

.timeline__item--highlight .timeline__body h4 {
    color: #d4a853;
    font-size: 18px;
}

.timeline__item--highlight .timeline__body p {
    color: rgba(255, 255, 255, .85);
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .jubileum__grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .jubileum__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jubileum__title {
        flex-direction: column;
        gap: 4px;
    }

    .jubileum__number {
        font-size: 72px;
    }

    .jubileum::before {
        font-size: 200px;
        right: -20px;
        top: 20px;
        transform: none;
    }

    .timeline__item {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }

    .timeline__item::after {
        left: 59px;
    }

    .timeline__dot {
        right: -7px;
    }

    .timeline__item--highlight .timeline__dot {
        right: -9px;
    }
}

@media (max-width: 480px) {
    .timeline__item {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }

    .timeline__item::after {
        left: 47px;
    }

    .timeline__year {
        font-size: 13px;
    }
}
