/* =========================================================
   THE STAGE PAGE
========================================================= */

.dlon-stage-page {
    background: #050505;
    color: #f5f2ea;
}


/* HERO */

.stage-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;

    display: flex;
    align-items: center;

    background: #050505;
}

.stage-hero-image {
    position: absolute;
    inset: 0;

    background:
        url('../images/stage-hero.jpg')
        center center / cover no-repeat;

    transform: scale(1.05);
}

.stage-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.35),
            rgba(0,0,0,.72)
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.25),
            rgba(0,0,0,.15) 45%,
            rgba(0,0,0,.88)
        );
}

.stage-hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 80px));

    margin: 100px auto 0;
}

.stage-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .28em;
}

.stage-eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    background: var(--gold);
}

.stage-hero h1 {
    font-family: var(--display);
    font-weight: 400;

    font-size: clamp(70px, 11vw, 160px);

    line-height: .82;
    letter-spacing: -.055em;
}

.stage-hero h1 em {
    display: block;

    color: var(--gold-light);
    font-weight: 400;
}

.stage-hero-copy {
    max-width: 470px;

    margin-top: 40px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.9;
}

.stage-hero-bottom {
    position: absolute;
    z-index: 3;

    left: 40px;
    right: 40px;
    bottom: 28px;

    display: flex;
    justify-content: space-between;

    color: rgba(245,242,234,.5);

    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .25em;
}


/* COMMON */

.stage-container {
    width: min(1200px, calc(100% - 80px));
    margin: auto;
}

.stage-intro,
.stage-experience {
    padding: 150px 40px;
    background: #050505;
}

.stage-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .25em;
}

.stage-label span {
    color: rgba(245,242,234,.35);
}

.stage-title {
    font-family: var(--display);
    font-weight: 400;

    font-size: clamp(48px, 7vw, 92px);

    line-height: .95;
    letter-spacing: -.045em;
}

.stage-title em {
    color: var(--gold-light);
    font-weight: 400;
}


/* INTRO */

.stage-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: end;
}

.stage-intro-number {
    margin-bottom: 20px;

    color: var(--gold);

    font-family: var(--display);
    font-size: 22px;
}

.stage-intro-right {
    padding-bottom: 5px;
}

.stage-intro-right p {
    max-width: 500px;

    color: var(--muted);

    font-size: 15px;
  line-height: 1.9;
    font-family: var(--body);
}


/* SPACE */

.stage-space {
    padding: 120px 40px;

    background: #090909;
}

.stage-space-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 80px;

    align-items: center;
}

.stage-space-reverse .stage-space-grid {
    grid-template-columns: .85fr 1.15fr;
}

.stage-space-reverse .stage-space-media {
    order: 2;
}

.stage-space-reverse .stage-space-info {
    order: 1;
}

.stage-space-media {
    height: 650px;

    overflow: hidden;

    background: #111;
}

.stage-space-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.stage-space-media:hover img {
    transform: scale(1.05);
}

.stage-space-meta {
    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .25em;
}

.stage-space-info h2 {
    font-family: var(--display);

    font-weight: 400;

    font-size: clamp(46px, 5vw, 75px);

    line-height: .95;
    letter-spacing: -.045em;
}

.stage-space-info h2 em {
    display: block;

    color: var(--gold-light);

    font-weight: 400;
}

.stage-space-intro {
    max-width: 500px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.9;
}


/* FEATURES */

.stage-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 40px;

    border-top: 1px solid rgba(255,255,255,.09);
}

.stage-feature {
    padding: 18px 10px 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.09);

    color: rgba(245,242,234,.75);

    font-size: 13px;
}

.stage-feature::before {
    content: "—";

    margin-right: 10px;

    color: var(--gold);
}


/* BOOK BUTTON */

.stage-book {
    display: inline-flex;

    align-items: center;
    gap: 15px;

    margin-top: 35px;

    padding: 15px 22px;

    background: var(--gold-light);

    color: #080808;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .2em;

    transition: .3s ease;
}

.stage-book:hover {
    background: #fff;
    transform: translateY(-2px);
}


/* VISUAL */

.stage-visual {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.stage-visual-image {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.7)
        ),
        url('../images/more-place.jpg')
        center / cover no-repeat;
}

.stage-visual-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.stage-visual-content p {
    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .3em;
}

.stage-visual-content h2 {
    font-family: var(--display);

    font-weight: 400;

    font-size: clamp(48px, 7vw, 100px);

    line-height: .92;
    letter-spacing: -.045em;
}

.stage-visual-content h2 em {
    color: var(--gold-light);
    font-weight: 400;
}


/* EXPERIENCE */

.stage-experience {
    text-align: center;
}

.stage-experience-copy {
    max-width: 700px;

    margin: 30px auto 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 2;
}

.stage-experience-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    margin-top: 80px;

    background: rgba(255,255,255,.08);
}

.stage-experience-card {
    padding: 50px 30px;

    background: #090909;
}

.stage-experience-card span {
    display: block;

    margin-bottom: 18px;

    color: var(--gold);

    font-family: var(--display);
    font-size: 20px;
}

.stage-experience-card h3 {
    font-family: var(--display);

    font-weight: 400;

    font-size: 28px;
}

.stage-experience-card p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}


/* RESERVATION */

.stage-reservation {
    position: relative;

    padding: 160px 20px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,.70),
            rgba(0,0,0,.70)
        ),
        url('../images/table2.jpg')
        center / cover no-repeat;
}

.stage-reservation-inner {
    position: relative;
    z-index: 2;
}

.stage-reservation-label {
    color: var(--gold-light);

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .28em;
}

.stage-reservation h2 {
    margin-top: 20px;

    font-family: var(--display);

    font-size: clamp(55px, 8vw, 110px);

    font-weight: 400;

    line-height: .9;
    letter-spacing: -.05em;
}

.stage-reservation h2 em {
    color: var(--gold-light);
    font-weight: 400;
}

.stage-reservation p {
    max-width: 520px;

    margin: 30px auto;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.stage-reservation-button {
    display: inline-flex;

    padding: 16px 28px;

    background: var(--gold-light);
    color: #050505;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .2em;

    transition: .3s ease;
}

.stage-reservation-button:hover {
    background: #fff;
    transform: translateY(-2px);
}


/* REVEAL */

.reveal-up {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.7,.2,1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .stage-container {
        width: calc(100% - 50px);
    }

    .stage-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stage-space-grid,
    .stage-space-reverse .stage-space-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .stage-space-reverse .stage-space-media,
    .stage-space-reverse .stage-space-info {
        order: initial;
    }

    .stage-space-media {
        height: 550px;
    }

    .stage-experience-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .stage-container {
        width: calc(100% - 40px);
    }

    .stage-hero-content {
        width: calc(100% - 40px);
        margin-top: 80px;
    }

    .stage-hero h1 {
        font-size: clamp(60px, 18vw, 100px);
    }

    .stage-hero-copy {
        margin-top: 30px;
        font-size: 15px;
    }

    .stage-hero-bottom {
        left: 20px;
        right: 20px;
        bottom: 20px;

        font-size: 7px;
    }

    .stage-intro,
    .stage-experience {
        padding: 95px 20px;
    }

    .stage-title {
        font-size: clamp(48px, 14vw, 75px);
    }

    .stage-space {
        padding: 75px 20px;
    }

    .stage-space-grid {
        gap: 40px;
    }

    .stage-space-media {
        height: 440px;
    }

    .stage-space-info h2 {
        font-size: clamp(45px, 14vw, 65px);
    }

    .stage-space-intro {
        font-size: 13px;
    }

    .stage-features {
        grid-template-columns: 1fr;
    }

    .stage-feature {
        padding: 16px 0;
    }

    .stage-visual {
        min-height: 500px;
    }

    .stage-visual-content {
        width: calc(100% - 40px);
    }

    .stage-visual-content h2 {
        font-size: clamp(45px, 14vw, 75px);
    }

    .stage-experience-copy {
        font-size: 13px;
    }

    .stage-experience-grid {
        margin-top: 50px;
    }

    .stage-experience-card {
        padding: 40px 25px;
    }

    .stage-reservation {
        padding: 110px 20px;
    }

    .stage-reservation h2 {
        font-size: clamp(52px, 15vw, 80px);
    }

}