        :root {
            --bg: #ffffff;
            --text: #2E2B28;
            --accent: #C45D4B;
            --grid-gap: 16px;
            --container-padding: 5vw;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Noto+Sans', sans-serif;
            font-size: 17px;
            font-weight: 300;
            line-height: 22px;
            -webkit-font-smoothing: antialiased;
        }
        strong {
            font-weight: 600;
        }
        h1,h2,h3{
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        /* --- Layout Grid --- */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-gap: var(--grid-gap);
            padding: 0 var(--container-padding);
            max-width: 1600px;
            margin: 0 auto;
        }
        section {
            grid-column: 1 / -1;
            padding-bottom: 30px;
        }
        /* --- Typography --- */
        h1 {
            font-size: 128px;
            line-height: 118px;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-rendering: optimizeLegibility;
            font-kerning: normal;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color:#fff;
        }
        h2 {
            font-size: 36px;
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 32px;
            text-transform: uppercase;
        }
        h3 {
            color:  #6C8A7A;
            letter-spacing: -1px;
            line-height: 36px;
            margin: 0;
        }
        .year {
            font-weight: 700;
            font-size: 17px;
            color: var(--accent);
            display: block;
            margin-top: 8px;
        }
        .description {
            font-size: 18px;
            max-width: 50ch;
            line-height: 28px;
            margin-bottom: 24px;
        }
        .quote {
            color: #3B2F2A;
            max-width: 100ch;
            font-style: italic;
            line-height: 48px;
            text-transform: initial;
        }
        .quote-intro h2 {
            font-size: 80px;
            line-height: 78px;
            color: #6C8A7A;
            margin-top: 80px;
        }
        /* --- Hero Section --- */
        .hero {
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
        }
        .flex-grid {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }
        .column {
            flex: 1;
            min-width: 300px;
        }
        .hero-left {
            display: flex;
            justify-content: center; /* Vertical alignment */
            align-items: center;     /* Horizontal alignment */
            background-color: #000;
        }
        .hero-content-wrapper {
            text-align: left;
            display: flex;
            flex-direction: column;
            padding: 60px;
        }
        .hero-right img {
            max-width: 100%;
            height: auto;
            display: block;
            width: 100%;
            object-fit: contain;
        }
        .hero .year {
            color: #E2B64F;
            text-transform: uppercase;
            letter-spacing: .2em;
        }
        
        /* --- Timeline Styling --- */
        .timeline-item {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: var(--grid-gap);
            margin-bottom: 32px;
        }
        .timeline-meta {
            grid-column: 1 / 3;
            font-weight: 400;
            text-transform: uppercase;
        }
        .timeline-content {
            grid-column: 4 / 11;
        }
        .timeline-content h2 {
            font-style: italic;
            color: #6C8A7A;
            text-transform: capitalize;
        }
        .timeline-content h3 {
            font-size: 32px;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .scrollToTop {
            text-align: center;
            font-weight: 600;
            font-size: 12px;
            display: block;
        }
        .button {
            border: 2px solid #C45D4B;
            padding: 5px 30px;
        }
        a {
            color: #C45D4B;
            text-decoration: none;
            letter-spacing: 1px;
        }

        /* --- Responsive Tweaks --- */
        @media (max-width: 768px) {
            h1 {
                font-size: 112px;
                line-height: 104px;
            }
            .quote-intro h2 {
                font-size: 54px;
                line-height: 60px;
                margin-top: 0;
            }
            .timeline-meta {
                grid-column: 1 / -1;
            }
            .timeline-content {
                grid-column: 1 / -1;
            }
            .timeline-content h3 {
                font-size: 30px;
            }
            section {
                padding: 40px 0 0;
            }
            .hero-content-wrapper {
                padding: 60px 30px;
            }
            .scrollToTop {
                margin: 40px 0;
            }
        }

        /* --- Footer --- */
        footer {
            padding: 50px var(--container-padding);
            background: #000;
            color: #fff;
            text-align: right;
        }