    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'Playfair Display', serif;
        background: #f5f1ea;
        /* light beige */
        color: #2b2b2b;
        overflow-x: hidden;
    }
    /* HEADER / HERO */
    
    .content-section {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px 20px;
        text-align: center;
        color: #2b2b2b;
    }
    
    .content-section h2 {
        font-family: 'Homemade Apple', cursive;
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .content-section p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .content-section li {
        font-size: 14px;
        line-height: 1.8;
        font-style: italic;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 20px;
    }
    
    .date {
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }
    
    .names {
        font-family: 'Homemade Apple', cursive;
        font-size: 58px;
        margin-bottom: 32px;
        color: #880015;
    }
    /* EDGE-TO-EDGE SLIDER */
    
    .slider-wrapper {
        width: 100vw;
        overflow: hidden;
        margin-bottom: 40px;
    }
    
    .slider {
        display: flex;
        width: max-content;
        animation: scroll 80s linear infinite;
    }
    
    .slider img {
        width: 60vw;
        height: 620px;
        object-fit: cover;
        flex-shrink: 0;
    }
    /* Seamless infinite scroll */
    /* PRAKTISK INFO GRID */
    
    .info-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
        margin-top: 48px;
    }
    
    .info-card {
        padding: 14px;
        border-radius: 6px;
    }
    
    h3 {
        color: #2b2b2b;
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding-bottom: 10px;
    }
    
    .info-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    /* LIST STYLE */
    
    .content-section ul {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }
    
    .content-section li {
        background: #ffffff;
        border-radius: 10px;
        padding: 14px 16px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.6;
        font-style: normal;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    
    .toast-images {
        display: flex;
        justify-content: center;
        /* centers images horizontally */
        align-items: center;
        gap: 16px;
        margin: 20px 0;
        flex-wrap: wrap;
        /* allows wrapping on smaller screens */
    }
    
    .toast-images img {
        width: 100%;
        max-width: 280px;
        /* control size */
        height: auto;
        border-radius: 12px;
        object-fit: cover;
    }
    /* Mobile */
    
    @media (max-width: 600px) {
        .toast-images {
            flex-direction: column;
        }
        .toast-images img {
            max-width: 90%;
            /* slightly larger on phone */
        }
    }
    /* TABLET */
    
    @media (max-width: 1200px) {
        .info-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    /* MOBILE */
    
    @media (max-width: 768px) {
        .info-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @keyframes scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }
    /* NAV */
    
    nav {
        display: flex;
        gap: 32px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    nav a {
        color: #2b2b2b;
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    nav a:hover {
        color: gainsboro;
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    /* HAMBURGER */
    
    .hamburger {
        display: none;
        position: fixed;
        top: 24px;
        right: 24px;
        font-size: 28px;
        cursor: pointer;
        z-index: 9999;
        /* increase this */
        color: #2b2b2b;
    }
    /* ===== TIMELINE ===== */
    
    .timeline-wrapper {
        position: relative;
        margin-top: 60px;
    }
    
    .timeline-line {
        position: absolute;
        top: 16px;
        left: 0;
        right: 0;
        height: 2px;
        background: #c2b59b;
    }
    
    .timeline-grid {
        display: flex;
        gap: 20px;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .timeline-section {
        width: 180px;
    }
    
    .timeline-dot {
        width: 14px;
        height: 14px;
        background: #c2b59b;
        border-radius: 50%;
        margin: 10px auto;
    }
    
    .timeline-time {
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .timeline-text {
        font-size: 14px;
        line-height: 1.5;
    }
    /* MOBILE */
    
    @media (max-width: 768px) {
        .names {
            font-size: 36px;
        }
        .slider img {
            height: 280px;
        }
        nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            background: #f5f1ea;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: right 0.3s ease;
        }
        nav.open {
            right: 0;
        }
        .hamburger {
            display: block;
            z-index: 9999;
        }
        /* ===== MOBILE TIMELINE ===== */
        .timeline-line {
            display: none;
        }
        .timeline-grid {
            flex-direction: column;
            text-align: start;
        }
        .timeline-section {
            width: unset;
            margin-left: 5px;
        }
        /* vertical line */
        .timeline-grid::before {
            content: "";
            position: absolute;
            left: 11px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #c2b59b;
        }
        .timeline-dot {
            margin: 0;
            display: inline-block;
        }
        .timeline-time {
            display: inline;
            margin-left: 10px;
        }
        .timeline-text {
            margin-left: 40px;
        }
    }