    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

    :root {
        color: #000;
        background: #fff;
        font-family: 'Inter', "Helvetica Neue Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 18px;
        line-height: 1.8;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        min-height: 100vh;
        background: #fff;
        color: #000;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
    }

    .stage {
        position: relative;
        width: min(1200px, 100%);
        padding: 0 0 140px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: start;
        min-height: calc(100vh + 120px);
    }

    @media (max-width: 900px) {
        .stage {
            min-height: calc(5vh + 5px);
        }
    }

    .vertical-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #000;
        transition: transform 0.3s ease;
        transform: translateX(-50%);
        z-index: 0;
    }

    .stage.active-left .vertical-line {
        transform: translate(calc(-50% - 22px));
    }

    .stage.active-right .vertical-line {
        transform: translate(calc(-50% + 22px));
    }

    .section {
        width: min(520px, 48%);
        max-width: 520px;
        margin-block: 20px;
        overflow: visible;
        position: relative;
        opacity: 0;
        transform: translateX(0);
        animation: fadeIn 0.9s ease forwards;
    }

    .image-placeholder {
        position: absolute;
        top: -16px;
        width: 220px;
        height: 220px;
        /*background: rgba(0,0,0,0.03);
      border: 1px dashed rgba(0,0,0,0.2); */
        display: flex;
        align-items: start;
        justify-content: center;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        padding: 16px;
        color: rgba(0, 0, 0, 0.65);
        line-height: 1.4;
        z-index: 3;
    }

    .section.left .image-placeholder {
        right: -450px;
        left: auto;
        margin-right: 0;
        margin-left: 0;
    }

    .section.right .image-placeholder {
        left: -450px;
        right: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .section.left {
        justify-self: start;
    }

    .section.right {
        justify-self: end;
    }

    .section:nth-child(1) {
        animation-delay: 0.2s;
        transform: translateX(80px);
    }

    .section:nth-child(2) {
        animation-delay: 0.4s;
        transform: translateX(-80px);
    }

    .section:nth-child(3) {
        animation-delay: 0.6s;
        transform: translateX(80px);
    }

    .section:nth-child(4) {
        animation-delay: 0.8s;
        transform: translateX(-80px);
    }

    .section:nth-child(5) {
        animation-delay: 1s;
        transform: translateX(80px);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .section[aria-expanded="true"] {
        z-index: 2;
    }

    section {
        width: 100%;
        padding: 0;
    }

    details {
        border: none;
        padding: 0;
    }

    summary {
        font-family: "Segoe UI", Tahoma, Arial, sans-serif;
        cursor: pointer;
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 0.001em;
        margin: 0;
        padding: 9px 24px;
        background: rgba(0, 0, 0, 0.02);
        border: none;
        border-radius: 10px;
        list-style: none;
        user-select: none;
        position: relative;
        transition: background 0.2s ease;
    }

    summary::marker {
        display: none;
    }

    summary:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .content {
        margin-top: 14px;
        padding: 0 24px 24px;
        opacity: 1;
        border-left: 1px solid rgba(0, 0, 0, 0.12);
        padding-left: 22px;
    }

    .content p {
        margin: 0;
        padding: 8px 0 0;
        font-size: 1rem;
        line-height: 1.2;
        font-weight: 300;
        letter-spacing: 0.0001em;
    }

    .side-label {
        display: none;
    }

    .site-nav {
        width: min(1200px, 100%);
        margin: 0 auto 24px;
        padding: 18px 24px;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 14px;
        position: relative;
        z-index: 5;
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }

    .logo-placeholder {
        font-family: "Segoe UI", Tahoma, Arial, sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        letter-spacing: 0.001em;
        text-transform: uppercase;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .nav-toggle {
        display: none;
        border: none;
        background: transparent;
        cursor: pointer;
        width: 36px;
        height: 36px;
        padding: 0;
        flex-shrink: 0;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 5px 0;
        background: #000;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    @media (max-width: 900px) {
        body {
            padding: 0;
        }

        .site-nav {
            padding: 16px 18px;
        }

        .nav-inner {
            align-items: center;
        }

        .nav-links {
            width: 100%;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .nav-links.open {
            max-height: 420px;
        }

        .nav-toggle {
            display: block;
        }
    }

    .placeholder {
        width: min(1200px, 100%);
        min-height: 300px;
        margin: 0 auto 24px;
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(0, 0, 0, 0.6);
        background: rgba(0, 0, 0, 0.03);
        border: 1px dashed rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.9rem;
    }

    .placeholder-label {
        max-width: 90%;
        text-align: center;
    }

    .gallery-placeholder {
        display: block;
        width: calc(100vw - 40px);
        max-width: 1162px;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        color: #000;
        text-transform: none;
        letter-spacing: normal;
        position: relative;
        z-index: 1;
    }

    .carousel {
        position: relative;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.4s ease;
        will-change: transform;
    }

    .carousel-slide {
        min-width: 100%;
        padding: 0;
    }

    .carousel-link {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 0;
        text-decoration: none;
        color: #fff;
        background: transparent;
    }

    .carousel-link::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
        pointer-events: none;
    }

    .carousel-link img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .carousel-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 24px 28px 28px;
        line-height: 0.9;
        z-index: 1;
    }

    .carousel-caption strong {
        display: block;
        font-family: "Segoe UI", Tahoma, Arial, sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.01em;
        text-transform: uppercase;
    }

    .carousel-caption span {
        display: inline-block;
        margin-top: 8px;
        font-size: 0.95rem;
        color: #fff;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.88);
        color: #000;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        z-index: 2;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .carousel-arrow:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.04);
    }

    .carousel-arrow.prev {
        left: 18px;
    }

    .carousel-arrow.next {
        right: 18px;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 18px 0;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        padding: 0;
        border: none;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .carousel-dot.active {
        background: #000;
        transform: scale(1.2);
    }

    ul {
        list-style-type: none;
        padding: 0;
    }

    a:link {
        color: #00142f;
        /* Custom blue */
    }

    /* Visited link */
    a:visited {
        color: #272727;
        /* Custom purple */
    }

    /* Mouse over link */
    a:hover {
        color: #000000;
        /* Custom orange-red */
    }

    /* Selected link (being clicked) */
    a:active {
        color: #00142f;
        /* Custom blue */
    }

    @media (max-width: 900px) {
        .stage {
            grid-template-columns: 1fr;
        }

        .section {
            width: 100%;
            max-width: 100%;
            z-index: 2;
            background-color: white;
        }

        .image-placeholder {
            display: none;
        }

        .side-label {
            display: none;
        }

        .gallery-placeholder {
            width: calc(100vw - 40px);
            max-width: 1162px;
            padding: 0;
        }

        .carousel-slide {
            padding: 0;
        }

        .carousel-caption {
            padding: 18px 20px 22px;
        }

        .carousel-caption strong {
            font-size: 1.05rem;
        }

        .carousel-caption span {
            font-size: 0.8rem;
        }

        .carousel-caption {
            display: none;
        }

        .carousel-arrow {
            display: none;
        }

        .carousel-link img {
            display: block;
            width: 171%;
        }


    }