:root {
    --night: #071525;
    --night-deep: #040b13;
    --night-soft: #0d2034;
    --ivory: #f2ede3;
    --ivory-deep: #e7dfd1;
    --paper: #faf7f1;
    --gold: #c8a15a;
    --gold-light: #e0c27f;
    --red: #a91f28;
    --ink: #17191a;
    --muted: #243447;
    --white: #ffffff;

    --serif:
        "Iowan Old Style",
        Baskerville,
        "Times New Roman",
        serif;

    --sans:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--night);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}


body,
button,
input,
select {
    font-family: var(--sans);
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
}


.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--night-deep);
    color: var(--white);
}


.hero__media,
.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


.hero__media img {
    object-fit: cover;
    object-position: center;
}


.hero__shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 14, .96) 0%,
            rgba(2, 8, 14, .78) 42%,
            rgba(2, 8, 14, .35) 72%,
            rgba(2, 8, 14, .60) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 10, 17, .76) 0%,
            transparent 42%
        );
}


.hero__top {
    position: absolute;
    z-index: 3;
    top: 34px;
    left: 50%;
    width: min(1280px, calc(100% - 72px));
    transform: translateX(-50%);
}


.hero__logo {
    width: 126px;
    height: auto;
}


.hero__content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 72px));
    margin: 0 auto;
    padding-top: clamp(190px, 22vh, 260px);
    padding-bottom: 120px;
}


.eyebrow,
.section-kicker {
    margin: 0 0 24px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .22em;
    text-transform: uppercase;
}


.eyebrow {
    color: var(--gold-light);
}


.hero h1 {
    width: min(860px, 76vw);
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(58px, 7.3vw, 122px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em;
}


.hero h1 em {
    display: block;
    color: var(--gold-light);
    font-weight: 400;
}


.hero__intro {
    width: min(620px, 80%);
    margin: 34px 0 36px;
    color: rgba(255,255,255,.78);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.75;
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button--gold {
    background: var(--gold);
    color: var(--night-deep);
}


.button--gold:hover {
    background: var(--gold-light);
}


.button--dark {
    background: var(--night);
    color: var(--white);
}


.button--full {
    width: 100%;
}


.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 42px;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.hero__facts span {
    display: flex;
    align-items: center;
    gap: 12px;
}


.hero__facts span:not(:last-child)::after {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
}


.hero__scroll {
    position: absolute;
    z-index: 4;
    right: 42px;
    bottom: 38px;
    display: grid;
    width: 46px;
    height: 70px;
    place-items: center;
}


.hero__scroll span {
    width: 1px;
    height: 48px;
    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );
}


.section {
    padding:
        clamp(90px, 11vw, 170px)
        36px;
}


.section--ivory {
    background: var(--ivory);
}


.section--night {
    background: var(--night-deep);
    color: var(--white);
}


.content {
    width: min(100%, 1050px);
    margin: 0 auto;
}


.narrow {
    width: min(100%, 760px);
    margin: 0 auto;
    text-align: center;
}


.section-kicker {
    color: var(--red);
}


.section-kicker--gold {
    color: var(--gold);
}


.narrow h2,
.content > h2,
.gallery__head h2,
.event-offer h2 {
    margin: 0 0 38px;
    font-family: var(--serif);
    font-size: clamp(42px, 5.2vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.035em;
}


.narrow p {
    margin: 0 auto 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}


blockquote {
    margin: 38px 0 0;
    padding-top: 34px;
    border-top: 1px solid rgba(23,25,26,.14);
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    line-height: 1.55;
}


.photo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: clamp(420px, 52vw, 760px);
    background: var(--night);
}


.photo-duo picture {
    min-width: 0;
    overflow: hidden;
}


.photo-duo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.light-title {
    color: var(--white);
}


.number-list {
    margin: 72px 0 62px;
}


.number-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}


.number-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1);
}


.number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1;
}


.number-item h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 400;
}


.number-item p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 15px;
    line-height: 1.7;
}


.full-photo {
    height: clamp(480px, 70vw, 930px);
    overflow: hidden;
}


.full-photo picture,
.full-photo img {
    width: 100%;
    height: 100%;
}


.full-photo img {
    object-fit: cover;
    object-position: center;
}


.gallery {
    padding:
        clamp(90px, 10vw, 150px)
        clamp(20px, 5vw, 80px);
    background: var(--night-deep);
    color: var(--white);
}


.gallery__head {
    width: min(100%, 1120px);
    margin: 0 auto 60px;
    text-align: center;
}


.gallery__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    width: min(100%, 1500px);
    height: min(75vw, 950px);
    margin: 0 auto;
}


.gallery__item {
    overflow: hidden;
}


.gallery__item--wide {
    grid-row: 1 / span 2;
}


.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}


.gallery__item:hover img {
    transform: scale(1.025);
}


.event-offer {
    background:
        linear-gradient(
            135deg,
            #09192b,
            #02080e
        );
    color: var(--white);
    text-align: center;
}


.event-offer__inner {
    width: min(100%, 800px);
    margin: 0 auto;
}


.event-offer p {
    margin: 0 auto 38px;
    max-width: 580px;
    color: rgba(255,255,255,.64);
    font-size: 18px;
    line-height: 1.7;
}


.event-offer small {
    display: block;
    margin-top: 22px;
    color: rgba(255,255,255,.44);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}


.steps {
    margin-top: 62px;
}


.step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 27px 28px;
    border-top: 1px solid rgba(23,25,26,.12);
}


.step:last-child {
    border-bottom: 1px solid rgba(23,25,26,.12);
}


.step > span {
    color: var(--red);
    font-family: var(--serif);
    font-size: 26px;
}


.step h3 {
    margin: 0 0 7px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}


.step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}


.booking {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    color: var(--white);
}


.booking__background,
.booking__background picture,
.booking__background img,
.booking__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


.booking__background img {
    object-fit: cover;
}


.booking__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3,9,15,.97),
            rgba(3,9,15,.85) 50%,
            rgba(3,9,15,.72)
        );
}


.booking__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(380px, 520px);
    gap: 90px;
    align-items: center;
    width: min(100% - 72px, 1240px);
    min-height: 900px;
    margin: 0 auto;
    padding: 100px 0;
}


.booking__copy h2 {
    margin: 0 0 30px;
    font-family: var(--serif);
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 400;
    line-height: .93;
}


.booking__copy h2 em {
    display: block;
    color: var(--gold-light);
    font-weight: 400;
}


.booking__copy > p {
    max-width: 500px;
    color: rgba(255,255,255,.68);
    font-size: 18px;
    line-height: 1.7;
}


.booking__mini {
    display: grid;
    gap: 10px;
    margin-top: 38px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
}


.booking-card {
    padding: clamp(28px, 4vw, 48px);
    background: rgba(5,14,23,.94);
    border: 1px solid rgba(200,161,90,.25);
    backdrop-filter: blur(14px);
}


.form-head {
    margin-bottom: 32px;
}


.form-head span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}


.form-head h3 {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
}


form label {
    display: block;
    margin-bottom: 20px;
}


form label > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}


input,
select {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 0;
    outline: none;
    background: rgba(255,255,255,.05);
    color: var(--white);
    font-size: 16px;
}


input:focus,
select:focus {
    border-color: var(--gold);
}


select option {
    color: var(--ink);
}


.check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}


.check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}


.check span {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
}


.form-privacy {
    margin: 0 0 22px;
    color: rgba(255,255,255,.4);
    font-size: 11px;
    line-height: 1.55;
}


.form-error {
    margin: 16px 0 0;
    color: #ff9a9a;
    font-size: 13px;
    line-height: 1.5;
}


.pass-result {
    text-align: center;
}


.pass-result__label {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}


.pass-result h3 {
    margin: 10px 0 8px;
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
}


.pass-result__name {
    margin: 0 0 24px;
    color: rgba(255,255,255,.68);
}


.pass-result__qr {
    width: min(100%, 280px);
    margin: 22px auto;
    padding: 12px;
    background: var(--white);
}


.pass-result__code {
    margin: 18px 0 28px;
    color: var(--gold-light);
    font-family: monospace;
    font-size: 15px;
    letter-spacing: .08em;
}


.pass-result__actions {
    display: grid;
    gap: 10px;
}


.location__logo {
    width: 150px;
    margin: 0 auto 45px;
}


.location__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 38px;
}


.text-link {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


.footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 40px;
    background: var(--night-deep);
    color: rgba(255,255,255,.42);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}


.mobile-cta {
    display: none;
}


.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}


.reveal.is-visible {
    opacity: 1;
    transform: none;
}


.pass-route {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% 0%,
            #132b43,
            #040b13 65%
        );
    color: var(--white);
}


.standalone-pass {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 30px 20px;
}


.standalone-pass__card {
    width: min(100%, 470px);
    padding: 38px 30px;
    border: 1px solid rgba(200,161,90,.3);
    background: rgba(6,18,30,.96);
    text-align: center;
}


.standalone-pass__logo {
    width: 130px;
    margin: 0 auto 25px;
}


.standalone-pass__card h1 {
    margin: 12px 0 8px;
    font-family: var(--serif);
    font-size: 45px;
    font-weight: 400;
}


.standalone-pass__qr {
    width: 270px;
    max-width: 100%;
    margin: 26px auto;
    padding: 12px;
    background: var(--white);
}


@media (max-width: 850px) {

    .hero__top,
    .hero__content {
        width: calc(100% - 40px);
    }


    .hero__top {
        top: 22px;
    }


    .hero__logo {
        width: 96px;
    }


    .hero__content {
        display: flex;
        min-height: 100svh;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 150px;
        padding-bottom: 92px;
    }


    .hero__shade {
        background:
            linear-gradient(
                0deg,
                rgba(2,8,14,.98) 0%,
                rgba(2,8,14,.76) 52%,
                rgba(2,8,14,.42) 100%
            );
    }


    .hero h1 {
        width: 100%;
        font-size: clamp(50px, 14vw, 78px);
    }


    .hero__intro {
        width: 100%;
        margin-top: 25px;
        font-size: 16px;
    }


    .hero__facts {
        display: grid;
        gap: 9px;
        margin-top: 28px;
    }


    .hero__facts span::after {
        display: none;
    }


    .hero__scroll {
        display: none;
    }


    .section {
        padding:
            88px
            22px;
    }


    .narrow h2,
    .content > h2,
    .gallery__head h2,
    .event-offer h2 {
        font-size: clamp(40px, 11vw, 58px);
    }


    .narrow p {
        font-size: 16px;
    }


    .photo-duo {
        grid-template-columns: 1fr;
        height: auto;
    }


    .photo-duo picture {
        height: 62vw;
        min-height: 320px;
    }


    .number-item {
        grid-template-columns: 55px 1fr;
        gap: 15px;
        padding: 28px 0;
    }


    .number {
        font-size: 31px;
    }


    .full-photo {
        height: 78vh;
        min-height: 540px;
    }


    .gallery {
        padding: 85px 12px;
    }


    .gallery__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows:
            minmax(390px, 120vw)
            minmax(240px, 68vw);
        gap: 8px;
        height: auto;
    }


    .gallery__item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }


    .step {
        grid-template-columns: 48px 1fr;
        padding: 24px 0;
    }


    .booking {
        min-height: auto;
    }


    .booking__inner {
        display: block;
        width: calc(100% - 40px);
        min-height: auto;
        padding: 90px 0;
    }


    .booking__copy {
        margin-bottom: 50px;
    }


    .booking__copy h2 {
        font-size: clamp(56px, 15vw, 82px);
    }


    .booking-card {
        padding: 28px 22px;
    }


    .footer {
        padding-bottom: 100px;
    }


    .mobile-cta {
        position: fixed;
        z-index: 100;
        right: 12px;
        bottom: 12px;
        left: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 62px;
        padding: 0 22px;
        background: var(--gold);
        color: var(--night-deep);
        text-decoration: none;
        font-size: 12px;
        letter-spacing: .12em;
        text-transform: uppercase;
        box-shadow:
            0 18px 45px
            rgba(0,0,0,.32);
    }


    .mobile-cta strong {
        font-family: var(--serif);
        font-size: 25px;
        font-weight: 400;
        letter-spacing: 0;
    }

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }


    .reveal {
        opacity: 1;
        transform: none;
    }

}

/* ==================================================
   DISH GALLERY V2
   ================================================== */

.dish-gallery {
    padding:
        clamp(90px, 10vw, 150px)
        clamp(18px, 4vw, 64px);

    background:
        var(--night-deep);

    color:
        var(--white);
}


.dish-gallery__head {
    width:
        min(100%, 760px);

    margin:
        0 auto 60px;

    text-align:
        center;
}


.dish-gallery__head h2 {
    margin:
        0 0 24px;

    font-family:
        var(--serif);

    font-size:
        clamp(48px, 6vw, 88px);

    font-weight:
        400;

    line-height:
        .95;

    letter-spacing:
        -.04em;
}


.dish-gallery__head > p:last-child {
    max-width:
        560px;

    margin:
        0 auto;

    color:
        rgba(255,255,255,.58);

    font-size:
        16px;

    line-height:
        1.7;
}


.dish-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        12px;

    width:
        min(100%, 1420px);

    margin:
        0 auto;
}


.dish-tile {
    position:
        relative;

    margin:
        0;

    aspect-ratio:
        4 / 3;

    overflow:
        hidden;

    background:
        var(--night-soft);
}


.dish-tile picture {
    display:
        block;

    width:
        100%;

    height:
        100%;
}


.dish-tile img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .8s ease;
}


.dish-tile:hover img {
    transform:
        scale(1.025);
}


@media (max-width: 850px) {

    .dish-gallery {
        padding:
            88px 10px;
    }


    .dish-gallery__head {
        width:
            calc(100% - 28px);

        margin-bottom:
            38px;
    }


    .dish-gallery__head h2 {
        font-size:
            clamp(46px, 13vw, 66px);
    }


    .dish-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            7px;
    }


    .dish-tile {
        aspect-ratio:
            1 / 1;
    }

}
