/* Uses the variables and shared components from styles.css. */


/* ==================================================
   PAGE CONTAINER
================================================== */

.tea-room-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   PAGE
================================================== */

.tea-room-page {
    position: relative;
    z-index: 3;

    min-height: 100vh;
    padding-top: var(--header-height);

    background-color: #ffffff;
}


/* ==================================================
   INTRODUCTION
================================================== */

.tea-room-introduction {
    position: relative;

    padding: 74px 0 80px;

    overflow: hidden;

    background-color: var(--light-grey);
    border-top: 6px solid var(--orange);
}

.tea-room-introduction::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 37%;
    height: 100%;

    background-color: var(--navy);

    pointer-events: none;
}

.tea-room-introduction-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(430px, 1.1fr);

    align-items: center;
    gap: 74px;
}

.tea-room-introduction-copy {
    min-width: 0;
    padding: 20px 0;
}

.tea-room-introduction h1 {
    max-width: 620px;
    margin: 0;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5.7vw, 5rem);
    font-weight: 400;
    line-height: 1.04;
}

.tea-room-title-line {
    width: 72px;
    height: 3px;

    margin: 26px 0;

    background-color: var(--orange);
}

.tea-room-introduction-copy >
p:not(.section-eyebrow) {
    max-width: 610px;
    margin: 0 0 14px;

    color: #666666;

    font-size: 16px;
    line-height: 1.75;
}

.tea-room-introduction-copy
.tea-room-introduction-lead {
    color: var(--text);

    font-size: 19px;
}

.tea-room-introduction-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 26px;

    margin-top: 30px;
}


/* ==================================================
   BUTTONS
================================================== */

.tea-room-primary-button,
.tea-room-enquiry-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 15px 24px;

    border: 2px solid var(--orange);

    background-color: var(--orange);
    color: #ffffff;

    cursor: pointer;

    font-size: 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;
}

.tea-room-primary-button:hover,
.tea-room-enquiry-button:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);

    transform: translateY(-2px);
}

.tea-room-primary-button:focus-visible,
.tea-room-enquiry-button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* ==================================================
   TEXT LINK
================================================== */

.tea-room-text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.tea-room-text-link span {
    color: var(--orange);

    font-size: 17px;
    line-height: 1;
}

.tea-room-text-link:hover {
    gap: 12px;

    color: var(--orange);
}

.tea-room-text-link:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* ==================================================
   INTRODUCTION IMAGE
================================================== */

.tea-room-introduction-visual {
    position: relative;

    min-width: 0;
}

.tea-room-main-image {
    position: relative;

    display: block;

    width: 100%;
    min-height: 480px;
    padding: 0;

    overflow: hidden;

    border: 0;
    background-color: var(--navy);

    cursor: pointer;

    box-shadow:
        0 24px 55px
        rgba(0, 0, 0, 0.17);
}

.tea-room-main-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 13, 21, 0.22),
            transparent 44%
        );

    pointer-events: none;
}

.tea-room-main-image img {
    display: block;

    width: 100%;
    height: 480px;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.65s
        cubic-bezier(0.22, 1, 0.36, 1);

    backface-visibility: hidden;
}

.tea-room-main-image:hover img {
    transform: scale(1.035);
}

.tea-room-main-image:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* ==================================================
   INTRODUCTION NOTE
================================================== */

.tea-room-introduction-note {
    position: absolute;
    right: -22px;
    bottom: -28px;
    z-index: 3;

    width: min(290px, calc(100% - 42px));
    padding: 22px 24px;

    background-color: var(--orange);
    color: var(--navy);

    box-shadow:
        0 16px 38px
        rgba(0, 0, 0, 0.15);
}

.tea-room-introduction-note span {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.tea-room-introduction-note p {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;
}


/* ==================================================
   QUICK DETAILS
================================================== */

.tea-room-quick-details {
    position: relative;
    z-index: 2;

    padding: 44px 0;

    background-color: #ffffff;
}

.tea-room-detail-strip {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top: 1px solid rgba(0, 0, 0, 0.11);
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}

.tea-room-quick-detail {
    display: grid;
    grid-template-columns:
        42px minmax(0, 1fr);

    align-items: start;

    gap: 17px;

    min-width: 0;
    padding: 25px 28px;
}

.tea-room-quick-detail +
.tea-room-quick-detail {
    border-left: 1px solid rgba(0, 0, 0, 0.11);
}

.tea-room-quick-detail > span {
    color: rgba(184, 134, 11, 0.36);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.tea-room-quick-detail h2 {
    margin: 0 0 5px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
}

.tea-room-quick-detail p {
    margin: 0;

    color: #777777;

    font-size: 11px;
    line-height: 1.55;
}


/* ==================================================
   ROOM DETAILS
================================================== */

.tea-room-details {
    padding: 75px 0 82px;

    overflow: hidden;

    background-color: var(--mid-grey);

    scroll-margin-top:
        calc(var(--header-height) + 20px);
}

.tea-room-details-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(400px, 1.14fr);

    align-items: center;

    gap: 75px;
}

.tea-room-details-copy {
    min-width: 0;
}

.tea-room-section-line {
    width: 63px;
    height: 3px;

    margin: 23px 0;

    background-color: var(--orange);
}

.tea-room-details-copy >
p:not(.section-eyebrow) {
    max-width: 600px;
    margin: 0 0 14px;

    color: #666666;

    font-size: 15px;
    line-height: 1.75;
}


/* ==================================================
   OCCASION LIST
================================================== */

.tea-room-occasion-list {
    min-width: 0;

    background-color: #ffffff;
    border-top: 5px solid var(--orange);
}

.tea-room-occasion {
    display: grid;
    grid-template-columns:
        52px minmax(0, 1fr);

    align-items: start;

    gap: 20px;

    min-width: 0;
    padding: 26px 29px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.tea-room-occasion:last-child {
    border-bottom: 0;
}

.tea-room-occasion > span {
    color: rgba(184, 134, 11, 0.34);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
}

.tea-room-occasion h3 {
    margin: 0 0 7px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
}

.tea-room-occasion p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.65;
}


/* ==================================================
   ROOM SETUP
================================================== */

.tea-room-setup {
    padding: 80px 0;

    overflow: hidden;

    background-color: #ffffff;
}

.tea-room-setup-grid {
    display: grid;
    grid-template-columns:
        minmax(400px, 1.08fr)
        minmax(0, 0.92fr);

    align-items: center;

    gap: 74px;
}

.tea-room-setup-image-wrap {
    position: relative;

    min-width: 0;
}

.tea-room-setup-image-wrap::before {
    content: "";

    position: absolute;
    top: -22px;
    left: -22px;

    width: 58%;
    height: 54%;

    background-color: var(--orange);

    pointer-events: none;
}

.tea-room-secondary-image {
    position: relative;

    display: block;

    width: 100%;
    height: 430px;
    padding: 0;

    overflow: hidden;

    border: 0;
    background-color: var(--navy);

    cursor: pointer;
}

.tea-room-secondary-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.65s
        cubic-bezier(0.22, 1, 0.36, 1);

    backface-visibility: hidden;
}

.tea-room-secondary-image:hover img {
    transform: scale(1.035);
}

.tea-room-secondary-image:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.tea-room-setup-copy {
    min-width: 0;
}

.tea-room-setup-copy >
p:not(
    .section-eyebrow,
    .tea-room-setup-note
) {
    margin: 0 0 20px;

    color: #666666;

    font-size: 15px;
    line-height: 1.75;
}


/* ==================================================
   ROOM LAYOUT LIST
================================================== */

.tea-room-layout-list {
    display: grid;

    gap: 12px;

    padding: 0;
    margin: 24px 0;

    list-style: none;
}

.tea-room-layout-list li {
    position: relative;

    padding-left: 24px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.55;
}

.tea-room-layout-list li::before {
    content: "";

    position: absolute;
    top: 0.5em;
    left: 2px;

    width: 8px;
    height: 8px;

    background-color: var(--orange);

    transform: rotate(45deg);
}

.tea-room-setup-note {
    margin: 0;
    padding: 14px 17px;

    background-color: var(--light-grey);
    border-left: 3px solid var(--orange);
    color: #666666;

    font-size: 11px;
    line-height: 1.6;
}


/* ==================================================
   WHAT THE ROOM OFFERS
================================================== */

.tea-room-included {
    position: relative;

    padding: 72px 0 82px;

    overflow: hidden;

    background-color: var(--light-grey);

    isolation: isolate;
}


/* ==================================================
   INCLUDED BACKGROUND ACCENT
================================================== */

.tea-room-included::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 0;

    width: min(1220px, 96%);

    background:
        linear-gradient(
            135deg,
            rgba(20, 35, 57, 0.055) 0%,
            rgba(20, 35, 57, 0.018) 44%,
            rgba(226, 143, 37, 0.06) 100%
        );

    pointer-events: none;

    transform:
        translateX(-50%)
        scaleX(1);

    transform-origin: center;

    will-change: transform;
}


/* ==================================================
   INCLUDED GOLD LINE
================================================== */

.tea-room-included::after {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;

    width: min(1120px, calc(100% - 48px));
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--orange) 18%,
            var(--gold) 50%,
            var(--orange) 82%,
            transparent 100%
        );

    pointer-events: none;

    transform:
        translateX(-50%)
        scaleX(1);

    transform-origin: center;

    will-change: transform;
}


/* ==================================================
   INCLUDED CONTENT
================================================== */

.tea-room-included >
.tea-room-container {
    position: relative;
    z-index: 2;

    clip-path:
        inset(
            0 0 0 0
            round 1px
        );

    filter: blur(0);

    transform:
        translateY(0)
        scale(1);

    transform-origin: center center;

    backface-visibility: hidden;

    will-change:
        clip-path,
        transform,
        filter;
}

.tea-room-section-heading {
    width: min(720px, 100%);
    margin: 0 auto 45px;

    text-align: center;
}

.tea-room-section-heading >
p:not(.section-eyebrow) {
    max-width: 630px;
    margin: 17px auto 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;
}


/* ==================================================
   INCLUDED GRID
================================================== */

.tea-room-included-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.tea-room-included-card {
    min-width: 0;
    padding: 30px 25px;

    background-color: #ffffff;
    border: 1px solid transparent;
    border-bottom: 4px solid var(--orange);

    text-align: center;

    transform: translateY(0);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.tea-room-included-card:hover {
    border-color:
        rgba(226, 143, 37, 0.38);

    box-shadow:
        0 17px 35px
        rgba(0, 0, 0, 0.1);

    transform: translateY(-6px);
}


/* ==================================================
   INCLUDED ICON
================================================== */

.tea-room-included-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 53px;
    height: 53px;

    margin: 0 auto 21px;

    background-color: var(--navy);
    color: var(--gold);

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.tea-room-included-card:hover
.tea-room-included-icon {
    background-color: var(--orange);
    color: #ffffff;

    transform: translateY(-3px);
}

.tea-room-included-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tea-room-included-card h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.3;
}

.tea-room-included-card p {
    margin: 0;

    color: #666666;

    font-size: 12px;
    line-height: 1.65;
}


/* ==================================================
   WHAT THE ROOM OFFERS
   MODERN CENTRE REVEAL
================================================== */

/*
   The entire composition opens from the centre.
   This effect is retained on desktop, tablet and
   mobile rather than being replaced with a basic fade.
*/

.js-enabled
.tea-room-included.reveal-ready:not(.animate-in)
> .tea-room-container {
    clip-path:
        inset(
            0 48% 0 48%
            round 2px
        );

    filter: blur(5px);

    transform:
        translateY(30px)
        scale(0.975);
}

.js-enabled
.tea-room-included.reveal-ready:not(.animate-in)::before {
    transform:
        translateX(-50%)
        scaleX(0.18);
}

.js-enabled
.tea-room-included.reveal-ready:not(.animate-in)::after {
    transform:
        translateX(-50%)
        scaleX(0);
}


/* ==================================================
   INCLUDED REVEAL TRANSITIONS
================================================== */

.tea-room-included.reveal-ready
> .tea-room-container {
    transition:
        clip-path 1.55s
        cubic-bezier(0.22, 1, 0.36, 1),

        transform 1.6s
        cubic-bezier(0.22, 1, 0.36, 1),

        filter 1.1s ease;
}

.tea-room-included.reveal-ready::before {
    transition:
        transform 1.7s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.tea-room-included.reveal-ready::after {
    transition:
        transform 1.35s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.12s;
}


/* ==================================================
   INCLUDED FINAL STATE
================================================== */

.tea-room-included.animate-in
> .tea-room-container {
    clip-path:
        inset(
            0 0 0 0
            round 1px
        );

    filter: blur(0);

    transform:
        translateY(0)
        scale(1);
}

.tea-room-included.animate-in::before {
    transform:
        translateX(-50%)
        scaleX(1);
}

.tea-room-included.animate-in::after {
    transform:
        translateX(-50%)
        scaleX(1);
}


/* ==================================================
   ENQUIRY PANEL
================================================== */

.tea-room-enquiry {
    padding: 56px 0;

    background-color: var(--navy);
}

.tea-room-enquiry-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.tea-room-enquiry-inner > div {
    min-width: 0;
}

.tea-room-enquiry-kicker {
    margin: 0 0 8px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.tea-room-enquiry h2 {
    margin: 0 0 9px;

    color: var(--gold);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 400;
    line-height: 1.2;
}

.tea-room-enquiry-inner >
div >
p:last-child {
    max-width: 670px;
    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
    line-height: 1.65;
}

.tea-room-enquiry-button {
    flex: 0 0 auto;

    min-width: 225px;
}


/* ==================================================
   GENERAL SCROLL REVEAL
================================================== */

.tea-room-reveal,
.tea-room-quick-detail,
.tea-room-occasion {
    opacity: 1;

    transform: translateY(0);
}

.js-enabled
.tea-room-reveal.reveal-ready:not(.animate-in),
.js-enabled
.tea-room-quick-detail.reveal-ready:not(.animate-in),
.js-enabled
.tea-room-occasion.reveal-ready:not(.animate-in) {
    opacity: 0;

    transform: translateY(27px);
}

.tea-room-reveal.reveal-ready,
.tea-room-quick-detail.reveal-ready,
.tea-room-occasion.reveal-ready {
    transition:
        opacity 1.05s ease,

        transform 1.3s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.tea-room-reveal.animate-in,
.tea-room-quick-detail.animate-in,
.tea-room-occasion.animate-in {
    opacity: 1;

    transform: translateY(0);
}


/* ==================================================
   IMAGE MODAL
================================================== */

body.tea-room-modal-open {
    overflow: hidden;
}

.tea-room-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.tea-room-modal.open {
    display: flex;
}

.tea-room-modal-overlay {
    position: absolute;
    inset: 0;

    background-color:
        rgba(5, 8, 14, 0.86);

    cursor: pointer;
}

.tea-room-modal-dialog {
    position: relative;
    z-index: 1;

    width: min(960px, 100%);
    max-height: calc(100dvh - 48px);

    overflow: auto;

    background-color: #ffffff;

    box-shadow:
        0 27px 75px
        rgba(0, 0, 0, 0.38);

    outline: none;
}

.tea-room-modal-dialog img {
    display: block;

    width: 100%;
    max-height: calc(100dvh - 48px);

    object-fit: contain;
}


/* ==================================================
   MODAL CLOSE
================================================== */

.tea-room-modal-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;
}

.tea-room-modal-close:hover {
    background-color: var(--gold);
    color: var(--navy);

    transform: scale(1.04);
}

.tea-room-modal-close:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}


/* ==================================================
   LARGE TABLET / SMALL LAPTOP
================================================== */

@media (max-width: 1100px) {

    .tea-room-introduction-grid {
        gap: 52px;
    }

    .tea-room-details-grid {
        gap: 52px;
    }

    .tea-room-setup-grid {
        gap: 52px;
    }

    .tea-room-included-grid {
        gap: 18px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {

    .tea-room-container {
        width: min(
            calc(100% - 36px),
            900px
        );
    }


    /* Introduction */

    .tea-room-introduction {
        padding:
            64px 0
            72px;
    }

    .tea-room-introduction::before {
        width: 34%;
    }

    .tea-room-introduction-grid {
        grid-template-columns:
            minmax(0, 0.88fr)
            minmax(340px, 1.12fr);

        gap: 40px;
    }

    .tea-room-introduction h1 {
        font-size:
            clamp(
                2.8rem,
                6.3vw,
                4.3rem
            );
    }

    .tea-room-introduction-copy >
    p:not(.section-eyebrow) {
        font-size: 15px;
    }

    .tea-room-introduction-copy
    .tea-room-introduction-lead {
        font-size: 18px;
    }

    .tea-room-main-image,
    .tea-room-main-image img {
        min-height: 420px;
        height: 420px;
    }

    .tea-room-introduction-note {
        right: -10px;
    }


    /* Quick details */

    .tea-room-quick-detail {
        grid-template-columns:
            36px minmax(0, 1fr);

        gap: 13px;

        padding:
            23px 18px;
    }

    .tea-room-quick-detail > span {
        font-size: 22px;
    }

    .tea-room-quick-detail h2 {
        font-size: 17px;
    }


    /* Room details */

    .tea-room-details-grid {
        grid-template-columns:
            minmax(0, 0.85fr)
            minmax(340px, 1.15fr);

        gap: 40px;
    }

    .tea-room-occasion {
        grid-template-columns:
            44px minmax(0, 1fr);

        gap: 15px;

        padding:
            23px 22px;
    }


    /* Room setup */

    .tea-room-setup-grid {
        grid-template-columns:
            minmax(340px, 1fr)
            minmax(0, 1fr);

        gap: 42px;
    }

    .tea-room-secondary-image {
        height: 390px;
    }


    /* Included */

    .tea-room-included-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 20px;
    }

    .tea-room-included::after {
        width:
            calc(100% - 36px);
    }

    .tea-room-included-card {
        padding:
            28px 24px;
    }


    /* Enquiry */

    .tea-room-enquiry-inner {
        gap: 30px;
    }

    .tea-room-enquiry-button {
        min-width: 200px;
    }

}


/* ==================================================
   NARROW TABLET
================================================== */

@media (max-width: 820px) {

    /*
       At this width the desktop two-column hero becomes
       unnecessarily compressed, so it changes to one
       column while preserving the same visual hierarchy.
    */

    .tea-room-introduction::before {
        display: none;
    }

    .tea-room-introduction-grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .tea-room-introduction-copy {
        width: min(650px, 100%);
        margin: 0 auto;

        text-align: center;
    }

    .tea-room-introduction h1,
    .tea-room-introduction-copy >
    p:not(.section-eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }

    .tea-room-title-line {
        margin-right: auto;
        margin-left: auto;
    }

    .tea-room-introduction-actions {
        justify-content: center;
    }

    .tea-room-introduction-visual {
        width: min(680px, 100%);
        margin: 0 auto;
    }

    .tea-room-main-image,
    .tea-room-main-image img {
        min-height: 440px;
        height: 440px;
    }

    .tea-room-introduction-note {
        right: 18px;
        bottom: -25px;
    }


    /* Quick details */

    .tea-room-detail-strip {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }


    /* Details */

    .tea-room-details-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .tea-room-details-copy {
        width: min(680px, 100%);
        margin: 0 auto;

        text-align: center;
    }

    .tea-room-details-copy >
    p:not(.section-eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }

    .tea-room-section-line {
        margin-right: auto;
        margin-left: auto;
    }

    .tea-room-occasion-list {
        width: min(680px, 100%);
        margin: 0 auto;
    }


    /* Setup */

    .tea-room-setup-grid {
        grid-template-columns: 1fr;

        gap: 46px;
    }

    .tea-room-setup-copy {
        order: 1;

        width: min(680px, 100%);
        margin: 0 auto;

        text-align: center;
    }

    .tea-room-setup-image-wrap {
        order: 2;

        width: min(680px, 100%);
        margin: 0 auto;
    }

    .tea-room-layout-list {
        width: min(480px, 100%);
        margin-right: auto;
        margin-left: auto;

        text-align: left;
    }

    .tea-room-secondary-image {
        height: 420px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .tea-room-container {
        width:
            calc(100% - 28px);
    }


    /* Page */

    .tea-room-page {
        padding-top:
            var(--header-height);
    }


    /* Introduction */

    .tea-room-introduction {
        padding:
            50px 0
            68px;
    }

    .tea-room-introduction-grid {
        gap: 42px;
    }

    .tea-room-introduction-copy {
        padding: 0;
    }

    .tea-room-introduction h1 {
        max-width: 100%;

        font-size:
            clamp(
                2.7rem,
                12vw,
                4rem
            );

        line-height: 1.03;
    }

    .tea-room-title-line {
        width: 62px;

        margin-top: 22px;
        margin-bottom: 22px;
    }

    .tea-room-introduction-copy >
    p:not(.section-eyebrow) {
        font-size: 15px;
        line-height: 1.7;
    }

    .tea-room-introduction-copy
    .tea-room-introduction-lead {
        font-size: 18px;
    }

    .tea-room-introduction-actions {
        gap: 18px;

        margin-top: 27px;
    }

    .tea-room-main-image,
    .tea-room-main-image img {
        min-height: 340px;
        height: 340px;
    }

    .tea-room-introduction-note {
        right: 14px;
        bottom: -27px;

        width:
            calc(100% - 28px);

        padding:
            19px 21px;
    }


    /* Quick details */

    .tea-room-quick-details {
        padding:
            51px 0
            32px;
    }

    .tea-room-detail-strip {
        grid-template-columns: 1fr;
    }

    .tea-room-quick-detail {
        grid-template-columns:
            40px minmax(0, 1fr);

        gap: 16px;

        padding:
            22px 20px;
    }

    .tea-room-quick-detail +
    .tea-room-quick-detail {
        border-top:
            1px solid
            rgba(0, 0, 0, 0.11);

        border-left: 0;
    }

    .tea-room-quick-detail > span {
        font-size: 23px;
    }

    .tea-room-quick-detail h2 {
        font-size: 18px;
    }


    /* Main sections */

    .tea-room-details,
    .tea-room-setup,
    .tea-room-included {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .tea-room-details-grid,
    .tea-room-setup-grid {
        gap: 36px;
    }


    /* Details cards */

    .tea-room-occasion {
        grid-template-columns:
            42px minmax(0, 1fr);

        gap: 14px;

        padding:
            22px 18px;
    }

    .tea-room-occasion > span {
        font-size: 23px;
    }

    .tea-room-occasion h3 {
        font-size: 19px;
    }


    /* Setup */

    .tea-room-setup-image-wrap::before {
        top: -13px;
        left: -13px;
    }

    .tea-room-secondary-image {
        height: 320px;
    }


    /* Included section */

    .tea-room-section-heading {
        margin-bottom: 36px;
    }

    .tea-room-section-heading >
    p:not(.section-eyebrow) {
        font-size: 14px;
    }

    .tea-room-included-grid {
        grid-template-columns: 1fr;

        width: min(440px, 100%);
        margin: 0 auto;

        gap: 18px;
    }

    .tea-room-included::after {
        width:
            calc(100% - 28px);
    }

    .tea-room-included-card {
        padding:
            28px 24px;
    }


    /*
       Keep the exact same centre-opening animation,
       only reduce the blur and travel slightly because
       the mobile viewport is narrower.
    */

    .js-enabled
    .tea-room-included.reveal-ready:not(.animate-in)
    > .tea-room-container {
        clip-path:
            inset(
                0 46% 0 46%
                round 2px
            );

        filter: blur(3px);

        transform:
            translateY(22px)
            scale(0.985);
    }


    /* Enquiry */

    .tea-room-enquiry {
        padding:
            48px 0;
    }

    .tea-room-enquiry-inner {
        align-items: stretch;
        flex-direction: column;

        gap: 27px;

        text-align: center;
    }

    .tea-room-enquiry-inner >
    div >
    p:last-child {
        width: min(560px, 100%);
        margin-right: auto;
        margin-left: auto;
    }

    .tea-room-enquiry-button {
        align-self: center;

        width: 100%;
        max-width: 340px;

        min-width: 0;
    }


    /* Modal */

    .tea-room-modal {
        padding: 14px;
    }

    .tea-room-modal-dialog {
        width: 100%;
        max-height:
            calc(100dvh - 28px);
    }

    .tea-room-modal-dialog img {
        max-height:
            calc(100dvh - 28px);
    }

    .tea-room-modal-close {
        top: 9px;
        right: 9px;

        width: 40px;
        height: 40px;

        font-size: 25px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 520px) {

    .tea-room-container {
        width:
            calc(100% - 24px);
    }


    /* Introduction */

    .tea-room-introduction {
        padding-top: 44px;
    }

    .tea-room-introduction h1 {
        font-size:
            clamp(
                2.45rem,
                12vw,
                3.35rem
            );
    }

    .tea-room-introduction-copy
    .tea-room-introduction-lead {
        font-size: 17px;
    }

    .tea-room-introduction-actions {
        flex-direction: column;

        width: 100%;
        gap: 14px;
    }

    .tea-room-primary-button {
        width: 100%;
        max-width: 340px;
    }

    .tea-room-text-link {
        justify-content: center;

        min-height: 40px;
    }

    .tea-room-main-image,
    .tea-room-main-image img {
        min-height: 300px;
        height: 300px;
    }


    /* Quick details */

    .tea-room-quick-detail {
        padding:
            20px 16px;
    }


    /* Details */

    .tea-room-occasion {
        grid-template-columns:
            34px minmax(0, 1fr);

        gap: 12px;

        padding:
            20px 15px;
    }

    .tea-room-occasion > span {
        font-size: 21px;
    }

    .tea-room-occasion h3 {
        font-size: 18px;
    }


    /* Setup */

    .tea-room-secondary-image {
        height: 280px;
    }

    .tea-room-setup-image-wrap::before {
        top: -10px;
        left: -10px;
    }


    /* Included */

    .tea-room-included-card {
        padding:
            26px 20px;
    }

    .tea-room-included-icon {
        width: 50px;
        height: 50px;

        margin-bottom: 18px;
    }

    .tea-room-included-card h3 {
        font-size: 18px;
    }

}


/* ==================================================
   EXTRA SMALL MOBILE
================================================== */

@media (max-width: 380px) {

    .tea-room-container {
        width:
            calc(100% - 20px);
    }

    .tea-room-introduction h1 {
        font-size: 2.35rem;
    }

    .tea-room-main-image,
    .tea-room-main-image img {
        min-height: 270px;
        height: 270px;
    }

    .tea-room-introduction-note {
        right: 10px;

        width:
            calc(100% - 20px);
    }

    .tea-room-quick-detail {
        grid-template-columns:
            32px minmax(0, 1fr);

        gap: 10px;
    }

    .tea-room-occasion {
        grid-template-columns:
            30px minmax(0, 1fr);

        gap: 10px;
    }

    .tea-room-secondary-image {
        height: 250px;
    }

}


/* ==================================================
   TRUE HOVER DEVICES
================================================== */

/*
   Desktop hover effects remain unchanged.

   On touch devices the scroll animations and section
   entrance still work exactly the same; only artificial
   sticky :hover states are prevented.
*/

@media (hover: none) {

    .tea-room-main-image:hover img,
    .tea-room-secondary-image:hover img {
        transform: none;
    }

    .tea-room-primary-button:hover,
    .tea-room-enquiry-button:hover {
        background-color: var(--orange);
        border-color: var(--orange);
        color: #ffffff;

        transform: none;
    }

    .tea-room-included-card:hover {
        border-color: transparent;

        box-shadow: none;

        transform: none;
    }

    .tea-room-included-card:hover
    .tea-room-included-icon {
        background-color: var(--navy);
        color: var(--gold);

        transform: none;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    .tea-room-reveal,
    .tea-room-quick-detail,
    .tea-room-occasion,

    .tea-room-reveal.reveal-ready:not(.animate-in),
    .tea-room-quick-detail.reveal-ready:not(.animate-in),
    .tea-room-occasion.reveal-ready:not(.animate-in),

    .tea-room-included >
    .tea-room-container,

    .tea-room-included.reveal-ready:not(.animate-in)
    > .tea-room-container,

    .tea-room-main-image img,
    .tea-room-secondary-image img,

    .tea-room-included-card,
    .tea-room-included-icon,

    .tea-room-primary-button,
    .tea-room-enquiry-button {
        opacity: 1;

        clip-path: none;

        filter: none;

        transform: none;

        transition: none;
        transition-delay: 0s;
    }

    .tea-room-included::before,
    .tea-room-included::after {
        transform:
            translateX(-50%)
            scaleX(1);

        transition: none;
    }

}


/* ==================================================
   LANDSCAPE MOBILE
================================================== */

@media (
    max-width: 900px
)
and (
    orientation: landscape
)
and (
    max-height: 600px
) {

    .tea-room-main-image,
    .tea-room-main-image img {
        min-height: 330px;
        height: 330px;
    }

    .tea-room-secondary-image {
        height: 320px;
    }

    .tea-room-modal {
        padding: 10px;
    }

    .tea-room-modal-dialog {
        max-height:
            calc(100dvh - 20px);
    }

    .tea-room-modal-dialog img {
        max-height:
            calc(100dvh - 20px);
    }

}