:root {
    --bg: #09090a;
    --surface: #141416;
    --surface-raised: #1b1a18;
    --ink: #fff6df;
    --muted: #c8bdab;
    --brand: #d3a843;
    --brand-bright: #f1d383;
    --brand-dark: #76551b;
    --black: #070707;
    --line: rgba(255, 246, 223, 0.16);
    --max: 1320px;
    --gutter: 24px;
    --content-edge: max(calc(var(--gutter) / 2), calc((100vw - var(--max)) / 2));
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.0625rem;
    --text-lg: 1.1875rem;
    --text-xl: 1.5rem;
    --display-sm: 1.875rem;
    --display-md: 3.25rem;
    --display-lg: 5rem;
    --section-title: 3rem;
    --card-title: 1.25rem;
    --ease-sharp: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-press: cubic-bezier(0.3, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: var(--text-base);
    color: var(--ink);
    background: #09090a;
    line-height: 1.6;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

main {
    background: #ffffff;
}

a {
    color: inherit;
}

.container {
    width: calc(100% - var(--gutter));
    max-width: var(--max);
    margin: 0 auto;
    min-width: 0;
}

.narrow {
    max-width: 840px;
}

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: calc(100% - var(--gutter));
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    width: 100%;
    max-width: none;
    padding: 14px var(--content-edge);
    background: rgba(8, 8, 8, 0.58);
    box-shadow: none;
    backdrop-filter: none;
    transform: translateY(0);
    transition: transform 240ms ease, background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
    will-change: transform;
}

.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.9);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.home-page .site-header:not(.is-past-hero) {
    background: rgba(4, 4, 4, 0.76);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.home-page .site-header.is-scrolled:not(.is-past-hero) {
    background: rgba(4, 4, 4, 0.84);
}

.home-page .site-header.is-past-hero {
    color: #111111;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-page .site-header.is-past-hero .nav-links a {
    color: rgba(17, 17, 17, 0.72);
}

.home-page .site-header.is-past-hero .nav-links a[aria-current="page"],
.home-page .site-header.is-past-hero .nav-links a:hover {
    color: #9b7624;
}

.home-page .site-header.is-past-hero .header-phone {
    color: #111111;
    border-color: rgba(17, 17, 17, 0.24);
}

.home-page .site-header.is-past-hero .header-phone:hover {
    color: var(--black);
    border-color: transparent;
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 128px;
    max-width: 42vw;
    height: auto;
}

.site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
    margin-left: auto;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.nav-menu-panel {
    display: contents;
}

.mobile-menu-brand,
.mobile-menu-actions,
.mobile-menu-close,
.mobile-menu-popular,
.mobile-menu-contact-row,
.mobile-menu-social {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    color: rgba(255, 246, 223, 0.84);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
    color: var(--brand-bright);
}

.nav-links .heading-icon {
    display: none;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 18px;
    color: var(--ink);
    border: 1px solid rgba(255, 246, 223, 0.38);
    border-radius: 2px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.header-phone:hover {
    color: var(--black);
    border-color: var(--brand);
    background: linear-gradient(135deg, var(--brand-bright), var(--brand) 58%, var(--brand-dark));
}

.mobile-header-call {
    display: none;
}

.mobile-header-actions-compact {
    display: contents;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 0 0 auto;
    margin-left: auto;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--black);
    background: var(--brand);
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: none;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

@media (min-width: 981px) {
    .nav-toggle {
        display: none;
    }
}

@media (max-width: 980px) {
    .site-header {
        display: flex;
        align-items: center;
    }

    .header-phone {
        display: none;
    }

    .mobile-header-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-height: 44px;
        margin-left: auto;
        padding: 0;
        color: var(--ink);
        background: rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(255, 246, 223, 0.52);
        border-radius: 2px;
        text-decoration: none;
    }

    .mobile-header-call svg {
        display: block;
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .home-page .site-header.is-past-hero .mobile-header-call {
        color: #15110a;
        background: transparent;
        border-color: rgba(17, 17, 17, 0.28);
    }

    .nav-toggle {
        display: flex;
        position: static;
        margin-left: 12px;
        z-index: 25;
        color: var(--black);
        background: var(--brand);
        border-color: transparent;
        box-shadow: none;
    }

    .nav-toggle:hover {
        transform: none;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: grid;
        width: 100vw;
        height: 100vh;
        height: 100svh;
        max-width: none;
        min-width: 0;
        margin: 0;
        max-height: none;
        padding: 0;
        overflow: hidden;
        background: transparent;
        border: 0;
        box-shadow: none;
        pointer-events: none;
        visibility: hidden;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        grid-template-columns: minmax(0, 1fr);
        transition: visibility 0s linear 0.3s;
    }

    .site-nav::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 0;
        background: rgba(0, 0, 0, 0.56);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu-panel {
        position: fixed;
        inset: 0;
        z-index: 1;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        justify-items: stretch;
        gap: 24px;
        width: 100vw;
        max-width: none;
        height: 100vh;
        height: 100svh;
        margin: 0;
        padding: 24px var(--content-edge) max(28px, calc(env(safe-area-inset-bottom) + 24px));
        overflow-y: auto;
        color: var(--ink);
        background: #060606;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        transform: translateY(-8px);
        transition: transform 0.3s ease, opacity 0.24s ease;
    }

    .mobile-menu-brand {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
        width: 100%;
        padding: 0 0 16px;
        border-bottom: 1px solid rgba(241, 211, 131, 0.2);
    }

    .mobile-menu-brand img {
        width: min(150px, 42vw);
        height: auto;
        object-fit: contain;
        border-radius: 0;
    }

    .mobile-menu-brand strong {
        display: block;
        color: var(--ink);
        font-weight: 800;
        line-height: 1.15;
    }

    .mobile-menu-brand > span {
        display: none;
    }

    .mobile-menu-close {
        display: inline-grid;
        place-items: center;
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        color: var(--ink);
        background: transparent;
        border: 0;
        border-radius: 0;
        font-size: 1rem;
        font-weight: 800;
        line-height: 1;
        cursor: pointer;
    }

    .nav-links {
        display: grid;
        justify-content: stretch;
        align-content: center;
        gap: 0;
        width: 100%;
        min-height: 0;
        padding: clamp(28px, 7vh, 72px) 0;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        min-height: 58px;
        padding: 16px 0;
        color: rgba(255, 246, 223, 0.9);
        border-bottom: 1px solid rgba(241, 211, 131, 0.16);
        font-size: clamp(1.4rem, 5vw, 2.15rem);
        font-weight: 700;
        letter-spacing: 0;
        text-transform: none;
    }

    .nav-links a[aria-current="page"],
    .nav-links a:hover {
        color: var(--brand-bright);
    }

    .nav-links .heading-icon {
        display: none;
    }

    .mobile-menu-actions {
        display: grid;
        gap: 12px;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid rgba(241, 211, 131, 0.2);
    }

    .mobile-menu-actions .button {
        width: 100%;
        min-height: 44px;
    }

    .mobile-menu-actions .button.secondary {
        color: var(--ink);
        background: transparent;
        border-color: rgba(255, 246, 223, 0.24);
    }

    .site-nav.is-open {
        pointer-events: auto;
        visibility: visible;
        transition-delay: 0s;
    }

    .site-nav.is-open::before {
        opacity: 1;
    }

    .site-nav.is-open .nav-menu-panel {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-toggle:hover {
    transform: translateY(-1px);
    border-color: transparent;
    background: var(--brand-bright);
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100lvh;
    padding: 172px 0 72px;
    overflow: hidden;
    color: #fff;
    background: var(--black);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 37%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.02) 46%, rgba(0, 0, 0, 0.24) 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 10, 0.88) 78%, var(--bg) 100%);
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 1;
    filter: none;
}

.hero-inner,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    min-width: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: max(540px, calc(100vh - 244px));
    min-height: max(540px, calc(100lvh - 244px));
    align-content: center;
    align-items: end;
}

.hero-copy {
    position: relative;
    width: 100%;
    max-width: 960px;
    min-width: 0;
    padding-left: clamp(0px, 4vw, 72px);
}

.lead-mobile {
    display: none;
}

.hero-kicker {
    width: fit-content;
    margin: 0 0 12px;
    padding: 8px 14px;
    color: var(--brand-bright);
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(211, 168, 67, 0.42);
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: none;
}

.page-hero {
    padding: 150px 0 84px;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(211, 168, 67, 0.2), transparent 42%),
        linear-gradient(180deg, #111113 0%, #09090a 100%);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    width: 100%;
    max-width: 1040px;
    margin-bottom: 18px;
    color: var(--ink);
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: var(--display-md);
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 980px;
    color: #fff;
    font-size: var(--display-lg);
    line-height: 0.91;
    text-shadow: none;
}

.hero h1 span {
    display: block;
    white-space: normal;
}

.hero h1 .transport-line span {
    display: inline;
    white-space: inherit;
}

.hero h1 .hero-line-route span {
    display: inline;
}

.hero h1 .hero-line-main span {
    display: inline;
}

h2 {
    color: var(--ink);
    font-size: var(--card-title);
    line-height: 1.2;
}

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

.heading-icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-top: -0.02em;
    color: var(--brand-bright);
    background: rgba(211, 168, 67, 0.1);
    border: 1px solid rgba(241, 211, 131, 0.36);
    border-radius: 999px;
    box-shadow: none;
}

.heading-icon svg {
    display: block;
    width: 54%;
    height: 54%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1.icon-heading .heading-icon,
.section-heading h2 .heading-icon,
.split-section h2 .heading-icon {
    width: 46px;
    height: 46px;
    margin-top: 0.04em;
}

.section-heading > h2 > .heading-icon,
.split-section > div:first-child > h2 > .heading-icon {
    display: none;
}

.lead {
    width: 100%;
    max-width: 620px;
    color: var(--muted);
    font-size: var(--text-lg);
    line-height: 1.55;
}

.hero .lead {
    max-width: 610px;
    color: rgba(255, 246, 223, 0.88);
    font-weight: 600;
    text-shadow: none;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    color: var(--ink);
    background: rgba(255, 246, 223, 0.04);
    border: 1px solid var(--brand);
    border-radius: 2px;
    font-weight: 800;
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
    transform: none;
}

.button.primary {
    color: var(--black);
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 38%, #d9ae45 100%);
    border-color: transparent;
    box-shadow: none;
}

.button.primary:hover {
    box-shadow: none;
}

.button.secondary:hover {
    border-color: var(--brand-bright);
    background: rgba(255, 246, 223, 0.08);
}

.hero .button {
    min-width: 188px;
    min-height: 54px;
    padding: 14px 24px;
}

.hero .button.primary {
    color: var(--black);
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 40%, #d9ae45 100%);
    border-color: transparent;
    box-shadow: none;
}

.hero .button.primary:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #fff6cf 0%, #f4d98d 42%, #dfb852 100%);
    box-shadow: none;
}

.hero .button.secondary {
    color: #fff;
    background: rgba(0, 0, 0, 0.34);
    border-color: rgba(255, 246, 223, 0.62);
}

.campaign-button {
    justify-content: center;
    min-width: min(100%, 360px);
}

.mobile-cta {
    display: none;
}

.campaign-button span {
    min-width: 0;
}

.hero-trust {
    position: absolute;
    right: var(--content-edge);
    bottom: 56px;
    left: calc(var(--content-edge) + clamp(0px, 4vw, 72px));
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: auto;
    max-width: 720px;
    margin: 0;
    padding: 0;
    color: rgba(255, 246, 223, 0.88);
}

.hero-trust-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    min-width: 0;
    padding-right: 18px;
    border-right: 1px solid rgba(241, 211, 131, 0.24);
}

.hero-trust-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.hero-trust .heading-icon {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--brand-bright);
    background: rgba(211, 168, 67, 0.12);
    border-color: rgba(241, 211, 131, 0.34);
}

.hero-trust-item small,
.hero-trust-item strong {
    display: block;
    text-transform: uppercase;
}

.hero-trust-item small {
    color: var(--brand-bright);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
}

.hero-trust-item strong {
    margin-top: 4px;
    color: #fff6df;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.94;
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1 / -1;
    gap: 1px;
    width: min(100%, 980px);
    margin: 32px 0 0;
    padding: 0;
    background: rgba(211, 168, 67, 0.35);
    box-shadow: none;
    animation: riseIn 900ms ease-out 180ms both;
}

.hero-details div {
    padding: 18px 20px;
    background: rgba(10, 10, 10, 0.76);
    backdrop-filter: none;
    transition: background-color 180ms ease;
}

.hero-details div:hover {
    background: rgba(24, 24, 24, 0.84);
}

.hero-details dt {
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-details dd {
    margin: 4px 0 0;
    color: #fff;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: var(--text-xl);
    line-height: 1;
    text-transform: uppercase;
}

.mobile-hero-details {
    display: none;
}

.hero ~ .section {
    color: #111111;
    background: #ffffff;
}

.hero ~ .section h1,
.hero ~ .section h2,
.hero ~ .section p,
.hero ~ .section li {
    color: #111111;
}

.hero ~ .section .eyebrow {
    color: #9b7624;
}

.hero ~ .section .heading-icon {
    color: #9b7624;
    background: rgba(155, 118, 36, 0.08);
    border-color: rgba(155, 118, 36, 0.28);
}

.hero ~ .section .lead,
.hero ~ .section .service-row p,
.hero ~ .section .quiet-list p,
.hero ~ .section .feature-grid p,
.hero ~ .section .cards p,
.hero ~ .section .contact-details p {
    color: #4f4b45;
}

.hero ~ .section .service-row,
.hero ~ .section .service-row:first-of-type,
.hero ~ .section .quiet-list p {
    border-color: rgba(17, 17, 17, 0.14);
}

.hero ~ .section .cards article,
.hero ~ .section .feature-grid article,
.hero ~ .section .contact-details,
.hero ~ .section .contact-form,
.hero ~ .section .package-list {
    color: #111111;
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.14);
    box-shadow: none;
}

.hero ~ .section .package-list li::marker {
    color: #9b7624;
}

.hero ~ .section input,
.hero ~ .section select,
.hero ~ .section textarea {
    color: #111111;
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.18);
}

.section {
    padding: 88px 0;
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2,
.split-section h2 {
    max-width: 840px;
    margin-bottom: 12px;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: var(--section-title);
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-strip {
    padding-top: 76px;
    background: linear-gradient(180deg, var(--bg) 0%, #111113 100%);
}

.service-match {
    display: grid;
    grid-template-columns: minmax(280px, 0.44fr) minmax(420px, 0.56fr);
    gap: clamp(36px, 5vw, 82px);
    align-items: center;
}

.service-match-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #15120c;
    border: 1px solid rgba(138, 106, 36, 0.18);
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

.service-match-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
    pointer-events: none;
}

.service-match-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.service-match-content {
    min-width: 0;
}

.service-match-content .eyebrow {
    margin-top: 0;
}

.service-match-heading {
    max-width: 700px;
}

.service-match-heading h2 {
    max-width: 640px;
    margin: 0 0 16px;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: var(--section-title);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-match-heading p {
    max-width: 640px;
    margin: 0;
    color: #51493e;
    font-size: var(--text-md);
    line-height: 1.55;
}

.service-match-list {
    margin-top: 28px;
    border-top: 1px solid rgba(21, 18, 12, 0.16);
}

.service-match-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(21, 18, 12, 0.16);
}

.service-match-option strong {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 30px;
    padding: 7px 11px;
    margin: 0;
    color: #8a6a24;
    background: rgba(199, 162, 74, 0.11);
    border: 1px solid rgba(138, 106, 36, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
}

.service-match-option span {
    max-width: 560px;
    margin: 0;
    color: #51493e;
    font-size: var(--text-md);
    line-height: 1.5;
}

.service-match-cta {
    min-width: 210px;
    width: fit-content;
    margin-top: 28px;
    padding-inline: 24px;
}

.service-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.64fr);
    gap: 28px;
    align-items: end;
}

.service-heading p {
    margin: 0;
    color: var(--muted);
    font-size: var(--text-md);
}

.service-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    transition: border-color 180ms ease, transform 180ms ease;
}

.service-row:first-of-type {
    border-top: 1px solid var(--line);
}

.service-row span {
    color: var(--ink);
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: var(--display-sm);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-row p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: var(--text-md);
}

.service-row:hover {
    transform: none;
    border-color: rgba(211, 168, 67, 0.52);
}

.luxury-panel,
.closing-cta,
.dark-band {
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.03), rgba(255, 246, 223, 0)),
        var(--bg);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
    gap: 36px;
    align-items: start;
}

.quiet-list {
    display: grid;
    gap: 18px;
}

.quiet-list p {
    margin: 0;
    padding: 0 0 18px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}

.feature-grid,
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards article,
.feature-grid article,
.contact-details,
.contact-form,
.package-list {
    max-width: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: none;
}

.feature-grid article,
.cards article,
.contact-details,
.contact-form {
    padding: 24px;
}

.feature-grid h2,
.cards h2,
.contact-details h2 {
    margin-bottom: 10px;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-grid p,
.cards p,
.contact-details p,
.site-footer p,
.dark-band p,
.dark-band li {
    color: var(--muted);
}

.package-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 24px 24px 24px 42px;
    color: var(--ink);
    backdrop-filter: none;
    transition: border-color 220ms ease;
}

.package-list:hover {
    transform: none;
    border-color: rgba(211, 168, 67, 0.5);
}

.package-list li::marker {
    color: var(--brand-bright);
}

p,
li,
a,
button,
input,
select,
textarea {
    overflow-wrap: break-word;
}

p,
li {
    word-break: normal;
}

.contact-form {
    display: grid;
    gap: 16px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 13px 14px;
    color: var(--ink);
    background: rgba(255, 246, 223, 0.07);
    border: 1px solid rgba(255, 246, 223, 0.18);
    border-radius: 6px;
    font: inherit;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(211, 168, 67, 0.48);
    outline-offset: 2px;
    background: rgba(255, 246, 223, 0.1);
    border-color: rgba(241, 211, 131, 0.64);
    box-shadow: 0 0 0 4px rgba(211, 168, 67, 0.1);
}

input::placeholder,
select:invalid,
textarea::placeholder {
    color: rgba(255, 246, 223, 0.52);
}

select {
    font: inherit;
    color-scheme: dark;
    text-overflow: ellipsis;
}

select option {
    color: #15120c;
    background: #fff6df;
}

select option[value=""] {
    color: #625744;
}

textarea {
    resize: vertical;
}

.booking-hero {
    background: #111113;
}

.booking-section {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: #0f0f10;
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(241, 211, 131, 0.08), transparent 36%, rgba(255, 246, 223, 0.04));
}

.booking-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    align-items: start;
    min-width: 0;
}

.booking-path-intro {
    display: grid;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(241, 211, 131, 0.18);
}

.booking-path-intro .eyebrow,
.booking-details .eyebrow {
    margin-bottom: 0;
}

.booking-path-intro h1,
.booking-path-intro h2 {
    margin: 0;
    max-width: 720px;
    color: #fff;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.02;
}

.booking-path-intro h2 > .heading-text,
.booking-details h2 > .heading-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
}

.booking-path-intro p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

.booking-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.booking-field-grid label,
.booking-fieldset,
.booking-form input,
.booking-form select,
.booking-form textarea {
    min-width: 0;
    max-width: 100%;
}

.booking-field-grid label:last-child {
    grid-column: 1 / -1;
}

.booking-fieldset {
    display: grid;
    gap: 16px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.booking-fieldset + .booking-fieldset {
    padding-top: 20px;
    border-top: 1px solid rgba(241, 211, 131, 0.18);
}

.booking-fieldset legend {
    margin: 0 0 14px;
    padding: 0;
    color: var(--brand-bright);
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.field-span-full {
    grid-column: 1 / -1;
}

.booking-form,
.booking-details {
    min-width: 0;
    border-color: rgba(241, 211, 131, 0.28);
    border-radius: 8px;
    background: rgba(14, 14, 15, 0.94);
    box-shadow: none;
}

.booking-form {
    position: relative;
    gap: 20px;
    padding: 34px;
}

.booking-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-dark), var(--brand-bright), var(--brand));
    border-radius: 8px 8px 0 0;
}

.booking-form .button {
    justify-self: start;
    min-width: min(100%, 280px);
    margin-top: 4px;
}

.booking-details {
    display: grid;
    gap: 16px;
    padding: 34px;
}

.booking-details h2,
.booking-details p,
.booking-details a {
    color: var(--ink);
}

.booking-details p {
    margin: 0;
    color: var(--muted);
}

.booking-details a:hover {
    color: var(--brand-bright);
}

.booking-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2px 0 0;
}

.booking-contact-actions .button {
    min-width: 132px;
}

.booking-contact-methods {
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.booking-contact-methods a,
.booking-detail-list {
    display: grid;
    gap: 3px;
    padding: 14px 16px;
    background: rgba(255, 246, 223, 0.055);
    border: 1px solid rgba(241, 211, 131, 0.16);
    border-radius: 6px;
}

.booking-contact-methods a {
    text-decoration: none;
}

.booking-contact-methods span {
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-details-action {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(241, 211, 131, 0.18);
}

.contact-details-action p {
    margin: 0;
}

.contact-details-action .button {
    justify-self: start;
}

.contact-details {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.request-ride-page .booking-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 28px;
}

.request-ride-page .booking-field-grid label:last-child {
    grid-column: auto;
}

.request-ride-page .booking-field-grid .field-span-full {
    grid-column: 1 / -1;
}

.request-ride-page .booking-form {
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.request-ride-page .direct-booking-card {
    position: sticky;
    top: 112px;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) minmax(140px, 0.45fr) minmax(190px, 0.62fr) minmax(220px, 0.7fr);
    align-items: start;
    gap: 34px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 52px var(--content-edge) 28px;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(211, 168, 67, 0.07), rgba(211, 168, 67, 0)),
        #0c0c0d;
    border-top: 1px solid rgba(241, 211, 131, 0.26);
    box-shadow: none;
}

.footer-main,
.footer-nav,
.footer-contact {
    display: grid;
    align-content: start;
}

.footer-main {
    gap: 16px;
    max-width: 560px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    color: var(--ink);
    text-decoration: none;
}

.footer-logo {
    display: block;
    width: 76px;
    max-width: 28vw;
    height: auto;
}

.footer-brand strong {
    display: block;
    color: var(--ink);
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.footer-brand span span {
    display: block;
    margin-top: 4px;
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.footer-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.footer-cta {
    min-height: 42px;
    padding: 11px 18px;
}

.footer-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    color: rgba(255, 246, 223, 0.88);
    border: 1px solid rgba(241, 211, 131, 0.34);
    border-radius: 2px;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.footer-action-link:hover {
    color: var(--brand-bright);
    background: rgba(255, 246, 223, 0.06);
    border-color: rgba(241, 211, 131, 0.62);
}

.footer-nav,
.footer-contact {
    gap: 10px;
}

.footer-nav h2,
.footer-contact h2 {
    margin: 0 0 4px;
    color: var(--brand-bright);
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
    color: rgba(255, 246, 223, 0.86);
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-nav a {
    width: fit-content;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--brand-bright);
}

address,
.footer-contact {
    color: var(--muted);
    font-style: normal;
}

.footer-contact {
    justify-self: stretch;
    text-align: left;
}

.footer-contact > span {
    color: var(--muted);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 6px;
    font-size: var(--text-sm);
    font-weight: 800;
}

.footer-social .heading-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin: 0;
    color: var(--brand-bright);
    background: rgba(241, 211, 131, 0.08);
    border-color: rgba(241, 211, 131, 0.28);
}

.footer-social .heading-icon svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    margin-top: 8px;
    color: rgba(200, 189, 171, 0.78);
    border-top: 1px solid rgba(255, 246, 223, 0.12);
    font-size: var(--text-xs);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

.footer-legal a {
    color: rgba(255, 246, 223, 0.78);
    text-decoration: none;
}

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

.service-card[id] {
    scroll-margin-top: 120px;
}

.policy-content {
    display: grid;
    gap: 16px;
    max-width: 920px;
}

.section.section-soft .policy-content h2 {
    margin: 14px 0 0;
    color: #15120c;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: var(--card-title);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.12;
    text-transform: uppercase;
}

.section.section-soft .policy-content p {
    margin: 0;
    color: #51493e;
}

.section.section-soft .policy-content a {
    color: #8a6a24;
    font-weight: 800;
}

.section.section-soft .policy-content .policy-updated {
    color: #8a6a24;
    font-size: var(--text-xs);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero ~ .section,
.hero ~ .section.service-strip,
.hero ~ .section.luxury-panel,
.hero ~ .section.closing-cta,
.hero ~ .section.dark-band {
    color: #111111;
    background: #ffffff;
}

.hero ~ .section h1,
.hero ~ .section h2,
.hero ~ .section p,
.hero ~ .section li,
.hero ~ .section a,
.hero ~ .section .service-row span {
    color: #111111;
}

.hero ~ .section .eyebrow {
    color: #9b7624;
}

.hero ~ .section .service-heading p,
.hero ~ .section .service-row p,
.hero ~ .section .quiet-list p,
.hero ~ .section .feature-grid p,
.hero ~ .section .cards p,
.hero ~ .section .contact-details p,
.hero ~ .section.dark-band p,
.hero ~ .section.dark-band li {
    color: #4f4b45;
}

.hero ~ .section .service-row,
.hero ~ .section .service-row:first-of-type,
.hero ~ .section .quiet-list p {
    border-color: rgba(17, 17, 17, 0.14);
}

.hero ~ .section .cards article,
.hero ~ .section .feature-grid article,
.hero ~ .section .contact-details,
.hero ~ .section .contact-form,
.hero ~ .section .package-list {
    color: #111111;
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.14);
    box-shadow: none;
}

.hero ~ .section .package-list li::marker {
    color: #9b7624;
}

.hero ~ .section input,
.hero ~ .section select,
.hero ~ .section textarea {
    color: #111111;
    background: #ffffff;
    border-color: rgba(17, 17, 17, 0.18);
}

.section.section-soft {
    color: #15120c;
    background:
        linear-gradient(180deg, rgba(211, 168, 67, 0.07), rgba(211, 168, 67, 0.02)),
        #fffaf0;
}

.section.section-warm {
    color: #15120c;
    background:
        linear-gradient(135deg, rgba(17, 32, 42, 0.08), transparent 42%),
        #f4ead6;
}

.section.section-cream {
    color: #15120c;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(244, 234, 214, 0.86)),
        #fffaf0;
}

.section.section-ink,
.hero ~ .section.section-ink {
    color: var(--ink);
    background: #111113;
}

.section.section-soft h1,
.section.section-soft h2,
.section.section-soft p,
.section.section-soft li,
.section.section-soft a,
.section.section-soft .service-row span,
.section.section-warm h1,
.section.section-warm h2,
.section.section-warm p,
.section.section-warm li,
.section.section-warm a,
.section.section-warm .service-row span,
.section.section-cream h1,
.section.section-cream h2,
.section.section-cream p,
.section.section-cream li,
.section.section-cream a,
.section.section-cream .service-row span {
    color: #15120c;
}

.section.section-soft .lead,
.section.section-soft .section-heading p,
.section.section-soft .service-row p,
.section.section-soft .quiet-list p,
.section.section-soft .feature-grid p,
.section.section-soft .cards p,
.section.section-soft .contact-details p,
.section.section-warm .lead,
.section.section-warm .section-heading p,
.section.section-warm .service-row p,
.section.section-warm .quiet-list p,
.section.section-warm .feature-grid p,
.section.section-warm .cards p,
.section.section-warm .contact-details p,
.section.section-cream .lead,
.section.section-cream .section-heading p,
.section.section-cream .service-row p,
.section.section-cream .quiet-list p,
.section.section-cream .feature-grid p,
.section.section-cream .cards p,
.section.section-cream .contact-details p {
    color: #51493e;
}

.section.section-ink h1,
.section.section-ink h2,
.section.section-ink li,
.section.section-ink a,
.section.section-ink .service-row span {
    color: var(--ink);
}

.section.section-ink p,
.section.section-ink .section-heading p,
.section.section-ink .quiet-list p,
.section.section-ink .package-list li,
.section.section-ink .contact-details p {
    color: var(--muted);
}

.section.section-soft .eyebrow,
.section.section-warm .eyebrow,
.section.section-cream .eyebrow {
    color: #8a6a24;
}

.section.section-soft .heading-icon,
.section.section-warm .heading-icon,
.section.section-cream .heading-icon {
    color: #8a6a24;
    background: rgba(199, 162, 74, 0.11);
    border-color: rgba(138, 106, 36, 0.26);
}

.section.section-soft .service-row,
.section.section-warm .service-row,
.section.section-cream .service-row,
.section.section-soft .service-row:first-of-type,
.section.section-warm .service-row:first-of-type,
.section.section-cream .service-row:first-of-type,
.section.section-soft .quiet-list p,
.section.section-warm .quiet-list p,
.section.section-cream .quiet-list p {
    border-color: rgba(21, 18, 12, 0.14);
}

.section.section-soft .cards article,
.section.section-soft .feature-grid article,
.section.section-soft .contact-details,
.section.section-soft .contact-form,
.section.section-soft .package-list,
.section.section-warm .cards article,
.section.section-warm .feature-grid article,
.section.section-warm .contact-details,
.section.section-warm .contact-form,
.section.section-warm .package-list,
.section.section-cream .cards article,
.section.section-cream .feature-grid article,
.section.section-cream .contact-details,
.section.section-cream .contact-form,
.section.section-cream .package-list {
    color: #15120c;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(21, 18, 12, 0.13);
    box-shadow: none;
}

.section.section-warm .cards article,
.section.section-warm .feature-grid article,
.section.section-warm .package-list {
    background: rgba(255, 250, 240, 0.66);
}

.section.section-ink .cards article,
.section.section-ink .feature-grid article,
.section.section-ink .contact-details,
.section.section-ink .contact-form,
.section.section-ink .package-list {
    color: var(--ink);
    background: rgba(20, 20, 22, 0.9);
    border-color: rgba(241, 211, 131, 0.22);
    box-shadow: none;
}

.section.section-soft input,
.section.section-soft select,
.section.section-soft textarea,
.section.section-warm input,
.section.section-warm select,
.section.section-warm textarea,
.section.section-cream input,
.section.section-cream select,
.section.section-cream textarea {
    color: #15120c;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(21, 18, 12, 0.18);
}

.section.section-soft .contact-form label,
.section.section-warm .contact-form label,
.section.section-cream .contact-form label {
    color: #8a6a24;
}

.cards article,
.feature-grid article,
.contact-details,
.contact-form,
.package-list,
.route-grid article {
    border-radius: 8px;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.route-grid article {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 100%;
    padding: 22px;
    background: rgba(255, 250, 240, 0.7);
    border: 1px solid rgba(21, 18, 12, 0.13);
    box-shadow: none;
}

.route-grid span {
    width: fit-content;
    color: #8a6a24;
    font-size: var(--text-xs);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.route-grid h2 {
    margin: 0;
    color: #15120c;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.route-grid p {
    margin: 0;
    color: #51493e;
}

.services-catalog .section-heading {
    margin-bottom: 32px;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 100%;
    padding: 22px;
    overflow: hidden;
    color: #15120c;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(21, 18, 12, 0.13);
    border-radius: 8px;
    box-shadow: none;
    transition: border-color 180ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #8a6a24, #f1d383, #c7a24a);
    opacity: 0.86;
}

.service-card:hover {
    transform: none;
    border-color: rgba(138, 106, 36, 0.34);
    box-shadow: none;
}

.service-card-featured {
    grid-column: span 2;
    background:
        linear-gradient(135deg, rgba(199, 162, 74, 0.16), rgba(255, 255, 255, 0.72) 52%),
        rgba(255, 255, 255, 0.8);
}

.service-tag {
    width: fit-content;
    color: #8a6a24;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.service-card h2 {
    margin: 0;
    color: #15120c;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.06;
    text-transform: uppercase;
}

.service-card p {
    margin: 0;
    color: #51493e;
}

.vegas-events {
    overflow: hidden;
}

#vegas-events-title {
    scroll-margin-top: 128px;
}

.event-carousel {
    display: grid;
    gap: 18px;
}

.event-carousel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.event-carousel-top p {
    margin: 0;
    color: var(--muted);
    font-size: var(--text-sm);
}

.event-carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.event-carousel-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--brand-bright);
    background: rgba(241, 211, 131, 0.08);
    border: 1px solid rgba(241, 211, 131, 0.28);
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.event-carousel-button:hover {
    color: #fff3c2;
    background: rgba(241, 211, 131, 0.14);
    border-color: rgba(241, 211, 131, 0.44);
}

.event-carousel-button:disabled {
    color: rgba(255, 246, 223, 0.32);
    background: rgba(255, 246, 223, 0.035);
    border-color: rgba(255, 246, 223, 0.12);
    cursor: default;
}

.event-carousel-button svg {
    display: block;
    width: 52%;
    height: 52%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-card-grid {
    display: flex;
    gap: 16px;
    min-width: 0;
    margin: 0 calc(var(--gutter) / -2);
    padding: 0 calc(var(--gutter) / 2) 2px;
    overflow-x: auto;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    scroll-padding-inline: calc(var(--gutter) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.event-card-grid::-webkit-scrollbar {
    display: none;
}

.event-card {
    display: grid;
    grid-template-rows: auto 1fr;
    flex: 0 0 clamp(280px, calc((100% - 48px) / 4), 318px);
    min-height: 100%;
    overflow: hidden;
    color: var(--ink);
    background: rgba(20, 20, 22, 0.92);
    border: 1px solid rgba(241, 211, 131, 0.22);
    border-radius: 8px;
    scroll-snap-align: start;
}

.event-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #09090a;
    border-bottom: 1px solid rgba(241, 211, 131, 0.18);
}

.event-card-body {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 6px 9px;
    color: var(--brand-bright);
    background: rgba(241, 211, 131, 0.08);
    border: 1px solid rgba(241, 211, 131, 0.18);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.event-card h3,
.events-empty h3 {
    margin: 0;
    color: var(--ink);
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.event-card p,
.events-empty p {
    margin: 0;
    color: var(--muted);
}

.event-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.event-card-actions a {
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.event-card-actions a:hover {
    color: #fff3c2;
}

.events-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    color: var(--ink);
    background: rgba(20, 20, 22, 0.92);
    border: 1px solid rgba(241, 211, 131, 0.22);
    border-radius: 8px;
}

.events-empty div {
    display: grid;
    gap: 8px;
    max-width: 720px;
}

.fleet-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fleet-photo-grid article {
    overflow: hidden;
    color: var(--ink);
    background: rgba(20, 20, 22, 0.9);
    border: 1px solid rgba(241, 211, 131, 0.22);
    border-radius: 8px;
    box-shadow: none;
}

.fleet-photo-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid rgba(241, 211, 131, 0.2);
    filter: none;
}

.fleet-photo-grid article div {
    padding: 22px;
}

.fleet-photo-grid h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-photo-grid p {
    margin: 0;
    color: var(--muted);
}

.fleet-showcase-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.fleet-section .section-heading {
    margin-bottom: 24px;
}

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

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

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

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

@media (min-width: 761px) {
    h1,
    .section-heading h2,
    .split-section h2,
    .service-row span {
        text-wrap: balance;
    }

}

@media (max-width: 1100px) {
    :root {
        --display-lg: 4.25rem;
        --display-md: 2.85rem;
        --section-title: 2.6rem;
    }

    .site-nav {
        gap: 26px;
    }

    .site-footer {
        grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.5fr);
    }

    .footer-bottom {
        align-items: flex-start;
    }
}

@media (max-width: 980px) {
    :root {
        --display-lg: 3.6rem;
        --display-md: 2.55rem;
        --display-sm: 1.7rem;
        --section-title: 2.25rem;
        --text-lg: 1.125rem;
    }

    .hero {
        padding-top: 142px;
    }

    .hero-inner {
        min-height: max(430px, calc(100vh - 198px));
        min-height: max(430px, calc(100lvh - 198px));
    }

    .hero-copy {
        max-width: 760px;
    }

    .site-header {
        display: flex;
        align-items: center;
    }

    .header-phone {
        display: none;
    }

    .mobile-header-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-height: 44px;
        margin-left: auto;
        padding: 0;
        color: var(--ink);
        background: rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(255, 246, 223, 0.52);
        border-radius: 2px;
        text-decoration: none;
    }

    .mobile-header-call svg {
        display: block;
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .home-page .site-header.is-past-hero .mobile-header-call {
        color: #15110a;
        background: transparent;
        border-color: rgba(17, 17, 17, 0.28);
    }

    .nav-toggle {
        display: flex;
        position: static;
        margin-left: 12px;
        z-index: 25;
        color: var(--black);
        background: var(--brand);
        border-color: transparent;
        box-shadow: none;
    }

    .nav-toggle:hover {
        transform: none;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: grid;
        width: 100vw;
        height: 100vh;
        height: 100svh;
        max-width: none;
        min-width: 0;
        margin: 0;
        max-height: none;
        padding: 0;
        overflow: hidden;
        background: transparent;
        border: 0;
        box-shadow: none;
        pointer-events: none;
        visibility: hidden;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        grid-template-columns: minmax(0, 1fr);
        transition: visibility 0s linear 0.3s;
    }

    .site-nav .nav-menu-panel {
        display: grid;
    }

    .nav-links a {
        display: flex;
        padding: 16px 0;
        font-size: clamp(1.4rem, 5vw, 2.15rem);
    }

    .site-nav.is-open {
        pointer-events: auto;
        visibility: visible;
        transition-delay: 0s;
    }

    .site-nav.is-open .nav-menu-panel {
        opacity: 1;
        transform: translateY(0);
    }

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

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

    .event-card-grid {
        grid-template-columns: none;
    }

    .event-card {
        flex-basis: min(360px, calc((100% - 16px) / 2));
    }

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

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

    .service-heading,
    .service-row {
        grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
    }

    .service-match {
        grid-template-columns: minmax(260px, 0.43fr) minmax(360px, 0.57fr);
        gap: 34px;
    }

    .service-match-option {
        gap: 14px;
    }

    .service-match-option strong {
        min-width: 104px;
    }
}

@media (max-width: 760px) {
    :root {
        --gutter: 56px;
        --display-lg: 3rem;
        --display-md: 2.15rem;
        --display-sm: 1.45rem;
        --section-title: 2rem;
        --text-lg: 1.12rem;
    }

    .site-header,
    .site-footer,
    .hero-inner,
    .contact-layout,
    .feature-grid,
    .route-grid,
    .service-card-grid,
    .fleet-photo-grid,
    .split-section,
    .service-heading,
    .service-row,
    .hero-details {
        display: grid;
        grid-template-columns: 1fr;
    }

    .events-empty {
        display: grid;
        justify-items: start;
    }

    .event-carousel-top {
        display: grid;
        justify-items: start;
    }

    .event-card-grid {
        display: flex;
        grid-template-columns: none;
    }

    .event-card {
        flex-basis: min(82vw, 330px);
    }

    .site-header {
        display: flex;
        align-items: center;
        top: 0;
        padding: 10px var(--content-edge);
    }

    .brand-logo {
        width: 118px;
    }

    .site-nav {
        inset: 0;
        width: 100vw;
        height: 100vh;
        height: 100svh;
        max-width: none;
        min-width: 0;
        margin: 0;
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        grid-template-columns: minmax(0, 1fr);
    }

    .service-match {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-match-media {
        aspect-ratio: 16 / 9;
    }

    .service-match-list {
        margin-top: 24px;
    }

    .service-match-option {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px 0;
    }

    .service-match-option strong {
        width: fit-content;
        min-width: 0;
    }

    .service-match-option span {
        max-width: none;
        font-size: var(--text-base);
    }

    .service-match-cta {
        width: 100%;
    }

    .page-hero {
        padding: 116px 0 64px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 162px 0 64px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.54) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.12) 78%, rgba(0, 0, 0, 0.16) 100%);
    }

    .hero-media {
        object-position: 66% center;
    }

    .hero-inner {
        min-height: max(500px, calc(100vh - 226px));
        min-height: max(500px, calc(100svh - 226px));
        align-content: center;
        gap: 24px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: 0;
        text-align: left;
        isolation: isolate;
    }

    .hero-copy::before {
        content: none;
    }

    .hero-copy > * {
        position: relative;
        z-index: 1;
    }

    .hero-kicker {
        margin-right: 0;
        margin-left: 0;
    }

    .hero .lead {
        margin-right: 0;
        margin-left: 0;
        max-width: 330px;
    }

    .hero h1 {
        margin-bottom: 18px;
        max-width: 340px;
        font-size: 2.85rem;
        line-height: 0.96;
    }

    .hero h1 span {
        white-space: normal;
    }

    .hero h1 .transport-line span {
        display: block;
    }

    .hero h1 .hero-line-route span {
        display: block;
    }

    .hero h1 .hero-line-main span {
        display: block;
    }

    .hero .lead {
        max-width: 330px;
        line-height: 1.58;
    }

    .hero .lead-desktop {
        display: none;
    }

    .hero .lead-mobile {
        display: inline;
    }

    .button-row {
        gap: 10px;
        width: 100%;
        max-width: 310px;
        margin-top: 24px;
        margin-right: 0;
        margin-left: 0;
    }

    .button {
        width: 100%;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: inline-flex;
    }

    .campaign-button {
        min-width: 0;
    }

    .hero-trust {
        bottom: 30px;
        right: var(--content-edge);
        left: var(--content-edge);
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 8px;
        width: auto;
        max-width: none;
        padding: 0;
        transform: none;
    }

    .hero-trust-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
        justify-items: start;
        padding: 9px 0 0;
        border-top: 1px solid rgba(241, 211, 131, 0.3);
        border-right: 0;
    }

    .hero-trust .heading-icon {
        width: 20px;
        height: 20px;
        margin: 0 0 2px;
    }

    .hero-trust-item small {
        font-size: 0.48rem;
        letter-spacing: 0.1em;
        line-height: 1.1;
    }

    .hero-trust-item strong {
        margin-top: 2px;
        font-size: 0.9rem;
        line-height: 0.98;
    }

    .hero-details {
        display: none;
    }

    .mobile-hero-details {
        display: block;
        padding: 28px 0 50px;
        background: linear-gradient(180deg, var(--bg) 0%, #111113 100%);
    }

    .mobile-detail-grid {
        display: grid;
        gap: 1px;
        margin: 0;
        padding: 0;
        background: rgba(211, 168, 67, 0.35);
        border: 1px solid rgba(211, 168, 67, 0.28);
        box-shadow: none;
    }

    .mobile-detail-grid div {
        padding: 14px 16px;
        background: rgba(10, 10, 10, 0.8);
    }

    .mobile-detail-grid dt {
        color: var(--brand-bright);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        line-height: 1;
        text-transform: uppercase;
    }

    .mobile-detail-grid dd {
        margin: 4px 0 0;
        color: #fff;
        font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.05;
        text-transform: uppercase;
    }

    .feature-grid article,
    .cards article,
    .service-card,
    .contact-details,
    .contact-form {
        padding: 20px;
    }

    .section {
        padding: 64px 0;
    }

    .service-row {
        gap: 10px;
        padding: 24px 0;
    }

    .service-row:hover,
    .service-card:hover,
    .package-list:hover {
        transform: none;
    }

    .service-card-featured {
        grid-column: auto;
    }

    .package-list {
        padding: 22px 22px 22px 38px;
    }

    .site-footer {
        gap: 24px;
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .footer-bottom {
        display: grid;
        justify-items: start;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .booking-form,
    .booking-details {
        padding: 24px;
    }

    .booking-field-grid {
        grid-template-columns: 1fr;
    }

    .booking-path-intro h1,
    .booking-path-intro h2 {
        font-size: 2.1rem;
    }

    .footer-main {
        gap: 14px;
    }

    .footer-contact {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    :root {
        --gutter: 48px;
        --display-lg: 2.55rem;
        --display-md: 1.85rem;
        --display-sm: 1.25rem;
        --section-title: 1.68rem;
        --card-title: 1.0625rem;
    }

    .site-header {
        padding: 9px var(--content-edge);
    }

    .brand {
        padding: 0;
    }

    .brand-logo {
        width: 108px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-logo {
        width: 64px;
    }

    .footer-action-row {
        align-items: stretch;
    }

    .footer-cta {
        flex: 1 1 100%;
    }

    .footer-action-link {
        flex: 1 1 calc(50% - 5px);
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .mobile-header-call {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }

    .mobile-header-call svg {
        width: 18px;
        height: 18px;
    }

    .site-nav {
        width: 100vw;
        height: 100vh;
        height: 100svh;
        max-width: none;
        min-width: 0;
        margin: 0;
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        grid-template-columns: minmax(0, 1fr);
    }

    .nav-menu-panel {
        padding: 22px var(--content-edge) max(24px, calc(env(safe-area-inset-bottom) + 20px));
    }

    .hero,
    .page-hero {
        padding-top: 94px;
    }

    .hero {
        padding-top: 148px;
        padding-bottom: 56px;
    }

    .hero-inner {
        min-height: max(500px, calc(100vh - 204px));
        min-height: max(500px, calc(100svh - 204px));
    }

    .hero h1 {
        margin-bottom: 16px;
        max-width: 320px;
        font-size: 2.42rem;
        line-height: 0.96;
    }

    .hero-kicker {
        max-width: 100%;
        font-size: var(--text-xs);
    }

    .hero .lead {
        max-width: 304px;
        font-size: 1rem;
    }

    .button-row {
        max-width: 304px;
        margin-top: 22px;
    }

    .hero .button.secondary {
        display: none;
    }

    .lead {
        line-height: 1.5;
    }

    .section {
        padding: 56px 0;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .icon-heading {
        gap: 10px;
    }

    .heading-icon {
        width: 34px;
        height: 34px;
    }

    h1.icon-heading .heading-icon,
    .section-heading h2 .heading-icon,
    .service-match-heading h2 .heading-icon,
    .split-section h2 .heading-icon {
        width: 38px;
        height: 38px;
    }

    .campaign-button {
        padding-inline: 12px;
    }

    .booking-form,
    .booking-details {
        padding: 20px;
    }

    .feature-grid article,
    .cards article,
    .service-card,
    .contact-details,
    .contact-form {
        padding: 18px;
    }

    .mobile-hero-details {
        padding: 24px 0 44px;
    }

    .mobile-detail-grid div {
        padding: 12px 14px;
    }

    .mobile-detail-grid dt {
        font-size: 0.64rem;
    }

    .mobile-detail-grid dd {
        font-size: 0.96rem;
    }
}

/* Home page post-hero polish. The hero itself is intentionally untouched. */
.home-page .hero ~ .section {
    --section-bg: #0b0b0c;
    --section-text: var(--ink);
    --section-muted: rgba(255, 246, 223, 0.72);
    --section-line: rgba(241, 211, 131, 0.18);
    --section-card: rgba(255, 246, 223, 0.055);
    --section-card-strong: rgba(255, 246, 223, 0.085);
    --section-accent: var(--brand-bright);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 104px 0;
    color: var(--section-text);
    background:
        linear-gradient(140deg, rgba(211, 168, 67, 0.13), transparent 30%),
        linear-gradient(180deg, rgba(255, 246, 223, 0.035), rgba(255, 246, 223, 0)),
        var(--section-bg);
}

.home-page .hero ~ .section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 38%, rgba(0, 0, 0, 0.26)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
    pointer-events: none;
}

.home-page .hero ~ .section.section-soft {
    --section-bg: #10100f;
    --section-text: var(--ink);
    --section-muted: rgba(255, 246, 223, 0.72);
    --section-line: rgba(241, 211, 131, 0.18);
    --section-card: rgba(255, 246, 223, 0.06);
    --section-card-strong: rgba(255, 246, 223, 0.09);
}

.home-page .hero ~ .section.section-ink {
    --section-bg: #09090a;
    --section-text: var(--ink);
    --section-muted: rgba(255, 246, 223, 0.72);
    --section-line: rgba(241, 211, 131, 0.2);
    --section-card: rgba(255, 246, 223, 0.055);
    --section-card-strong: rgba(255, 246, 223, 0.09);
}

.home-page .hero ~ .section.section-cream,
.home-page .hero ~ .section.section-warm {
    --section-bg: #f6efe2;
    --section-text: #15120c;
    --section-muted: #50483d;
    --section-line: rgba(21, 18, 12, 0.16);
    --section-card: rgba(255, 255, 255, 0.62);
    --section-card-strong: rgba(17, 17, 17, 0.9);
    --section-accent: #8a6a24;
    background:
        linear-gradient(135deg, rgba(13, 13, 13, 0.075), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(235, 222, 199, 0.88)),
        var(--section-bg);
}

.home-page .hero ~ .section.section-warm {
    --section-bg: #ebe0ca;
    background:
        linear-gradient(135deg, rgba(13, 13, 13, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(247, 239, 224, 0.72), rgba(224, 210, 184, 0.88)),
        var(--section-bg);
}

.home-page .hero ~ .section > .container {
    position: relative;
    z-index: 1;
}

.home-page .hero ~ .section :is(h1, h2, li, a, .service-row span) {
    color: var(--section-text);
}

.home-page .hero ~ .section :is(p, .lead, .section-heading p, .service-heading p, .service-row p, .quiet-list p, .feature-grid p, .cards p, .contact-details p, .route-grid p, .fleet-photo-grid p) {
    color: var(--section-muted);
}

.home-page .hero ~ .section .eyebrow,
.home-page .hero ~ .section .service-tag,
.home-page .hero ~ .section .route-grid span {
    color: var(--section-accent);
}

.home-page .hero ~ .section .heading-icon {
    color: var(--section-accent);
    background: rgba(211, 168, 67, 0.12);
    border-color: rgba(241, 211, 131, 0.3);
}

.home-page .hero ~ .section.section-cream .heading-icon,
.home-page .hero ~ .section.section-warm .heading-icon {
    background: rgba(138, 106, 36, 0.1);
    border-color: rgba(138, 106, 36, 0.24);
}

.home-page .hero ~ .section .section-heading {
    margin-bottom: 38px;
}

.home-page .hero ~ .section .section-heading h2,
.home-page .hero ~ .section .split-section h2,
.home-page .hero ~ .section .service-match-heading h2 {
    margin-top: 0;
    color: var(--section-text);
}

.home-page .hero ~ .section .button.primary {
    color: var(--black);
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 42%, #c89b35 100%);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.home-page .hero ~ .section .button.secondary {
    border-color: var(--section-line);
}

.home-page .hero ~ .vegas-events .event-card-actions a {
    color: var(--brand-bright);
}

.home-page .hero ~ .vegas-events .event-card-actions a:hover {
    color: #fff3c2;
}

.home-page .service-strip {
    padding-top: 112px;
    background:
        linear-gradient(180deg, #09090a 0%, #0b0b0c 54%, #11100f 100%);
}

.home-page .service-match {
    grid-template-columns: minmax(300px, 0.46fr) minmax(420px, 0.54fr);
    gap: 78px;
}

.home-page .service-match-media {
    min-height: 520px;
    aspect-ratio: 4 / 5;
    border-color: rgba(241, 211, 131, 0.24);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}

.home-page .service-match-media::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 46%);
}

.home-page .service-match-content {
    display: grid;
    grid-template-columns: minmax(0, 720px);
    justify-content: end;
    justify-items: start;
    text-align: left;
}

.home-page .service-match-heading {
    width: 100%;
    max-width: 720px;
}

.home-page .service-match-heading h2 {
    max-width: 700px;
}

.home-page .service-match-heading p {
    max-width: 650px;
    color: var(--section-muted);
}

.home-page .service-match-list {
    width: 100%;
    border-color: var(--section-line);
}

.home-page .service-match-option {
    padding: 19px 0;
    text-align: left;
    border-color: var(--section-line);
}

.home-page .service-match-option strong {
    color: var(--section-accent);
    background: rgba(241, 211, 131, 0.1);
    border-color: rgba(241, 211, 131, 0.26);
}

.home-page .service-match-option span {
    color: var(--section-muted);
}

.home-page .service-match-cta {
    justify-self: start;
}

.home-page .home-services .container,
.home-page .process-panel .container,
.home-page .route-panel .container {
    max-width: 1180px;
}

.home-page .home-services .section-heading,
.home-page .process-panel .section-heading,
.home-page .route-panel .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 900px;
    margin-right: auto;
    margin-bottom: 44px;
    margin-left: auto;
    text-align: center;
}

.home-page .home-services .section-heading h2,
.home-page .process-panel .section-heading h2,
.home-page .route-panel .section-heading h2 {
    justify-content: center;
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
}

.home-page .home-services .section-heading p,
.home-page .process-panel .section-heading p,
.home-page .route-panel .section-heading p {
    max-width: 690px;
    margin-right: auto;
    margin-left: auto;
}

.home-page .home-services .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-page .home-services .service-card {
    min-height: 218px;
    padding: 26px;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.07), rgba(255, 246, 223, 0.035)),
        #111111;
    border-color: rgba(21, 18, 12, 0.22);
    box-shadow: 0 18px 42px rgba(30, 24, 13, 0.12);
}

.home-page .home-services .service-card::before {
    background: linear-gradient(90deg, #76551b, #f1d383, #8a6a24);
}

.home-page .home-services .service-card-featured {
    grid-column: auto;
    background:
        linear-gradient(135deg, rgba(241, 211, 131, 0.18), rgba(255, 246, 223, 0.055) 46%),
        #0e0e0f;
}

.home-page .home-services .service-card h2,
.home-page .home-services .service-card p {
    color: inherit;
}

.home-page .home-services .service-card p {
    color: rgba(255, 246, 223, 0.72);
}

.home-page .hero ~ .home-services .service-card h2 {
    color: var(--ink);
}

.home-page .hero ~ .home-services .service-card p {
    color: rgba(255, 246, 223, 0.72);
}

.home-page .fleet-showcase-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
    gap: 74px;
    align-items: center;
}

.home-page .fleet-showcase-visual,
.home-page .closing-visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #0c0c0d;
    border: 1px solid rgba(241, 211, 131, 0.24);
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.home-page .fleet-showcase-visual::after,
.home-page .closing-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 58%);
    pointer-events: none;
}

.home-page .fleet-showcase-visual {
    min-height: 620px;
    aspect-ratio: 4 / 5;
}

.home-page .fleet-showcase-visual img,
.home-page .closing-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.05);
}

.home-page .fleet-showcase-visual img {
    object-position: center;
}

.home-page .fleet-showcase-visual figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 1;
    display: grid;
    gap: 4px;
    color: var(--ink);
    text-align: left;
}

.home-page .fleet-showcase-visual figcaption span {
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .fleet-showcase-visual figcaption strong {
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: var(--display-sm);
    line-height: 1;
    text-transform: uppercase;
}

.home-page .fleet-showcase-content {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    justify-content: end;
    justify-items: start;
    text-align: left;
}

.home-page .fleet-showcase .section-heading {
    grid-template-columns: 1fr;
    justify-items: start;
    width: 100%;
    max-width: 760px;
    margin-bottom: 32px;
    text-align: left;
}

.home-page .fleet-showcase .section-heading h2,
.home-page .fleet-showcase .section-heading p {
    max-width: 760px;
}

.home-page .fleet-showcase .section-heading h2 {
    justify-content: flex-start;
}

.home-page .fleet-showcase .fleet-photo-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
}

.home-page .fleet-showcase .fleet-photo-grid article {
    display: grid;
    grid-template-columns: minmax(132px, 0.32fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 154px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.075), rgba(255, 246, 223, 0.035)),
        rgba(255, 246, 223, 0.045);
    border-color: rgba(241, 211, 131, 0.2);
}

.home-page .fleet-showcase .fleet-photo-grid img {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid rgba(241, 211, 131, 0.16);
    border-bottom: 0;
}

.home-page .fleet-showcase .fleet-photo-grid article div {
    display: grid;
    align-content: center;
    padding: 20px 22px;
}

.home-page .fleet-showcase-action {
    justify-content: flex-start;
    width: 100%;
    margin-top: 26px;
}

.home-page .process-panel .feature-grid {
    gap: 18px;
}

.home-page .process-panel .feature-grid article,
.home-page .route-panel .route-grid article,
.home-page .hero ~ .section.section-ink .package-list {
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.07), rgba(255, 246, 223, 0.035)),
        var(--section-card);
    border-color: var(--section-line);
}

.home-page .process-panel .feature-grid article {
    min-height: 240px;
    padding: 30px;
}

.home-page .process-panel .feature-grid h2,
.home-page .route-panel .route-grid h2,
.home-page .fleet-showcase .fleet-photo-grid h2 {
    color: var(--section-text);
}

.home-page .why-direct .split-section,
.home-page .difference-panel .split-section,
.home-page .closing-cta .split-section {
    gap: 68px;
    align-items: center;
}

.home-page .why-direct .split-section {
    grid-template-columns: minmax(0, 0.48fr) minmax(340px, 0.52fr);
}

.home-page .why-direct .split-section > div:first-child {
    max-width: 610px;
}

.home-page .why-direct .quiet-list,
.home-page .difference-panel .quiet-list {
    padding: 30px;
    background: var(--section-card-strong);
    border: 1px solid var(--section-line);
    border-radius: 8px;
}

.home-page .why-direct .quiet-list p,
.home-page .difference-panel .quiet-list p {
    padding-bottom: 20px;
    border-color: var(--section-line);
}

.home-page .why-direct .quiet-list p:last-child,
.home-page .difference-panel .quiet-list p:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-page .why-direct .quiet-list p {
    color: rgba(255, 246, 223, 0.76);
}

.home-page .hero ~ .why-direct .quiet-list p {
    color: rgba(255, 246, 223, 0.76);
}

.home-page .route-panel .route-grid {
    gap: 18px;
}

.home-page .route-panel .route-grid article {
    min-height: 244px;
    padding: 26px;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.07), rgba(255, 246, 223, 0.035)),
        #111111;
    border-color: rgba(21, 18, 12, 0.18);
    box-shadow: 0 18px 42px rgba(30, 24, 13, 0.12);
}

.home-page .route-panel .route-grid h2 {
    color: var(--ink);
}

.home-page .route-panel .route-grid p {
    color: rgba(255, 246, 223, 0.72);
}

.home-page .hero ~ .route-panel .route-grid h2 {
    color: var(--ink);
}

.home-page .hero ~ .route-panel .route-grid p {
    color: rgba(255, 246, 223, 0.72);
}

.home-page .difference-panel .split-section {
    grid-template-columns: minmax(0, 0.52fr) minmax(330px, 0.48fr);
}

.home-page .difference-panel .split-section > div:first-child {
    justify-self: end;
    max-width: 700px;
    text-align: left;
}

.home-page .difference-panel .split-section > div:first-child h2 {
    margin-left: 0;
}

.home-page .difference-panel .split-section > div:first-child .icon-heading {
    justify-content: flex-start;
}

.home-page .closing-cta .split-section {
    grid-template-columns: minmax(0, 0.5fr) minmax(360px, 0.5fr);
}

.home-page .closing-copy {
    max-width: 690px;
}

.home-page .closing-support {
    display: grid;
    gap: 18px;
}

.home-page .closing-visual {
    aspect-ratio: 16 / 10;
}

.home-page .closing-visual img {
    object-position: center 58%;
}

.home-page .closing-cta .package-list {
    min-height: 100%;
    padding: 26px 26px 26px 44px;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.075), rgba(255, 246, 223, 0.035)),
        #111111;
    border-color: rgba(21, 18, 12, 0.2);
    box-shadow: 0 18px 42px rgba(30, 24, 13, 0.12);
}

.home-page .closing-cta .package-list li {
    color: rgba(255, 246, 223, 0.82);
}

.home-page .hero ~ .closing-cta .package-list li {
    color: rgba(255, 246, 223, 0.82);
}

.home-page .closing-cta .package-list li::marker {
    color: var(--brand-bright);
}

@media (max-width: 1100px) {
    .home-page .hero ~ .section {
        padding: 88px 0;
    }

    .home-page .service-match,
    .home-page .fleet-showcase-layout,
    .home-page .why-direct .split-section,
    .home-page .difference-panel .split-section,
    .home-page .closing-cta .split-section {
        gap: 44px;
    }

    .home-page .service-match {
        grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
    }

    .home-page .fleet-showcase-layout {
        grid-template-columns: minmax(270px, 0.42fr) minmax(0, 0.58fr);
    }

    .home-page .fleet-showcase-visual {
        min-height: 540px;
    }
}

@media (max-width: 980px) {
    .home-page .home-services .service-card-grid,
    .home-page .route-panel .route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .fleet-showcase-layout {
        grid-template-columns: 1fr;
    }

    .home-page .fleet-showcase-content {
        order: 1;
    }

    .home-page .fleet-showcase-visual {
        order: 2;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 760px) {
    .home-page .hero ~ .section {
        padding: 66px 0;
    }

    .home-page .hero ~ .section .section-heading {
        margin-bottom: 26px;
    }

    .home-page .service-strip {
        padding-top: 72px;
    }

    .home-page .service-match,
    .home-page .why-direct .split-section,
    .home-page .difference-panel .split-section,
    .home-page .closing-cta .split-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-page .service-match-content {
        order: 1;
        justify-items: start;
        text-align: left;
    }

    .home-page .service-match-media {
        order: 2;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .home-page .service-match-heading h2,
    .home-page .service-match-heading p,
    .home-page .service-match-cta {
        margin-left: 0;
    }

    .home-page .service-match-list {
        width: 100%;
    }

    .home-page .service-match-option {
        justify-content: start;
        text-align: left;
    }

    .home-page .home-services .section-heading,
    .home-page .process-panel .section-heading,
    .home-page .route-panel .section-heading {
        text-align: center;
    }

    .home-page .home-services .service-card-grid,
    .home-page .process-panel .feature-grid,
    .home-page .route-panel .route-grid {
        grid-template-columns: 1fr;
    }

    .home-page .home-services .service-card-featured {
        grid-column: auto;
    }

    .home-page .fleet-showcase-content,
    .home-page .fleet-showcase .section-heading,
    .home-page .difference-panel .split-section > div:first-child {
        justify-items: start;
        text-align: left;
    }

    .home-page .fleet-showcase .section-heading h2,
    .home-page .fleet-showcase .section-heading p,
    .home-page .difference-panel .split-section > div:first-child h2 {
        margin-left: 0;
    }

    .home-page .fleet-showcase .section-heading h2,
    .home-page .difference-panel .split-section > div:first-child .icon-heading {
        justify-content: flex-start;
    }

    .home-page .fleet-showcase .fleet-photo-grid article {
        grid-template-columns: 1fr;
    }

    .home-page .fleet-showcase .fleet-photo-grid img {
        height: auto;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid rgba(241, 211, 131, 0.16);
    }

    .home-page .fleet-showcase-action {
        justify-content: flex-start;
    }

    .home-page .why-direct .quiet-list,
    .home-page .difference-panel .quiet-list {
        padding: 24px;
    }

    .home-page .closing-cta .package-list {
        padding: 24px 24px 24px 40px;
    }
}

@media (max-width: 480px) {
    .home-page .hero ~ .section {
        padding: 58px 0;
    }

    .home-page .service-strip {
        padding-top: 62px;
    }

    .home-page .home-services .service-card,
    .home-page .process-panel .feature-grid article,
    .home-page .route-panel .route-grid article,
    .home-page .fleet-showcase .fleet-photo-grid article div {
        padding: 20px;
    }

    .home-page .fleet-showcase-visual figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }
}

/* Branded late-page finish: keep the layout, restore the black/gold luxury mood. */
.home-page .hero ~ .why-direct,
.home-page .hero ~ .route-panel,
.home-page .hero ~ .difference-panel,
.home-page .hero ~ .closing-cta {
    --section-bg: #09090a;
    --section-text: var(--ink);
    --section-muted: rgba(255, 246, 223, 0.74);
    --section-line: rgba(241, 211, 131, 0.2);
    --section-card: rgba(255, 246, 223, 0.055);
    --section-card-strong: rgba(255, 246, 223, 0.085);
    --section-accent: var(--brand-bright);
    color: var(--section-text);
    background:
        linear-gradient(135deg, rgba(211, 168, 67, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 246, 223, 0.045), rgba(255, 246, 223, 0) 44%),
        #09090a;
    border-top: 1px solid rgba(241, 211, 131, 0.12);
}

.home-page .hero ~ .why-direct::before,
.home-page .hero ~ .route-panel::before,
.home-page .hero ~ .difference-panel::before,
.home-page .hero ~ .closing-cta::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 42%, rgba(0, 0, 0, 0.3)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%);
}

.home-page .hero ~ .why-direct :is(h2, li),
.home-page .hero ~ .route-panel :is(h2, li),
.home-page .hero ~ .difference-panel :is(h2, li),
.home-page .hero ~ .closing-cta :is(h2, li) {
    color: var(--section-text);
}

.home-page .hero ~ .why-direct :is(p, .quiet-list p),
.home-page .hero ~ .route-panel :is(p, .section-heading p, .route-grid p),
.home-page .hero ~ .difference-panel :is(p, .quiet-list p),
.home-page .hero ~ .closing-cta :is(p, .package-list li) {
    color: var(--section-muted);
}

.home-page .hero ~ .why-direct .eyebrow,
.home-page .hero ~ .route-panel .eyebrow,
.home-page .hero ~ .difference-panel .eyebrow,
.home-page .hero ~ .closing-cta .eyebrow,
.home-page .hero ~ .route-panel .route-grid span {
    color: var(--section-accent);
}

.home-page .hero ~ .why-direct {
    padding-top: 112px;
}

.home-page .hero ~ .why-direct .split-section {
    grid-template-columns: minmax(0, 0.46fr) minmax(420px, 0.54fr);
    align-items: stretch;
}

.home-page .hero ~ .why-direct .split-section > div:first-child {
    display: grid;
    align-content: center;
    max-width: 680px;
    padding: 34px 0;
}

.home-page .hero ~ .why-direct .eyebrow,
.home-page .hero ~ .difference-panel .eyebrow,
.home-page .hero ~ .closing-cta .eyebrow {
    width: fit-content;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(241, 211, 131, 0.36);
}

.home-page .hero ~ .why-direct .quiet-list,
.home-page .hero ~ .difference-panel .quiet-list {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(241, 211, 131, 0.12), rgba(255, 246, 223, 0.045) 38%, rgba(255, 246, 223, 0.03)),
        #151515;
    border: 1px solid rgba(241, 211, 131, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.home-page .hero ~ .why-direct .quiet-list::before,
.home-page .hero ~ .difference-panel .quiet-list::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #76551b, #f1d383, #8a6a24);
    opacity: 0.92;
}

.home-page .hero ~ .why-direct .quiet-list p,
.home-page .hero ~ .difference-panel .quiet-list p {
    padding: 0 0 22px;
    border-color: rgba(241, 211, 131, 0.12);
    font-size: var(--text-md);
}

.home-page .hero ~ .route-panel {
    background:
        linear-gradient(180deg, #09090a 0%, #10100f 58%, #09090a 100%),
        #09090a;
}

.home-page .hero ~ .route-panel .container {
    max-width: 1240px;
}

.home-page .hero ~ .route-panel .section-heading {
    margin-bottom: 46px;
}

.home-page .hero ~ .route-panel .section-heading h2 {
    max-width: 920px;
}

.home-page .hero ~ .route-panel .section-heading p {
    max-width: 720px;
}

.home-page .hero ~ .route-panel .route-grid {
    gap: 16px;
}

.home-page .hero ~ .route-panel .route-grid article {
    position: relative;
    min-height: 270px;
    padding: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.075), rgba(255, 246, 223, 0.035)),
        #141414;
    border-color: rgba(241, 211, 131, 0.22);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
}

.home-page .hero ~ .route-panel .route-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #76551b, #f1d383, #8a6a24);
}

.home-page .hero ~ .route-panel .route-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #09090a;
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 42%, #c89b35 100%);
    border-radius: 999px;
    letter-spacing: 0;
}

.home-page .hero ~ .route-panel .route-grid h2 {
    color: var(--ink);
    font-size: 1.5rem;
}

.home-page .hero ~ .route-panel .route-grid p {
    color: rgba(255, 246, 223, 0.74);
}

.home-page .hero ~ .difference-panel .split-section {
    grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.52fr);
}

.home-page .hero ~ .difference-panel .split-section > div:first-child {
    justify-self: start;
    max-width: 720px;
}

.home-page .hero ~ .closing-cta {
    padding-bottom: 116px;
}

.home-page .hero ~ .closing-cta .split-section {
    grid-template-columns: minmax(0, 0.48fr) minmax(440px, 0.52fr);
}

.home-page .hero ~ .closing-copy {
    display: grid;
    align-content: center;
    max-width: 720px;
}

.home-page .hero ~ .closing-copy p:not(.eyebrow) {
    max-width: 620px;
    font-size: var(--text-md);
}

.home-page .hero ~ .closing-support {
    gap: 16px;
}

.home-page .hero ~ .closing-visual {
    border-color: rgba(241, 211, 131, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.home-page .hero ~ .closing-cta .package-list {
    background:
        linear-gradient(145deg, rgba(241, 211, 131, 0.12), rgba(255, 246, 223, 0.045) 42%, rgba(255, 246, 223, 0.03)),
        #151515;
    border-color: rgba(241, 211, 131, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.home-page .hero ~ .closing-cta .package-list li {
    color: rgba(255, 246, 223, 0.82);
}

@media (max-width: 980px) {
    .home-page .hero ~ .why-direct .split-section,
    .home-page .hero ~ .difference-panel .split-section,
    .home-page .hero ~ .closing-cta .split-section {
        grid-template-columns: 1fr;
    }

    .home-page .hero ~ .why-direct .split-section > div:first-child,
    .home-page .hero ~ .difference-panel .split-section > div:first-child,
    .home-page .hero ~ .closing-copy {
        max-width: 780px;
        padding: 0;
    }
}

@media (max-width: 760px) {
    .home-page .hero ~ .why-direct,
    .home-page .hero ~ .route-panel,
    .home-page .hero ~ .difference-panel,
    .home-page .hero ~ .closing-cta {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .home-page .hero ~ .route-panel .section-heading {
        justify-items: start;
        text-align: left;
    }

    .home-page .hero ~ .route-panel .section-heading h2,
    .home-page .hero ~ .route-panel .section-heading p {
        margin-right: 0;
        margin-left: 0;
    }

    .home-page .hero ~ .why-direct .quiet-list,
    .home-page .hero ~ .difference-panel .quiet-list {
        padding: 26px;
    }

    .home-page .hero ~ .route-panel .route-grid article {
        min-height: 0;
        padding: 24px;
    }
}

.home-page .hero ~ .section.why-direct,
.home-page .hero ~ .section.route-panel,
.home-page .hero ~ .section.difference-panel,
.home-page .hero ~ .section.closing-cta {
    --section-bg: #09090a;
    --section-text: var(--ink);
    --section-muted: rgba(255, 246, 223, 0.74);
    --section-line: rgba(241, 211, 131, 0.2);
    --section-card: rgba(255, 246, 223, 0.055);
    --section-card-strong: rgba(255, 246, 223, 0.085);
    --section-accent: var(--brand-bright);
    color: var(--section-text);
    background:
        linear-gradient(135deg, rgba(211, 168, 67, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 246, 223, 0.045), rgba(255, 246, 223, 0) 44%),
        #09090a;
}

.home-page .hero ~ .section.route-panel {
    background:
        linear-gradient(180deg, #09090a 0%, #10100f 58%, #09090a 100%),
        #09090a;
}

.home-page .hero ~ .section.why-direct :is(h2, p, li),
.home-page .hero ~ .section.route-panel :is(h2, p, li),
.home-page .hero ~ .section.difference-panel :is(h2, p, li),
.home-page .hero ~ .section.closing-cta :is(h2, p, li) {
    color: var(--section-text);
}

.home-page .hero ~ .section.why-direct :is(.quiet-list p, p:not(.eyebrow)),
.home-page .hero ~ .section.route-panel :is(.section-heading p, .route-grid p),
.home-page .hero ~ .section.difference-panel :is(.quiet-list p, p:not(.eyebrow)),
.home-page .hero ~ .section.closing-cta :is(.package-list li, p:not(.eyebrow)) {
    color: var(--section-muted);
}

.home-page .hero ~ .section.why-direct .eyebrow,
.home-page .hero ~ .section.route-panel .eyebrow,
.home-page .hero ~ .section.difference-panel .eyebrow,
.home-page .hero ~ .section.closing-cta .eyebrow,
.home-page .hero ~ .section.route-panel .route-grid span {
    color: var(--section-accent);
}

@media (max-width: 980px) {
    .site-header .site-nav.is-open .nav-menu-panel {
        grid-template-rows: auto auto auto;
        align-content: start;
        gap: 18px;
        padding-top: 18px;
    }

    .site-header .site-nav.is-open .nav-links {
        align-content: start;
        padding: 18px 0 14px;
    }

    .site-header .site-nav.is-open .nav-links a,
    .home-page .site-header.is-past-hero .site-nav.is-open .nav-links a {
        color: rgba(255, 246, 223, 0.88);
    }

    .site-header .site-nav.is-open .nav-links a[aria-current="page"],
    .site-header .site-nav.is-open .nav-links a:hover,
    .home-page .site-header.is-past-hero .site-nav.is-open .nav-links a[aria-current="page"],
    .home-page .site-header.is-past-hero .site-nav.is-open .nav-links a:hover {
        color: var(--brand-bright);
    }

    .site-header .site-nav.is-open .mobile-menu-actions {
        padding-top: 18px;
    }

    .site-header .site-nav.is-open .mobile-menu-close {
        color: var(--ink);
    }
}

@media (max-width: 760px) {
    .reveal,
    .motion-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Motion polish: fast transforms and opacity only. */
.button,
.header-phone,
.event-carousel-button,
.nav-toggle {
    transition-timing-function: var(--ease-snap);
}

.button {
    transition:
        transform 170ms var(--ease-snap),
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 220ms ease;
}

.header-phone,
.event-carousel-button,
.nav-toggle {
    transition:
        transform 170ms var(--ease-snap),
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        box-shadow 220ms ease;
}

.service-row,
.service-card,
.event-card,
.fleet-photo-grid article,
.feature-grid article,
.cards article,
.route-grid article,
.package-list,
.service-match-media,
.home-page .fleet-showcase-visual,
.home-page .closing-visual {
    transition:
        transform 240ms var(--ease-snap),
        border-color 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
}

.service-match-media img,
.event-card img,
.fleet-photo-grid img,
.home-page .fleet-showcase-visual img,
.home-page .closing-visual img {
    transition: transform 760ms var(--ease-sharp), filter 220ms ease;
    will-change: transform;
}

@media (min-width: 981px) {
    .nav-links a {
        position: relative;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 2px;
        left: 0;
        height: 1px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 220ms var(--ease-sharp);
    }

    .nav-links a:hover::after,
    .nav-links a[aria-current="page"]::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@media (hover: hover) and (pointer: fine) {
    .button:hover,
    .header-phone:hover,
    .event-carousel-button:not(:disabled):hover,
    .nav-toggle:hover {
        transform: translateY(-2px);
    }

    .button.primary:hover {
        box-shadow: 0 14px 30px rgba(211, 168, 67, 0.22);
    }

    .button:active,
    .header-phone:active,
    .event-carousel-button:not(:disabled):active,
    .nav-toggle:active {
        transform: translateY(0) scale(0.985);
        transition-duration: 90ms;
        transition-timing-function: var(--ease-press);
    }

    .service-card:hover,
    .event-card:hover,
    .fleet-photo-grid article:hover,
    .feature-grid article:hover,
    .cards article:hover,
    .route-grid article:hover {
        transform: translateY(-5px);
        border-color: rgba(241, 211, 131, 0.42);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
    }

    .service-row:hover {
        transform: translateX(6px);
    }

    .package-list:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
    }

    .service-match-media:hover,
    .home-page .fleet-showcase-visual:hover,
    .home-page .closing-visual:hover {
        transform: translateY(-4px);
        border-color: rgba(241, 211, 131, 0.38);
    }

    .service-match-media:hover img,
    .event-card:hover img,
    .fleet-photo-grid article:hover img,
    .home-page .fleet-showcase-visual:hover img,
    .home-page .closing-visual:hover img {
        transform: scale(1.035);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-media {
        animation: imageSettle 1100ms var(--ease-sharp) both;
    }

    .hero-copy > *,
    .interior-page .page-hero-copy > * {
        animation: cleanRise 620ms var(--ease-sharp) both;
    }

    .hero-copy > :nth-child(1),
    .interior-page .page-hero-copy > :nth-child(1) {
        animation-delay: 80ms;
    }

    .hero-copy > :nth-child(2),
    .interior-page .page-hero-copy > :nth-child(2) {
        animation-delay: 150ms;
    }

    .hero-copy > :nth-child(3),
    .interior-page .page-hero-copy > :nth-child(3) {
        animation-delay: 220ms;
    }

    .hero-copy > :nth-child(4),
    .interior-page .page-hero-copy > :nth-child(4) {
        animation-delay: 290ms;
    }

    .hero-trust {
        animation: cleanRise 680ms var(--ease-sharp) 340ms both;
    }

    .hero-details {
        animation: cleanRise 680ms var(--ease-sharp) 410ms both;
    }

    .interior-page .page-hero::before {
        animation: lineSweep 980ms var(--ease-sharp) 120ms both;
    }

    .reveal {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
        transition:
            opacity 540ms var(--ease-sharp),
            transform 540ms var(--ease-sharp);
        will-change: opacity, transform;
    }

    .reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .motion-item {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        transition:
            opacity 500ms var(--ease-sharp),
            transform 500ms var(--ease-sharp);
        transition-delay: calc(90ms + var(--motion-delay, 0ms));
        will-change: opacity, transform;
    }

    .reveal.is-visible .motion-item {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cleanRise {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes imageSettle {
    from {
        opacity: 0;
        transform: scale(1.035);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineSweep {
    from {
        opacity: 0;
        transform: translateX(-4%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-media,
    .hero-copy > *,
    .hero-trust,
    .hero-details,
    .interior-page .page-hero,
    .interior-page .page-hero::before,
    .interior-page .page-hero-copy > *,
    .reveal,
    .motion-item {
        opacity: 1;
        transform: none;
        animation: none !important;
        transition: none !important;
    }
}

/* Mobile polish pass: preserve the current visual system while tightening small-screen behavior. */
@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .section-heading,
    .service-heading {
        gap: 12px;
        margin-bottom: 24px;
    }

    .section-heading h2,
    .split-section h2,
    .service-match-heading h2 {
        max-width: 100%;
        font-size: clamp(1.72rem, 7vw, 2rem);
        line-height: 1.04;
    }

    .section-heading p,
    .service-heading p,
    .service-match-heading p,
    .quiet-list p,
    .package-list li,
    .contact-details p,
    .policy-content p {
        font-size: 1rem;
        line-height: 1.62;
    }

    .service-match-media,
    .interior-page .service-match-media,
    .closing-visual,
    .interior-page .closing-visual {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .service-match-content,
    .interior-page .service-match-content,
    .home-page .fleet-showcase-content,
    .interior-page .fleet-showcase-content {
        width: 100%;
        justify-content: stretch;
    }

    .service-match-list {
        margin-top: 22px;
    }

    .feature-grid,
    .cards,
    .service-card-grid,
    .route-grid,
    .fleet-photo-grid {
        gap: 14px;
    }

    .feature-grid article,
    .cards article,
    .service-card,
    .route-grid article,
    .fleet-photo-grid article {
        min-height: 0;
    }

    .service-card h2,
    .route-grid h2,
    .fleet-photo-grid h2,
    .cards h2,
    .feature-grid h2,
    .contact-details h2 {
        font-size: clamp(1.08rem, 4.7vw, 1.35rem);
        line-height: 1.08;
    }

    .fleet-photo-grid img,
    .interior-page .fleet-photo-grid img {
        aspect-ratio: 16 / 10;
    }

    .home-page .fleet-showcase .fleet-photo-grid article {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-page .fleet-showcase .fleet-photo-grid img {
        height: auto;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid rgba(241, 211, 131, 0.16);
    }

    .home-page .fleet-showcase .fleet-photo-grid article div {
        padding: 20px;
    }

    .contact-layout,
    .booking-layout {
        gap: 18px;
    }

    .contact-form,
    .contact-details,
    .booking-form,
    .booking-details,
    .interior-page .contact-form,
    .interior-page .contact-details {
        padding: clamp(20px, 5.8vw, 26px);
    }

    .booking-form {
        gap: 18px;
    }

    .booking-path-intro {
        gap: 8px;
        padding-bottom: 16px;
    }

    .booking-path-intro h2,
    .booking-details h2 {
        text-transform: uppercase;
    }

    .booking-field-grid {
        gap: 12px;
    }

    .booking-fieldset {
        gap: 12px;
    }

    .booking-fieldset + .booking-fieldset {
        padding-top: 18px;
    }

    .booking-fieldset legend {
        margin-bottom: 10px;
    }

    input,
    select,
    textarea {
        min-height: 52px;
        padding: 14px 15px;
        font-size: 16px;
        line-height: 1.35;
    }

    textarea {
        min-height: 132px;
    }

    .booking-form .button,
    .contact-form .button,
    .booking-contact-actions .button,
    .contact-details-action .button {
        justify-self: stretch;
        width: 100%;
        min-height: 52px;
    }

    .booking-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .booking-contact-methods a,
    .booking-detail-list {
        min-height: 52px;
        align-content: center;
    }

    .contact-details p a,
    .policy-content a {
        display: inline-flex;
        align-items: center;
        min-height: 40px;
    }

    .interior-page.request-ride-page :is(.booking-path-intro p, .booking-details p, .booking-detail-list p, .section-heading h2, .section-heading p) {
        max-width: 100%;
    }

    .event-card-actions {
        gap: 8px;
    }

    .event-card-actions a {
        display: inline-flex;
        align-items: center;
        min-height: 40px;
        padding: 9px 11px;
        background: rgba(241, 211, 131, 0.08);
        border: 1px solid rgba(241, 211, 131, 0.2);
        border-radius: 2px;
    }

    .footer-action-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-cta,
    .footer-action-link {
        width: 100%;
    }

    .footer-nav,
    .footer-contact {
        gap: 6px;
    }

    .footer-nav a,
    .footer-contact a,
    .footer-legal a {
        display: inline-flex;
        align-items: center;
        min-height: 40px;
    }

    .site-footer {
        row-gap: 28px;
    }
}

@media (max-width: 480px) {
    .section-heading h2,
    .split-section h2,
    .service-match-heading h2 {
        font-size: clamp(1.58rem, 7.4vw, 1.82rem);
    }

    .page-hero .button-row,
    .interior-page .page-hero .button-row {
        max-width: min(100%, 322px);
    }

    .nav-menu-panel {
        padding-top: 18px;
    }

    .mobile-menu-brand {
        padding-bottom: 16px;
    }

    .nav-links {
        padding: clamp(20px, 5vh, 46px) 0;
    }

    .nav-links a {
        min-height: 52px;
        font-size: clamp(1.26rem, 6vw, 1.58rem);
    }

    .mobile-menu-actions {
        gap: 10px;
    }

    .mobile-menu-actions .button {
        min-height: 48px;
    }

    .contact-form,
    .contact-details,
    .booking-form,
    .booking-details,
    .interior-page .contact-form,
    .interior-page .contact-details {
        padding: 20px;
    }

    .interior-page.request-ride-page .booking-path-intro h2.icon-heading,
    .interior-page.request-ride-page .booking-details h2.icon-heading {
        font-size: clamp(1.42rem, 7vw, 1.64rem);
    }

    .interior-page.request-ride-page :is(.booking-path-intro p, .booking-details p, .booking-detail-list p, .section-heading h2, .section-heading p) {
        max-width: 100%;
    }

    .service-card,
    .route-grid article,
    .cards article,
    .feature-grid article {
        padding: 20px;
    }

    .package-list,
    .interior-page .closing-cta .package-list {
        padding: 22px 22px 22px 36px;
    }
}

@media (max-width: 980px) {
    .site-header .brand {
        margin-right: auto;
    }

    .site-header .mobile-header-actions-compact {
        display: block;
        flex: 0 0 auto;
        position: absolute;
        top: 50%;
        right: var(--content-edge);
        width: 96px;
        height: 44px;
        z-index: 26;
        margin-left: 0;
        transform: translateY(-50%);
    }

    .site-header .mobile-header-call {
        position: absolute;
        top: 0;
        left: 0;
        flex: 0 0 auto;
        margin-left: 0;
    }

    .site-header .nav-toggle {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        flex: 0 0 auto;
        margin-left: 0;
    }

    .site-header .nav-menu-panel {
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 24px;
        background:
            linear-gradient(180deg, rgba(255, 246, 223, 0.04), rgba(255, 246, 223, 0) 34%),
            #060606;
        box-shadow: none;
    }

    .site-header .mobile-menu-brand small {
        display: none;
        margin-top: 2px;
        color: rgba(255, 246, 223, 0.58);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .site-header .nav-links {
        gap: 0;
    }

    .site-header .nav-links a {
        gap: 0;
        padding: 16px 0;
    }

    .site-header .nav-links .heading-icon {
        display: none;
    }

    .site-header .mobile-menu-popular {
        display: none;
    }

    .site-header .mobile-menu-popular > span {
        color: #8a6a24;
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.14em;
        line-height: 1;
        text-transform: uppercase;
    }

    .site-header .mobile-menu-popular a {
        color: #211d15;
        font-size: var(--text-sm);
        font-weight: 800;
        line-height: 1.3;
        text-decoration: none;
    }

    .site-header .mobile-menu-contact-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .site-header .mobile-menu-contact-row .button {
        min-width: 0;
    }

    .site-header .mobile-menu-social {
        display: inline-flex;
        justify-content: center;
        color: rgba(255, 246, 223, 0.56);
        font-size: var(--text-xs);
        font-weight: 900;
        letter-spacing: 0.12em;
        line-height: 1.2;
        text-decoration: none;
        text-transform: uppercase;
    }
}

/* Interior page polish: reuse the homepage visual language without changing the homepage. */
.interior-page main {
    background: #09090a;
}

.interior-page .page-hero {
    position: relative;
    display: grid;
    min-height: 58vh;
    min-height: 58svh;
    padding: 154px 0 92px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(0, 0, 0, 0.92) 0%, rgba(9, 9, 10, 0.94) 44%, rgba(18, 17, 15, 0.96) 100%),
        radial-gradient(circle at 78% 26%, rgba(241, 211, 131, 0.16), transparent 34%),
        radial-gradient(circle at 14% 100%, rgba(118, 85, 27, 0.2), transparent 42%),
        #09090a;
    border-bottom: 1px solid rgba(241, 211, 131, 0.16);
}

.interior-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(241, 211, 131, 0.12), transparent 22%, rgba(255, 246, 223, 0.035) 58%, transparent 78%),
        linear-gradient(180deg, rgba(255, 246, 223, 0.045), transparent 42%, rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.interior-page .page-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 211, 131, 0.52), transparent);
    pointer-events: none;
}

.interior-page .page-hero-media {
    display: none;
}

.interior-page .page-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: min(460px, calc(58svh - 246px));
}

.interior-page .page-hero-copy {
    max-width: 880px;
    padding-left: clamp(0px, 4vw, 72px);
    text-align: left;
}

.interior-page .page-hero-copy::before {
    content: "";
    display: block;
    width: 74px;
    height: 1px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--brand-bright), rgba(241, 211, 131, 0));
}

.interior-page .page-hero h1 {
    max-width: 900px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(3rem, 6vw, 4.65rem);
    line-height: 0.96;
    text-shadow: none;
}

.interior-page .page-hero .lead {
    max-width: 680px;
    color: rgba(255, 246, 223, 0.88);
    font-weight: 600;
}

.interior-page .page-hero .button {
    min-width: 188px;
    min-height: 54px;
    padding: 14px 24px;
}

.interior-page .page-hero .button.primary {
    color: var(--black);
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 40%, #d9ae45 100%);
    border-color: transparent;
}

.interior-page .page-hero .button.secondary {
    color: #fff;
    background: rgba(0, 0, 0, 0.34);
    border-color: rgba(255, 246, 223, 0.62);
}

.interior-page .section {
    --section-bg: #0b0b0c;
    --section-text: var(--ink);
    --section-muted: rgba(255, 246, 223, 0.74);
    --section-line: rgba(241, 211, 131, 0.2);
    --section-card: rgba(255, 246, 223, 0.055);
    --section-card-strong: rgba(255, 246, 223, 0.09);
    --section-card-text: var(--ink);
    --section-card-muted: rgba(255, 246, 223, 0.76);
    --section-accent: var(--brand-bright);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 104px 0;
    color: var(--section-text);
    background:
        linear-gradient(140deg, rgba(211, 168, 67, 0.13), transparent 30%),
        linear-gradient(180deg, rgba(255, 246, 223, 0.035), rgba(255, 246, 223, 0)),
        var(--section-bg);
}

.interior-page .section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 38%, rgba(0, 0, 0, 0.26)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
    pointer-events: none;
}

.interior-page .section.section-soft,
.interior-page .section.section-ink {
    --section-bg: #09090a;
    --section-text: var(--ink);
    --section-muted: rgba(255, 246, 223, 0.74);
    --section-line: rgba(241, 211, 131, 0.2);
    --section-card: rgba(255, 246, 223, 0.055);
    --section-card-strong: #151515;
    --section-card-text: var(--ink);
    --section-card-muted: rgba(255, 246, 223, 0.76);
    --section-accent: var(--brand-bright);
    background:
        linear-gradient(135deg, rgba(211, 168, 67, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 246, 223, 0.045), rgba(255, 246, 223, 0) 44%),
        var(--section-bg);
}

.interior-page .section.section-cream,
.interior-page .section.section-warm {
    --section-bg: #f5efe3;
    --section-text: #15120c;
    --section-muted: #4f463a;
    --section-line: rgba(21, 18, 12, 0.16);
    --section-card: #141414;
    --section-card-strong: #101010;
    --section-card-text: var(--ink);
    --section-card-muted: rgba(255, 246, 223, 0.76);
    --section-accent: #8a6a24;
    color: var(--section-text);
    background:
        linear-gradient(135deg, rgba(9, 9, 10, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(224, 213, 194, 0.88)),
        var(--section-bg);
}

.interior-page .section.section-warm {
    --section-bg: #ebe0ca;
    background:
        linear-gradient(135deg, rgba(9, 9, 10, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(247, 239, 224, 0.72), rgba(224, 210, 184, 0.88)),
        var(--section-bg);
}

.interior-page .section > .container {
    position: relative;
    z-index: 1;
}

.interior-page .section :is(h1, h2, li, a, .service-row span) {
    color: var(--section-text);
}

.interior-page .section :is(p, .lead, .section-heading p, .service-heading p, .service-row p, .quiet-list p, .fleet-photo-grid p) {
    color: var(--section-muted);
}

.interior-page .section :is(.eyebrow, .service-tag, .route-grid span) {
    color: var(--section-accent);
}

.interior-page .section .heading-icon {
    color: var(--section-accent);
    background: rgba(211, 168, 67, 0.12);
    border-color: rgba(241, 211, 131, 0.3);
}

.interior-page .section.section-cream .heading-icon,
.interior-page .section.section-warm .heading-icon {
    background: rgba(138, 106, 36, 0.1);
    border-color: rgba(138, 106, 36, 0.24);
}

.interior-page .section .section-heading {
    margin-bottom: 38px;
}

.interior-page .section .button.primary {
    color: var(--black);
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 42%, #c89b35 100%);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.interior-page .service-strip {
    padding-top: 112px;
}

.interior-page .service-match {
    grid-template-columns: minmax(300px, 0.46fr) minmax(420px, 0.54fr);
    gap: 78px;
}

.interior-page .service-match-media,
.interior-page .closing-visual {
    position: relative;
    overflow: hidden;
    background: #0c0c0d;
    border: 1px solid rgba(241, 211, 131, 0.24);
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}

.interior-page .service-match-media {
    min-height: 520px;
    aspect-ratio: 4 / 5;
}

.interior-page .service-match-media::after,
.interior-page .closing-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 46%);
    pointer-events: none;
}

.interior-page .service-match-media img,
.interior-page .closing-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.05);
}

.interior-page .service-match-content,
.interior-page .fleet-showcase-content {
    display: grid;
    grid-template-columns: minmax(0, 720px);
    justify-content: end;
    justify-items: start;
    text-align: left;
}

.interior-page .service-match-heading,
.interior-page .service-match-heading h2,
.interior-page .service-match-heading p {
    max-width: 700px;
}

.interior-page .service-match-heading p,
.interior-page .service-match-option span {
    color: var(--section-muted);
}

.interior-page .service-match-list,
.interior-page .service-match-option,
.interior-page .quiet-list p,
.interior-page .service-row,
.interior-page .service-row:first-of-type {
    border-color: var(--section-line);
}

.interior-page .service-match-option {
    text-align: left;
}

.interior-page .service-match-option strong {
    color: var(--section-accent);
    background: rgba(241, 211, 131, 0.1);
    border-color: rgba(241, 211, 131, 0.26);
}

.interior-page .service-match-cta,
.interior-page .fleet-showcase-action {
    justify-self: start;
}

.interior-page .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.interior-page .section :is(.cards article, .feature-grid article, .service-card, .route-grid article, .contact-details, .contact-form, .package-list, .fleet-photo-grid article) {
    color: var(--section-card-text);
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.075), rgba(255, 246, 223, 0.035)),
        var(--section-card);
    border-color: var(--section-line);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
}

.interior-page .section :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2, .fleet-photo-grid h2) {
    color: var(--section-card-text);
}

.interior-page .section :is(.cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .package-list li, .fleet-photo-grid p) {
    color: var(--section-card-muted);
}

.interior-page .service-card::before {
    background: linear-gradient(90deg, #76551b, #f1d383, #8a6a24);
}

.interior-page .service-card-featured {
    background:
        linear-gradient(135deg, rgba(241, 211, 131, 0.18), rgba(255, 246, 223, 0.055) 46%),
        var(--section-card-strong);
}

.interior-page .process-panel .feature-grid article,
.interior-page .route-panel .route-grid article {
    min-height: 240px;
    padding: 30px;
}

.interior-page .route-panel .route-grid {
    gap: 18px;
}

.interior-page .route-panel .route-grid article {
    position: relative;
    overflow: hidden;
}

.interior-page .route-panel .route-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #76551b, #f1d383, #8a6a24);
}

.interior-page .route-panel .route-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    color: #09090a;
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 42%, #c89b35 100%);
    border-radius: 999px;
    letter-spacing: 0;
}

.interior-page .section .route-panel .route-grid span,
.interior-page .route-panel .route-grid span {
    color: #09090a;
}

.interior-page .split-section {
    gap: 68px;
    align-items: center;
}

.interior-page .section.section-ink .quiet-list,
.interior-page .difference-panel .quiet-list,
.interior-page .why-direct .quiet-list {
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(241, 211, 131, 0.12), rgba(255, 246, 223, 0.045) 38%, rgba(255, 246, 223, 0.03)),
        var(--section-card-strong);
    border: 1px solid var(--section-line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.interior-page .section.section-ink .quiet-list p:last-child,
.interior-page .difference-panel .quiet-list p:last-child,
.interior-page .why-direct .quiet-list p:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.interior-page .closing-copy {
    display: grid;
    align-content: center;
    max-width: 720px;
}

.interior-page .closing-copy p:not(.eyebrow) {
    max-width: 620px;
    font-size: var(--text-md);
}

.interior-page .closing-support {
    display: grid;
    gap: 18px;
}

.interior-page .closing-visual {
    margin: 0;
    aspect-ratio: 16 / 10;
}

.interior-page .closing-visual img {
    object-position: center 58%;
}

.interior-page .closing-cta .package-list {
    padding: 26px 26px 26px 44px;
    background:
        linear-gradient(145deg, rgba(241, 211, 131, 0.12), rgba(255, 246, 223, 0.045) 42%, rgba(255, 246, 223, 0.03)),
        #151515;
    border-color: rgba(241, 211, 131, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.interior-page .contact-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    align-items: start;
}

.interior-page .contact-form,
.interior-page .contact-details {
    padding: 34px;
}

.interior-page .contact-form label {
    color: var(--section-accent);
}

.interior-page .section input,
.interior-page .section select,
.interior-page .section textarea {
    color: var(--section-card-text);
    background: rgba(255, 246, 223, 0.07);
    border-color: rgba(241, 211, 131, 0.2);
}

.interior-page .section input::placeholder,
.interior-page .section select:invalid,
.interior-page .section textarea::placeholder {
    color: rgba(255, 246, 223, 0.52);
}

.interior-page .section.section-cream input,
.interior-page .section.section-cream select,
.interior-page .section.section-cream textarea,
.interior-page .section.section-warm input,
.interior-page .section.section-warm select,
.interior-page .section.section-warm textarea {
    color: #15120c;
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(21, 18, 12, 0.18);
}

.interior-page .fleet-photo-grid article {
    overflow: hidden;
}

.interior-page .fleet-photo-grid img {
    border-color: var(--section-line);
}

@media (max-width: 1100px) {
    .interior-page .page-hero h1 {
        font-size: 3.85rem;
    }

    .interior-page .section {
        padding: 88px 0;
    }

    .interior-page .service-match,
    .interior-page .split-section {
        gap: 44px;
    }
}

@media (max-width: 980px) {
    .interior-page .page-hero h1 {
        font-size: 3.25rem;
    }

    .interior-page .service-match,
    .interior-page .split-section,
    .interior-page .contact-layout {
        grid-template-columns: 1fr;
    }

    .interior-page .service-card-grid,
    .interior-page .route-panel .route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .interior-page .service-match-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .interior-page .service-match-content {
        justify-content: start;
    }
}

@media (max-width: 760px) {
    .interior-page .page-hero {
        min-height: 0;
        padding: 138px 0 70px;
    }

    .interior-page .page-hero-inner {
        min-height: 0;
    }

    .interior-page .page-hero-copy {
        max-width: 100%;
        padding-left: 0;
    }

    .interior-page .page-hero h1 {
        max-width: 350px;
        font-size: 2.65rem;
        line-height: 0.98;
    }

    .interior-page .page-hero .lead {
        max-width: 330px;
        font-size: 1rem;
        line-height: 1.58;
    }

    .interior-page .section {
        padding: 66px 0;
    }

    .interior-page .service-strip {
        padding-top: 72px;
    }

    .interior-page .service-card-grid,
    .interior-page .feature-grid,
    .interior-page .route-panel .route-grid,
    .interior-page .fleet-photo-grid {
        grid-template-columns: 1fr;
    }

    .interior-page .service-card-featured {
        grid-column: auto;
    }

    .interior-page .service-match-content,
    .interior-page .fleet-showcase-content,
    .interior-page .section-heading,
    .interior-page .service-heading {
        justify-items: start;
        text-align: left;
    }

    .interior-page .process-panel .feature-grid article,
    .interior-page .route-panel .route-grid article {
        min-height: 0;
        padding: 24px;
    }

    .interior-page .section.section-ink .quiet-list,
    .interior-page .difference-panel .quiet-list,
    .interior-page .why-direct .quiet-list {
        padding: 26px;
    }

    .interior-page .contact-form,
    .interior-page .contact-details {
        padding: 24px;
    }

    .interior-page .closing-cta .package-list {
        padding: 24px 24px 24px 40px;
    }
}

@media (max-width: 480px) {
    .interior-page .page-hero {
        padding-top: 126px;
    }

    .interior-page .page-hero h1 {
        max-width: 320px;
        font-size: 2.24rem;
    }

    .interior-page .section {
        padding: 58px 0;
    }

    .interior-page .service-strip {
        padding-top: 62px;
    }

    .interior-page .section :is(.cards article, .feature-grid article, .service-card, .route-grid article, .contact-details, .contact-form) {
        padding: 20px;
    }
}

/* Request page refinements layered after all shared interior styles. */
.interior-page.request-ride-page .booking-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 28px;
}

.interior-page.request-ride-page .booking-field-grid label:last-child {
    grid-column: auto;
}

.interior-page.request-ride-page .booking-field-grid .field-span-full {
    grid-column: 1 / -1;
}

.interior-page.request-ride-page .booking-form {
    align-self: start;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.interior-page.request-ride-page .direct-booking-card {
    position: static;
    align-self: start;
    margin-top: 0;
}

@media (max-width: 980px) {
    .interior-page.request-ride-page .booking-layout {
        grid-template-columns: 1fr;
    }

    .interior-page.request-ride-page .direct-booking-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .interior-page .contact-form,
    .interior-page .contact-details {
        padding-right: clamp(30px, 9vw, 46px);
    }

    .interior-page.request-ride-page .booking-field-grid {
        grid-template-columns: 1fr;
    }

    .interior-page.request-ride-page .booking-path-intro h2.icon-heading,
    .interior-page.request-ride-page .booking-details h2.icon-heading {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
        font-size: clamp(1.62rem, 7vw, 1.9rem);
    }

    .interior-page.request-ride-page .booking-field-grid .field-span-full {
        grid-column: auto;
    }

    .interior-page.request-ride-page :is(.booking-path-intro p, .booking-details p, .booking-detail-list p, .section-heading h2, .section-heading p) {
        max-width: calc(100vw - 104px);
    }
}

@media (max-width: 480px) {
    .interior-page.request-ride-page .booking-path-intro h2.icon-heading,
    .interior-page.request-ride-page .booking-details h2.icon-heading {
        font-size: 1.5rem;
    }

    .interior-page.request-ride-page .booking-path-intro h2 > .heading-text,
    .interior-page.request-ride-page .booking-details h2 > .heading-text,
    .interior-page.request-ride-page :is(.booking-path-intro p, .booking-details p, .booking-detail-list p) {
        max-width: min(100%, 280px);
        white-space: normal;
    }

    .interior-page.request-ride-page :is(.section-heading h2, .section-heading p) {
        max-width: min(100%, 300px);
    }
}

/* Light contrast sections after services: premium cream ground with black/gold cards. */
.home-page .hero ~ .section.process-panel,
.home-page .hero ~ .section.route-panel {
    --section-bg: #f5efe3;
    --section-text: #15120c;
    --section-muted: #4f463a;
    --section-line: rgba(21, 18, 12, 0.16);
    --section-card: #141414;
    --section-card-strong: #101010;
    --section-accent: #8a6a24;
    color: var(--section-text);
    background:
        linear-gradient(135deg, rgba(9, 9, 10, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(224, 213, 194, 0.88)),
        var(--section-bg);
}

.home-page .hero ~ .section.process-panel::before,
.home-page .hero ~ .section.route-panel::before {
    background:
        linear-gradient(90deg, rgba(9, 9, 10, 0.08), transparent 46%, rgba(9, 9, 10, 0.12)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 48%);
}

.home-page .hero ~ .section.process-panel :is(h2, p),
.home-page .hero ~ .section.route-panel :is(h2, p) {
    color: var(--section-text);
}

.home-page .hero ~ .section.process-panel :is(.section-heading p, .feature-grid p),
.home-page .hero ~ .section.route-panel :is(.section-heading p, .route-grid p) {
    color: var(--section-muted);
}

.home-page .hero ~ .section.process-panel .section-heading,
.home-page .hero ~ .section.route-panel .section-heading {
    margin-bottom: 44px;
}

.home-page .hero ~ .section.process-panel .feature-grid article,
.home-page .hero ~ .section.route-panel .route-grid article {
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 246, 223, 0.075), rgba(255, 246, 223, 0.035)),
        var(--section-card);
    border-color: rgba(21, 18, 12, 0.22);
    box-shadow: 0 22px 56px rgba(30, 24, 13, 0.14);
}

.home-page .hero ~ .section.process-panel .feature-grid article h2,
.home-page .hero ~ .section.route-panel .route-grid article h2 {
    color: var(--ink);
}

.home-page .hero ~ .section.process-panel .feature-grid article p,
.home-page .hero ~ .section.route-panel .route-grid article p {
    color: rgba(255, 246, 223, 0.76);
}

.home-page .hero ~ .section.process-panel .heading-icon {
    color: var(--brand-bright);
    background: rgba(241, 211, 131, 0.1);
    border-color: rgba(241, 211, 131, 0.26);
}

.home-page .hero ~ .section.route-panel .route-grid span {
    color: #09090a;
}

.ride-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.ride-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.ride-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ride-modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 500px);
    padding: 36px;
    overflow: hidden;
    color: var(--ink);
    background:
        linear-gradient(145deg, rgba(255, 246, 223, 0.08), rgba(255, 246, 223, 0.025) 44%),
        linear-gradient(180deg, #111111, #070707);
    border: 1px solid rgba(241, 211, 131, 0.28);
    border-radius: 8px;
    box-shadow: 0 32px 92px rgba(0, 0, 0, 0.58);
    transform: translateY(14px) scale(0.985);
    transition: transform 280ms var(--ease-sharp), opacity 240ms ease;
}

.ride-modal.is-open .ride-modal-card {
    transform: translateY(0) scale(1);
}

.ride-modal-card::before {
    content: "";
    display: block;
    width: 74px;
    height: 1px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--brand-bright), rgba(241, 211, 131, 0));
}

.ride-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: rgba(255, 246, 223, 0.88);
    background: rgba(255, 246, 223, 0.045);
    border: 1px solid rgba(255, 246, 223, 0.14);
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 170ms var(--ease-snap);
}

.ride-modal-close:hover {
    color: var(--black);
    background: var(--brand-bright);
    border-color: transparent;
    transform: translateY(-1px);
}

.ride-modal .ride-modal-kicker {
    margin: 0 46px 10px 0;
    color: var(--brand-bright);
    font-size: var(--text-xs);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ride-modal h2 {
    max-width: 360px;
    margin: 0 46px 14px 0;
    color: #fff;
    font-family: "Oswald", Impact, Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ride-modal p {
    margin: 0;
}

.ride-modal-copy,
#ride-modal-copy {
    max-width: 390px;
    color: rgba(255, 246, 223, 0.78);
    font-size: var(--text-md);
    font-weight: 600;
    line-height: 1.58;
}

.ride-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
}

.ride-modal-actions .button {
    width: 100%;
    min-height: 50px;
}

.ride-modal-actions .button.secondary {
    color: var(--ink);
    background: rgba(255, 246, 223, 0.035);
    border-color: rgba(255, 246, 223, 0.24);
}

.ride-modal-actions .button.secondary:hover {
    border-color: rgba(241, 211, 131, 0.54);
    background: rgba(255, 246, 223, 0.075);
}

.ride-modal .ride-modal-trust {
    margin-top: 18px;
    color: rgba(255, 246, 223, 0.56);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.45;
}

body.ride-modal-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .ride-modal {
        place-items: end center;
        padding: 14px;
    }

    .ride-modal-overlay {
        background: rgba(0, 0, 0, 0.48);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .ride-modal-card {
        width: 100%;
        max-height: min(86svh, 640px);
        padding: 28px 22px max(32px, calc(env(safe-area-inset-bottom) + 24px));
        overflow-y: auto;
        border-radius: 8px 8px 0 0;
        transform: translateY(100%);
    }

    .ride-modal.is-open .ride-modal-card {
        transform: translateY(0);
    }

    .ride-modal-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .ride-modal-card::before {
        margin-bottom: 18px;
    }

    .ride-modal .ride-modal-kicker {
        margin-right: 52px;
        font-size: 0.7rem;
    }

    .ride-modal h2 {
        max-width: 280px;
        margin-right: 52px;
        font-size: clamp(1.82rem, 9vw, 2.25rem);
    }

    #ride-modal-copy {
        max-width: 100%;
        font-size: 1rem;
    }

    .ride-modal-actions {
        gap: 10px;
        margin-top: 22px;
    }

    .ride-modal-actions .button {
        min-height: 52px;
    }

    .ride-modal .ride-modal-trust {
        margin-top: 16px;
    }
}

/* Keep mobile content visible immediately; desktop keeps the fuller scroll reveal. */
@media (max-width: 760px) {
    .reveal,
    .motion-item {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* Booking form fit/readability safeguards. */
.request-ride-page .booking-form,
.request-ride-page .booking-fieldset,
.request-ride-page .booking-field-grid,
.request-ride-page .booking-field-grid label {
    min-width: 0;
    max-width: 100%;
}

.request-ride-page .booking-form input,
.request-ride-page .booking-form select,
.request-ride-page .booking-form textarea {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.request-ride-page .booking-form select {
    color: var(--ink);
    background-color: rgba(255, 246, 223, 0.07);
    color-scheme: dark;
}

.request-ride-page .booking-form select option,
.request-ride-page .booking-form select optgroup {
    color: #15120c;
    background-color: #fff6df;
}

.request-ride-page .booking-form select option:checked {
    color: #15120c;
    background-color: var(--brand-bright);
}

@media (min-width: 761px) {
    .request-ride-page .booking-field-grid .field-compact {
        justify-self: start;
        width: min(100%, 240px);
    }

    .request-ride-page .booking-field-grid .field-time {
        width: min(100%, 190px);
    }
}

@media (max-width: 760px) {
    .request-ride-page .booking-layout,
    .request-ride-page .booking-form,
    .request-ride-page .booking-details {
        width: 100%;
    }

    .request-ride-page .booking-field-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .request-ride-page .booking-form {
        padding-inline: clamp(18px, 5.6vw, 24px);
    }

    .request-ride-page .booking-form .button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .request-ride-page .booking-form {
        padding-inline: 16px;
    }

    .request-ride-page .booking-form input,
    .request-ride-page .booking-form select,
    .request-ride-page .booking-form textarea {
        padding-inline: 12px;
    }
}
