/* Uses the variables and shared components from styles.css. */


/* ==================================================
   PAGE CONTAINER
================================================== */

.field-hire-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   PAGE
================================================== */

.field-hire-page {
    position: relative;
    z-index: 3;

    min-height: 100vh;
    padding-top: var(--header-height);

    background-color: #ffffff;
}


/* ==================================================
   INTRODUCTION
================================================== */

.field-hire-introduction {
    position: relative;

    padding: 74px 0 80px;

    overflow: hidden;

    background-color: var(--light-grey);
    border-top: 6px solid var(--orange);
}

.field-hire-introduction::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 37%;
    height: 100%;

    background-color: var(--navy);

    pointer-events: none;
}

.field-hire-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;
}

.field-hire-introduction-copy {
    padding: 20px 0;
}

.field-hire-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;
}

.field-hire-title-line {
    width: 72px;
    height: 3px;

    margin: 26px 0;

    background-color: var(--orange);
}

.field-hire-introduction-copy >
p:not(.section-eyebrow) {
    max-width: 610px;
    margin: 0 0 14px;

    color: #666666;

    font-size: 16px;
    line-height: 1.75;
}

.field-hire-introduction-copy
.field-hire-introduction-lead {
    color: var(--text);

    font-size: 19px;
}

.field-hire-introduction-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 26px;

    margin-top: 30px;
}


/* ==================================================
   BUTTONS
================================================== */

.field-hire-primary-button,
.field-hire-enquiry-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 24px;

    border: 2px solid var(--orange);

    background-color: var(--orange);
    color: #ffffff;

    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;
}

.field-hire-primary-button:hover,
.field-hire-enquiry-button:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);

    transform: translateY(-2px);
}

.field-hire-primary-button:focus-visible,
.field-hire-enquiry-button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.field-hire-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;
}

.field-hire-text-link span {
    color: var(--orange);

    font-size: 17px;
}

.field-hire-text-link:hover {
    gap: 12px;

    color: var(--orange);
}


/* ==================================================
   INTRODUCTION IMAGE
================================================== */

.field-hire-introduction-visual {
    position: relative;
}

.field-hire-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);
}

.field-hire-main-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 13, 21, 0.22),
            transparent 44%
        );

    pointer-events: none;
}

.field-hire-main-image img {
    display: block;

    width: 100%;
    height: 480px;

    object-fit: cover;

    transition:
        transform 0.65s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.field-hire-main-image:hover img {
    transform: scale(1.035);
}

.field-hire-main-image:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.field-hire-introduction-note {
    position: absolute;
    right: -22px;
    bottom: -28px;

    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);
}

.field-hire-introduction-note span {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.field-hire-introduction-note p {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;
}


/* ==================================================
   QUICK DETAILS
================================================== */

.field-hire-quick-details {
    padding: 44px 0;

    background-color: #ffffff;
}

.field-hire-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);
}

.field-hire-quick-detail {
    display: grid;
    grid-template-columns:
        42px minmax(0, 1fr);

    gap: 17px;

    padding: 25px 28px;
}

.field-hire-quick-detail +
.field-hire-quick-detail {
    border-left: 1px solid rgba(0, 0, 0, 0.11);
}

.field-hire-quick-detail > span {
    color: rgba(184, 134, 11, 0.36);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
}

.field-hire-quick-detail h2 {
    margin: 0 0 5px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

.field-hire-quick-detail p {
    margin: 0;

    color: #777777;

    font-size: 11px;
    line-height: 1.55;
}


/* ==================================================
   FIELD DETAILS
================================================== */

.field-hire-details {
    padding: 75px 0 82px;

    overflow: hidden;

    background-color: var(--mid-grey);

    scroll-margin-top:
        calc(var(--header-height) + 20px);
}

.field-hire-details-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(400px, 1.14fr);

    align-items: center;
    gap: 75px;
}

.field-hire-section-line {
    width: 63px;
    height: 3px;

    margin: 23px 0;

    background-color: var(--orange);
}

.field-hire-details-copy >
p:not(.section-eyebrow) {
    max-width: 600px;
    margin: 0 0 14px;

    color: #666666;

    font-size: 15px;
    line-height: 1.75;
}

.field-hire-occasion-list {
    background-color: #ffffff;
    border-top: 5px solid var(--orange);
}

.field-hire-occasion {
    display: grid;
    grid-template-columns:
        52px minmax(0, 1fr);

    gap: 20px;

    padding: 26px 29px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.field-hire-occasion:last-child {
    border-bottom: 0;
}

.field-hire-occasion > span {
    color: rgba(184, 134, 11, 0.34);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 700;
}

.field-hire-occasion h3 {
    margin: 0 0 7px;

    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
}

.field-hire-occasion p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.65;
}


/* ==================================================
   EVENT SETUP
================================================== */

.field-hire-setup {
    padding: 80px 0;

    overflow: hidden;

    background-color: #ffffff;
}

.field-hire-setup-grid {
    display: grid;
    grid-template-columns:
        minmax(400px, 1.08fr)
        minmax(0, 0.92fr);

    align-items: center;
    gap: 74px;
}

.field-hire-setup-image-wrap {
    position: relative;
}

.field-hire-setup-image-wrap::before {
    content: "";

    position: absolute;
    top: -22px;
    left: -22px;

    width: 58%;
    height: 54%;

    background-color: var(--orange);

    pointer-events: none;
}

.field-hire-secondary-image {
    position: relative;

    display: block;

    width: 100%;
    height: 430px;
    padding: 0;

    overflow: hidden;

    border: 0;
    background-color: var(--navy);

    cursor: pointer;
}

.field-hire-secondary-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.65s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.field-hire-secondary-image:hover img {
    transform: scale(1.035);
}

.field-hire-secondary-image:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.field-hire-setup-copy >
p:not(
    .section-eyebrow,
    .field-hire-setup-note
) {
    margin: 0 0 20px;

    color: #666666;

    font-size: 15px;
    line-height: 1.75;
}

.field-hire-layout-list {
    display: grid;

    gap: 12px;

    padding: 0;
    margin: 24px 0;

    list-style: none;
}

.field-hire-layout-list li {
    position: relative;

    padding-left: 24px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.55;
}

.field-hire-layout-list li::before {
    content: "";

    position: absolute;
    top: 0.5em;
    left: 2px;

    width: 8px;
    height: 8px;

    background-color: var(--orange);

    transform: rotate(45deg);
}

.field-hire-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 FIELD HIRE OFFERS
================================================== */

.field-hire-included {
    position: relative;

    padding: 72px 0 82px;

    overflow: hidden;

    background-color: var(--light-grey);

    isolation: isolate;
}

.field-hire-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;
}

.field-hire-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;
}

.field-hire-included >
.field-hire-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;
}

.field-hire-section-heading {
    width: min(720px, 100%);
    margin: 0 auto 45px;

    text-align: center;
}

.field-hire-section-heading >
p:not(.section-eyebrow) {
    max-width: 630px;
    margin: 17px auto 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.7;
}

.field-hire-included-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.field-hire-included-card {
    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;
}

.field-hire-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);
}

.field-hire-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;
}

.field-hire-included-card:hover
.field-hire-included-icon {
    background-color:
        var(--orange);

    color: #ffffff;

    transform:
        translateY(-3px);
}

.field-hire-included-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.field-hire-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;
}

.field-hire-included-card p {
    margin: 0;

    color: #666666;

    font-size: 12px;
    line-height: 1.65;
}


/* ==================================================
   MODERN SECTION REVEAL
================================================== */

.js-enabled
.field-hire-included.reveal-ready:not(.animate-in)
> .field-hire-container {
    clip-path:
        inset(
            0 48% 0 48%
            round 2px
        );

    filter:
        blur(5px);

    transform:
        translateY(30px)
        scale(0.975);
}

.js-enabled
.field-hire-included.reveal-ready:not(.animate-in)::before {
    transform:
        translateX(-50%)
        scaleX(0.18);
}

.js-enabled
.field-hire-included.reveal-ready:not(.animate-in)::after {
    transform:
        translateX(-50%)
        scaleX(0);
}

.field-hire-included.reveal-ready
> .field-hire-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;
}

.field-hire-included.reveal-ready::before {
    transition:
        transform 1.7s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.field-hire-included.reveal-ready::after {
    transition:
        transform 1.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        )
        0.12s;
}

.field-hire-included.animate-in
> .field-hire-container {
    clip-path:
        inset(
            0 0 0 0
            round 1px
        );

    filter:
        blur(0);

    transform:
        translateY(0)
        scale(1);
}

.field-hire-included.animate-in::before {
    transform:
        translateX(-50%)
        scaleX(1);
}

.field-hire-included.animate-in::after {
    transform:
        translateX(-50%)
        scaleX(1);
}


/* ==================================================
   IMPORTANT INFORMATION
================================================== */

.field-hire-information {
    padding: 76px 0 82px;

    overflow: visible;

    background-color: #ffffff;
}

.field-hire-information-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.76fr)
        minmax(430px, 1.24fr);

    align-items: start;
    gap: 75px;
}

.field-hire-information-heading {
    position: sticky;
    top:
        calc(
            var(--header-height) +
            30px
        );
}

.field-hire-information-list {
    background-color:
        var(--light-grey);

    border-top:
        5px solid
        var(--orange);
}

.field-hire-information-item {
    display: grid;
    grid-template-columns:
        52px minmax(0, 1fr);

    gap: 20px;

    padding: 27px 29px;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.09);
}

.field-hire-information-item:last-child {
    border-bottom: 0;
}

.field-hire-information-item > span {
    color:
        rgba(184, 134, 11, 0.34);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 700;
}

.field-hire-information-item h3 {
    margin: 0 0 7px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    font-weight: 400;
}

.field-hire-information-item p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.65;
}


/* ==================================================
   ENQUIRY PANEL
================================================== */

.field-hire-enquiry {
    padding: 56px 0;

    background-color:
        var(--navy);
}

.field-hire-enquiry-inner {
    display: flex;
    align-items: center;
    justify-content:
        space-between;

    gap: 45px;
}

.field-hire-enquiry-kicker {
    margin: 0 0 8px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.field-hire-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;
}

.field-hire-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;
}

.field-hire-enquiry-button {
    flex: 0 0 auto;

    min-width: 225px;
}


/* ==================================================
   GENERAL SCROLL REVEAL
================================================== */

.field-hire-reveal,
.field-hire-quick-detail,
.field-hire-occasion,
.field-hire-information-item {
    opacity: 1;

    transform:
        translateY(0);
}

.js-enabled
.field-hire-reveal.reveal-ready:not(.animate-in),
.js-enabled
.field-hire-quick-detail.reveal-ready:not(.animate-in),
.js-enabled
.field-hire-occasion.reveal-ready:not(.animate-in),
.js-enabled
.field-hire-information-item.reveal-ready:not(.animate-in) {
    opacity: 0;

    transform:
        translateY(27px);
}

.field-hire-reveal.reveal-ready,
.field-hire-quick-detail.reveal-ready,
.field-hire-occasion.reveal-ready,
.field-hire-information-item.reveal-ready {
    transition:
        opacity 1.05s ease,

        transform 1.3s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.field-hire-reveal.animate-in,
.field-hire-quick-detail.animate-in,
.field-hire-occasion.animate-in,
.field-hire-information-item.animate-in {
    opacity: 1;

    transform:
        translateY(0);
}


/* ==================================================
   IMAGE MODAL
================================================== */

body.field-hire-modal-open {
    overflow: hidden;
}

.field-hire-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.field-hire-modal.open {
    display: flex;
}

.field-hire-modal-overlay {
    position: absolute;
    inset: 0;

    background-color:
        rgba(
            5,
            8,
            14,
            0.86
        );
}

.field-hire-modal-dialog {
    position: relative;
    z-index: 1;

    width:
        min(
            960px,
            100%
        );

    max-height:
        calc(
            100dvh -
            48px
        );

    overflow: hidden;

    background-color:
        #ffffff;

    box-shadow:
        0 27px 75px
        rgba(0, 0, 0, 0.38);
}

.field-hire-modal-dialog img {
    display: block;

    width: 100%;
    max-height:
        calc(
            100dvh -
            48px
        );

    object-fit: contain;
}

.field-hire-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;
}

.field-hire-modal-close:hover {
    background-color:
        var(--gold);

    color:
        var(--navy);
}

.field-hire-modal-close:focus-visible {
    outline:
        3px solid
        var(--gold);

    outline-offset: 3px;
}


/* ==================================================
   LARGE TABLET
================================================== */

@media (max-width: 1100px) {

    .field-hire-container {
        width:
            min(
                960px,
                calc(100% - 44px)
            );
    }

    .field-hire-introduction-grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(390px, 1.08fr);

        gap: 52px;
    }

    .field-hire-introduction::before {
        width: 35%;
    }

    .field-hire-main-image,
    .field-hire-main-image img {
        min-height: 445px;
        height: 445px;
    }

    .field-hire-details-grid {
        grid-template-columns:
            minmax(0, 0.86fr)
            minmax(380px, 1.14fr);

        gap: 54px;
    }

    .field-hire-setup-grid {
        grid-template-columns:
            minmax(380px, 1.05fr)
            minmax(0, 0.95fr);

        gap: 54px;
    }

    .field-hire-information-grid {
        grid-template-columns:
            minmax(0, 0.74fr)
            minmax(390px, 1.26fr);

        gap: 54px;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {

    .field-hire-container {
        width:
            min(
                880px,
                calc(100% - 36px)
            );
    }


    /* Introduction remains desktop-like */

    .field-hire-introduction {
        padding:
            64px 0 72px;
    }

    .field-hire-introduction::before {
        width: 34%;
    }

    .field-hire-introduction-grid {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(340px, 1.1fr);

        gap: 38px;
    }

    .field-hire-introduction h1 {
        font-size:
            clamp(
                2.7rem,
                6vw,
                4.25rem
            );
    }

    .field-hire-introduction-copy
    > p:not(.section-eyebrow) {
        font-size: 15px;
    }

    .field-hire-introduction-copy
    .field-hire-introduction-lead {
        font-size: 18px;
    }

    .field-hire-main-image,
    .field-hire-main-image img {
        min-height: 405px;
        height: 405px;
    }

    .field-hire-introduction-note {
        right: -12px;
        bottom: -24px;
    }


    /* Quick details stay horizontal */

    .field-hire-quick-detail {
        grid-template-columns:
            36px minmax(0, 1fr);

        gap: 13px;

        padding:
            22px 19px;
    }

    .field-hire-quick-detail > span {
        font-size: 22px;
    }

    .field-hire-quick-detail h2 {
        font-size: 17px;
    }


    /* Details remain side by side */

    .field-hire-details {
        padding:
            66px 0 72px;
    }

    .field-hire-details-grid {
        grid-template-columns:
            minmax(0, 0.82fr)
            minmax(330px, 1.18fr);

        gap: 38px;
    }

    .field-hire-occasion {
        grid-template-columns:
            44px minmax(0, 1fr);

        gap: 16px;

        padding:
            22px 22px;
    }

    .field-hire-occasion > span {
        font-size: 24px;
    }

    .field-hire-occasion h3 {
        font-size: 19px;
    }


    /* Setup remains side by side */

    .field-hire-setup {
        padding:
            68px 0;
    }

    .field-hire-setup-grid {
        grid-template-columns:
            minmax(330px, 1fr)
            minmax(0, 1fr);

        gap: 40px;
    }

    .field-hire-secondary-image {
        height: 375px;
    }

    .field-hire-setup-image-wrap::before {
        top: -16px;
        left: -16px;
    }


    /* Included section */

    .field-hire-included {
        padding:
            66px 0 72px;
    }

    .field-hire-included-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 20px;
    }

    .field-hire-included::after {
        width:
            calc(100% - 36px);
    }


    /* Important information */

    .field-hire-information {
        padding:
            68px 0 74px;
    }

    .field-hire-information-grid {
        grid-template-columns:
            minmax(0, 0.7fr)
            minmax(340px, 1.3fr);

        gap: 38px;
    }

    .field-hire-information-item {
        grid-template-columns:
            44px minmax(0, 1fr);

        gap: 16px;

        padding:
            23px 22px;
    }

    .field-hire-information-item
    > span {
        font-size: 24px;
    }

    .field-hire-information-item h3 {
        font-size: 19px;
    }


    /* Enquiry */

    .field-hire-enquiry-inner {
        gap: 30px;
    }

    .field-hire-enquiry-button {
        min-width: 200px;
    }

}


/* ==================================================
   SMALL TABLET / LARGE MOBILE
================================================== */

@media (max-width: 760px) {

    .field-hire-container {
        width:
            calc(100% - 32px);
    }


    /* ==================================================
       INTRODUCTION
    ================================================== */

    .field-hire-introduction {
        padding:
            55px 0 66px;
    }

    /*
       Keep a trace of the desktop navy block rather
       than completely removing it.
    */

    .field-hire-introduction::before {
        display: block;

        top: auto;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 30%;

        background-color:
            var(--navy);
    }

    .field-hire-introduction-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .field-hire-introduction-copy {
        width:
            min(
                640px,
                100%
            );

        margin: 0 auto;
        padding: 0;

        text-align: center;
    }

    .field-hire-introduction h1 {
        max-width: none;

        font-size:
            clamp(
                2.8rem,
                10vw,
                4rem
            );
    }

    .field-hire-title-line {
        margin:
            24px auto;
    }

    .field-hire-introduction-copy
    > p:not(.section-eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }

    .field-hire-introduction-actions {
        justify-content: center;

        gap: 18px;
    }

    .field-hire-introduction-visual {
        width:
            min(
                620px,
                100%
            );

        margin: 0 auto;
    }

    .field-hire-main-image,
    .field-hire-main-image img {
        min-height: 380px;
        height: 380px;
    }

    .field-hire-introduction-note {
        right: 18px;
        bottom: -24px;

        width:
            min(
                310px,
                calc(100% - 36px)
            );
    }


    /* ==================================================
       QUICK DETAILS
    ================================================== */

    .field-hire-quick-details {
        padding:
            48px 0 38px;
    }

    /*
       Retain the desktop horizontal strip on larger
       mobile/tablet screens.
    */

    .field-hire-detail-strip {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

    .field-hire-quick-detail {
        display: block;

        padding:
            22px 16px;

        text-align: center;
    }

    .field-hire-quick-detail
    > span {
        display: block;

        margin-bottom: 7px;
    }


    /* ==================================================
       DETAILS
    ================================================== */

    .field-hire-details {
        padding:
            60px 0 66px;
    }

    .field-hire-details-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .field-hire-details-copy {
        width:
            min(
                620px,
                100%
            );

        margin: 0 auto;

        text-align: center;
    }

    .field-hire-section-line {
        margin-right: auto;
        margin-left: auto;
    }

    .field-hire-details-copy
    > p:not(.section-eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }

    .field-hire-occasion-list {
        width:
            min(
                620px,
                100%
            );

        margin: 0 auto;
    }


    /* ==================================================
       SETUP
    ================================================== */

    .field-hire-setup {
        padding:
            64px 0;
    }

    .field-hire-setup-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .field-hire-setup-copy {
        order: 1;

        width:
            min(
                620px,
                100%
            );

        margin: 0 auto;

        text-align: center;
    }

    .field-hire-setup-image-wrap {
        order: 2;

        width:
            min(
                620px,
                100%
            );

        margin: 0 auto;
    }

    .field-hire-layout-list {
        width:
            min(
                430px,
                100%
            );

        margin:
            24px auto;

        text-align: left;
    }

    .field-hire-secondary-image {
        height: 360px;
    }


    /* ==================================================
       INCLUDED
    ================================================== */

    .field-hire-included {
        padding:
            60px 0 68px;
    }

    .field-hire-included-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        width: 100%;
    }

    .field-hire-included::after {
        width:
            calc(100% - 32px);
    }

    /*
       Preserve the same desktop reveal rather than
       replacing it with a basic mobile fade.
    */

    .js-enabled
    .field-hire-included.reveal-ready:not(.animate-in)
    > .field-hire-container {
        clip-path:
            inset(
                0 47% 0 47%
                round 2px
            );

        filter:
            blur(4px);

        transform:
            translateY(26px)
            scale(0.98);
    }


    /* ==================================================
       INFORMATION
    ================================================== */

    .field-hire-information {
        padding:
            62px 0 68px;
    }

    .field-hire-information-grid {
        grid-template-columns: 1fr;

        gap: 36px;
    }

    .field-hire-information-heading {
        position: static;

        width:
            min(
                620px,
                100%
            );

        margin: 0 auto;

        text-align: center;
    }

    .field-hire-information-list {
        width:
            min(
                620px,
                100%
            );

        margin: 0 auto;
    }


    /* ==================================================
       ENQUIRY
    ================================================== */

    .field-hire-enquiry {
        padding:
            50px 0;
    }

    .field-hire-enquiry-inner {
        flex-direction: column;

        gap: 26px;

        text-align: center;
    }

    .field-hire-enquiry-inner
    > div {
        width:
            min(
                680px,
                100%
            );
    }

    .field-hire-enquiry-inner
    > div
    > p:last-child {
        margin:
            0 auto;
    }

    .field-hire-enquiry-button {
        width:
            min(
                340px,
                100%
            );

        min-width: 0;
    }


    /* ==================================================
       MODAL
    ================================================== */

    .field-hire-modal {
        padding: 16px;
    }

    .field-hire-modal-dialog {
        width: 100%;

        max-height:
            calc(
                100dvh -
                32px
            );
    }

    .field-hire-modal-dialog img {
        max-height:
            calc(
                100dvh -
                32px
            );
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 560px) {

    .field-hire-container {
        width:
            calc(100% - 28px);
    }


    /* Introduction */

    .field-hire-introduction {
        padding:
            48px 0 62px;
    }

    .field-hire-introduction::before {
        height: 27%;
    }

    .field-hire-introduction h1 {
        font-size:
            clamp(
                2.55rem,
                12vw,
                3.5rem
            );
    }

    .field-hire-introduction-copy
    .field-hire-introduction-lead {
        font-size: 17px;
    }

    .field-hire-introduction-copy
    > p:not(.section-eyebrow) {
        font-size: 14px;
        line-height: 1.7;
    }

    .field-hire-introduction-actions {
        flex-direction: column;

        gap: 15px;

        width: 100%;
    }

    .field-hire-primary-button {
        width:
            min(
                340px,
                100%
            );
    }

    .field-hire-main-image,
    .field-hire-main-image img {
        min-height: 320px;
        height: 320px;
    }

    .field-hire-introduction-note {
        position: relative;
        right: auto;
        bottom: auto;

        width:
            calc(100% - 28px);

        margin:
            -24px auto 0;

        padding:
            19px 20px;
    }


    /* Quick details */

    .field-hire-quick-details {
        padding:
            38px 0 30px;
    }

    .field-hire-detail-strip {
        grid-template-columns: 1fr;
    }

    .field-hire-quick-detail {
        display: grid;
        grid-template-columns:
            40px minmax(0, 1fr);

        gap: 15px;

        padding:
            22px 20px;

        text-align: left;
    }

    .field-hire-quick-detail
    > span {
        margin-bottom: 0;
    }

    .field-hire-quick-detail
    +
    .field-hire-quick-detail {
        border-top:
            1px solid
            rgba(0, 0, 0, 0.11);

        border-left: 0;
    }


    /* Details */

    .field-hire-details {
        padding:
            52px 0 58px;
    }

    .field-hire-occasion {
        grid-template-columns:
            39px minmax(0, 1fr);

        gap: 13px;

        padding:
            21px 18px;
    }

    .field-hire-occasion
    > span {
        font-size: 21px;
    }

    .field-hire-occasion h3 {
        font-size: 18px;
    }

    .field-hire-occasion p {
        font-size: 12px;
    }


    /* Setup */

    .field-hire-setup {
        padding:
            56px 0 60px;
    }

    .field-hire-secondary-image {
        height: 300px;
    }

    .field-hire-setup-image-wrap::before {
        top: -12px;
        left: -12px;
    }


    /* Included */

    .field-hire-included {
        padding:
            54px 0 60px;
    }

    .field-hire-section-heading {
        margin-bottom: 36px;
    }

    .field-hire-included-grid {
        grid-template-columns: 1fr;

        width:
            min(
                420px,
                100%
            );

        margin:
            0 auto;
    }

    .field-hire-included-card {
        padding:
            27px 22px;
    }

    .field-hire-included::after {
        width:
            calc(100% - 28px);
    }

    .js-enabled
    .field-hire-included.reveal-ready:not(.animate-in)
    > .field-hire-container {
        clip-path:
            inset(
                0 45% 0 45%
                round 2px
            );

        filter:
            blur(3px);

        transform:
            translateY(22px)
            scale(0.985);
    }


    /* Information */

    .field-hire-information {
        padding:
            54px 0 60px;
    }

    .field-hire-information-item {
        grid-template-columns:
            39px minmax(0, 1fr);

        gap: 13px;

        padding:
            21px 18px;
    }

    .field-hire-information-item
    > span {
        font-size: 21px;
    }

    .field-hire-information-item h3 {
        font-size: 18px;
    }

    .field-hire-information-item p {
        font-size: 12px;
    }


    /* Enquiry */

    .field-hire-enquiry {
        padding:
            46px 0;
    }

    .field-hire-enquiry h2 {
        font-size:
            clamp(
                1.8rem,
                9vw,
                2.35rem
            );
    }

}


/* ==================================================
   EXTRA SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .field-hire-container {
        width:
            calc(100% - 22px);
    }

    .field-hire-introduction {
        padding-top: 42px;
    }

    .field-hire-introduction h1 {
        font-size:
            2.45rem;
    }

    .field-hire-main-image,
    .field-hire-main-image img {
        min-height: 275px;
        height: 275px;
    }

    .field-hire-secondary-image {
        height: 265px;
    }

    .field-hire-quick-detail {
        padding:
            19px 16px;
    }

    .field-hire-occasion,
    .field-hire-information-item {
        padding:
            19px 15px;
    }

    .field-hire-included-card {
        padding:
            25px 18px;
    }

    .field-hire-modal {
        padding: 10px;
    }

    .field-hire-modal-dialog {
        max-height:
            calc(
                100dvh -
                20px
            );
    }

    .field-hire-modal-dialog img {
        max-height:
            calc(
                100dvh -
                20px
            );
    }

}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {

    /*
       Image zoom and card lifts are hover effects,
       so they are removed on touch devices without
       altering the underlying desktop styling.
    */

    .field-hire-main-image:hover img,
    .field-hire-secondary-image:hover img {
        transform: none;
    }

    .field-hire-included-card:hover {
        border-color:
            transparent;

        box-shadow:
            none;

        transform:
            none;
    }

    .field-hire-included-card:hover
    .field-hire-included-icon {
        background-color:
            var(--navy);

        color:
            var(--gold);

        transform:
            none;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (
    prefers-reduced-motion:
    reduce
) {

    .field-hire-reveal,
    .field-hire-quick-detail,
    .field-hire-occasion,
    .field-hire-information-item,

    .field-hire-reveal.reveal-ready:not(.animate-in),
    .field-hire-quick-detail.reveal-ready:not(.animate-in),
    .field-hire-occasion.reveal-ready:not(.animate-in),
    .field-hire-information-item.reveal-ready:not(.animate-in),

    .field-hire-included
    > .field-hire-container,

    .field-hire-included.reveal-ready:not(.animate-in)
    > .field-hire-container,

    .field-hire-main-image img,
    .field-hire-secondary-image img,

    .field-hire-included-card,
    .field-hire-included-icon {
        opacity: 1;

        clip-path: none;

        filter: none;

        transform: none;

        transition: none;

        transition-delay: 0s;
    }

    .field-hire-included::before,
    .field-hire-included::after {
        transform:
            translateX(-50%)
            scaleX(1);

        transition: none;
    }

}