*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cut: 0px;
    --poly: polygon(
        0 0,
        calc(100% - var(--cut)) 0,
        100% var(--cut),
        100% 100%,
        0 100%
    );
}

body {
    background-color: #d4d2c1;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Header ──────────────────────────────── */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    flex-shrink: 0;
}

.logo {
    display: inline-block;
    font-weight: 400;
    font-size: 26px;
    line-height: 0.9;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
}

.logo-separator {
    font-weight: 300;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #111;
}

.site-nav {
    display: none;
}

.site-nav a,
.logo {
    transition: opacity 180ms ease;
}

.site-nav a.is-active,
.logo.is-active {
    opacity: 0.5;
}

/* ── Frame ───────────────────────────────── */

main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4px 20px 36px;
}

.frame-wrap {
    width: 100%;
    aspect-ratio: 9 / 16;
    min-height: 0;
}

.frame-clip {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: var(--poly);
    overflow-x: hidden;
    overflow-y: auto;
    background: #111;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.slide {
    position: relative;
    display: grid;
    min-height: 100%;
    place-items: end start;
    padding: 26px;
    color: #f4f1df;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.54)),
        radial-gradient(circle at 22% 18%, rgba(212, 210, 193, 0.3), transparent 28%);
}

.slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: min(540px, 100%);
}

.slide-kicker {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.slide h1 {
    max-width: 10ch;
    font-size: 52px;
    font-weight: 500;
    line-height: 0.88;
}

.details-slide {
    align-items: start;
    color: #111;
    background: #d4d2c1;
    border: 1px solid #111;
    overflow: visible;
}

.details-slide::before {
    content: none;
}

.details-slide .slide-content {
    width: 100%;
    max-width: none;
}

.details-title-marquee {
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow: hidden;
    contain: inline-size;
}

.details-title-track {
    display: flex;
    width: max-content;
    animation: details-title-marquee 20s linear infinite;
    will-change: transform;
}

.details-title-track span {
    flex: 0 0 auto;
    padding-right: 0.35em;
    font-size: clamp(58px, 8vw, 128px);
    font-weight: 500;
    line-height: 0.88;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes details-title-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.music-slide {
    border-bottom-width: 1.2px;
}

.music-title-marquee {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    contain: inline-size;
}

.music-title-track {
    display: flex;
    width: max-content;
    animation: music-title-marquee 22s linear infinite;
    will-change: transform;
}

.music-title-track span {
    flex: 0 0 auto;
    padding-right: 0.35em;
    font-size: clamp(58px, 8vw, 128px);
    font-weight: 500;
    line-height: 0.88;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes music-title-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    border: 1px solid #111;
    background: #111;
}

.music-item {
    background: #d4d2c1;
    padding: 24px 26px;
}

.music-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 18px;
}

.music-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.music-item-body h2 {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.music-item-body p {
    font-size: 17px;
    font-weight: 400;
    max-width: none;
    margin: 0;
}

.details-intro {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(20px, 2.35vw, 34px);
    font-weight: 400;
}

.details-slide .details-intro {
    max-width: none;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    grid-template-rows: auto auto auto;
    gap: 1px;
    margin-top: 28px;
    border: 1px solid #111;
    background: #111;
}

.details-block {
    min-width: 0;
    min-height: 180px;
    padding: 24px 26px;
    background: #d4d2c1;
}

.details-block-wide {
    grid-column: 1;
    min-height: 0;
}

.details-video-panel {
    position: relative;
    grid-column: 2;
    grid-row: 1 / 4;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: #111;
}

.details-video-panel video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.details-block h2 {
    display: inline-block;
    margin-bottom: 28px;
    padding-bottom: 4px;
    border-bottom: 1px solid #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.details-block-wide h2 {
    margin-bottom: 14px;
}

.details-block p,
.details-block li,
.details-block dd,
.details-block dt {
    font-size: 17px;
}

.details-block p,
.details-block li {
    font-weight: 400;
}

.details-block p {
    max-width: 84ch;
    margin: 0;
}

.details-slide .details-block-wide p {
    width: 100%;
    max-width: none;
}

.details-block dl,
.details-block ul {
    display: grid;
    list-style: none;
}

.details-block dl {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
}

.details-block dt {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
}

.details-block dd {
    font-weight: 380;
}

.details-block a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ticket-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.vip-tables-row {
    margin-top: 28px;
}

.vip-tables-row h2 {
    display: table;
    margin-bottom: 14px;
}

.vip-tables-row a {
    display: inline-block;
}

.home-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.home-marquee--reverse .home-marquee-track {
    animation-direction: reverse;
}

.cabana-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.home-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.home-marquee-track {
    display: flex;
    width: max-content;
    animation: home-marquee 18s linear infinite;
}

.home-marquee span {
    flex: 0 0 auto;
    padding-right: 0.35em;
    color: #f4f1df;
    font-size: clamp(58px, 9vw, 150px);
    font-weight: 500;
    line-height: 0.88;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes home-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.cabana-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.cabana-marquee-track {
    display: flex;
    width: max-content;
    animation: cabana-marquee 18s linear infinite;
}

.cabana-marquee span {
    flex: 0 0 auto;
    padding-right: 0.35em;
    color: #f4f1df;
    font-size: clamp(58px, 9vw, 150px);
    font-weight: 500;
    line-height: 0.88;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes cabana-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.party-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.party-marquee-track {
    display: flex;
    width: max-content;
    animation: party-marquee 24s linear infinite;
}

.party-marquee span {
    flex: 0 0 auto;
    padding-right: 0.35em;
    color: #f4f1df;
    font-size: clamp(58px, 9vw, 150px);
    font-weight: 500;
    line-height: 0.88;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes party-marquee {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.slide p {
    max-width: 34ch;
    margin-top: 14px;
    font-size: 18px;
    font-weight: 400;
}

.slide-kicker:first-child {
    margin-top: 0;
}

/* ── Desktop ─────────────────────────────── */

@media (min-width: 768px) {
    :root {
        --cut: 0px;
    }

    .site-header {
        padding: 26px 40px;
    }

    body {
        height: 100svh;
        overflow: hidden;
    }

    .logo {
        font-size: 40px;
        font-weight: 400;
    }

    .hamburger {
        display: none;
    }

    .site-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .site-nav a {
        font-family: "Geist", sans-serif;
        font-weight: 400;
        font-size: 40px;
        line-height: 0.9;
        color: #111;
        text-decoration: none;
        text-transform: uppercase;
    }

    .site-nav a:hover {
        opacity: 0.5;
    }

    main {
        padding: 0 40px 26px;
        min-height: 0;
    }

    .frame-wrap {
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
    }

    .slide {
        padding: 44px;
    }

    .slide h1 {
        font-size: clamp(72px, 8vw, 132px);
    }

    .slide p {
        font-size: 24px;
    }

    .details-block p,
    .details-block li,
    .details-block dd,
    .details-block dt {
        font-size: clamp(17px, 1.25vw, 23px);
    }
}

@media (max-width: 767px) {
    .site-header {
        position: relative;
        z-index: 3;
    }

    .hamburger {
        position: relative;
        z-index: 4;
    }

    .site-nav.is-open {
        position: absolute;
        top: calc(100% + 4px);
        right: 20px;
        left: 20px;
        z-index: 3;
        display: grid;
        grid-template-rows: repeat(4, 1fr);
        gap: 0;
        height: calc((100vw - 40px) * 16 / 9);
        padding: 0;
        background: #d4d2c1;
        border: 1px solid #111;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
        font-size: 50px;
        line-height: 1;
        color: #111;
        text-decoration: none;
        text-transform: uppercase;
    }

    .site-nav a + a {
        border-top: 0;
    }

    .home-marquee span {
        font-size: clamp(46px, 16vw, 72px);
    }

    .cabana-marquee span {
        font-size: clamp(46px, 16vw, 72px);
    }

    .party-marquee span {
        font-size: clamp(46px, 16vw, 72px);
    }

    .details-slide {
        padding: 18px;
    }

    .details-slide h1 {
        font-size: clamp(38px, 11vw, 50px);
        text-align: left;
        text-align-last: left;
        white-space: normal;
    }

    .details-intro {
        max-width: none;
        margin-bottom: 14px;
        font-size: 18px;
        line-height: 1.08;
    }

    .details-grid {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-template-rows: none;
        margin-top: 20px;
    }

    .details-video-panel {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 5 / 4;
        min-height: 0;
        order: 2;
    }

    .details-block:nth-of-type(2) {
        order: 3;
    }

    .details-block:nth-of-type(3) {
        order: 4;
    }

    .details-block {
        min-height: 0;
        padding: 18px;
    }

    .details-block h2 {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .details-block p,
    .details-block li,
    .details-block dd,
    .details-block dt {
        font-size: 16px;
    }

    .details-block dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 16px;
    }

    .details-block dt {
        font-size: 14px;
    }

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

    .music-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .music-item {
        padding: 18px;
    }

    .music-item-body p {
        font-size: 16px;
    }
}
