/* Uses the variables and shared components from styles.css. */


/* ==================================================
   PAGE CONTAINER
================================================== */

.wakes-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   PAGE
================================================== */

.wakes-page {
    position: relative;
    z-index: 3;

    min-height: 100vh;
    padding-top: var(--header-height);

    background-color: #ffffff;
}


/* ==================================================
   EDITORIAL INTRODUCTION
================================================== */

.wakes-introduction {
    position: relative;

    padding: 72px 0 78px;

    overflow: hidden;

    background-color: #ffffff;
    border-top: 6px solid var(--orange);
}

.wakes-introduction::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 34%;
    height: 100%;

    background-color: var(--mid-grey);

    pointer-events: none;
}

.wakes-introduction-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: clamp(
        24px,
        6.4vw,
        72px
    );
}

.wakes-introduction-copy {
    min-width: 0;

    padding: 20px 0;
}

.wakes-introduction h1 {
    max-width: 620px;
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            5.7vw,
            5rem
        );

    font-weight: 400;
    line-height: 1.04;

    overflow-wrap: break-word;
}

.wakes-introduction-separator {
    width: 72px;
    height: 3px;

    margin: 26px 0;

    background-color: var(--orange);
}

.wakes-introduction-copy
> p:not(.section-eyebrow) {
    max-width: 620px;

    margin: 0 0 14px;

    color: #666666;

    font-size:
        clamp(
            12px,
            1.45vw,
            16px
        );

    line-height: 1.75;
}

.wakes-introduction-copy
.wakes-introduction-lead {
    color: var(--text);

    font-size:
        clamp(
            14px,
            1.7vw,
            19px
        );
}

.wakes-introduction-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: clamp(
        12px,
        2.2vw,
        25px
    );

    margin-top: 30px;
}


/* ==================================================
   INTRODUCTION BUTTONS
================================================== */

.wakes-primary-button,
.wakes-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 0;

    padding:
        clamp(
            10px,
            1.35vw,
            15px
        )
        clamp(
            14px,
            2.15vw,
            24px
        );

    border: 2px solid var(--orange);

    background-color: var(--orange);
    color: #ffffff;

    font-size:
        clamp(
            8px,
            1vw,
            11px
        );

    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.wakes-primary-button:hover,
.wakes-call-button:hover,
.wakes-primary-button:focus-visible,
.wakes-call-button:focus-visible {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);

    transform: translateY(-2px);
}

.wakes-primary-button:focus-visible,
.wakes-call-button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.wakes-text-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--navy);

    font-size:
        clamp(
            8px,
            1vw,
            11px
        );

    font-weight: 700;
    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.wakes-text-link span {
    color: var(--orange);

    font-size:
        clamp(
            15px,
            1.8vw,
            20px
        );

    line-height: 1;
}

.wakes-text-link:hover,
.wakes-text-link:focus-visible {
    gap: 11px;

    color: var(--orange);
}

.wakes-text-link:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* ==================================================
   INTRODUCTION IMAGE
================================================== */

.wakes-introduction-image {
    position: relative;

    min-width: 0;
    min-height:
        clamp(
            250px,
            42.85vw,
            480px
        );

    overflow: hidden;

    background-color: var(--navy);

    box-shadow:
        0 24px 55px
        rgba(0, 0, 0, 0.14);
}

.wakes-introduction-image img {
    display: block;

    width: 100%;
    height:
        clamp(
            250px,
            42.85vw,
            480px
        );

    object-fit: cover;
}

.wakes-image-note {
    position: absolute;
    right:
        clamp(
            10px,
            2.1vw,
            24px
        );

    bottom:
        clamp(
            10px,
            2.1vw,
            24px
        );

    width:
        min(
            270px,
            calc(100% - 20px)
        );

    padding:
        clamp(
            12px,
            1.8vw,
            20px
        )
        clamp(
            13px,
            2vw,
            22px
        );

    background-color:
        rgba(
            14,
            22,
            32,
            0.93
        );

    color: #ffffff;
}

.wakes-image-note span {
    display: block;

    margin-bottom: 6px;

    color: var(--orange);

    font-size:
        clamp(
            7px,
            0.8vw,
            9px
        );

    font-weight: 700;
    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.wakes-image-note p {
    margin: 0;

    font-size:
        clamp(
            9px,
            1.07vw,
            12px
        );

    line-height: 1.6;
}


/* ==================================================
   SECTION HEADINGS
================================================== */

.wakes-section-heading {
    width: min(730px, 100%);
    margin: 0 auto 46px;

    text-align: center;
}

.wakes-section-heading
> p:not(.section-eyebrow) {
    max-width: 640px;

    margin: 17px auto 0;

    color: #666666;

    font-size:
        clamp(
            12px,
            1.35vw,
            15px
        );

    line-height: 1.75;
}


/* ==================================================
   ARRANGEMENTS
================================================== */

.wakes-arrangements {
    padding: 72px 0 82px;

    overflow: hidden;

    background-color: var(--light-grey);
}

.wakes-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap:
        clamp(
            10px,
            2.25vw,
            25px
        );
}

.wakes-feature {
    min-width: 0;

    padding:
        clamp(
            18px,
            2.85vw,
            32px
        )
        clamp(
            15px,
            2.5vw,
            28px
        );

    background-color: #ffffff;
    border-top: 4px solid var(--orange);
}

.wakes-feature-number {
    display: block;

    margin-bottom:
        clamp(
            13px,
            2vw,
            23px
        );

    color:
        rgba(
            184,
            134,
            11,
            0.28
        );

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            26px,
            3.75vw,
            42px
        );

    font-weight: 700;
    line-height: 1;
}

.wakes-feature h3 {
    margin: 0 0 11px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            14px,
            2.05vw,
            23px
        );

    font-weight: 400;
    line-height: 1.3;

    overflow-wrap: break-word;
}

.wakes-feature p {
    margin: 0;

    color: #666666;

    font-size:
        clamp(
            9px,
            1.16vw,
            13px
        );

    line-height: 1.7;

    overflow-wrap: break-word;
}


/* ==================================================
   MODERN GALLERY
================================================== */

.wakes-gallery-section {
    padding: 76px 0 86px;

    overflow: hidden;

    background-color: #ffffff;
}

.wakes-gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap:
        clamp(
            20px,
            4vw,
            45px
        );

    margin-bottom: 40px;
}

.wakes-gallery-heading > p {
    max-width: 390px;

    margin: 0;

    color: #666666;

    font-size:
        clamp(
            10px,
            1.16vw,
            13px
        );

    line-height: 1.65;

    text-align: right;
}

.wakes-gallery-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(0, 0.75fr);

    gap:
        clamp(
            10px,
            2vw,
            22px
        );
}


/* ==================================================
   MAIN GALLERY IMAGE
================================================== */

.wakes-gallery-main {
    position: relative;

    display: block;

    min-width: 0;
    min-height:
        clamp(
            300px,
            50.9vw,
            570px
        );

    padding: 0;

    overflow: hidden;

    border: 0;

    background-color: var(--navy);

    cursor: pointer;
}

.wakes-gallery-main::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(
                8,
                14,
                22,
                0.82
            ),
            transparent 52%
        );

    pointer-events: none;
}

.wakes-gallery-main img {
    display: block;

    width: 100%;
    height:
        clamp(
            300px,
            50.9vw,
            570px
        );

    object-fit: cover;

    transition:
        opacity 0.4s ease,
        transform 0.7s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.wakes-gallery-main-caption {
    position: absolute;

    right:
        clamp(
            14px,
            3vw,
            34px
        );

    bottom:
        clamp(
            14px,
            2.75vw,
            31px
        );

    left:
        clamp(
            14px,
            3vw,
            34px
        );

    z-index: 2;

    max-width: 560px;

    color: #ffffff;

    text-align: left;
}

.wakes-gallery-main-caption p {
    margin: 0 0 7px;

    color: var(--orange);

    font-size:
        clamp(
            7px,
            0.8vw,
            9px
        );

    font-weight: 700;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.wakes-gallery-main-caption h3 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1.1rem,
            3.5vw,
            2.8rem
        );

    font-weight: 400;
    line-height: 1.15;
}

.wakes-gallery-main:hover img,
.wakes-gallery-main:focus-visible img {
    opacity: 0.94;

    transform: scale(1.035);
}


/* ==================================================
   GALLERY SIDE
================================================== */

.wakes-gallery-side {
    display: grid;
    grid-template-rows:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    min-width: 0;

    gap:
        clamp(
            10px,
            2vw,
            22px
        );
}

.wakes-gallery-secondary {
    position: relative;

    display: block;

    min-width: 0;
    min-height:
        clamp(
            135px,
            23.2vw,
            260px
        );

    padding: 0;

    overflow: hidden;

    border: 0;

    background-color: var(--navy);

    cursor: pointer;
}

.wakes-gallery-secondary::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(
                8,
                14,
                22,
                0.72
            ),
            transparent 55%
        );

    pointer-events: none;
}

.wakes-gallery-secondary img {
    display: block;

    width: 100%;
    height: 100%;

    min-height:
        clamp(
            135px,
            23.2vw,
            260px
        );

    object-fit: cover;

    transition:
        opacity 0.4s ease,
        transform 0.65s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.wakes-gallery-secondary > span {
    position: absolute;

    right:
        clamp(
            9px,
            1.8vw,
            20px
        );

    bottom:
        clamp(
            8px,
            1.6vw,
            18px
        );

    left:
        clamp(
            9px,
            1.8vw,
            20px
        );

    z-index: 2;

    color: #ffffff;

    font-size:
        clamp(
            7px,
            0.9vw,
            10px
        );

    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;

    text-align: left;
    text-transform: uppercase;
}

.wakes-gallery-secondary:hover img,
.wakes-gallery-secondary:focus-visible img {
    opacity: 0.94;

    transform: scale(1.04);
}


/* ==================================================
   GALLERY INFORMATION PANEL
================================================== */

.wakes-gallery-information {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding:
        clamp(
            16px,
            2.85vw,
            32px
        )
        clamp(
            14px,
            2.7vw,
            30px
        );

    background-color: var(--navy);

    border-left:
        clamp(
            3px,
            0.45vw,
            5px
        )
        solid
        var(--orange);
}

.wakes-gallery-information-kicker {
    margin: 0 0 9px;

    color: var(--orange);

    font-size:
        clamp(
            7px,
            0.8vw,
            9px
        );

    font-weight: 700;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.wakes-gallery-information h3 {
    margin: 0 0 15px;

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1rem,
            3vw,
            2rem
        );

    font-weight: 400;
    line-height: 1.2;
}

.wakes-gallery-information
> p:not(
    .wakes-gallery-information-kicker
) {
    margin: 0 0 22px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size:
        clamp(
            9px,
            1.16vw,
            13px
        );

    line-height: 1.7;
}

.wakes-gallery-information a {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 7px;

    color: #ffffff;

    font-size:
        clamp(
            7px,
            0.9vw,
            10px
        );

    font-weight: 700;
    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.wakes-gallery-information a span {
    color: var(--orange);

    font-size:
        clamp(
            13px,
            1.6vw,
            18px
        );
}

.wakes-gallery-information a:hover,
.wakes-gallery-information a:focus-visible {
    gap: 11px;

    color: var(--gold);
}

.wakes-gallery-main:focus-visible,
.wakes-gallery-secondary:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* ==================================================
   BUFFETS
================================================== */

.wakes-buffets {
    padding: 74px 0 84px;

    overflow: hidden;

    background-color: var(--mid-grey);

    scroll-margin-top:
        calc(
            var(--header-height)
            +
            20px
        );
}

.buffet-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    align-items: stretch;

    gap:
        clamp(
            10px,
            2.3vw,
            26px
        );
}

.buffet-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    background-color: #ffffff;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.13
        );
}

.buffet-card-featured {
    border-color: var(--orange);

    box-shadow:
        0 18px 38px
        rgba(
            0,
            0,
            0,
            0.1
        );
}

.buffet-featured-label {
    position: absolute;

    top: 0;
    right: 0;

    z-index: 2;

    padding:
        clamp(
            5px,
            0.7vw,
            8px
        )
        clamp(
            7px,
            1.16vw,
            13px
        );

    background-color: var(--orange);
    color: #ffffff;

    font-size:
        clamp(
            6px,
            0.8vw,
            9px
        );

    font-weight: 700;
    letter-spacing: 0.11em;

    text-transform: uppercase;
}

.buffet-card-header {
    padding:
        clamp(
            18px,
            2.95vw,
            33px
        )
        clamp(
            14px,
            2.6vw,
            29px
        )
        clamp(
            15px,
            2.4vw,
            27px
        );

    background-color: var(--navy);

    text-align: center;
}

.buffet-card-label {
    margin: 0 0 8px;

    color: var(--orange);

    font-size:
        clamp(
            7px,
            0.9vw,
            10px
        );

    font-weight: 700;
    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.buffet-card h3 {
    margin: 0;

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1.7rem,
            5vw,
            3.5rem
        );

    font-weight: 700;
    line-height: 1;
}

.buffet-price {
    margin: 10px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );

    font-size:
        clamp(
            7px,
            1vw,
            11px
        );

    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;

    text-transform: uppercase;
}

.buffet-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;

    min-width: 0;

    padding:
        clamp(
            16px,
            2.7vw,
            30px
        )
        clamp(
            13px,
            2.6vw,
            29px
        )
        clamp(
            18px,
            3vw,
            34px
        );
}

.buffet-card-body ul {
    display: grid;

    gap:
        clamp(
            7px,
            1.07vw,
            12px
        );

    padding: 0;
    margin: 0;

    list-style: none;
}

/* ==================================================
   BUFFET LIST HEADING
================================================== */

.buffet-list-heading {
    margin-top: 16px;
    margin-bottom: 6px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;

    list-style: none;
}

.buffet-list-heading:first-child {
    margin-top: 0;
}

.buffet-list-heading::before {
    display: none !important;
    content: none !important;
}

.buffet-card-body li {
    position: relative;

    padding-left:
        clamp(
            13px,
            1.8vw,
            20px
        );

    color: #666666;

    font-size:
        clamp(
            9px,
            1.16vw,
            13px
        );

    line-height: 1.55;

    overflow-wrap: break-word;
}

.buffet-card-body li::before {
    content: "";

    position: absolute;

    top: 0.58em;
    left: 0;

    width:
        clamp(
            4px,
            0.63vw,
            7px
        );

    height:
        clamp(
            4px,
            0.63vw,
            7px
        );

    background-color: var(--orange);

    transform: rotate(45deg);
}

.buffet-sandwiches {
    margin-top: auto;

    padding-top:
        clamp(
            14px,
            2vw,
            23px
        );
}

.buffet-sandwiches h4 {
    margin: 0 0 8px;

    padding-top:
        clamp(
            11px,
            1.7vw,
            19px
        );

    border-top:
        1px solid
        rgba(
            0,
            0,
            0,
            0.1
        );

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            11px,
            1.5vw,
            17px
        );

    font-weight: 400;
}

.buffet-sandwiches p {
    margin: 0;

    color: #666666;

    font-size:
        clamp(
            8px,
            1.07vw,
            12px
        );

    line-height: 1.65;
}

.buffet-sandwiches span {
    display: block;

    margin-top: 9px;

    color: var(--orange);

    font-size:
        clamp(
            7px,
            0.9vw,
            10px
        );

    font-weight: 700;
    line-height: 1.5;
}


/* ==================================================
   BUFFET INFORMATION
================================================== */

.buffet-information-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        clamp(
            10px,
            2vw,
            22px
        );

    margin-top: 30px;
}

.buffet-information-card {
    display: grid;
    grid-template-columns:
        clamp(
            32px,
            4.8vw,
            54px
        )
        minmax(0, 1fr);

    gap:
        clamp(
            10px,
            1.8vw,
            20px
        );

    min-width: 0;

    padding:
        clamp(
            14px,
            2.4vw,
            27px
        )
        clamp(
            14px,
            2.6vw,
            29px
        );

    background-color: #ffffff;
    border-left: 4px solid var(--orange);
}

.buffet-information-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width:
        clamp(
            30px,
            4.3vw,
            48px
        );

    height:
        clamp(
            30px,
            4.3vw,
            48px
        );

    background-color: var(--navy);
    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            16px,
            2.2vw,
            25px
        );

    font-weight: 700;
}

.buffet-information-kicker {
    margin: 0 0 5px;

    color: var(--orange);

    font-size:
        clamp(
            6px,
            0.8vw,
            9px
        );

    font-weight: 700;
    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.buffet-information-card h3 {
    margin: 0 0 8px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            12px,
            1.8vw,
            20px
        );

    font-weight: 400;
}

.buffet-information-card p:last-child {
    margin: 0;

    color: #666666;

    font-size:
        clamp(
            8px,
            1.07vw,
            12px
        );

    line-height: 1.65;
}

.buffet-information-card strong {
    color: var(--navy);
}

.buffet-note {
    margin: 28px 0 0;

    color: #777777;

    font-size:
        clamp(
            8px,
            1vw,
            11px
        );

    line-height: 1.6;

    text-align: center;
}


/* ==================================================
   BOOKING
================================================== */

.wakes-booking {
    padding: 76px 0 82px;

    overflow: hidden;

    background-color: var(--light-grey);
}

.wakes-booking-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.85fr);

    align-items: center;

    gap:
        clamp(
            24px,
            6.4vw,
            72px
        );
}

.wakes-booking-copy {
    min-width: 0;
}

.wakes-booking-separator {
    width: 62px;
    height: 3px;

    margin: 23px 0;

    background-color: var(--orange);
}

.wakes-booking-copy
> p:not(.section-eyebrow) {
    max-width: 610px;

    margin: 0 0 13px;

    color: #666666;

    font-size:
        clamp(
            11px,
            1.35vw,
            15px
        );

    line-height: 1.75;
}

.wakes-call-button {
    margin-top: 17px;
}

.wakes-booking-steps {
    padding: 0;
    margin: 0;

    min-width: 0;

    background-color: #ffffff;
    border-top: 5px solid var(--orange);

    list-style: none;
}

.wakes-booking-steps li {
    display: grid;
    grid-template-columns:
        clamp(
            32px,
            4.8vw,
            54px
        )
        minmax(0, 1fr);

    gap:
        clamp(
            10px,
            1.8vw,
            20px
        );

    min-width: 0;

    padding:
        clamp(
            15px,
            2.3vw,
            26px
        )
        clamp(
            14px,
            2.4vw,
            27px
        );

    border-bottom:
        1px solid
        rgba(
            0,
            0,
            0,
            0.09
        );
}

.wakes-booking-steps
li:last-child {
    border-bottom: 0;
}

.wakes-booking-steps
> li > span {
    color:
        rgba(
            184,
            134,
            11,
            0.35
        );

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            17px,
            2.6vw,
            29px
        );

    font-weight: 700;
}

.wakes-booking-steps h3 {
    margin: 0 0 7px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            12px,
            1.8vw,
            20px
        );

    font-weight: 400;
}

.wakes-booking-steps p {
    margin: 0;

    color: #666666;

    font-size:
        clamp(
            9px,
            1.16vw,
            13px
        );

    line-height: 1.65;
}


/* ==================================================
   SCROLL REVEAL
================================================== */

.wakes-reveal,
.wakes-feature,
.wakes-gallery-main,
.wakes-gallery-secondary,
.wakes-gallery-information,
.buffet-card,
.buffet-information-card {
    opacity: 1;

    transform: translateY(0);
}

.js-enabled
.wakes-reveal.reveal-ready:not(.animate-in),
.js-enabled
.wakes-feature.reveal-ready:not(.animate-in),
.js-enabled
.wakes-gallery-main.reveal-ready:not(.animate-in),
.js-enabled
.wakes-gallery-secondary.reveal-ready:not(.animate-in),
.js-enabled
.wakes-gallery-information.reveal-ready:not(.animate-in),
.js-enabled
.buffet-card.reveal-ready:not(.animate-in),
.js-enabled
.buffet-information-card.reveal-ready:not(.animate-in) {
    opacity: 0;

    transform: translateY(30px);
}

.wakes-reveal.reveal-ready,
.wakes-feature.reveal-ready,
.wakes-gallery-main.reveal-ready,
.wakes-gallery-secondary.reveal-ready,
.wakes-gallery-information.reveal-ready,
.buffet-card.reveal-ready,
.buffet-information-card.reveal-ready {
    transition:
        opacity 1.05s ease,
        transform 1.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.wakes-reveal.animate-in,
.wakes-feature.animate-in,
.wakes-gallery-main.animate-in,
.wakes-gallery-secondary.animate-in,
.wakes-gallery-information.animate-in,
.buffet-card.animate-in,
.buffet-information-card.animate-in {
    opacity: 1;

    transform: translateY(0);
}


/* ==================================================
   POST-REVEAL HOVER STATES
================================================== */

.wakes-feature.reveal-ready.animate-in,
.buffet-card.reveal-ready.animate-in {
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.wakes-feature:hover,
.wakes-feature.reveal-ready.animate-in:hover,
.buffet-card:hover,
.buffet-card.reveal-ready.animate-in:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 32px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


/* ==================================================
   GALLERY MODAL PAGE LOCK
================================================== */

body.gallery-open {
    overflow: hidden;
}


/* ==================================================
   GALLERY MODAL
================================================== */

.wakes-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: none;
    align-items: center;
    justify-content: center;

    padding:
        clamp(
            12px,
            2.15vw,
            24px
        );
}

.wakes-gallery-modal.open {
    display: flex;
}

.wakes-gallery-overlay {
    position: absolute;
    inset: 0;

    background-color:
        rgba(
            5,
            8,
            14,
            0.84
        );

    cursor: pointer;
}

.wakes-gallery-dialog {
    position: relative;
    z-index: 1;

    width: min(950px, 100%);
    max-height:
        calc(
            100dvh -
            48px
        );

    overflow: hidden;

    background-color: #ffffff;

    box-shadow:
        0 26px 70px
        rgba(
            0,
            0,
            0,
            0.35
        );
}

.wakes-gallery-dialog img {
    display: block;

    width: 100%;
    max-height:
        calc(
            100dvh -
            48px
        );

    object-fit: contain;
}

.wakes-gallery-close {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    padding: 0;

    border: 0;

    background-color: var(--navy);
    color: #ffffff;

    cursor: pointer;

    font-size: 27px;
    line-height: 1;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.wakes-gallery-close:hover,
.wakes-gallery-close:focus-visible {
    background-color: var(--gold);
    color: var(--navy);

    transform: rotate(4deg);
}

.wakes-gallery-close:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}


/* ==================================================
   TABLET
   DESKTOP STRUCTURE IS PRESERVED
================================================== */

@media (max-width: 950px) {

    .wakes-container {
        width:
            calc(
                100% -
                36px
            );
    }

    /*
       No grids are collapsed here.

       Introduction remains 2 columns.
       Features remain 3 columns.
       Gallery remains 2 columns.
       Buffet cards remain 3 columns.
       Buffet information remains 2 columns.
       Booking remains 2 columns.
    */

    .wakes-introduction,
    .wakes-arrangements,
    .wakes-gallery-section,
    .wakes-buffets,
    .wakes-booking {
        padding-top:
            clamp(
                52px,
                7vw,
                76px
            );

        padding-bottom:
            clamp(
                58px,
                7.5vw,
                86px
            );
    }
}


/* ==================================================
   MOBILE
   DESKTOP STRUCTURE IS PRESERVED
================================================== */

@media (max-width: 700px) {

    .wakes-page {
        padding-top:
            var(--header-height);
    }

    .wakes-container {
        width:
            calc(
                100% -
                28px
            );
    }


    /* ==================================================
       INTRODUCTION
       STILL DESKTOP TWO-COLUMN LAYOUT
    ================================================== */

    .wakes-introduction {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .wakes-introduction::before {
        display: block;

        width: 34%;
    }

    .wakes-introduction-grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(0, 1.08fr);

        gap: 16px;
    }

    .wakes-introduction-copy {
        padding: 12px 0;

        text-align: left;
    }

    .wakes-introduction-separator {
        width: 48px;

        margin:
            18px
            0;
    }

    .wakes-introduction-actions {
        justify-content: flex-start;

        gap: 9px;

        margin-top: 20px;
    }

    .wakes-primary-button,
    .wakes-call-button {
        padding:
            9px
            11px;

        font-size: 7px;

        letter-spacing:
            0.07em;
    }

    .wakes-text-link {
        gap: 5px;

        font-size: 7px;

        letter-spacing:
            0.07em;
    }

    .wakes-text-link span {
        font-size: 13px;
    }


    /* ==================================================
       INTRODUCTION IMAGE
    ================================================== */

    .wakes-introduction-image {
        min-height:
            clamp(
                220px,
                64vw,
                330px
            );
    }

    .wakes-introduction-image img {
        height:
            clamp(
                220px,
                64vw,
                330px
            );
    }

    .wakes-image-note {
        right: 8px;
        bottom: 8px;

        width:
            calc(
                100% -
                16px
            );

        padding: 10px;
    }


    /* ==================================================
       SECTION SPACING
    ================================================== */

    .wakes-arrangements,
    .wakes-gallery-section,
    .wakes-buffets,
    .wakes-booking {
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .wakes-section-heading {
        margin-bottom: 32px;
    }


    /* ==================================================
       ARRANGEMENTS
       STILL THREE COLUMNS
    ================================================== */

    .wakes-feature-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 8px;
    }

    .wakes-feature {
        padding:
            16px
            10px;
    }


    /* ==================================================
       GALLERY HEADING
       STILL DESKTOP ALIGNMENT
    ================================================== */

    .wakes-gallery-heading {
        align-items: flex-end;
        flex-direction: row;

        gap: 14px;

        margin-bottom: 28px;
    }

    .wakes-gallery-heading > p {
        max-width: 38%;

        text-align: right;
    }


    /* ==================================================
       GALLERY
       STILL DESKTOP TWO-COLUMN LAYOUT
    ================================================== */

    .wakes-gallery-layout {
        grid-template-columns:
            minmax(0, 1.55fr)
            minmax(0, 0.75fr);

        gap: 8px;
    }

    .wakes-gallery-main {
        min-height:
            clamp(
                260px,
                78vw,
                370px
            );
    }

    .wakes-gallery-main img {
        height:
            clamp(
                260px,
                78vw,
                370px
            );
    }

    .wakes-gallery-main-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .wakes-gallery-side {
        grid-template-rows:
            minmax(0, 0.95fr)
            minmax(0, 1.05fr);

        gap: 8px;
    }

    .wakes-gallery-secondary {
        min-height: 0;
    }

    .wakes-gallery-secondary img {
        min-height: 0;
    }

    .wakes-gallery-information {
        padding:
            12px
            10px;

        border-left-width: 3px;
    }


    /* ==================================================
       BUFFETS
       STILL THREE COLUMNS
    ================================================== */

    .buffet-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 8px;

        width: 100%;
    }

    .buffet-card-header {
        padding:
            18px
            9px
            15px;
    }

    .buffet-card-body {
        padding:
            16px
            9px
            18px;
    }

    .buffet-featured-label {
        padding:
            4px
            6px;
    }


    /* ==================================================
       BUFFET INFORMATION
       STILL TWO COLUMNS
    ================================================== */

    .buffet-information-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 8px;

        width: 100%;

        margin-top: 20px;
    }

    .buffet-information-card {
        grid-template-columns:
            28px
            minmax(0, 1fr);

        gap: 8px;

        padding:
            12px
            10px;

        border-left-width: 3px;
    }

    .buffet-information-icon {
        width: 28px;
        height: 28px;

        font-size: 14px;
    }


    /* ==================================================
       BOOKING
       STILL TWO COLUMNS
    ================================================== */

    .wakes-booking-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.85fr);

        gap: 16px;
    }

    .wakes-booking-copy {
        text-align: left;
    }

    .wakes-booking-separator {
        width: 45px;

        margin:
            17px
            0;
    }

    .wakes-call-button {
        width: auto;
        max-width: none;
    }

    .wakes-booking-steps {
        border-top-width: 4px;
    }

    .wakes-booking-steps li {
        grid-template-columns:
            28px
            minmax(0, 1fr);

        gap: 8px;

        padding:
            13px
            10px;
    }


    /* ==================================================
       MODAL
       SAME CENTRED DESKTOP PRESENTATION
    ================================================== */

    .wakes-gallery-modal {
        align-items: center;
        justify-content: center;

        padding: 12px;
    }

    .wakes-gallery-dialog {
        width:
            min(
                950px,
                100%
            );

        max-height:
            calc(
                100dvh -
                24px
            );
    }

    .wakes-gallery-dialog img {
        max-height:
            calc(
                100dvh -
                24px
            );
    }

    .wakes-gallery-close {
        top: 8px;
        right: 8px;

        width: 38px;
        height: 38px;

        font-size: 24px;
    }
}


/* ==================================================
   VERY SMALL MOBILE
   LAYOUT STILL DOES NOT CHANGE
================================================== */

@media (max-width: 430px) {

    .wakes-container {
        width:
            calc(
                100% -
                20px
            );
    }

    .wakes-introduction-grid {
        gap: 10px;
    }

    .wakes-feature-grid,
    .buffet-grid {
        gap: 6px;
    }

    .wakes-gallery-layout,
    .wakes-gallery-side,
    .buffet-information-grid {
        gap: 6px;
    }

    .wakes-booking-grid {
        gap: 10px;
    }

    .wakes-introduction h1 {
        font-size:
            clamp(
                1.55rem,
                8vw,
                2rem
            );
    }

    .wakes-feature {
        padding:
            13px
            7px;
    }

    .buffet-card-body {
        padding:
            13px
            7px
            15px;
    }

    .buffet-card-header {
        padding:
            15px
            7px
            13px;
    }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (
    prefers-reduced-motion:
    reduce
) {

    .wakes-reveal,
    .wakes-feature,
    .wakes-gallery-main,
    .wakes-gallery-secondary,
    .wakes-gallery-information,
    .buffet-card,
    .buffet-information-card,
    .wakes-reveal.reveal-ready:not(.animate-in),
    .wakes-feature.reveal-ready:not(.animate-in),
    .wakes-gallery-main.reveal-ready:not(.animate-in),
    .wakes-gallery-secondary.reveal-ready:not(.animate-in),
    .wakes-gallery-information.reveal-ready:not(.animate-in),
    .buffet-card.reveal-ready:not(.animate-in),
    .buffet-information-card.reveal-ready:not(.animate-in),
    .wakes-gallery-main img,
    .wakes-gallery-secondary img {
        opacity: 1;

        transform: none;

        transition: none;
    }
}