/* HERO SECTION  */
.page-hero {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 3.5rem 2rem 3rem;
    background: var(--navy);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/webp/aerial-split-harbour.webp') center / cover no-repeat;
    opacity: .30;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.page-hero-wave {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    line-height: 0;
}

/* Hero Typography */
.page-hero .eyebrow {
    color: var(--mist);
}

.page-hero .eyebrow::before {
    background: var(--mist);
}

.page-hero h1 {
    margin-bottom: .75rem;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
}

.page-hero h1 em {
    font-style: italic;
    color: var(--mist);
}

.page-hero p {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
}

/* TIMELINE COMPONENT  */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    width: 2px;
    background: var(--border);
}

.tl-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.tl-dot {
    position: absolute;
    top: 4px;
    left: -2rem;
    width: 14px;
    height: 14px;
    background: var(--ocean);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--ocean);
}

/* Timeline Typography & Media */
.tl-year {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--sky);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tl-title {
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--navy);
}

.tl-body {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
}

.tl-img {
    margin-top: 1rem;
}

/* HIGHLIGHT BOX  */
.highlight-box {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
}

.highlight-box h3 {
    margin-bottom: .75rem;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--mist);
}

.highlight-box p {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .7);
}

/* LAYOUT UTILITIES & MEDIA QUERIES */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}