.grandlane-page {
    --gl-ink: #102331;
    --gl-ink-soft: #536776;
    --gl-muted: #78909f;
    --gl-border: #dce9ef;
    --gl-card: #ffffff;
    --gl-brand: #0aa8dc;
    --gl-brand-dark: #087fad;
    --gl-brand-soft: #e7f8ff;
    --gl-blue: #eaf8ff;
    --gl-bg: #f8fcfe;
    --gl-shadow: 0 24px 70px rgba(28, 74, 98, 0.14);
    --gl-shadow-soft: 0 16px 42px rgba(28, 74, 98, 0.1);
    margin: 0;
    overflow: hidden;
    background: var(--gl-bg);
    color: var(--gl-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.grandlane-page *,
.grandlane-page *::before,
.grandlane-page *::after {
    box-sizing: border-box;
}

.grandlane-page a {
    color: inherit;
    text-decoration: none;
}

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

.gl-container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.gl-hero {
    position: relative;
    min-height: 780px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(8, 24, 36, 0.62), rgba(8, 24, 36, 0.08) 46%, rgba(248, 252, 254, 0.96) 100%),
        linear-gradient(90deg, rgba(4, 20, 32, 0.86), rgba(4, 20, 32, 0.18)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2400&q=85") center / cover;
}

.gl-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.16), transparent 28%);
    pointer-events: none;
}

.gl-header {
    position: absolute;
    z-index: 5;
    inset: 0 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0;
}

.gl-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    letter-spacing: -0.02em;
}

.gl-logo span {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
}

.gl-logo small {
    font-size: 10px;
    letter-spacing: 0.3em;
    opacity: 0.78;
    text-transform: uppercase;
}

.gl-logo--dark small {
    color: var(--gl-muted);
}

.gl-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.gl-nav a:hover,
.gl-phone:hover {
    color: #fff;
}

.gl-header__actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

.gl-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.gl-menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.gl-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 780px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 170px 0 72px;
}

.gl-hero__copy {
    max-width: 720px;
}

.gl-eyebrow {
    margin: 0;
    color: var(--gl-brand);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.gl-eyebrow--light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
}

.gl-hero h1,
.gl-section h2,
.gl-dark-cta h2,
.gl-ready h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.gl-hero h1 {
    margin-top: 24px;
    max-width: 820px;
    font-size: clamp(54px, 8vw, 96px);
}

.gl-hero h1 span {
    color: #ccefff;
}

.gl-hero__copy > p:last-child {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.gl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    background: var(--gl-brand);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(10, 168, 220, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gl-button:hover {
    background: var(--gl-brand-dark);
    transform: translateY(-1px);
}

.gl-button--small {
    padding: 10px 16px;
    font-size: 14px;
}

.gl-button--ghost {
    border: 1px solid var(--gl-border);
    background: #fff;
    color: var(--gl-ink);
    box-shadow: none;
}

.gl-button--dark {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.gl-booking {
    width: min(980px, 100%);
    margin-top: 46px;
    border-radius: 26px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--gl-shadow);
    backdrop-filter: blur(16px);
}

.gl-booking__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-radius: 18px;
    padding: 6px;
    background: #edf5f8;
}

.gl-booking__tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 14px;
    padding: 13px;
    background: transparent;
    color: var(--gl-ink-soft);
    cursor: pointer;
    font-weight: 600;
}

.gl-booking__tabs button.is-active {
    background: #fff;
    color: var(--gl-ink);
    box-shadow: 0 8px 18px rgba(41, 77, 94, 0.1);
}

.gl-booking__grid {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 0.75fr 0.75fr auto;
    gap: 10px;
    padding: 12px 6px 4px;
}

.gl-booking label,
.gl-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--gl-border);
    border-radius: 16px;
    padding: 9px 14px;
    background: #fff;
    color: var(--gl-ink);
}

.gl-booking label:focus-within,
.gl-contact-form label:focus-within {
    border-color: var(--gl-brand);
    box-shadow: 0 0 0 3px rgba(10, 168, 220, 0.14);
}

.gl-booking span,
.gl-contact-form span {
    color: var(--gl-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gl-booking input,
.gl-contact-form input,
.gl-contact-form textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--gl-ink);
    font: inherit;
}

.gl-stats {
    border-block: 1px solid var(--gl-border);
    background: #fff;
}

.gl-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 10px 0;
    text-align: center;
}

.gl-stats strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.gl-stats span {
    display: block;
    margin-top: 7px;
    color: var(--gl-muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gl-section {
    padding: 96px 0;
    background: var(--gl-bg);
}

.gl-section#services {
    padding: 70px 0;
}

.gl-section--blue {
    background: var(--gl-blue);
}

.gl-section__intro {
    max-width: 720px;
    margin-bottom: 52px;
}

.gl-section__intro--row {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.gl-section h2 {
    margin-top: 12px;
    font-size: clamp(38px, 5vw, 58px);
}

.gl-section__intro p:not(.gl-eyebrow),
.gl-split p,
.gl-business > div > p,
.gl-faq-layout > div > p,
.gl-ready p,
.gl-footer p {
    color: var(--gl-ink-soft);
}

.gl-card-grid {
    display: grid;
    gap: 24px;
}

.gl-card-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.gl-card-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.gl-card,
.gl-review,
.gl-fleet-card,
.gl-contact-form,
.gl-map-card,
.gl-device-card {
    border: 1px solid var(--gl-border);
    border-radius: 24px;
    background: var(--gl-card);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.gl-card {
    padding: 30px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gl-card:hover,
.gl-fleet-card:hover,
.gl-review:hover {
    border-color: rgba(10, 168, 220, 0.45);
    box-shadow: var(--gl-shadow-soft);
    transform: translateY(-4px);
}

.gl-card__icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 16px;
    background: var(--gl-brand-soft);
    color: var(--gl-brand);
    font-size: 22px;
}

.gl-card h3,
.gl-fleet-card h3,
.gl-contact-form h3 {
    margin: 24px 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
}

.gl-card p,
.gl-review p,
.gl-fleet-card p {
    color: var(--gl-ink-soft);
    font-size: 14px;
}

.gl-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--gl-brand);
    font-size: 14px;
    font-weight: 700;
}

.gl-zigzags {
    padding-top: 48px;
}

.gl-zigzags .gl-container {
    display: grid;
    gap: 92px;
}

.gl-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 62px;
}

.gl-split--reverse img {
    order: 2;
}

.gl-split img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--gl-shadow);
}

.gl-split h2 {
    font-size: clamp(34px, 4vw, 50px);
}

.gl-checks {
    display: grid;
    gap: 13px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.gl-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gl-ink);
    font-size: 14px;
}

.gl-checks li::before {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--gl-brand-soft);
    color: var(--gl-brand);
    content: "✓";
    font-weight: 800;
}

.gl-fleet-card {
    overflow: hidden;
    padding: 0 0 24px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gl-fleet-card__image {
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(10, 168, 220, 0.18), rgba(255, 255, 255, 0.2)),
        url("https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1200&q=80") center / cover;
}

/* $$$$$ Admin fleet images fill the existing stable media frame without changing card dimensions. */
.gl-fleet-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-fleet-card:nth-child(2) .gl-fleet-card__image {
    background-image:
        linear-gradient(135deg, rgba(10, 168, 220, 0.18), rgba(255, 255, 255, 0.2)),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80");
}

.gl-fleet-card:nth-child(3) .gl-fleet-card__image {
    background-image:
        linear-gradient(135deg, rgba(10, 168, 220, 0.18), rgba(255, 255, 255, 0.2)),
        url("https://images.unsplash.com/photo-1544636331-e26879cd4d9b?auto=format&fit=crop&w=1200&q=80");
}

.gl-fleet-card h3,
.gl-fleet-card p,
.gl-fleet-card small {
    display: block;
    margin-inline: 24px;
}

.gl-fleet-card small {
    color: var(--gl-muted);
}

/* $$$$$ Missing Grandlane experience scroll-gallery section from the blue refresh reference. */
.gl-section__intro--center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.gl-section__intro--center p:not(.gl-eyebrow) {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
}

.gl-experience {
    overflow: visible;
    background: #fff;
}

.gl-experience__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 1fr);
    gap: clamp(52px, 7vw, 104px);
    margin-top: 62px;
    align-items: start;
}

.gl-experience__sticky {
    position: sticky;
    top: 104px;
}

.gl-experience__frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    background: #dce9ef;
    box-shadow: var(--gl-shadow);
}

.gl-experience__frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 0.65s ease;
}

.gl-experience__frame img.is-active {
    opacity: 1;
}

.gl-experience__shade {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(6, 20, 31, 0), rgba(6, 20, 31, 0.46));
    pointer-events: none;
}

.gl-experience__progress {
    position: absolute;
    right: 34px;
    bottom: 28px;
    left: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gl-experience__progress span {
    height: 2px;
    background: rgba(255, 255, 255, 0.36);
    transition: background 0.3s ease, transform 0.3s ease;
}

.gl-experience__progress span.is-active {
    background: #fff;
    transform: scaleY(1.6);
}

.gl-experience__copy {
    display: flex;
    flex-direction: column;
}

.gl-experience__panel {
    display: flex;
    min-height: 82vh;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0;
}

.gl-experience__panel span {
    color: var(--gl-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: color 0.35s ease;
}

.gl-experience__panel h3 {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(16, 35, 49, 0.42);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.04;
    transition: color 0.35s ease;
}

.gl-experience__panel p {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(83, 103, 118, 0.46);
    font-size: 18px;
    line-height: 1.7;
    transition: color 0.35s ease;
}

.gl-experience__panel.is-active span {
    color: var(--gl-brand);
}

.gl-experience__panel.is-active h3 {
    color: var(--gl-ink);
}

.gl-experience__panel.is-active p {
    color: var(--gl-ink-soft);
}

.gl-experience__mobile-image {
    display: none;
}

/* $$$$$ Desktop experience behavior: one sticky stage, updating copy on the left and image on the right. */
@media (min-width: 901px) {
    .gl-experience__grid {
        min-height: 255vh;
        grid-template-columns: minmax(360px, 1fr) minmax(380px, 0.92fr);
    }

    .gl-experience__copy,
    .gl-experience__media {
        position: sticky;
        top: 112px;
        height: calc(100vh - 144px);
    }

    .gl-experience__copy {
        order: 1;
        display: grid;
        align-items: center;
    }

    .gl-experience__media {
        order: 2;
        display: flex;
        align-items: center;
    }

    .gl-experience__sticky {
        position: relative;
        top: auto;
        width: 100%;
    }

    .gl-experience__frame {
        width: min(100%, 540px);
        max-height: calc(100vh - 174px);
        margin-left: auto;
    }

    .gl-experience__panel {
        position: absolute;
        top: 50%;
        left: 0;
        width: min(100%, 620px);
        min-height: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-42%);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .gl-experience__panel.is-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(-50%);
    }
}

/* $$$$$ Corrected experience behavior: image stays sticky, copy panels scroll like the Figma reference. */
.grandlane-page {
    overflow-x: hidden;
    overflow-y: visible;
}

@media (min-width: 901px) {
    .gl-experience__grid {
        min-height: 0;
        grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1fr);
        align-items: start;
    }

    .gl-experience__media {
        order: 1;
        position: sticky;
        top: 112px;
        display: block;
        height: auto;
    }

    .gl-experience__copy {
        order: 2;
        position: static;
        display: flex;
        height: auto;
        flex-direction: column;
    }

    .gl-experience__sticky {
        position: relative;
        top: auto;
        width: 100%;
    }

    .gl-experience__frame {
        width: min(100%, 560px);
        max-height: calc(100vh - 150px);
        margin: 0 auto 0 0;
    }

    .gl-experience__panel,
    .gl-experience__panel.is-active {
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 620px);
        min-height: 84vh;
        padding: 32px 0;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

/* $$$$$ Experience scroll-track correction: the gallery has one sticky frame while copy panels supply the scroll length. */
@media (min-width: 901px) {
    #experience .gl-experience__grid {
        position: relative;
        align-items: start;
    }

    #experience .gl-experience__media {
        grid-column: 1;
        position: relative;
        top: auto;
        align-self: start;
        min-height: 0;
        transform: none !important;
    }

    #experience .gl-experience__copy {
        grid-column: 2;
    }

    /* $$$$$ Stable gallery states avoid the vertical jitter caused by per-scroll transforms. */
    #experience .gl-experience__media.is-scroll-fixed {
        position: fixed;
        z-index: 3;
        top: 132px; /* $$$$$ Clear the fixed coupon and navigation with additional visual breathing room. */
        left: var(--gl-experience-left);
        width: var(--gl-experience-width);
    }

    #experience .gl-experience__media.is-scroll-ended {
        position: absolute;
        z-index: 3;
        top: auto;
        bottom: 0;
        left: 0;
        width: var(--gl-experience-width);
    }

    #experience .gl-experience__sticky {
        position: relative;
        top: auto;
    }

    #experience .gl-experience__frame {
        position: relative;
        overflow: hidden;
    }

    #experience .gl-experience__frame > img,
    #experience .gl-experience__frame > img.is-active {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        opacity: 0;
        object-fit: cover;
    }

    #experience .gl-experience__frame > img.is-active {
        z-index: 1;
        opacity: 1;
    }

    #experience .gl-experience__shade,
    #experience .gl-experience__progress {
        z-index: 2;
    }

    #experience .gl-experience__panel,
    #experience .gl-experience__panel.is-active {
        justify-content: flex-start; /* $$$$$ Start each experience narrative at the top instead of vertically centering it. */
        padding-top: 0;
    }
}

.gl-business,
.gl-faq-layout,
.gl-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.gl-device-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.95)),
        url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1200&q=80") center / cover;
    box-shadow: var(--gl-shadow);
}

.gl-rating,
.gl-review div {
    color: var(--gl-brand);
    letter-spacing: 0.22em;
}

.gl-feature-list {
    display: grid;
    gap: 22px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.gl-feature-list li {
    position: relative;
    padding-left: 42px;
}

.gl-feature-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--gl-brand-soft);
    color: var(--gl-brand);
    content: "✓";
    font-weight: 800;
}

.gl-feature-list strong,
.gl-feature-list span {
    display: block;
}

.gl-feature-list span {
    color: var(--gl-ink-soft);
    font-size: 14px;
}

.gl-review {
    padding: 26px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gl-review strong,
.gl-review small {
    display: block;
}

.gl-review small {
    color: var(--gl-muted);
}

.gl-city-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--gl-border);
    border-radius: 22px;
    background: var(--gl-border);
}

.gl-city-grid span {
    padding: 22px 16px;
    background: #fff;
    color: var(--gl-ink-soft);
    text-align: center;
}

.gl-dark-cta {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    border-radius: 28px;
    padding: 48px;
    background: #0b1d29;
    color: #fff;
    box-shadow: var(--gl-shadow);
}

.gl-dark-cta p:not(.gl-eyebrow) {
    color: rgba(255, 255, 255, 0.68);
}

.gl-dark-cta__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.gl-dark-cta__stats span {
    display: flex;
    align-items: center;
    min-height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.gl-faq-list {
    display: grid;
    gap: 10px;
}

.gl-faq {
    overflow: hidden;
    border: 1px solid var(--gl-border);
    border-radius: 16px;
    background: #fff;
}

.gl-faq button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 18px 20px;
    background: transparent;
    color: var(--gl-ink);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    text-align: left;
}

.gl-faq p {
    display: none;
    margin: 0;
    padding: 0 20px 18px;
    color: var(--gl-ink-soft);
    font-size: 14px;
}

.gl-faq.is-open p {
    display: block;
}

.gl-faq.is-open button span {
    transform: rotate(45deg);
}

.gl-ready {
    border-radius: 24px;
    margin-bottom: 70px;
    padding: 42px;
    background: var(--gl-blue);
    text-align: center;
}

.gl-ready .gl-link {
    display: inline-flex;
    margin-left: 18px;
    color: var(--gl-ink);
    font-weight: 700;
}

.gl-map-card {
    overflow: hidden;
    padding: 0;
    box-shadow: var(--gl-shadow-soft);
}

.gl-map-card__canvas {
    min-height: 360px;
    background:
        radial-gradient(circle at 42% 44%, rgba(10, 168, 220, 0.24) 0 4px, transparent 5px),
        radial-gradient(circle at 58% 54%, rgba(10, 168, 220, 0.2) 0 5px, transparent 6px),
        linear-gradient(135deg, #f8fcfe, #dff4fc);
}

.gl-map-card p {
    margin: 0;
    padding: 20px;
    color: var(--gl-ink-soft);
}

.gl-contact-form {
    padding: 28px;
}

.gl-contact-form h3 {
    margin-top: 0;
}

.gl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.gl-contact-form > label {
    margin-bottom: 18px;
}

.gl-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gl-instagram-grid a {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.gl-instagram-grid a::before {
    position: absolute;
    inset: 0;
    background: var(--gl-instagram-image, url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=600&q=80")) center / cover;
    content: "";
    transition: transform 0.4s ease;
}

.gl-instagram-grid a:hover::before {
    transform: scale(1.08);
}

.gl-instagram-grid a:nth-child(2) { --gl-instagram-image: url("https://images.unsplash.com/photo-1511919884226-fd3cad34687c?auto=format&fit=crop&w=600&q=80"); }
.gl-instagram-grid a:nth-child(3) { --gl-instagram-image: url("https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=600&q=80"); }
.gl-instagram-grid a:nth-child(4) { --gl-instagram-image: url("https://images.unsplash.com/photo-1541899481282-d53bffe3c35d?auto=format&fit=crop&w=600&q=80"); }
.gl-instagram-grid a:nth-child(5) { --gl-instagram-image: url("https://images.unsplash.com/photo-1544636331-e26879cd4d9b?auto=format&fit=crop&w=600&q=80"); }
.gl-instagram-grid a:nth-child(6) { --gl-instagram-image: url("https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=600&q=80"); }
.gl-instagram-grid a:nth-child(7) { --gl-instagram-image: url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=600&q=80"); }
.gl-instagram-grid a:nth-child(8) { --gl-instagram-image: url("https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=600&q=80"); }
.gl-instagram-grid a:nth-child(9) { --gl-instagram-image: url("https://images.unsplash.com/photo-1470075801209-17f9ec0cada6?auto=format&fit=crop&w=600&q=80"); }

.gl-footer {
    border-top: 1px solid var(--gl-border);
    background: #fff;
}

.gl-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px;
    padding: 56px 0;
}

/* $$$$$ Footer parity keeps the refreshed layout while presenting legacy admin content, payment trust, address, and social destinations. */
.gl-footer__brand {
    max-width: 320px;
}

.gl-footer .gl-footer__logo {
    display: inline-block;
    margin: 0 0 18px;
}

.gl-footer__logo img {
    display: block;
    width: 196px;
    height: auto;
}

.gl-footer__brand p {
    max-width: 300px;
    margin: 0 0 16px;
    line-height: 1.65;
}

.gl-footer .gl-footer__address {
    margin-top: 0;
    line-height: 1.55;
}

.gl-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.gl-footer .gl-footer__social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 1px solid var(--gl-border);
    border-radius: 50%;
    background: #fff;
}

.gl-footer__social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.gl-footer__payment {
    display: block;
    width: min(180px, 100%);
    height: auto;
    margin-top: 20px;
}

.gl-footer h3 {
    margin: 0 0 16px;
    color: var(--gl-ink);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gl-footer a {
    display: block;
    margin-top: 8px;
    color: var(--gl-ink-soft);
    font-size: 14px;
}

.gl-footer a:hover {
    color: var(--gl-brand);
}

.gl-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--gl-border);
    padding: 24px 0;
    color: var(--gl-muted);
    font-size: 12px;
}

.gl-icon {
    display: inline-flex;
    line-height: 1;
}

@media (max-width: 1024px) {
    .gl-header {
        grid-template-columns: auto auto;
    }

    .gl-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .gl-nav,
    .gl-header__actions {
        display: none;
    }

    .gl-nav.is-open {
        position: absolute;
        top: 78px;
        right: 0;
        display: grid;
        min-width: 220px;
        justify-content: stretch;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 18px;
        padding: 10px;
        background: rgba(7, 22, 32, 0.92);
        backdrop-filter: blur(16px);
    }

    .gl-nav.is-open a {
        padding: 10px 12px;
    }

    .gl-booking__grid,
    .gl-card-grid--four,
    .gl-card-grid--three,
    .gl-split,
    .gl-business,
    .gl-faq-layout,
    .gl-contact-grid,
    .gl-dark-cta {
        grid-template-columns: 1fr 1fr;
    }

    .gl-booking__grid .gl-button {
        grid-column: 1 / -1;
        min-height: 54px;
    }

    .gl-card-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }

    .gl-experience__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gl-experience__media {
        display: none;
    }

    .gl-experience__copy {
        gap: 46px;
    }

    .gl-experience__panel {
        min-height: 0;
        padding: 0;
    }

    .gl-experience__panel h3,
    .gl-experience__panel p {
        color: inherit;
    }

    .gl-experience__panel span,
    .gl-experience__panel.is-active span {
        color: var(--gl-brand);
    }

    .gl-experience__panel h3,
    .gl-experience__panel.is-active h3 {
        color: var(--gl-ink);
    }

    .gl-experience__panel p,
    .gl-experience__panel.is-active p {
        color: var(--gl-ink-soft);
    }

    .gl-experience__mobile-image {
        display: block;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        margin-bottom: 24px;
        border-radius: 22px;
        box-shadow: var(--gl-shadow-soft);
    }

    .gl-experience__mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gl-city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .gl-container,
    .gl-header {
        width: min(100% - 28px, 1160px);
    }

    .gl-hero,
    .gl-hero__content {
        min-height: 720px;
    }

    .gl-hero__content {
        padding-bottom: 42px;
    }

    .gl-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gl-booking__tabs,
    .gl-booking__grid,
    /* .gl-stats__grid, */
    .gl-card-grid--four,
    .gl-card-grid--three,
    .gl-split,
    .gl-business,
    .gl-faq-layout,
    .gl-contact-grid,
    .gl-dark-cta,
    .gl-footer__grid,
    .gl-form-grid {
        grid-template-columns: 1fr;
    }

    .gl-split--reverse img {
        order: 0;
    }

    .gl-section {
        padding: 70px 0;
    }

    .gl-section__intro--row,
    .gl-footer__bottom {
        display: grid;
        align-items: start;
    }

    .gl-experience__grid {
        margin-top: 42px;
    }

    .gl-experience__copy {
        gap: 40px;
    }

    /* $$$$$ Footer columns remain scannable on mobile without losing legal or admin-managed links. */
    .gl-footer__grid {
        gap: 34px;
        padding: 44px 0 34px;
    }

    .gl-footer__brand {
        max-width: none;
    }

    .gl-experience__panel h3 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .gl-experience__panel p {
        font-size: 16px;
    }

    .gl-city-grid,
    .gl-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gl-dark-cta,
    .gl-ready {
        padding: 28px;
    }

    .gl-dark-cta__stats {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
    }

    .gl-ready .gl-link {
        display: block;
        margin: 16px 0 0;
    }
}

/* Test-page integration overrides: keep existing booking functionality while replacing orange accents with the new blue scheme. */
.grandlane-page .gl-booking--site-form {
    width: min(1040px, 100%);
    padding: 12px;
}

.grandlane-page .BookingFrom {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.grandlane-page .BookingFrom .nav-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border: 0;
    border-radius: 18px;
    padding: 6px;
    background: #edf5f8;
}

.grandlane-page .BookingFrom .nav-tabs .nav-item {
    margin: 0;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link {
    display: flex;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 13px;
    background: transparent;
    color: var(--gl-ink-soft);
    font-weight: 600;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link.active,
.grandlane-page .BookingFrom .nav-tabs .nav-link:hover {
    background: #fff;
    color: var(--gl-ink);
    box-shadow: 0 8px 18px rgba(41, 77, 94, 0.1);
}

.grandlane-page .BookingFrom .tab-content {
    padding: 12px 6px 4px;
}

.grandlane-page .BookingFrom form {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.8fr 0.8fr auto;
    gap: 10px;
    align-items: stretch;
}

.grandlane-page .BookingFrom .form-group,
.grandlane-page .BookingFrom .mobiledate .col {
    position: relative;
    margin: 0;
    border: 1px solid var(--gl-border);
    border-radius: 16px;
    padding: 9px 14px;
    background: #fff;
    color: var(--gl-ink);
}

.grandlane-page .BookingFrom .mobiledate {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
}

.grandlane-page .BookingFrom .mobiledate .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
}

.grandlane-page .BookingFrom label {
    display: block;
    margin: 0 0 4px;
    color: var(--gl-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.grandlane-page .BookingFrom .form-control {
    width: 100%;
    height: auto;
    min-height: 28px;
    border: 0;
    padding: 0 28px 0 0;
    background: transparent;
    color: var(--gl-ink);
    box-shadow: none;
    font: inherit;
}

.grandlane-page .BookingFrom .form-control:focus {
    border: 0;
    box-shadow: none;
}

.grandlane-page .BookingFrom .form-group:focus-within,
.grandlane-page .BookingFrom .mobiledate .col:focus-within {
    border-color: var(--gl-brand);
    box-shadow: 0 0 0 3px rgba(10, 168, 220, 0.14);
}

.grandlane-page .BookingFrom .form-icon {
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 18px;
    opacity: 0.5;
}

.grandlane-page .BookingFrom .remove {
    display: none;
}

.grandlane-page .btn-orange,
.grandlane-page .BookingFrom .btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    background: var(--gl-brand) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(10, 168, 220, 0.28);
}

.grandlane-page .btn-orange:hover,
.grandlane-page .BookingFrom .btn-orange:hover {
    background: var(--gl-brand-dark) !important;
}

@media (max-width: 1024px) {
    .grandlane-page .BookingFrom form {
        grid-template-columns: 1fr 1fr;
    }

    .grandlane-page .BookingFrom .btn-orange {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .grandlane-page .BookingFrom .nav-tabs,
    .grandlane-page .BookingFrom form,
    .grandlane-page .BookingFrom .mobiledate .form-row {
        grid-template-columns: 1fr;
    }
}

/* $$$$$ Live booking partial alignment: stronger overrides for the existing BookingFrom markup. */
.grandlane-page {
    --gl-brand: #08a9df;
    --gl-brand-dark: #027db0;
    --gl-brand-soft: #e6f8ff;
    --gl-hero-field: #f8fcff;
}

.grandlane-page .gl-container,
.grandlane-page .gl-header {
    width: min(1188px, calc(100% - 48px));
}

.grandlane-page .gl-hero {
    min-height: 760px;
    background-position: center top;
}

.grandlane-page .gl-hero__overlay {
    z-index: 1;
}

.grandlane-page .gl-hero__content {
    z-index: 2;
    min-height: 760px;
    padding-top: 150px;
    padding-bottom: 58px;
}

.grandlane-page .gl-hero__copy {
    max-width: 760px;
}

.grandlane-page .gl-hero h1 {
    max-width: 760px;
    font-size: clamp(56px, 6.7vw, 86px);
}

.grandlane-page .gl-booking--site-form {
    position: relative;
    z-index: 4;
    width: min(1068px, 100%);
    margin-top: 38px;
    border: 1px solid rgba(176, 207, 222, 0.9);
    border-radius: 20px;
    padding: 8px;
    pointer-events: auto;
}

.grandlane-page .gl-booking--site-form *,
.grandlane-page .BookingFrom,
.grandlane-page .BookingFrom * {
    pointer-events: auto;
}

.grandlane-page .BookingFrom .nav-tabs {
    gap: 4px;
    border-radius: 14px 14px 10px 10px;
    padding: 4px;
    background: #edf6fb;
}

.grandlane-page .BookingFrom .nav-tabs .nav-item {
    width: 100%;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link {
    min-height: 34px;
    border-radius: 10px;
    padding: 9px 12px;
    color: #5d7484;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link.active,
.grandlane-page .BookingFrom .nav-tabs .nav-link:hover,
.grandlane-page .BookingFrom .nav-tabs .nav-link:focus {
    background: #fff;
    color: #132a39;
    box-shadow: 0 6px 16px rgba(20, 69, 92, 0.1);
}

.grandlane-page .BookingFrom .tab-content {
    padding: 8px 0 0;
}

.grandlane-page .BookingFrom .tab-pane {
    padding: 0;
}

.grandlane-page .BookingFrom form {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr) minmax(122px, 0.74fr) minmax(150px, 0.86fr) 96px;
    gap: 8px;
}

.grandlane-page .BookingFrom .form-group,
.grandlane-page .BookingFrom .mobiledate .col {
    min-width: 0;
    min-height: 66px;
    border-radius: 13px;
    padding: 10px 12px 8px;
    background: var(--gl-hero-field);
}

.grandlane-page .BookingFrom label {
    display: block;
    gap: 0;
    border: 0;
    margin: 0 0 5px;
    padding: 0;
    background: transparent;
    color: #7d93a1;
    cursor: text;
    font-size: 10px;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
}

.grandlane-page .BookingFrom select,
.grandlane-page .BookingFrom input,
.grandlane-page .BookingFrom .form-control {
    position: relative;
    z-index: 2;
    min-height: 26px;
    padding-right: 24px;
    color: #132a39;
    cursor: text;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

.grandlane-page .BookingFrom select,
.grandlane-page .BookingFrom select.form-control {
    cursor: pointer;
}

.grandlane-page .BookingFrom .form-control::placeholder {
    color: #8094a2;
    opacity: 1;
}

.grandlane-page .BookingFrom .form-icon {
    display: block;
    right: 10px;
    bottom: 12px;
    width: 14px;
    opacity: 0.42;
    pointer-events: none;
}

.grandlane-page .BookingFrom .btn-orange {
    min-height: 66px;
    border-radius: 999px;
    padding: 0 18px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transform: translateY(0);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.grandlane-page .btn-orange:hover,
.grandlane-page .btn-orange:focus,
.grandlane-page .BookingFrom .btn-orange:hover,
.grandlane-page .BookingFrom .btn-orange:focus,
.grandlane-page .gl-button:hover,
.grandlane-page .gl-button:focus {
    background: var(--gl-brand-dark) !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(8, 169, 223, 0.34);
    outline: 0;
    transform: translateY(-1px);
}

.grandlane-page .gl-button--ghost:hover,
.grandlane-page .gl-button--ghost:focus {
    border-color: rgba(8, 169, 223, 0.45);
    background: #fff !important;
    color: var(--gl-brand-dark) !important;
}

@media (max-width: 1024px) {
    .grandlane-page .BookingFrom form {
        grid-template-columns: 1fr 1fr;
    }

    .grandlane-page .BookingFrom .btn-orange {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .grandlane-page .gl-container,
    .grandlane-page .gl-header {
        width: min(100% - 28px, 1188px);
    }

    .grandlane-page .gl-hero,
    .grandlane-page .gl-hero__content {
        min-height: auto;
    }

    .grandlane-page .gl-hero__content {
        padding-top: 118px;
        padding-bottom: 38px;
    }

    .grandlane-page .gl-hero h1 {
        font-size: 46px;
    }

    .grandlane-page .gl-booking--site-form {
        margin-top: 28px;
        border-radius: 18px;
    }

    .grandlane-page .BookingFrom form,
    .grandlane-page .BookingFrom .mobiledate .form-row {
        grid-template-columns: 1fr;
    }
}

/* $$$$$ Figma pass for the live hero form only; keeps all original inputs/buttons and booking handlers intact. */
.grandlane-page .gl-booking--site-form {
    width: min(1024px, 100%);
    border: 1px solid rgba(194, 222, 235, 0.98);
    border-radius: 18px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 90px rgba(27, 64, 85, 0.2);
}

.grandlane-page .BookingFrom .nav-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 0;
    border-radius: 12px;
    padding: 0;
    background: #dff3fd;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 11px;
    padding: 0 18px;
    background: transparent;
    color: #28485c;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link.active,
.grandlane-page .BookingFrom .nav-tabs .nav-link:focus,
.grandlane-page .BookingFrom .nav-tabs .nav-link:hover {
    background: #fff;
    color: #061723;
    box-shadow: 0 10px 22px rgba(25, 76, 105, 0.1);
}

.grandlane-page .BookingFrom .tab-content {
    padding: 14px 0 0;
}

.grandlane-page .BookingFrom form {
    display: grid;
    grid-template-columns: minmax(180px, 1.32fr) minmax(180px, 1.32fr) minmax(150px, 0.74fr) minmax(168px, 0.92fr) 124px;
    gap: 10px;
    align-items: stretch;
}

.grandlane-page .BookingFrom #hourly-Cont {
    grid-template-columns: minmax(180px, 1.15fr) minmax(150px, 0.72fr) minmax(180px, 0.98fr) minmax(168px, 0.92fr) 124px;
}

.grandlane-page .BookingFrom .form-group,
.grandlane-page .BookingFrom .mobiledate .col {
    position: relative;
    min-width: 0;
    min-height: 62px;
    border: 1px solid #bfdbea;
    border-radius: 12px;
    margin: 0;
    padding: 11px 14px 9px 42px;
    background: #fbfdff;
    box-shadow: none;
}

.grandlane-page .BookingFrom .mobiledate {
    min-width: 0;
    border: 0;
    padding: 0;
    background: transparent;
}

.grandlane-page .BookingFrom .mobiledate .form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    height: 100%;
    margin: 0;
}

.grandlane-page .BookingFrom .mobiledate .col {
    flex: initial;
    max-width: none;
}

.grandlane-page .BookingFrom label {
    display: block;
    border: 0;
    margin: 0 0 8px;
    padding: 0;
    background: transparent;
    color: #5f8096;
    cursor: default;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
}

.grandlane-page .BookingFrom input,
.grandlane-page .BookingFrom select,
.grandlane-page .BookingFrom .form-control,
.grandlane-page .BookingFrom select.form-control:not([size]):not([multiple]) {
    width: 100%;
    height: 22px;
    min-height: 22px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #173347;
    cursor: text;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    outline: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grandlane-page .BookingFrom select,
.grandlane-page .BookingFrom select.form-control:not([size]):not([multiple]) {
    cursor: pointer;
}

.grandlane-page .BookingFrom .form-control:focus,
.grandlane-page .BookingFrom .form-group:focus-within,
.grandlane-page .BookingFrom .mobiledate .col:focus-within {
    border-color: #08a9df;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(8, 169, 223, 0.14);
}

.grandlane-page .BookingFrom .form-control::placeholder {
    color: #6e8899;
    opacity: 1;
}

.grandlane-page .BookingFrom .form-icon {
    display: block;
    position: absolute;
    left: 16px;
    right: auto;
    bottom: 16px;
    width: 16px;
    height: 16px;
    opacity: 0.95;
    pointer-events: none;
}

.grandlane-page .BookingFrom .form-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.grandlane-page .BookingFrom .btn-orange {
    width: 100% !important;
    min-width: 0;
    min-height: 62px;
    border-radius: 999px;
    margin: 0;
    padding: 0 18px;
    background: linear-gradient(180deg, #17b6e6 0%, #0297cf 100%) !important;
    color: #fff !important;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    box-shadow: 0 16px 34px rgba(3, 151, 207, 0.28);
}

.grandlane-page .BookingFrom .btn-orange:hover,
.grandlane-page .BookingFrom .btn-orange:focus {
    background: linear-gradient(180deg, #0297cf 0%, #0179aa 100%) !important;
    box-shadow: 0 18px 38px rgba(3, 151, 207, 0.36);
}

@media (max-width: 1100px) {
    .grandlane-page .BookingFrom form,
    .grandlane-page .BookingFrom #hourly-Cont {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grandlane-page .BookingFrom .btn-orange {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .grandlane-page .gl-booking--site-form {
        padding: 8px;
    }

    .grandlane-page .BookingFrom .nav-tabs,
    .grandlane-page .BookingFrom form,
    .grandlane-page .BookingFrom #hourly-Cont,
    .grandlane-page .BookingFrom .mobiledate .form-row {
        grid-template-columns: 1fr;
    }

    .grandlane-page .BookingFrom .form-group,
    .grandlane-page .BookingFrom .mobiledate .col,
    .grandlane-page .BookingFrom .btn-orange {
        min-height: 58px;
    }
}

/* $$$$$ Confirmed Google location row and clear control shown when pickup/drop-off regains focus. */
.grandlane-page .BookingFrom .form-group.has-location-clear {
    position: relative;
}

.grandlane-page .BookingFrom .form-group.has-location-clear input {
    padding-right: 42px !important;
}

.grandlane-page .BookingFrom .gl-location-clear {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 12px;
    display: none;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(16, 42, 59, 0.08);
    color: #173347;
    cursor: pointer;
    transform: translateY(-50%);
}

.grandlane-page .BookingFrom .gl-location-clear.is-visible {
    display: block;
}

.grandlane-page .BookingFrom .gl-location-clear::before,
.grandlane-page .BookingFrom .gl-location-clear::after {
    position: absolute;
    top: 13px;
    left: 7px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.grandlane-page .BookingFrom .gl-location-clear::before {
    transform: rotate(45deg);
}

.grandlane-page .BookingFrom .gl-location-clear::after {
    transform: rotate(-45deg);
}

.grandlane-page .BookingFrom .gl-location-clear:hover,
.grandlane-page .BookingFrom .gl-location-clear:focus-visible {
    background: rgba(11, 159, 211, 0.16);
    color: #087da7;
    outline: none;
}

.gl-selected-place-dropdown {
    position: absolute;
    z-index: 999999;
    display: none;
    box-sizing: border-box;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 10px 32px;
    background: #101722;
    color: #fff;
    box-shadow: 0 28px 70px rgba(3, 10, 18, 0.38);
    font-family: Inter, Arial, sans-serif;
}

.gl-selected-place-dropdown.is-open {
    display: block;
}

.gl-selected-place-row {
    position: relative;
    display: block;
    width: 100%;
    min-height: 78px;
    border: 0;
    border-radius: 9px;
    padding: 16px 18px 16px 58px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.gl-selected-place-row:hover,
.gl-selected-place-row:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.gl-selected-place-row::before {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 21px;
    height: 21px;
    background: #fff;
    content: "";
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.gl-selected-place-row--airport::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3.5S18 3 16.5 4.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 4 2 2 4 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3.5S18 3 16.5 4.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 4 2 2 4 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2Z'/%3E%3C/svg%3E");
}

.gl-selected-place-row--hotel::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v8h20v-8a2 2 0 0 0-2-2h-2'/%3E%3Cpath d='M10 6h4M10 10h4M10 14h4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v8h20v-8a2 2 0 0 0-2-2h-2'/%3E%3Cpath d='M10 6h4M10 10h4M10 14h4'/%3E%3C/svg%3E");
}

.gl-selected-place-copy strong,
.gl-selected-place-copy small {
    display: block;
}

.gl-selected-place-copy strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.gl-selected-place-copy small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.45;
}

.gl-selected-place-attribution {
    position: absolute;
    right: 14px;
    bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

@media (max-width: 760px) {
    .gl-selected-place-dropdown {
        left: 16px !important;
        width: calc(100vw - 32px) !important;
    }

    .gl-selected-place-row {
        padding-right: 14px;
    }
}

/* $$$$$ Full-bleed hero video slot with the existing image/background retained as fallback. */
.grandlane-page .gl-hero__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background: #132635; /* $$$$$ Hide the poster/background-image while the first video frame loads. */
}

.grandlane-page .gl-hero__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 180ms ease-out;
}

/* $$$$$ Paint the video only after the browser can render it; retain the old image on video failure. */
.grandlane-page .gl-hero__media.is-video-ready .gl-hero__video {
    opacity: 1;
}

.grandlane-page .gl-hero__media.is-video-failed {
    background: transparent;
}

.grandlane-page .gl-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 24, 36, 0.42) 0%, rgba(7, 24, 36, 0.12) 48%, rgba(7, 24, 36, 0.08) 100%),
        linear-gradient(90deg, rgba(5, 22, 34, 0.62), rgba(5, 22, 34, 0.1) 76%),
        radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.14), transparent 28%);
} /* $$$$$ Keep the production refresh bundle free of the inner-banner white bottom fade. */

/* $$$$$ Final mobile hero/header/form layout matching the supplied narrow-screen reference. */
@media (max-width: 760px) {
    .grandlane-page .gl-header--new {
        grid-template-columns: minmax(0, 1fr) auto auto;
        column-gap: 8px;
        width: calc(100% - 28px);
        padding-top: 14px;
    }

    .grandlane-page .gl-header-new__logo {
        grid-column: 1;
        grid-row: 1;
        width: 164px;
        min-width: 0;
    }

    .grandlane-page .gl-header-new__actions {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        gap: 0;
    }

    .grandlane-page .gl-header-new__actions > .gl-header-new__selector,
    .grandlane-page .gl-header-new__actions > .gl-phone {
        display: none;
    }

    .grandlane-page .gl-header-new__actions > .gl-button {
        display: inline-flex;
        min-height: 38px;
        padding: 0 16px;
        white-space: nowrap;
    }

    .grandlane-page .gl-menu-toggle {
        grid-column: 3;
        grid-row: 1;
        margin: 0;
    }

    .grandlane-page .gl-nav--new.is-open {
        top: 70px;
        right: 0;
    }

    .grandlane-page .gl-hero__content {
        padding-top: 146px;
    }

    .grandlane-page .gl-hero__copy > p:last-child {
        line-height: 1.55;
    }

    .grandlane-page .gl-booking--site-form {
        margin-top: 30px;
    }

    .grandlane-page .BookingFrom .nav-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
    }

    .grandlane-page .BookingFrom .nav-tabs .nav-item,
    .grandlane-page .BookingFrom .nav-tabs .nav-link {
        width: 100%;
        min-width: 0;
    }

    .grandlane-page .BookingFrom .nav-tabs .nav-link {
        min-height: 64px;
        padding: 10px 12px;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    /* $$$$$ Keep logo, sign-in and hamburger on one line on the narrowest supported phones. */
    .grandlane-page .gl-header-new__logo {
        width: 142px;
    }

    .grandlane-page .gl-header-new__actions > .gl-button {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .grandlane-page .gl-menu-toggle {
        width: 38px;
        height: 36px;
    }
}

/* $$$$$ Authoritative light-blue coupon strip treatment for desktop and mobile. */
.grandlane-page .gl-offer-bar {
    border-bottom: 1px solid rgba(45, 151, 196, 0.32);
    background: #bfeafa;
    color: #073047;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.32) inset;
}

.grandlane-page .gl-offer-bar strong {
    color: #075b80;
}

/* $$$$$ Keep the coupon strip and navigation together at the viewport top while the page scrolls. */
.grandlane-page .gl-offer-bar {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
}

.grandlane-page .gl-header--new {
    position: fixed;
    z-index: 1000;
    top: 24px;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: max(24px, calc((100vw - 1188px) / 2));
    padding-left: max(24px, calc((100vw - 1188px) / 2));
    background: rgba(7, 24, 35, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(4, 20, 30, 0.12);
    backdrop-filter: blur(14px);
}

/* $$$$$ The full-width destinations panel starts below the fixed coupon/header stack. */
.grandlane-page .gl-dropdown--mega,
.grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
.grandlane-page .gl-dropdown--mega.show {
    top: 94px;
    max-height: calc(100vh - 112px);
}

@media (max-width: 760px) {
    .grandlane-page .gl-header--new {
        width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }
}

/* $$$$$ Restored legacy copyright clearfix inside the refreshed footer. */
.grandlane-page .gl-footer .copyright {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    padding: 42px 0 34px;
    border-top: 1px solid #343434;
    background: #050505; /* $$$$$ Stretch the legacy copyright treatment as a full-width black footer band. */
    color: #b0b1b3;
    font-size: 13px;
}

.grandlane-page .gl-footer .copyright .copy-txt {
    padding-top: 8px;
    text-align: center;
}

.grandlane-page .gl-footer .copyright .img-fluid {
    width: min(399px, 86vw); /* $$$$$ Restore the larger secure-payment artwork shown in the legacy footer. */
    height: auto;
}

.grandlane-page .gl-footer .copyright .gl-footer__copyright-address {
    margin: 12px 0 14px;
    text-align: center;
}

.grandlane-page .gl-footer .copyright a,
.grandlane-page .gl-footer .copyright .gl-footer__copyright-address a {
    display: inline-block;
    margin: 0 5px;
    color: #b0b1b3;
}

.grandlane-page .gl-footer .copyright .gl-footer__copyright-address a {
    border-bottom: 1px dotted rgba(176, 177, 179, 0.5);
}

/* $$$$$ Restored legacy fixed WhatsApp shortcut for the refreshed homepage. */
.grandlane-page .whatsappdesk {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
}

.grandlane-page .whatsappdesk a {
    display: inline-flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(0deg, #00b100, #09db09);
    box-shadow: 0 6px 20px rgba(4, 20, 30, 0.2);
}

/* $$$$$ Restored legacy expandable phone and email action control. */
.grandlane-page #main-div {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 100px;
    width: 55px;
    height: 55px;
}

.grandlane-page #main-button,
.grandlane-page #main-button ~ a {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(4, 20, 30, 0.24);
}

.grandlane-page #main-button {
    z-index: 2;
    background: linear-gradient(180deg, #20b8e5 0%, #078fc4 100%); /* $$$$$ Use the refreshed blue for the primary chat launcher. */
}

.grandlane-page #main-button ~ a {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: bottom 0.3s ease, opacity 0.2s ease;
}

.grandlane-page #main-button ~ .telegram-color {
    background: linear-gradient(0deg, #017ab1, #01abe6);
}

.grandlane-page #main-button ~ .messenger-color {
    background: linear-gradient(0deg, #0078ff, #00c6ff);
}

.grandlane-page #main-button.open ~ a {
    opacity: 1;
    pointer-events: auto;
}

.grandlane-page #main-button.open ~ a:nth-of-type(1) {
    bottom: 65px;
}

.grandlane-page #main-button.open ~ a:nth-of-type(2) {
    bottom: 130px;
}

.grandlane-page #main-button.wave {
    animation: gl-contact-wave 1s linear infinite;
}

.grandlane-page #main-button.open {
    animation-iteration-count: 1;
}

@keyframes gl-contact-wave {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    100% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

@media (max-width: 760px) {
    .grandlane-page .whatsappdesk,
    .grandlane-page #main-div {
        right: 14px;
    }
}

/* $$$$$ Keep FAQ pointer clicks free of Bootstrap's full-row focus border while retaining keyboard focus. */
.grandlane-page .gl-faq button:focus,
.grandlane-page .gl-faq button:active {
    outline: 0;
    box-shadow: none;
}

.grandlane-page .gl-faq button:focus-visible .gl-faq__toggle {
    outline: 2px solid var(--gl-brand);
    outline-offset: 3px;
}

/* $$$$$ Final fixed header stack must follow the later legacy absolute-position declaration. */
.grandlane-page .gl-offer-bar {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
}

.grandlane-page .gl-header--new {
    position: fixed;
    z-index: 1000;
    top: 24px;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: max(24px, calc((100vw - 1188px) / 2));
    padding-left: max(24px, calc((100vw - 1188px) / 2));
    background: rgba(10, 29, 42, 0.42); /* $$$$$ Restore the lighter blurred navigation treatment while retaining sticky behavior. */
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 24px rgba(4, 20, 30, 0.08);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
}

.grandlane-page .gl-dropdown--mega,
.grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
.grandlane-page .gl-dropdown--mega.show {
    top: 94px;
    max-height: calc(100vh - 112px);
}

@media (max-width: 760px) {
    .grandlane-page .gl-header--new {
        width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }
}

/* $$$$$ Authoritative sticky header stack: this must remain after all legacy header and breakpoint declarations. */
.grandlane-page .gl-offer-bar {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
}

.grandlane-page .gl-header--new {
    position: fixed;
    z-index: 1000;
    top: 24px;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: max(24px, calc((100vw - 1188px) / 2));
    padding-left: max(24px, calc((100vw - 1188px) / 2));
    background: rgba(7, 24, 35, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(4, 20, 30, 0.12);
    backdrop-filter: blur(14px);
}

.grandlane-page .gl-dropdown--mega,
.grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
.grandlane-page .gl-dropdown--mega.show {
    top: 94px;
    max-height: calc(100vh - 112px);
}

@media (max-width: 760px) {
    .grandlane-page .gl-header--new {
        width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }
}

/* $$$$$ Shared modern fleet/review slider layout, controls, progress dots and responsive card widths. */
.grandlane-page .gl-slider__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.grandlane-page .gl-slider__header .gl-section__intro {
    margin-bottom: 34px;
}

.grandlane-page .gl-slider__controls {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
}

.grandlane-page .gl-slider__controls button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--gl-border);
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gl-ink);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.grandlane-page .gl-slider__controls button:hover,
.grandlane-page .gl-slider__controls button:focus-visible {
    border-color: var(--gl-brand);
    background: var(--gl-brand);
    color: #fff;
    outline: 0;
    transform: translateY(-1px);
}

.grandlane-page .gl-slider__status {
    min-width: 54px;
    color: var(--gl-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.grandlane-page .gl-slider {
    position: relative;
    min-width: 0;
    touch-action: pan-y;
}

.grandlane-page .gl-slider__viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
}

.grandlane-page .gl-slider .gl-slider__track {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.grandlane-page .gl-slider.is-dragging .gl-slider__track {
    transition: none;
}

.grandlane-page .gl-slider [data-gl-slider-slide] {
    min-width: 0;
    margin: 0;
}

.grandlane-page .gl-slider--fleet [data-gl-slider-slide] {
    flex: 0 0 calc((100% - 48px) / 3);
}

/* $$$$$ Flat three-to-four-up fleet presentation based on the supplied reference. */
.grandlane-page #fleet {
    background: #f5f7f8;
}

.grandlane-page #fleet .gl-slider__viewport {
    border-radius: 0;
}

.grandlane-page #fleet .gl-fleet-card {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.grandlane-page #fleet .gl-fleet-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.grandlane-page #fleet .gl-fleet-card__image {
    display: grid;
    width: 100%;
    height: 220px;
    box-sizing: border-box;
    place-items: center;
    overflow: hidden;
    padding: 12px 8px 20px;
    background: transparent;
}

.grandlane-page #fleet .gl-fleet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.grandlane-page #fleet .gl-fleet-card:hover .gl-fleet-card__image img {
    transform: scale(1.025);
}

.grandlane-page #fleet .gl-fleet-card__body {
    display: flex;
    min-height: 310px;
    flex: 1;
    flex-direction: column;
}

/* $$$$$ Keep the shared inner-page fleet aligned with the finalized homepage card structure. */
.grandlane-page #fleet .gl-fleet-card__heading {
    height: 132px;
    min-height: 132px;
    overflow: hidden;
}

.grandlane-page #fleet .gl-fleet-card h3,
.grandlane-page #fleet .gl-fleet-card p {
    margin-inline: 0;
}

.grandlane-page #fleet .gl-fleet-card h3 {
    min-height: 0;
    margin: 14px 0 4px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.grandlane-page #fleet .gl-fleet-card__class {
    min-height: 24px;
    margin: 0 0 14px;
    color: var(--gl-ink-soft);
    font-size: 13px;
}

.grandlane-page #fleet .gl-fleet-card__specs {
    margin: 0 0 22px;
}

.grandlane-page #fleet .gl-fleet-card__specs > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    border-bottom: 1px solid #cfd8dc;
    padding: 8px 0;
    color: #20262b;
    font-size: 13px;
    line-height: 1.35;
}

.grandlane-page #fleet .gl-fleet-card__specs dt,
.grandlane-page #fleet .gl-fleet-card__specs dd {
    margin: 0;
}

.grandlane-page #fleet .gl-fleet-card__specs dd {
    font-weight: 700;
    text-align: right;
}

.grandlane-page #fleet .gl-fleet-card__book {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    border-radius: 999px;
    padding: 12px 22px;
    background: var(--gl-brand);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.grandlane-page #fleet .gl-fleet-card__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: auto;
}

.grandlane-page #fleet .gl-fleet-card__book:hover,
.grandlane-page #fleet .gl-fleet-card__book:focus-visible {
    background: var(--gl-brand-dark);
    color: #fff;
    outline: 0;
    transform: translateY(-1px);
}

.grandlane-page #fleet .gl-fleet-card__more {
    align-self: center;
    margin-top: 10px;
    color: var(--gl-ink);
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 1500px) {
    .grandlane-page #fleet .gl-container {
        width: min(1380px, calc(100% - 64px));
    }

    .grandlane-page .gl-slider--fleet [data-gl-slider-slide] {
        flex-basis: calc((100% - 72px) / 4);
    }
}

.grandlane-page .gl-slider--reviews [data-gl-slider-slide] {
    flex: 0 0 calc((100% - 48px) / 3);
}

.grandlane-page .gl-slider__dots {
    display: flex;
    min-height: 12px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.grandlane-page .gl-slider__dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #b7ceda;
    cursor: pointer;
    font-size: 0;
    transition: width 0.25s ease, background 0.25s ease;
}

.grandlane-page .gl-slider__dots button.is-active {
    width: 28px;
    background: var(--gl-brand);
}

.grandlane-page .gl-slider__dots button:focus-visible {
    outline: 2px solid var(--gl-brand);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .grandlane-page .gl-slider--fleet [data-gl-slider-slide],
    .grandlane-page .gl-slider--reviews [data-gl-slider-slide] {
        flex-basis: calc((100% - 20px) / 2);
    }

    .grandlane-page .gl-slider .gl-slider__track {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .grandlane-page .gl-slider__header {
        align-items: center;
    }

    .grandlane-page .gl-slider__header .gl-section__intro {
        margin-bottom: 24px;
    }

    .grandlane-page .gl-slider__controls {
        gap: 7px;
        margin-bottom: 24px;
    }

    .grandlane-page .gl-slider__controls button {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .grandlane-page .gl-slider__status {
        display: none;
    }

    .grandlane-page .gl-slider--fleet [data-gl-slider-slide],
    .grandlane-page .gl-slider--reviews [data-gl-slider-slide] {
        flex-basis: 100%;
    }

    .grandlane-page .gl-slider .gl-slider__track {
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .grandlane-page .gl-slider .gl-slider__track {
        transition: none;
    }
}

/* $$$$$ Keep functional currency/language dropdowns contained within the mobile hamburger panel. */
@media (max-width: 1180px) {
    .grandlane-page .gl-mobile-menu-actions .gl-mobile-menu-selector {
        display: block;
        width: 100%;
    }

    .grandlane-page .gl-mobile-menu-actions .gl-mobile-menu-selector > .gl-header-new__selector-link {
        display: flex;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .grandlane-page .gl-nav--new.is-open .gl-mobile-menu-selector > .gl-dropdown,
    .grandlane-page .gl-nav--new.is-open .gl-mobile-menu-selector.show > .gl-dropdown,
    .grandlane-page .gl-nav--new.is-open .gl-mobile-menu-selector > .gl-dropdown.show {
        position: static;
        right: auto;
        left: auto;
        width: 100%;
        max-height: 220px;
        margin: 8px 0 0;
        overflow-y: auto;
        box-sizing: border-box;
        transform: none;
    }
}

/* $$$$$ Mobile sign-in beside the hamburger is intentionally commented out; desktop sign-in remains intact. */
@media (max-width: 760px) {
    .grandlane-page .gl-header--new {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .grandlane-page .gl-header-new__actions {
        display: none;
    }

    .grandlane-page .gl-menu-toggle {
        grid-column: 2;
    }

    /*
    .grandlane-page .gl-header-new__actions > .gl-button {
        display: inline-flex;
    }
    */
}

/* $$$$$ Highlight the booking date and time currently stored in the form. */
.grandlane-page .BookingFrom .gl-date-picker__grid button.is-selected,
.grandlane-page .BookingFrom .gl-date-picker__grid button.is-selected:hover,
.grandlane-page .BookingFrom .gl-date-picker__grid button.is-selected:focus {
    background: #0b9fd3;
    color: #fff;
    box-shadow: 0 0 0 2px rgba(11, 159, 211, 0.2);
}

.grandlane-page .BookingFrom .gl-time-option.is-selected,
.grandlane-page .BookingFrom .gl-time-option.is-selected:hover,
.grandlane-page .BookingFrom .gl-time-option.is-selected:focus {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
}

/* $$$$$ New header partial styling, including inline SVG icon sizing and old-header dropdown data. */
.grandlane-page .gl-header--new {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 34px;
}

.grandlane-page .gl-header-new__logo {
    display: inline-flex;
    align-items: center;
    width: 244px;
    max-width: 100%;
}

.grandlane-page .gl-header-new__logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.grandlane-page .gl-nav--new {
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.grandlane-page .gl-nav__item {
    position: relative;
}

.grandlane-page .gl-nav__link,
.grandlane-page .gl-header-new__selector-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.grandlane-page .gl-nav__link:hover,
.grandlane-page .gl-nav__link:focus,
.grandlane-page .gl-header-new__selector-link:hover,
.grandlane-page .gl-header-new__selector-link:focus {
    color: #fff;
}

.grandlane-page .gl-header-new__actions {
    gap: 14px;
}

.grandlane-page .gl-header-new__selector {
    display: inline-flex;
}

.grandlane-page .gl-header-new__selector-link {
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.grandlane-page .gl-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    display: none;
    min-width: 190px;
    border: 1px solid rgba(197, 220, 232, 0.7);
    border-radius: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(6, 28, 42, 0.22);
}

.grandlane-page .gl-dropdown--mega {
    left: 50%;
    display: none;
    width: min(980px, calc(100vw - 48px));
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    transform: translateX(-32%);
}

.grandlane-page .gl-nav__item--dropdown:hover > .gl-dropdown,
.grandlane-page .gl-nav__item--dropdown:focus-within > .gl-dropdown {
    display: grid;
}

.grandlane-page .gl-header-new__selector:hover > .gl-dropdown,
.grandlane-page .gl-header-new__selector:focus-within > .gl-dropdown {
    display: block;
    left: auto;
    right: 0;
}

.grandlane-page .gl-dropdown__heading {
    display: block;
    margin: 8px 10px 6px;
    color: #0b2638;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.grandlane-page .gl-dropdown__link {
    display: block;
    border-radius: 8px;
    padding: 7px 10px;
    color: #4e6575;
    font-size: 13px;
    line-height: 1.3;
}

.grandlane-page .gl-dropdown__link:hover,
.grandlane-page .gl-dropdown__link:focus {
    background: var(--gl-brand-soft);
    color: var(--gl-brand-dark);
}

.grandlane-page .gl-phone svg,
.grandlane-page .gl-icon svg {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    stroke: currentColor;
}

.grandlane-page .gl-phone .gl-icon {
    align-items: center;
    justify-content: center;
}

@media (max-width: 1180px) {
    .grandlane-page .gl-header--new {
        grid-template-columns: auto auto;
    }

    .grandlane-page .gl-nav--new,
    .grandlane-page .gl-header-new__actions {
        display: none;
    }

    .grandlane-page .gl-nav--new.is-open {
        position: absolute;
        top: 78px;
        right: 0;
        display: grid;
        width: min(360px, calc(100vw - 32px));
        justify-content: stretch;
        gap: 4px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 18px;
        padding: 12px;
        background: rgba(7, 22, 32, 0.96);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
        backdrop-filter: blur(16px);
    }

    .grandlane-page .gl-nav--new.is-open .gl-nav__link {
        width: 100%;
        min-height: 40px;
        padding: 0 10px;
    }

    .grandlane-page .gl-nav--new.is-open .gl-dropdown,
    .grandlane-page .gl-nav--new.is-open .gl-dropdown--mega {
        position: static;
        width: 100%;
        min-width: 0;
        transform: none;
    }
}

/* $$$$$ Header dropdown behavior: click-open only for destinations, currency, and language; add original-style arrows/symbols. */
.grandlane-page .gl-nav__link.dropdown-toggle::after,
.grandlane-page .gl-header-new__selector-link.dropdown-toggle::after {
    display: none;
}

.grandlane-page .gl-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    opacity: 0.95;
}

.grandlane-page .gl-header-new__symbol {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    margin-right: 7px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.grandlane-page .gl-header-new__symbol--language {
    border: 0;
    border-radius: 0;
    font-size: 14px;
}

.grandlane-page .gl-nav__link--dropdown:hover,
.grandlane-page .gl-nav__link--dropdown:focus,
.grandlane-page .gl-header-new__selector-link:hover,
.grandlane-page .gl-header-new__selector-link:focus {
    color: rgba(255, 255, 255, 0.9);
}

.grandlane-page .gl-nav__item--dropdown:hover > .gl-dropdown,
.grandlane-page .gl-nav__item--dropdown:focus-within > .gl-dropdown,
.grandlane-page .gl-header-new__selector:hover > .gl-dropdown,
.grandlane-page .gl-header-new__selector:focus-within > .gl-dropdown {
    display: none;
}

.grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
.grandlane-page .gl-nav__item--dropdown.show:hover > .gl-dropdown--mega,
.grandlane-page .gl-nav__item--dropdown.show:focus-within > .gl-dropdown--mega,
.grandlane-page .gl-dropdown--mega.show {
    display: grid;
}

.grandlane-page .gl-header-new__selector.show > .gl-dropdown,
.grandlane-page .gl-header-new__selector.show:hover > .gl-dropdown,
.grandlane-page .gl-header-new__selector.show:focus-within > .gl-dropdown,
.grandlane-page .gl-header-new__selector .gl-dropdown.show {
    display: block;
    left: auto;
    right: 0;
}

/* $$$$$ Wider destinations mega dropdown to match the original header coverage. */
.grandlane-page .gl-dropdown--mega {
    width: min(1320px, calc(100vw - 72px));
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    gap: 20px;
    padding: 18px 22px;
    transform: translateX(-42%);
}

.grandlane-page .gl-dropdown--mega .gl-dropdown__link {
    white-space: nowrap;
}

/* $$$$$ Final hero/header alignment: coupon bar, smaller logo, consistent white hero text, and wider form fields. */
.grandlane-page .gl-offer-bar {
    position: absolute;
    z-index: 7;
    inset: 0 0 auto;
    min-height: 24px;
    background: #ff5b18;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.grandlane-page .gl-offer-bar__inner {
    width: min(1188px, calc(100% - 48px));
    margin: 0 auto;
}

.grandlane-page .gl-offer-bar strong {
    font-weight: 800;
}

.grandlane-page .gl-header--new {
    top: 24px;
    padding-top: 18px;
}

.grandlane-page .gl-header-new__logo {
    width: 188px;
}

.grandlane-page .gl-hero__content {
    padding-top: 178px;
}

.grandlane-page .gl-hero__copy,
.grandlane-page .gl-hero h1 {
    max-width: 830px;
}

.grandlane-page .gl-hero h1,
.grandlane-page .gl-hero h1 span,
.grandlane-page .gl-hero__copy > p:last-child {
    color: #fff;
}

.grandlane-page .gl-hero__copy > p:last-child {
    max-width: 710px;
    opacity: 0.92;
}

.grandlane-page .gl-booking--site-form {
    width: min(1120px, 100%);
}

.grandlane-page .BookingFrom form {
    grid-template-columns: minmax(220px, 1.35fr) minmax(220px, 1.35fr) minmax(170px, 0.88fr) minmax(180px, 0.9fr) 132px;
}

.grandlane-page .BookingFrom #hourly-Cont {
    grid-template-columns: minmax(240px, 1.28fr) minmax(170px, 0.8fr) minmax(190px, 0.96fr) minmax(180px, 0.9fr) 132px;
}

.grandlane-page .BookingFrom input,
.grandlane-page .BookingFrom select,
.grandlane-page .BookingFrom .form-control,
.grandlane-page .BookingFrom select.form-control:not([size]):not([multiple]) {
    font-size: 15px;
}

@media (max-width: 1180px) {
    .grandlane-page .gl-header--new {
        top: 24px;
    }
}

@media (max-width: 760px) {
    .grandlane-page .gl-offer-bar {
        font-size: 11px;
    }

    .grandlane-page .gl-header-new__logo {
        width: 164px;
    }

    .grandlane-page .gl-hero__content {
        padding-top: 144px;
    }
}

/* $$$$$ Combined time field and non-hovering service tabs for the live booking form. */
.grandlane-page .BookingFrom .mobiledate .form-row {
    display: none !important;
}

.grandlane-page .BookingFrom .mobiledate.is-time-combined {
    display: flex;
    align-items: center;
    padding-left: 42px;
}

.grandlane-page .BookingFrom .gl-time-combo-wrap {
    position: relative;
    width: 100%;
}

.grandlane-page .BookingFrom .gl-time-combo-wrap label {
    margin-bottom: 6px;
}

.grandlane-page .BookingFrom .gl-time-combo {
    display: block;
    width: 100%;
    height: 24px;
    min-height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #173347;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color-scheme: light;
}

.grandlane-page .BookingFrom .gl-time-combo::-webkit-calendar-picker-indicator {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background-color: rgba(8, 169, 223, 0.12);
    cursor: pointer;
    padding: 3px;
}

.grandlane-page .BookingFrom .gl-time-combo::-webkit-datetime-edit {
    color: #173347;
}

.grandlane-page .BookingFrom form {
    grid-template-columns: minmax(220px, 1.35fr) minmax(220px, 1.35fr) minmax(170px, 0.9fr) minmax(210px, 0.95fr) 132px;
}

.grandlane-page .BookingFrom #hourly-Cont {
    grid-template-columns: minmax(240px, 1.3fr) minmax(180px, 0.82fr) minmax(190px, 0.98fr) minmax(210px, 0.95fr) 132px;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link:not(.active):hover,
.grandlane-page .BookingFrom .nav-tabs .nav-link:not(.active):focus {
    background: transparent;
    color: #28485c;
    box-shadow: none;
}

.grandlane-page .BookingFrom .nav-tabs .nav-link.active:hover,
.grandlane-page .BookingFrom .nav-tabs .nav-link.active:focus {
    background: #fff;
    color: #061723;
}

@media (max-width: 1100px) {
    .grandlane-page .BookingFrom form,
    .grandlane-page .BookingFrom #hourly-Cont {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grandlane-page .BookingFrom .btn-orange {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .grandlane-page .BookingFrom form,
    .grandlane-page .BookingFrom #hourly-Cont {
        grid-template-columns: 1fr;
    }
}

/* $$$$$ Final nav/form corrections: centered destinations menu, clean time field icon/border, and hamburger mobile panel. */
.grandlane-page .BookingFrom .mobiledate.is-time-combined {
    border: 1px solid #bfdbea;
    border-radius: 12px;
    padding: 11px 48px 9px 42px;
    background: #fbfdff;
}

.grandlane-page .BookingFrom .gl-time-combo::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
}

.grandlane-page .BookingFrom .gl-time-combo-icon {
    display: block;
    left: 16px;
    right: auto;
    bottom: 16px;
    width: 16px;
    height: 16px;
    opacity: 0.95;
    pointer-events: none;
}

.grandlane-page .BookingFrom .gl-time-combo-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* $$$$$ Dark custom calendar and time dropdown matching the requested reference. */
.grandlane-page .BookingFrom .has-custom-date-picker,
.grandlane-page .BookingFrom .is-time-combined {
    position: relative;
}

.grandlane-page .BookingFrom .has-custom-date-picker .form-control,
.grandlane-page .BookingFrom .gl-time-combo {
    cursor: pointer;
}

.grandlane-page .BookingFrom .gl-date-picker,
.grandlane-page .BookingFrom .gl-time-dropdown {
    position: absolute;
    z-index: 30;
    top: calc(100% + 12px);
    left: 0;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #101722;
    color: #f6f8fb;
    box-shadow: 0 28px 70px rgba(3, 10, 18, 0.38);
}

.grandlane-page .BookingFrom .gl-date-picker.is-open,
.grandlane-page .BookingFrom .gl-time-dropdown.is-open {
    display: block;
}

.grandlane-page .BookingFrom .gl-date-picker {
    width: 440px;
    padding: 16px;
}

.grandlane-page .BookingFrom .gl-date-picker__head {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 14px;
    text-align: center;
}

.grandlane-page .BookingFrom .gl-date-picker__head button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.grandlane-page .BookingFrom .gl-date-picker__head strong {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.grandlane-page .BookingFrom .gl-date-picker__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    padding-top: 12px;
}

.grandlane-page .BookingFrom .gl-date-picker__grid span,
.grandlane-page .BookingFrom .gl-date-picker__grid button {
    min-height: 34px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.grandlane-page .BookingFrom .gl-date-picker__grid button {
    cursor: pointer;
}

.grandlane-page .BookingFrom .gl-date-picker__grid button:hover,
.grandlane-page .BookingFrom .gl-date-picker__grid button:focus {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.grandlane-page .BookingFrom .gl-date-picker__days span {
    min-height: 20px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}

.grandlane-page .BookingFrom .gl-time-dropdown {
    right: 0;
    left: auto;
    width: 370px;
    max-height: 356px;
    overflow-y: auto;
    padding: 12px;
}

.grandlane-page .BookingFrom .gl-time-option {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 12px 10px;
    background: transparent;
    color: #f6f8fb;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
}

.grandlane-page .BookingFrom .gl-time-option:hover,
.grandlane-page .BookingFrom .gl-time-option:focus {
    background: rgba(255, 255, 255, 0.18);
}

.grandlane-page .gl-dropdown--mega,
.grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
.grandlane-page .gl-dropdown--mega.show {
    position: fixed;
    top: 68px;
    left: 50%;
    right: auto;
    width: min(1480px, calc(100vw - 48px));
    max-height: calc(100vh - 92px);
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-y: auto;
    transform: translateX(-50%);
}

.grandlane-page .gl-mobile-menu-actions {
    display: none;
}

.grandlane-page .gl-menu-toggle {
    position: relative;
    width: 42px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
}

.grandlane-page .gl-menu-toggle::before,
.grandlane-page .gl-menu-toggle::after {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.grandlane-page .gl-menu-toggle::before {
    transform: translateY(-5px);
}

.grandlane-page .gl-menu-toggle::after {
    transform: translateY(5px);
}

.grandlane-page .gl-menu-toggle[aria-expanded="true"]::before {
    transform: rotate(45deg);
}

.grandlane-page .gl-menu-toggle[aria-expanded="true"]::after {
    transform: rotate(-45deg);
}

@media (max-width: 1180px) {
    .grandlane-page .gl-nav--new.is-open {
        width: min(420px, calc(100vw - 28px));
        gap: 8px;
        padding: 16px;
    }

    .grandlane-page .gl-nav--new.is-open .gl-nav__item {
        width: 100%;
    }

    .grandlane-page .gl-nav--new.is-open .gl-nav__link {
        border-radius: 10px;
        color: #fff;
    }

    .grandlane-page .gl-nav--new.is-open .gl-dropdown--mega,
    .grandlane-page .gl-nav--new.is-open .gl-nav__item--dropdown.show > .gl-dropdown--mega {
        position: static;
        display: none;
        width: 100%;
        max-height: 360px;
        grid-template-columns: 1fr;
        margin-top: 8px;
        transform: none;
    }

    .grandlane-page .gl-nav--new.is-open .gl-nav__item--dropdown.show > .gl-dropdown--mega {
        display: grid;
    }

    .grandlane-page .gl-mobile-menu-actions {
        display: grid;
        gap: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        margin-top: 8px;
        padding-top: 12px;
    }

    .grandlane-page .gl-mobile-menu-actions .gl-header-new__selector-link,
    .grandlane-page .gl-mobile-menu-actions .gl-phone,
    .grandlane-page .gl-mobile-menu-actions .gl-button {
        width: 100%;
        justify-content: center;
    }
}

/* $$$$$ Keep the combined time field clock aligned with the selected time value. */
.grandlane-page .BookingFrom .mobiledate.is-time-combined .gl-time-combo-wrap {
    position: static;
}

.grandlane-page .BookingFrom .mobiledate.is-time-combined .gl-time-combo-icon {
    position: absolute;
    top: 39px;
    bottom: auto;
    left: 16px;
    width: 16px;
    height: 16px;
    opacity: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.grandlane-page .BookingFrom .mobiledate.is-time-combined .gl-time-combo-icon img {
    display: block;
    filter: brightness(0) saturate(100%) invert(55%) sepia(97%) saturate(1891%) hue-rotate(163deg) brightness(94%) contrast(96%);
}

/* $$$$$ Recenter and widen the desktop destinations mega menu so destination labels are not squeezed. */
@media (min-width: 1181px) {
    .grandlane-page .gl-dropdown--mega,
    .grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
    .grandlane-page .gl-dropdown--mega.show {
        left: 49%;
        width: min(1560px, calc(100vw - 32px));
        grid-template-columns: repeat(5, minmax(260px, 1fr));
        column-gap: 28px;
        padding: 22px 32px;
    }

    .grandlane-page .gl-dropdown--mega .gl-dropdown__link {
        padding-right: 6px;
        white-space: nowrap;
    }
}

/* $$$$$ Final desktop destination-menu alignment: center on the viewport and use near-full width. */
@media (min-width: 1181px) {
    .grandlane-page .gl-dropdown--mega,
    .grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
    .grandlane-page .gl-dropdown--mega.show {
        /* $$$$$ Keep the destination panel below the full navbar so the logo remains visible. */
        top: 104px;
        left: 50vw;
        right: auto;
        width: calc(100vw - 40px);
        max-width: none;
        max-height: calc(100vh - 128px);
        box-sizing: border-box;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        column-gap: clamp(20px, 2vw, 38px);
        transform: translateX(-50%);
    }
}

/* $$$$$ Position the business review beneath the image with a restrained overlap. */
.grandlane-page #business .gl-device-card {
    position: relative;
    margin-bottom: 66px;
    padding: 0;
    overflow: visible;
}

.grandlane-page #business .gl-business__review {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: -66px;
    width: min(320px, calc(100% - 56px));
    border: 1px solid rgba(197, 220, 232, 0.72);
    border-radius: 16px;
    padding: 20px 22px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(6, 28, 42, 0.14);
}

.grandlane-page #business .gl-business__review .gl-rating {
    margin-bottom: 8px;
    line-height: 1;
}

.grandlane-page #business .gl-business__review p {
    margin: 0;
    color: var(--gl-ink);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 640px) {
    /* $$$$$ Keep the overlapping review comfortably inside the image width on mobile. */
    .grandlane-page #business .gl-device-card {
        margin-bottom: 58px;
    }

    .grandlane-page #business .gl-business__review {
        right: 16px;
        bottom: -58px;
        width: calc(100% - 32px);
        padding: 18px;
    }
}

/* $$$$$ Match the reference placement: review overlaps the lower-right image edge and only dips slightly below it. */
@media (min-width: 641px) {
    .grandlane-page #business .gl-device-card {
        margin-bottom: 24px;
    }

    .grandlane-page #business .gl-business__review {
        right: -24px;
        bottom: -24px;
    }
}

/* $$$$$ Rebuild the Google review cards to match the reference hierarchy and aligned footer. */
.grandlane-page .gl-section--blue .gl-review {
    display: flex;
    min-width: 0;
    min-height: 304px;
    flex-direction: column;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.grandlane-page .gl-review__quote {
    height: 38px;
    color: var(--gl-brand);
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

.grandlane-page .gl-review .gl-review__text {
    flex: 1;
    margin: 8px 0 20px;
    color: var(--gl-ink);
    font-size: 15px;
    line-height: 1.55;
}

.grandlane-page .gl-review__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    border-top: 1px solid var(--gl-border);
    padding-top: 18px;
}

.grandlane-page .gl-review__person,
.grandlane-page .gl-review__score {
    min-width: 0;
}

.grandlane-page .gl-review__person strong,
.grandlane-page .gl-review__person small,
.grandlane-page .gl-review__score small {
    display: block;
}

.grandlane-page .gl-review__person strong {
    overflow-wrap: anywhere;
    color: var(--gl-ink);
    font-size: 14px;
    line-height: 1.3;
}

.grandlane-page .gl-review__person small {
    margin-top: 3px;
    color: var(--gl-muted);
    font-size: 12px;
    line-height: 1.35;
}

.grandlane-page .gl-review__score {
    text-align: right;
}

.grandlane-page .gl-review__score span {
    display: block;
    color: var(--gl-brand);
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}

.grandlane-page .gl-review__score small {
    margin-top: 18px;
    color: var(--gl-muted);
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 640px) {
    /* $$$$$ Preserve the reference footer while allowing narrow review cards to wrap cleanly. */
    .grandlane-page .gl-section--blue .gl-review {
        min-height: 280px;
        padding: 22px;
    }

    .grandlane-page .gl-review__footer {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

/* $$$$$ Rebuild the cities section as the open, underlined destination grid from the reference. */
.grandlane-page #cities {
    border-top: 1px solid var(--gl-border);
    border-bottom: 1px solid var(--gl-border);
    background: #fff;
}

.grandlane-page #cities .gl-section__intro {
    max-width: none;
    margin-bottom: 34px;
}

.grandlane-page #cities .gl-section__intro--row {
    align-items: flex-end;
}

.grandlane-page #cities .gl-section__intro h2 {
    margin-top: 10px;
}

.grandlane-page #cities .gl-cities__all {
    display: inline-flex;
    gap: 14px;
    min-height: 48px;
    align-items: center;
    border-color: #c7dce8;
    border-radius: 999px;
    padding-inline: 24px;
}

.grandlane-page #cities .gl-cities__all::after {
    content: "→";
    font-size: 18px;
    line-height: 1;
}

.grandlane-page #cities .gl-city-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.grandlane-page #cities .gl-city-grid span {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #c7dce8;
    padding: 4px 0;
    background: transparent;
    color: var(--gl-ink);
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    transition: border-color 0.2s ease, color 0.2s ease;
}

/* $$$$$ Localized city routes inherit the complete row target and existing hover treatment. */
.grandlane-page #cities .gl-city-grid span > a {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: inherit;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.grandlane-page #cities .gl-city-grid span::after {
    content: "→";
    flex: 0 0 auto;
    color: var(--gl-brand);
    font-size: 18px;
    line-height: 1;
    opacity: 0;
    transform: translateX(-7px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.grandlane-page #cities .gl-city-grid span:hover,
.grandlane-page #cities .gl-city-grid span:focus-visible,
.grandlane-page #cities .gl-city-grid span:focus-within {
    border-color: var(--gl-brand);
    color: var(--gl-brand);
    outline: 0;
}

.grandlane-page #cities .gl-city-grid span:hover::after,
.grandlane-page #cities .gl-city-grid span:focus-visible::after,
.grandlane-page #cities .gl-city-grid span:focus-within::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    /* $$$$$ Retain comfortable city widths on tablet screens. */
    .grandlane-page #cities .gl-city-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 24px;
    }
}

@media (max-width: 640px) {
    /* $$$$$ Use the reference-style compact two-column city list on phones. */
    .grandlane-page #cities .gl-section__intro--row {
        gap: 22px;
    }

    .grandlane-page #cities .gl-city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .grandlane-page #cities .gl-city-grid span {
        min-height: 52px;
    }
}

/* $$$$$ Rebuild the FAQ as one accordion panel with explicit plus/cross states and a View All action. */
.grandlane-page .gl-faq-section {
    background: #f7fbfd;
}

.grandlane-page .gl-faq-layout {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: 64px;
}

.grandlane-page .gl-faq-layout > div:first-child > p:not(.gl-eyebrow) {
    max-width: 450px;
    font-size: 16px;
    line-height: 1.5;
}

.grandlane-page .gl-faq__concierge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 26px;
}

.grandlane-page .gl-faq__concierge .gl-icon,
.grandlane-page .gl-faq__concierge svg {
    width: 17px;
    height: 17px;
}

.grandlane-page .gl-faq-column {
    min-width: 0;
}

.grandlane-page .gl-faq-list {
    display: block;
    overflow: hidden;
    border: 1px solid var(--gl-border);
    border-radius: 16px;
    background: #fff;
}

.grandlane-page .gl-faq {
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid var(--gl-border);
    border-radius: 0;
    background: transparent;
}

.grandlane-page .gl-faq:last-child {
    border-bottom: 0;
}

.grandlane-page .gl-faq button {
    min-height: 72px;
    gap: 20px;
    padding: 18px 24px;
    font-size: 16px;
}

.grandlane-page .gl-faq .gl-faq__toggle {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border: 1px solid #c7dce8;
    border-radius: 50%;
    background: #fff;
    color: var(--gl-brand);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    transform: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.grandlane-page .gl-faq.is-open button .gl-faq__toggle {
    border-color: var(--gl-brand);
    background: var(--gl-brand);
    color: #fff;
    transform: none;
}

.grandlane-page .gl-faq p {
    padding: 0 76px 22px 24px;
    font-size: 14px;
    line-height: 1.55;
}

.grandlane-page .gl-faq__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.grandlane-page .gl-faq__actions .gl-button {
    min-width: 120px;
    justify-content: center;
}

@media (max-width: 1024px) {
    /* $$$$$ Stack FAQ introduction and accordion without changing toggle behavior. */
    .grandlane-page .gl-faq-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 640px) {
    .grandlane-page .gl-faq button {
        min-height: 66px;
        padding: 16px 18px;
        font-size: 14px;
    }

    .grandlane-page .gl-faq p {
        padding: 0 62px 18px 18px;
    }
}

/* $$$$$ Full pre-footer contact/map, journal, and social sections from the blue refresh reference. */
.grandlane-page .gl-contact-details {
    background: #fff;
}

.grandlane-page .gl-contact-details .gl-section__intro {
    max-width: 840px;
    margin-bottom: 46px;
}

.grandlane-page .gl-contact-details__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 32px;
    align-items: stretch;
}

.grandlane-page .gl-map-card,
.grandlane-page .gl-message-card,
.grandlane-page .gl-journal-card {
    overflow: hidden;
    border: 1px solid var(--gl-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 58px rgba(16, 47, 66, 0.08);
}

.grandlane-page .gl-map-card {
    display: grid;
    grid-template-rows: minmax(320px, 1fr) auto;
}

.grandlane-page .gl-map-card__map {
    position: relative;
    min-height: 330px;
    background: #dff2fb;
}

.grandlane-page .gl-map-card__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    border: 0;
    filter: saturate(0.86) contrast(0.98);
}

.grandlane-page .gl-map-card__place {
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    max-width: min(360px, calc(100% - 36px));
    gap: 4px;
    border-radius: 3px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 32px rgba(16, 47, 66, 0.14);
    color: var(--gl-ink);
    text-decoration: none;
}

.grandlane-page .gl-map-card__place strong {
    font-size: 15px;
    line-height: 1.2;
}

.grandlane-page .gl-map-card__place span {
    color: var(--gl-muted);
    font-size: 13px;
    line-height: 1.3;
}

.grandlane-page .gl-map-card__details {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.2fr;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
}

.grandlane-page .gl-map-card__details div {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 7px;
    align-content: start;
}

.grandlane-page .gl-map-card__details .gl-icon {
    grid-row: 1 / span 2;
    width: 18px;
    color: var(--gl-brand);
    font-size: 17px;
    line-height: 1.2;
}

.grandlane-page .gl-map-card__details svg {
    width: 17px;
    height: 17px;
}

.grandlane-page .gl-map-card__details span {
    color: var(--gl-muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.grandlane-page .gl-map-card__details strong,
.grandlane-page .gl-map-card__details a {
    color: var(--gl-ink);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}

.grandlane-page .gl-message-card {
    padding: 34px 36px 38px;
}

.grandlane-page .gl-message-card h3 {
    margin: 0;
    color: var(--gl-ink);
    font-family: var(--gl-display);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.1;
}

.grandlane-page .gl-message-card > p {
    margin: 9px 0 24px;
    color: var(--gl-muted);
    font-size: 15px;
}

.grandlane-page .gl-message-card form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.grandlane-page .gl-message-card label {
    display: grid;
    gap: 8px;
    margin: 0;
}

.grandlane-page .gl-message-card label span {
    color: var(--gl-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.grandlane-page .gl-message-card input,
.grandlane-page .gl-message-card textarea {
    width: 100%;
    border: 1px solid #c7dce8;
    border-radius: 12px;
    background: #fff;
    color: var(--gl-ink);
    font: 500 15px/1.35 var(--gl-body);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.grandlane-page .gl-message-card input {
    min-height: 64px;
    padding: 22px 18px 14px;
}

.grandlane-page .gl-message-card textarea {
    min-height: 122px;
    resize: vertical;
    padding: 18px;
}

.grandlane-page .gl-message-card input:focus,
.grandlane-page .gl-message-card textarea:focus {
    border-color: var(--gl-brand);
    box-shadow: 0 0 0 4px rgba(12, 160, 210, 0.12);
}

.grandlane-page .gl-message-card__message,
.grandlane-page .gl-message-card__captcha,
.grandlane-page .gl-message-card form > .gl-button {
    grid-column: 1 / -1;
}

.grandlane-page .gl-message-card__captcha {
    grid-template-columns: minmax(150px, 1fr) auto auto;
    align-items: end;
}

.grandlane-page .gl-message-card__captcha span {
    grid-column: 1 / -1;
}

.grandlane-page .gl-message-card__captcha img {
    width: 118px;
    height: 44px;
    border: 1px solid var(--gl-border);
    border-radius: 9px;
    object-fit: cover;
}

.grandlane-page .gl-message-card__captcha button {
    min-height: 44px;
    border: 1px solid #c7dce8;
    border-radius: 999px;
    padding: 0 16px;
    background: #fff;
    color: var(--gl-brand);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.grandlane-page .gl-message-card form > .gl-button {
    width: fit-content;
    gap: 10px;
    margin-top: 8px;
    border: 0;
}

.grandlane-page .gl-message-card form > .gl-button svg {
    width: 16px;
    height: 16px;
}

.grandlane-page .gl-journal-section,
.grandlane-page .gl-social-section {
    border-top: 1px solid var(--gl-border);
    background: #f3f9fc;
}

.grandlane-page .gl-journal-section .gl-section__intro,
.grandlane-page .gl-social-section .gl-section__intro {
    max-width: none;
    margin-bottom: 42px;
}

.grandlane-page .gl-journal-section .gl-button--ghost,
.grandlane-page .gl-social-section .gl-button--ghost {
    display: inline-flex;
    gap: 12px;
    min-height: 50px;
    align-items: center;
    border-color: #c7dce8;
    border-radius: 999px;
    padding-inline: 24px;
}

.grandlane-page .gl-journal-section .gl-button--ghost::after,
.grandlane-page .gl-social-section .gl-button--ghost::after {
    content: "→";
    font-size: 18px;
}

.grandlane-page .gl-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.grandlane-page .gl-journal-card {
    display: grid;
    grid-template-rows: 240px auto;
    box-shadow: none;
}

.grandlane-page .gl-journal-card__image {
    display: block;
    overflow: hidden;
    background: #e6f3f8;
}

.grandlane-page .gl-journal-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.grandlane-page .gl-journal-card:hover .gl-journal-card__image img {
    transform: scale(1.04);
}

.grandlane-page .gl-journal-card__body {
    padding: 26px 28px 30px;
}

.grandlane-page .gl-journal-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--gl-muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.grandlane-page .gl-journal-card__meta span {
    color: var(--gl-brand);
}

.grandlane-page .gl-journal-card h3 {
    margin: 0;
    font-family: var(--gl-display);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.18;
}

.grandlane-page .gl-journal-card h3 a {
    color: var(--gl-ink);
    text-decoration: none;
}

.grandlane-page .gl-journal-card p {
    margin: 18px 0 24px;
    color: var(--gl-muted);
    font-size: 15px;
    line-height: 1.45;
}

.grandlane-page .gl-journal-card__link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--gl-brand);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.grandlane-page .gl-social-section {
    background: #fff;
}

.grandlane-page .gl-social-section .gl-section__intro p:not(.gl-eyebrow) {
    max-width: 560px;
}

.grandlane-page .gl-social-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    overflow: hidden;
    border-radius: 18px;
}

.grandlane-page .gl-social-grid a {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
    background: #e6f3f8;
}

.grandlane-page .gl-social-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.grandlane-page .gl-social-grid a:hover img,
.grandlane-page .gl-social-grid a:focus-visible img {
    filter: brightness(0.9);
    transform: scale(1.05);
}

@media (max-width: 1100px) {
    /* $$$$$ Let contact and journal sections breathe on tablets. */
    .grandlane-page .gl-contact-details__grid,
    .grandlane-page .gl-journal-grid {
        grid-template-columns: 1fr;
    }

    .grandlane-page .gl-journal-card {
        grid-template-columns: minmax(260px, 0.9fr) 1fr;
        grid-template-rows: auto;
    }
}

@media (max-width: 760px) {
    /* $$$$$ Compact the new pre-footer sections for hamburger/mobile layouts. */
    .grandlane-page .gl-contact-details__grid {
        gap: 24px;
    }

    .grandlane-page .gl-map-card__details,
    .grandlane-page .gl-message-card form,
    .grandlane-page .gl-journal-grid,
    .grandlane-page .gl-social-grid {
        grid-template-columns: 1fr;
    }

    .grandlane-page .gl-map-card {
        grid-template-rows: auto auto;
    }

    .grandlane-page .gl-map-card__details {
        gap: 18px;
        padding: 22px;
    }

    .grandlane-page .gl-message-card {
        padding: 28px 22px 30px;
    }

    .grandlane-page .gl-message-card__captcha {
        grid-template-columns: 1fr;
    }

    .grandlane-page .gl-message-card__captcha img {
        width: 132px;
    }

    .grandlane-page .gl-journal-card {
        grid-template-columns: 1fr;
        grid-template-rows: 220px auto;
    }

    .grandlane-page .gl-social-grid a {
        aspect-ratio: 1.25 / 1;
    }

    .grandlane-page .gl-message-card form > .gl-button {
        width: 100%;
    }
}

/* $$$$$ Anchor the custom booking calendar and time list to their full-width mobile fields. */
@media (max-width: 640px) {
    .grandlane-page .BookingFrom .gl-date-picker,
    .grandlane-page .BookingFrom .gl-time-dropdown {
        top: calc(100% + 8px);
        right: auto;
        left: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        transform: none;
    }

    .grandlane-page .BookingFrom .gl-date-picker {
        padding: 12px;
    }

    .grandlane-page .BookingFrom .gl-date-picker__grid {
        gap: 4px;
        padding-top: 10px;
    }

    .grandlane-page .BookingFrom .gl-date-picker__grid span,
    .grandlane-page .BookingFrom .gl-date-picker__grid button {
        min-width: 0;
        min-height: 32px;
        padding: 0;
    }

    .grandlane-page .BookingFrom .gl-time-dropdown {
        max-height: min(356px, 48vh);
        padding: 8px;
        overscroll-behavior: contain;
    }
}

/* $$$$$ Authoritative mobile hero rules placed after every legacy booking/header breakpoint. */
@media (max-width: 760px) {
    .grandlane-page .gl-header--new {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 8px;
        width: calc(100% - 28px);
        padding-top: 14px;
    }

    .grandlane-page .gl-header-new__logo {
        grid-column: 1;
        grid-row: 1;
        width: 164px;
        min-width: 0;
    }

    .grandlane-page .gl-header-new__actions {
        display: none; /* $$$$$ Mobile sign-in next to hamburger commented out. */
        grid-column: 2;
        grid-row: 1;
        gap: 0;
    }

    .grandlane-page .gl-header-new__actions > .gl-header-new__selector,
    .grandlane-page .gl-header-new__actions > .gl-phone {
        display: none;
    }

    .grandlane-page .gl-header-new__actions > .gl-button {
        display: inline-flex;
        min-height: 38px;
        padding: 0 16px;
        white-space: nowrap;
    }

    .grandlane-page .gl-menu-toggle {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }

    .grandlane-page .gl-nav--new.is-open {
        top: 70px;
        right: 0;
    }

    .grandlane-page .gl-hero__content {
        padding-top: 146px;
    }

    .grandlane-page .gl-booking--site-form {
        margin-top: 30px;
    }

    .grandlane-page .BookingFrom .nav-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
    }

    .grandlane-page .BookingFrom .nav-tabs .nav-item,
    .grandlane-page .BookingFrom .nav-tabs .nav-link {
        width: 100%;
        min-width: 0;
    }

    .grandlane-page .BookingFrom .nav-tabs .nav-link {
        min-height: 64px;
        padding: 10px 12px;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    .grandlane-page .gl-header-new__logo {
        width: 142px;
    }

    .grandlane-page .gl-header-new__actions > .gl-button {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .grandlane-page .gl-menu-toggle {
        width: 38px;
        height: 36px;
    }
}

/* $$$$$ Final coupon-strip override stays after all legacy desktop and mobile color declarations. */
.grandlane-page .gl-offer-bar {
    border-bottom: 1px solid rgba(45, 151, 196, 0.32);
    background: #bfeafa;
    color: #073047;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.32) inset;
}

.grandlane-page .gl-offer-bar strong {
    color: #075b80;
}

/* $$$$$ Final FAQ focus override: indicate keyboard focus on the round control instead of the whole row. */
.grandlane-page .gl-faq button:focus,
.grandlane-page .gl-faq button:active {
    outline: 0;
    box-shadow: none;
}

.grandlane-page .gl-faq button:focus-visible .gl-faq__toggle {
    outline: 2px solid var(--gl-brand);
    outline-offset: 3px;
}

/* $$$$$ True final fixed stack: no later legacy rule may return the coupon strip to absolute positioning. */
.grandlane-page .gl-offer-bar {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
}

.grandlane-page .gl-header--new {
    position: fixed;
    z-index: 1000;
    top: 24px;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: max(24px, calc((100vw - 1188px) / 2));
    padding-left: max(24px, calc((100vw - 1188px) / 2));
    background: rgba(10, 29, 42, 0.42); /* $$$$$ Final light translucent navigation color. */
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 24px rgba(4, 20, 30, 0.08);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
}

.grandlane-page .gl-dropdown--mega,
.grandlane-page .gl-nav__item--dropdown.show > .gl-dropdown--mega,
.grandlane-page .gl-dropdown--mega.show {
    top: 94px;
    max-height: calc(100vh - 112px);
}

@media (max-width: 760px) {
    .grandlane-page .gl-header--new {
        width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }
}
