: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: 144px;
    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;
}

.field-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
}

.field-required {
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.field-required::before {
    content: "*";
    margin-right: 3px;
    color: var(--brand-bright);
}

.field-optional {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.form-alert {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    color: var(--ink);
    background: rgba(255, 246, 223, 0.08);
    border: 1px solid rgba(255, 246, 223, 0.2);
    border-radius: 6px;
    font-size: var(--text-sm);
    line-height: 1.5;
}

.form-alert:not([data-fs-active]) {
    display: none;
}

.form-alert strong {
    color: var(--brand-bright);
}

.form-alert[data-fs-active] {
    display: grid;
}

.form-alert ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding-left: 18px;
}

.form-alert-success {
    border-color: rgba(137, 210, 143, 0.5);
    background: rgba(137, 210, 143, 0.12);
}

.form-alert-error {
    border-color: rgba(255, 137, 137, 0.54);
    background: rgba(255, 137, 137, 0.1);
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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;
}

.ride-location-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 246, 223, 0.06);
    border: 1px solid rgba(241, 211, 131, 0.22);
    border-radius: 8px;
}

.ride-location-card::before {
    content: "";
    position: absolute;
    top: 54px;
    left: 27px;
    bottom: 84px;
    width: 2px;
    background: rgba(255, 246, 223, 0.48);
}

.ride-location-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: center;
    min-height: 70px;
    padding: 10px 12px;
    background: rgba(255, 246, 223, 0.08);
    border: 1px solid rgba(241, 211, 131, 0.16);
    border-radius: 8px;
}

.ride-location-row + .ride-location-row {
    grid-template-columns: 20px minmax(0, 1fr);
}

.ride-location-marker {
    display: block;
    justify-self: center;
    width: 12px;
    height: 12px;
    background: var(--ink);
    border: 3px solid #111111;
}

.pickup-marker {
    border-radius: 999px;
    box-shadow: 0 0 0 2px var(--brand-bright);
}

.dropoff-marker {
    box-shadow: 0 0 0 2px rgba(255, 246, 223, 0.84);
}

.ride-location-field {
    gap: 5px;
    min-width: 0;
    max-width: 100%;
}

.ride-location-field .field-label {
    justify-content: flex-start;
    gap: 8px;
}

.ride-location-field input {
    min-height: 42px;
    padding: 8px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 1rem;
}

.ride-location-field input:focus {
    outline: 0;
}

.location-current-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #15120c;
    background: var(--brand-bright);
    border: 1px solid rgba(255, 246, 223, 0.72);
    border-radius: 8px;
    cursor: pointer;
}

.location-current-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.location-current-button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.location-suggestions {
    display: grid;
    gap: 6px;
    max-height: 240px;
    overflow-y: auto;
    padding: 6px;
    background: rgba(10, 10, 11, 0.96);
    border: 1px solid rgba(241, 211, 131, 0.24);
    border-radius: 8px;
}

.location-suggestions[hidden] {
    display: none;
}

.location-suggestion {
    width: 100%;
    padding: 10px 12px;
    color: var(--ink);
    background: rgba(255, 246, 223, 0.06);
    border: 1px solid transparent;
    border-radius: 6px;
    font: inherit;
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.location-suggestion:hover,
.location-suggestion:focus {
    border-color: rgba(241, 211, 131, 0.4);
    outline: 0;
}

.location-status {
    min-height: 1.3em;
    margin: 0;
    color: rgba(255, 246, 223, 0.72);
    font-size: var(--text-xs);
    font-weight: 700;
    line-height: 1.5;
}

.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-step-actions {
    position: relative;
    z-index: 5;
}

.booking-form :is(input, select, textarea).field-invalid {
    outline: 2px solid rgba(255, 137, 137, 0.9);
    outline-offset: 2px;
}

.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;
}

/* 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);
}

.request-ride-page .booking-section {
    padding-block: clamp(88px, 12vw, 112px) 64px;
}

.request-ride-page .booking-section::before {
    opacity: 0.45;
}

.request-ride-page .booking-layout {
    grid-template-columns: minmax(0, 580px) minmax(260px, 0.72fr);
    gap: clamp(18px, 3vw, 28px);
}

.booking-app-header {
    display: grid;
    gap: 8px;
    padding-bottom: 2px;
}

.request-ride-page .booking-app-header h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
    text-transform: none;
}

.booking-city {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(255, 246, 223, 0.76);
    font-size: var(--text-sm);
    font-weight: 800;
}

.booking-city .heading-icon {
    width: 16px;
    height: 16px;
    color: var(--brand-bright);
}

.request-ride-page .booking-form {
    gap: 18px;
    padding: clamp(22px, 4vw, 30px);
    background: rgba(12, 12, 13, 0.96);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.request-ride-page .booking-form::before {
    display: none;
}

.request-ride-page .booking-stepper {
    display: grid;
    grid-template-columns: auto minmax(24px, 1fr) auto;
    align-items: center;
    gap: 10px;
    color: rgba(255, 246, 223, 0.58);
    font-size: var(--text-sm);
    font-weight: 900;
}

.request-ride-page .booking-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.request-ride-page .booking-step-pill span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: rgba(255, 246, 223, 0.72);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.request-ride-page .booking-step-pill.is-active {
    color: #ffffff;
}

.request-ride-page .booking-step-pill.is-active span,
.request-ride-page .booking-step-pill.is-complete span {
    color: #15120c;
    background: var(--brand-bright);
    border-color: transparent;
}

.request-ride-page .booking-step-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.request-ride-page .booking-step-panel {
    display: grid;
    gap: 18px;
}

.request-ride-page .booking-step-panel[hidden] {
    display: none;
}

.request-ride-page .booking-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.request-ride-page .booking-step-actions .button {
    min-width: min(100%, 180px);
    margin-top: 0;
}

.request-ride-page .booking-fieldset {
    gap: 12px;
}

.request-ride-page .booking-fieldset + .booking-fieldset {
    padding-top: 16px;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.request-ride-page .booking-fieldset legend {
    margin-bottom: 10px;
    color: var(--brand-bright);
    font-size: 1rem;
}

.request-ride-page .booking-form input,
.request-ride-page .booking-form select,
.request-ride-page .booking-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border-color: transparent;
    border-radius: 8px;
    box-shadow: none;
}

.request-ride-page .booking-form input:focus,
.request-ride-page .booking-form select:focus,
.request-ride-page .booking-form textarea:focus {
    outline: 2px solid rgba(255, 255, 255, 0.88);
    outline-offset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    box-shadow: none;
}

.request-ride-page .field-required,
.request-ride-page .field-optional {
    font-size: 0.78rem;
    line-height: 1;
}

.request-ride-page .field-required {
    color: rgba(255, 246, 223, 0.78);
    letter-spacing: 0;
}

.request-ride-page .field-required::before {
    content: none;
    margin: 0;
}

.request-ride-page .field-optional {
    color: rgba(255, 246, 223, 0.54);
}

.request-ride-page .vehicle-fit-field {
    gap: 8px;
}

.request-ride-page .vehicle-fit-hint {
    display: block;
    color: rgba(255, 246, 223, 0.68);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
}

.request-ride-page .ride-location-card {
    --route-marker-size: 14px;
    --route-marker-center: 20px;
    gap: 10px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.request-ride-page .ride-location-card::before {
    top: 39px;
    bottom: 39px;
    left: var(--route-marker-center);
    width: 2px;
    background: rgba(255, 246, 223, 0.45);
    transform: translateX(-1px);
    z-index: 1;
}

.request-ride-page .ride-location-row {
    grid-template-columns: calc((var(--route-marker-center) * 2) - 20px) minmax(0, 1fr) 44px;
    min-height: 64px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 8px;
}

.request-ride-page .ride-location-row + .ride-location-row {
    grid-template-columns: calc((var(--route-marker-center) * 2) - 20px) minmax(0, 1fr);
    margin-top: 2px;
}

.request-ride-page .ride-location-marker {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: var(--route-marker-size);
    height: var(--route-marker-size);
    background: #0c0c0d;
    border: 2px solid rgba(255, 246, 223, 0.84);
    border-color: #0c0c0d;
    box-shadow: none;
}

.request-ride-page .pickup-marker {
    border-color: var(--brand-bright);
    border-radius: 999px;
}

.request-ride-page .dropoff-marker {
    border-color: rgba(255, 246, 223, 0.84);
    border-radius: 2px;
}

.request-ride-page .ride-location-field input {
    min-height: 42px;
    padding: 8px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 0;
}

.request-ride-page .ride-location-field input:focus {
    outline: 0;
}

.request-ride-page .location-suggestions {
    position: absolute;
    left: 38px;
    right: 0;
    z-index: 30;
    gap: 0;
    max-height: 330px;
    padding: 0;
    overflow-y: auto;
    background: rgba(12, 12, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
}

.request-ride-page .ride-location-card[data-active-target="pickup"] .location-suggestions {
    top: 66px;
}

.request-ride-page .ride-location-card[data-active-target="dropoff"] .location-suggestions {
    top: 188px;
}

.request-ride-page .location-suggestion {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 11px 14px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
}

.request-ride-page .location-suggestion:last-child {
    border-bottom: 0;
}

.request-ride-page .location-suggestion strong,
.request-ride-page .location-suggestion small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.request-ride-page .location-suggestion strong {
    color: #ffffff;
    font-size: var(--text-sm);
    font-weight: 900;
    line-height: 1.25;
}

.request-ride-page .location-suggestion small {
    margin-top: 2px;
    color: rgba(255, 246, 223, 0.68);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.request-ride-page .location-suggestion-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #15120c;
    background: rgba(255, 246, 223, 0.9);
    border-radius: 999px;
}

.request-ride-page .location-suggestion-icon::before,
.request-ride-page .location-suggestion-icon::after {
    content: "";
    position: absolute;
}

.request-ride-page .location-suggestion-icon.is-current {
    background: var(--brand-bright);
}

.request-ride-page .location-suggestion-icon.is-current::before {
    width: 10px;
    height: 10px;
    border: 2px solid #15120c;
    border-radius: 999px;
}

.request-ride-page .location-suggestion-icon.is-current::after {
    width: 18px;
    height: 18px;
    border: 2px solid #15120c;
    border-radius: 999px;
    opacity: 0.42;
}

.request-ride-page .location-suggestion-icon.is-place::before {
    width: 9px;
    height: 9px;
    background: #15120c;
    border-radius: 999px;
}

.request-ride-page .location-status {
    min-height: 0;
    margin-top: -2px;
    color: rgba(255, 246, 223, 0.62);
}

.request-ride-page .location-suggestions:not([hidden]) + .location-status {
    visibility: hidden;
}

@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-section {
        padding-block: 72px 36px;
    }

    .request-ride-page .booking-layout,
    .request-ride-page .booking-form,
    .request-ride-page .booking-details {
        width: 100%;
    }

    .request-ride-page .booking-layout {
        gap: 14px;
    }

    .request-ride-page .booking-form {
        gap: 10px;
        padding: 14px;
    }

    .request-ride-page .booking-app-header {
        gap: 2px;
        padding-bottom: 0;
    }

    .request-ride-page .booking-city {
        gap: 6px;
        font-size: 0.74rem;
    }

    .request-ride-page .booking-city .heading-icon {
        width: 13px;
        height: 13px;
    }

    .request-ride-page .booking-app-header h1 {
        font-size: clamp(1.48rem, 7vw, 1.78rem);
        line-height: 1;
    }

    .request-ride-page .booking-step-panel {
        gap: 10px;
    }

    .request-ride-page .booking-fieldset {
        gap: 8px;
    }

    .request-ride-page .booking-fieldset legend {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .request-ride-page .booking-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 8px;
    }

    .interior-page.request-ride-page .booking-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .request-ride-page .booking-field-grid .vehicle-fit-field {
        grid-column: auto;
    }

    .interior-page.request-ride-page .booking-field-grid .vehicle-fit-field {
        grid-column: auto;
    }

    .request-ride-page .contact-form label {
        gap: 5px;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .request-ride-page .booking-field-grid > label:not(.ride-location-field) {
        display: grid;
        align-content: center;
        gap: 4px;
        min-height: 64px;
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 0;
        border-radius: 8px;
    }

    .request-ride-page .booking-field-grid > label:not(.ride-location-field) .field-label {
        align-items: center;
        min-height: 12px;
    }

    .request-ride-page .field-required,
    .request-ride-page .field-optional {
        font-size: 0.7rem;
    }

    .request-ride-page .booking-form input,
    .request-ride-page .booking-form select,
    .request-ride-page .booking-form textarea {
        min-height: 42px;
        padding: 9px 11px;
        font-size: 0.95rem;
    }

    .request-ride-page .booking-field-grid > label:not(.ride-location-field) input,
    .request-ride-page .booking-field-grid > label:not(.ride-location-field) select,
    .request-ride-page .booking-field-grid > label:not(.ride-location-field) textarea {
        min-height: 28px;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .request-ride-page .booking-form textarea {
        min-height: 86px;
    }

    .request-ride-page .ride-location-card {
        --route-marker-center: 17px;
        gap: 6px;
        padding: 0;
    }

    .request-ride-page .ride-location-card::before {
        top: 34px;
        bottom: 34px;
    }

    .request-ride-page .ride-location-row {
        grid-template-columns: calc((var(--route-marker-center) * 2) - 16px) minmax(0, 1fr) 42px;
        gap: 8px;
        min-height: 54px;
        padding: 6px 8px;
    }

    .request-ride-page .ride-location-row + .ride-location-row {
        grid-template-columns: calc((var(--route-marker-center) * 2) - 16px) minmax(0, 1fr);
        margin-top: 0;
    }

    .request-ride-page .ride-location-marker {
        width: var(--route-marker-size);
        height: var(--route-marker-size);
    }

    .request-ride-page .dropoff-marker {
        width: var(--route-marker-size);
        height: var(--route-marker-size);
    }

    .request-ride-page .ride-location-field input {
        min-height: 30px;
        padding: 2px 0;
    }

    .request-ride-page .location-current-button {
        width: 38px;
        height: 38px;
        min-height: 38px;
    }

    .request-ride-page .location-current-button svg {
        width: 18px;
        height: 18px;
    }

    .request-ride-page .ride-location-card[data-active-target="pickup"] .location-suggestions {
        top: 56px;
    }

    .request-ride-page .ride-location-card[data-active-target="dropoff"] .location-suggestions {
        top: 116px;
    }

    .request-ride-page .location-suggestions {
        max-height: 176px;
    }

    .request-ride-page .vehicle-fit-hint {
        display: none;
    }

    .request-ride-page .booking-step-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .request-ride-page .booking-step-actions .button {
        min-height: 42px;
        padding-block: 10px;
    }

    .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: 14px;
    }

    .request-ride-page .booking-form input,
    .request-ride-page .booking-form select,
    .request-ride-page .booking-form textarea {
        padding-inline: 10px;
    }
}

/* Version 2 visual test */
.home-v2 {
    background: #f5f1e8;
}

.home-v2 .hero {
    min-height: auto;
    padding: clamp(112px, 12vw, 148px) 0 clamp(34px, 5vw, 64px);
    color: #151515;
    background: #f5f1e8;
}

.home-v2 .hero::before,
.home-v2 .hero::after {
    display: none;
}

.home-v2 .home-v2-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 520px);
    gap: clamp(18px, 4vw, 48px);
    align-items: center;
}

.home-v2 .home-v2-copy {
    display: grid;
    gap: 18px;
    max-width: 560px;
}

.home-v2 .home-v2-copy .eyebrow {
    color: #83651d;
}

.home-v2 .home-v2-copy h1 {
    max-width: 520px;
    margin: 0;
    color: #151515;
    font-size: clamp(3rem, 7vw, 6.75rem);
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-v2 .home-v2-copy .lead {
    max-width: 460px;
    margin: 0;
    color: #4a463d;
    font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.home-v2 .home-v2-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-v2 .home-v2-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    color: #1b1b1b;
    background: #ffffff;
    border: 1px solid #ddd4bf;
    border-radius: 6px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-v2 .home-v2-trust svg {
    width: 17px;
    height: 17px;
    color: #b08a27;
}

.home-v2 .home-v2-form {
    width: 100%;
    color: #171717;
    background: #ffffff;
    border: 1px solid #ddd4bf;
    border-radius: 8px;
    box-shadow: none;
}

.home-v2 .home-v2-form::before {
    display: none;
}

.home-v2 .booking-app-header {
    margin-bottom: 12px;
}

.home-v2 .booking-app-header h2 {
    margin: 0;
    color: #151515;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-v2 .booking-city,
.home-v2 .booking-city svg,
.home-v2 .booking-fieldset legend,
.home-v2 .booking-form .field-label,
.home-v2 .field-required,
.home-v2 .field-optional {
    color: #8d6c1f;
}

.home-v2 .booking-form label,
.home-v2 .ride-location-row {
    color: #171717;
    background: #f2f0eb;
    border: 1px solid #e0d8c6;
    border-radius: 7px;
}

.home-v2 .ride-location-row {
    border: 0;
    background: #f2f0eb;
}

.home-v2 .booking-form input,
.home-v2 .booking-form select,
.home-v2 .booking-form textarea {
    color: #171717;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-v2 .booking-form input::placeholder,
.home-v2 .booking-form textarea::placeholder {
    color: #746f64;
}

.home-v2 .location-current-button,
.home-v2 .booking-form .button.primary {
    color: #111111;
    background: #d7aa36;
    border-color: #d7aa36;
}

.home-v2 .booking-form .button.secondary {
    color: #171717;
    background: #ffffff;
    border-color: #d8cfbc;
}

.home-v2 .ride-location-marker {
    background: #ffffff;
    border-color: #151515;
}

.home-v2 .pickup-marker {
    border-color: #b08a27;
}

.home-v2 .dropoff-marker {
    border-color: #151515;
}

.home-v2 .ride-location-card::before {
    background: #b7ad98;
}

.home-v2 .vehicle-fit-hint,
.home-v2 .location-status {
    color: #655f54;
}

.home-v2 .location-suggestions {
    background: #ffffff;
    border-color: #ddd4bf;
}

.home-v2 .location-suggestion {
    color: #171717;
    border-color: #e7dfd0;
}

.home-v2 .location-suggestion:hover,
.home-v2 .location-suggestion:focus-visible {
    background: #f2f0eb;
}

.home-v2 .location-suggestion-icon {
    color: #151515;
    background: #eee8da;
}

.home-v2 .section-soft,
.home-v2 .section-cream,
.home-v2 .section-warm {
    background: #f5f1e8;
}

.home-v2 .section-ink {
    background: #171717;
}

.home-v2 :is(.service-card, .events-empty, .service-match-option, .fleet-photo-grid article) {
    border-radius: 8px;
    box-shadow: none;
}

@media (max-width: 860px) {
    .home-v2 .home-v2-hero-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-v2 .home-v2-form {
        order: -1;
    }

    .home-v2 .home-v2-copy {
        gap: 10px;
    }

    .home-v2 .home-v2-copy h1 {
        font-size: clamp(2.45rem, 14vw, 4.2rem);
    }

    .home-v2 .home-v2-trust {
        display: none;
    }
}

@media (max-width: 560px) {
    .home-v2 .hero {
        padding-top: 82px;
    }

    .home-v2 .home-v2-copy {
        display: none;
    }

    .home-v2 .home-v2-form {
        border-radius: 8px;
    }

    .home-v2 .booking-app-header h2 {
        font-size: 2rem;
    }
}

/* V2 revision: keep the current hero system, replace CTA buttons with the form. */
.home-v2 {
    background: var(--bg);
}

.home-v2 .hero {
    min-height: 100vh;
    min-height: 100lvh;
    padding: 132px 0 72px;
    color: #fff;
    background: var(--black);
}

.home-v2 .hero::before,
.home-v2 .hero::after {
    display: block;
}

.home-v2 .hero::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.06) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.26) 100%);
}

.home-v2 .hero-inner {
    align-content: center;
    align-items: center;
    min-height: calc(100vh - 204px);
    min-height: calc(100lvh - 204px);
}

.home-v2 .home-v2-copy {
    display: grid;
    gap: clamp(14px, 1.7vw, 20px);
    max-width: min(680px, 54vw);
}

.home-v2 .home-v2-copy h1 {
    max-width: 680px;
    color: #fff;
    margin-bottom: 0;
    font-size: clamp(3.6rem, 7.2vw, 7.4rem);
    line-height: 0.9;
}

.home-v2 .home-v2-copy .lead {
    max-width: 540px;
    margin-bottom: 0;
    color: var(--muted);
}

.home-v2 .home-v2-form {
    order: initial;
    width: min(100%, 560px);
    margin-top: 2px;
    padding: clamp(16px, 1.8vw, 24px);
    color: var(--ink);
    background: rgba(14, 14, 15, 0.96);
    border: 1px solid rgba(241, 211, 131, 0.42);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.home-v2 .home-v2-form::before {
    display: block;
}

.home-v2 .booking-app-header {
    margin-bottom: -4px;
}

.home-v2 .booking-app-header h2 {
    display: none;
}

.home-v2 .booking-city,
.home-v2 .booking-city svg,
.home-v2 .booking-fieldset legend,
.home-v2 .booking-form .field-label,
.home-v2 .field-required,
.home-v2 .field-optional {
    color: var(--brand-bright);
}

.home-v2 .booking-form label,
.home-v2 .ride-location-row {
    color: var(--ink);
    background: rgba(255, 246, 223, 0.12);
    border: 0;
    border-radius: 8px;
}

.home-v2 .booking-form input,
.home-v2 .booking-form select,
.home-v2 .booking-form textarea {
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    font-weight: 800;
}

.home-v2 .booking-form input::placeholder,
.home-v2 .booking-form textarea::placeholder {
    color: rgba(255, 246, 223, 0.64);
}

.home-v2 .hero .location-current-button,
.home-v2 .hero .booking-form .button.primary {
    color: #111111 !important;
    background: linear-gradient(135deg, #fff3c2 0%, var(--brand-bright) 40%, #d9ae45 100%) !important;
    border-color: rgba(241, 211, 131, 0.72) !important;
}

.home-v2 .hero .booking-form .button.secondary {
    color: var(--ink) !important;
    background: transparent !important;
    border-color: rgba(241, 211, 131, 0.54) !important;
}

.home-v2 .ride-location-marker {
    background: #0c0c0d;
    border-color: #0c0c0d;
}

.home-v2 .pickup-marker {
    border-color: var(--brand-bright);
}

.home-v2 .dropoff-marker {
    border-color: rgba(255, 246, 223, 0.84);
}

.home-v2 .ride-location-card::before {
    background: rgba(255, 246, 223, 0.45);
}

.home-v2 .vehicle-fit-hint,
.home-v2 .location-status {
    color: rgba(255, 246, 223, 0.72);
}

.home-v2 .location-suggestions {
    background: rgba(12, 12, 13, 0.98);
    border-color: rgba(241, 211, 131, 0.28);
}

.home-v2 .location-suggestion {
    color: var(--ink);
    border-color: rgba(255, 246, 223, 0.12);
}

.home-v2 .location-suggestion:hover,
.home-v2 .location-suggestion:focus-visible {
    background: rgba(241, 211, 131, 0.12);
}

.home-v2 .location-suggestion-icon {
    color: var(--brand-bright);
    background: rgba(241, 211, 131, 0.1);
}

.home-v2 .section-soft {
    background: var(--bg-soft);
}

.home-v2 .section-cream,
.home-v2 .section-warm {
    background: var(--cream);
}

.home-v2 .section-ink {
    background: var(--black);
}

@media (max-width: 760px) {
    .home-v2 .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 78px 0 34px;
    }

    .home-v2 .hero-inner {
        min-height: calc(100vh - 112px);
        min-height: calc(100svh - 112px);
        align-content: center;
        align-items: center;
    }

    .home-v2 .home-v2-copy {
        gap: 12px;
        max-width: 100%;
    }

    .home-v2 .home-v2-copy h1 {
        font-size: clamp(2.8rem, 12.5vw, 3.8rem);
        line-height: 0.9;
    }

    .home-v2 .home-v2-copy .lead {
        margin-bottom: 0;
    }

    .home-v2 .home-v2-form {
        width: 100%;
        padding: 16px;
    }

    .home-v2 .booking-app-header h2 {
        display: none;
    }
}

@media (max-width: 560px) {
    .home-v2 .home-v2-copy {
        display: grid;
    }

    .home-v2 .home-v2-copy .lead {
        font-size: 0.98rem;
    }
}

/* Premium simplification pass: reduce visual density without changing structure. */
:root {
    --quiet-cream: #f7f2e8;
    --quiet-warm: #efe4cf;
    --quiet-ink: #0b0b0c;
}

.site-header.is-scrolled,
.home-page .site-header:not(.is-past-hero),
.home-page .site-header.is-past-hero {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.button,
.header-phone,
.mobile-header-call,
.nav-toggle {
    border-radius: 3px;
}

.button.primary,
.home-page .hero ~ .section .button.primary,
.home-v2 .hero .booking-form .button.primary {
    background: #d8ad42 !important;
    box-shadow: none !important;
}

.button.primary:hover,
.home-page .hero ~ .section .button.primary:hover,
.home-v2 .hero .booking-form .button.primary:hover {
    background: #e5bd55 !important;
}

.home-page .hero ~ .section {
    padding: 92px 0;
    background: var(--section-bg);
}

.home-page .hero ~ .section::before {
    display: none;
}

.home-page .hero ~ .section.section-cream,
.home-page .hero ~ .section.section-warm,
.home-v2 .section-cream,
.home-v2 .section-warm {
    --section-bg: var(--quiet-cream);
    background: var(--quiet-cream);
}

.home-page .hero ~ .section.section-warm,
.home-v2 .section-warm {
    --section-bg: var(--quiet-warm);
    background: var(--quiet-warm);
}

.home-page .hero ~ .why-direct,
.home-page .hero ~ .difference-panel,
.home-page .hero ~ .closing-cta,
.home-page .hero ~ .route-panel {
    background: var(--quiet-ink);
}

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

.home-page .home-services .section-heading,
.home-page .process-panel .section-heading,
.home-page .route-panel .section-heading {
    margin-bottom: 34px;
    text-align: left;
    justify-items: start;
}

.home-page .home-services .section-heading h2,
.home-page .process-panel .section-heading h2,
.home-page .route-panel .section-heading h2 {
    justify-content: flex-start;
    margin-left: 0;
}

.home-page .home-services .section-heading p,
.home-page .process-panel .section-heading p,
.home-page .route-panel .section-heading p {
    margin-left: 0;
}

.home-page .service-match {
    gap: clamp(42px, 5vw, 68px);
}

.home-page .service-match-media,
.home-page .fleet-showcase-visual,
.home-page .closing-visual {
    border-color: rgba(241, 211, 131, 0.2);
    box-shadow: none;
}

.home-page .service-match-media,
.home-page .fleet-showcase-visual {
    min-height: 0;
}

.service-match-option strong {
    min-width: 0;
    padding: 0;
    color: var(--section-accent, #8a6a24);
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
}

.home-page .home-services .service-card-grid,
.home-page .process-panel .feature-grid,
.home-page .route-panel .route-grid {
    gap: 0;
    border-top: 1px solid var(--section-line);
}

.home-page .home-services .service-card,
.home-page .process-panel .feature-grid article,
.home-page .route-panel .route-grid article {
    min-height: 0;
    padding: 26px 24px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--section-line);
    border-radius: 0;
    box-shadow: none;
}

.home-page .home-services .service-card::before,
.home-page .route-panel .route-grid article::before {
    display: none;
}

.home-page .home-services .service-card h2,
.home-page .process-panel .feature-grid h2,
.home-page .route-panel .route-grid h2 {
    font-size: 1.18rem;
}

.home-page .home-services .service-card p,
.home-page .process-panel .feature-grid p,
.home-page .route-panel .route-grid p {
    max-width: 34rem;
}

.home-page .why-direct .quiet-list,
.home-page .difference-panel .quiet-list {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.event-carousel {
    gap: 14px;
}

.event-carousel-top {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(241, 211, 131, 0.18);
}

.event-card {
    background: transparent;
    border-color: rgba(241, 211, 131, 0.16);
    box-shadow: none;
}

.event-card img {
    opacity: 0.86;
}

.event-card-body {
    padding: 16px 0 2px;
}

.event-card-meta span {
    padding: 0;
    background: transparent;
    border: 0;
}

.fleet-photo-grid article,
.home-page .fleet-showcase .fleet-photo-grid article {
    background: transparent;
    border-color: rgba(241, 211, 131, 0.16);
    box-shadow: none;
}

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

.home-page .closing-cta .package-list {
    background: transparent;
    border-color: rgba(241, 211, 131, 0.18);
    box-shadow: none;
}

.request-ride-page .booking-section::before {
    display: none;
}

.request-ride-page .booking-form,
.home-v2 .home-v2-form {
    border-color: rgba(241, 211, 131, 0.24);
    box-shadow: none;
    backdrop-filter: none;
}

.home-v2 .home-v2-form {
    background: transparent;
    border-color: transparent;
}

.home-v2 .home-v2-form::before {
    display: none;
}

.request-ride-page .booking-form input,
.request-ride-page .booking-form select,
.request-ride-page .booking-form textarea,
.home-v2 .booking-form input,
.home-v2 .booking-form select,
.home-v2 .booking-form textarea {
    font-weight: 650;
}

.request-ride-page .ride-location-row,
.request-ride-page .booking-field-grid > label:not(.ride-location-field) {
    background: rgba(255, 246, 223, 0.075);
}

.home-v2 .booking-field-grid > label,
.home-v2 .ride-location-row {
    color: #151515;
    background: rgba(255, 252, 242, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.home-v2 .ride-location-row,
.home-v2 .booking-field-grid > label {
    border-radius: 5px;
}

.home-v2 .booking-form .ride-location-field {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.home-v2 .booking-field-grid > label .field-label,
.home-v2 .ride-location-row .field-label,
.home-v2 .booking-field-grid > label .field-required,
.home-v2 .ride-location-row .field-required,
.home-v2 .booking-field-grid > label .field-optional,
.home-v2 .ride-location-row .field-optional {
    color: #6f5418;
}

.home-v2 .booking-field-grid > label input,
.home-v2 .booking-field-grid > label select,
.home-v2 .booking-field-grid > label textarea,
.home-v2 .ride-location-row input {
    color: #151515;
}

.home-v2 .booking-field-grid > label input::placeholder,
.home-v2 .booking-field-grid > label textarea::placeholder,
.home-v2 .ride-location-row input::placeholder {
    color: rgba(21, 21, 21, 0.62);
}

.home-v2 .vehicle-fit-hint,
.home-v2 .location-status {
    color: rgba(21, 21, 21, 0.68);
}

.home-v2 .booking-fieldset legend {
    margin-bottom: 8px;
}

.request-ride-page .booking-details,
.booking-contact-methods a,
.booking-detail-list {
    background: transparent;
    box-shadow: none;
}

.request-ride-page .booking-details {
    border-color: rgba(241, 211, 131, 0.2);
}

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

.mobile-booking-bar {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover,
    .event-card:hover,
    .fleet-photo-grid article:hover,
    .feature-grid article:hover,
    .cards article:hover,
    .route-grid article:hover,
    .package-list:hover,
    .service-match-media:hover,
    .home-page .fleet-showcase-visual:hover,
    .home-page .closing-visual:hover {
        transform: none;
        box-shadow: none;
    }

    .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: none;
    }
}

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

@media (max-width: 760px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .home-page .hero ~ .section {
        padding: 58px 0;
    }

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

    .home-page .home-services .section-heading h2,
    .home-page .process-panel .section-heading h2,
    .home-page .route-panel .section-heading h2 {
        justify-content: flex-start;
    }

    .home-page .home-services .service-card,
    .home-page .process-panel .feature-grid article,
    .home-page .route-panel .route-grid article {
        padding: 22px 0;
    }

    .service-card .heading-icon,
    .feature-grid .heading-icon,
    .route-grid .heading-icon,
    .cards .heading-icon {
        display: none;
    }

    .event-card {
        flex-basis: min(78vw, 300px);
        border: 0;
    }

    .event-card img {
        border-radius: 6px;
        border: 1px solid rgba(241, 211, 131, 0.16);
    }

    .home-v2 .home-v2-form,
    .request-ride-page .booking-form {
        padding: 16px;
        border-radius: 6px;
    }

    .request-ride-page .booking-field-grid > label.vehicle-fit-field {
        grid-column: auto;
    }

    .request-ride-page .booking-details {
        padding: 20px 0 0;
        border: 0;
        border-top: 1px solid rgba(241, 211, 131, 0.18);
        border-radius: 0;
    }

    .mobile-booking-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 28;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px var(--content-edge) max(10px, env(safe-area-inset-bottom));
        background: rgba(9, 9, 10, 0.94);
        border-top: 1px solid rgba(241, 211, 131, 0.22);
    }

    .mobile-booking-bar a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 12px 16px;
        border-radius: 3px;
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.1em;
        line-height: 1;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mobile-booking-primary {
        color: #111111;
        background: #d8ad42;
    }

    .mobile-booking-secondary {
        color: var(--ink);
        border: 1px solid rgba(255, 246, 223, 0.34);
    }

    .interior-page.request-ride-page .mobile-booking-bar {
        display: none;
    }

    .home-page .mobile-booking-bar {
        display: none;
    }

    body.home-page {
        padding-bottom: 0;
    }

    .interior-page.request-ride-page {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .home-v2 .home-v2-copy h1 {
        font-size: clamp(2.28rem, 12vw, 3.05rem);
    }

    .home-v2 .home-v2-copy .lead {
        max-width: 100%;
    }

    .mobile-booking-bar {
        gap: 8px;
    }

    .mobile-booking-bar a {
        min-height: 44px;
        padding-inline: 12px;
        font-size: 0.72rem;
    }
}

@media (min-width: 981px) {
    .home-v2 .home-v2-copy {
        width: 100%;
        max-width: min(1180px, 100%);
        grid-template-columns: minmax(0, 0.95fr) minmax(420px, 560px);
        column-gap: clamp(38px, 6vw, 86px);
        row-gap: 14px;
        align-items: center;
    }

    .home-v2 .home-v2-copy h1,
    .home-v2 .home-v2-copy .lead {
        grid-column: 1;
    }

    .home-v2 .home-v2-copy h1 {
        max-width: 620px;
        font-size: clamp(3.5rem, 5.9vw, 6.8rem);
    }

    .home-v2 .home-v2-copy .lead {
        max-width: 510px;
    }

    .home-v2 .home-v2-form {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        justify-self: end;
        margin-top: 0;
    }
}

@media (min-width: 981px) and (max-width: 1120px) {
    .home-v2 .home-v2-copy {
        grid-template-columns: minmax(0, 0.9fr) minmax(390px, 500px);
        column-gap: 34px;
    }

    .home-v2 .home-v2-copy h1 {
        font-size: clamp(3.25rem, 5.4vw, 5.4rem);
    }
}

/* Legibility pass for light sections: keep the palette, raise contrast. */
.interior-page .section.section-cream,
.interior-page .section.section-warm,
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta),
.home-page .hero ~ .section.section-warm:not(.route-panel) {
    --section-text: #111111;
    --section-muted: #3f382f;
    --section-line: rgba(17, 17, 17, 0.22);
    --section-accent: #76551b;
    background: #f4eee2;
}

.interior-page .section.section-warm,
.home-page .hero ~ .section.section-warm:not(.route-panel) {
    background: #ece0cb;
}

.interior-page .section.section-cream::before,
.interior-page .section.section-warm::before,
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta)::before,
.home-page .hero ~ .section.section-warm:not(.route-panel)::before {
    display: none;
}

.interior-page .section.section-cream :is(.section-heading h2, .split-section h2),
.interior-page .section.section-warm :is(.section-heading h2, .split-section h2),
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta) :is(.section-heading h2, .split-section h2),
.home-page .hero ~ .section.section-warm:not(.route-panel) :is(.section-heading h2, .split-section h2) {
    color: #111111;
}

.interior-page .section.section-cream :is(.section-heading p, .split-section > div > p:not(.eyebrow), .quiet-list p),
.interior-page .section.section-warm :is(.section-heading p, .split-section > div > p:not(.eyebrow), .quiet-list p),
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta) :is(.section-heading p, .split-section > div > p:not(.eyebrow), .quiet-list p),
.home-page .hero ~ .section.section-warm:not(.route-panel) :is(.section-heading p, .split-section > div > p:not(.eyebrow), .quiet-list p) {
    color: #3f382f;
}

.home-page .hero ~ .home-services .service-card,
.home-page .hero ~ .home-services .service-card-featured {
    color: #111111;
}

.home-page .hero ~ .home-services .service-card h2,
.home-page .hero ~ .home-services .service-card p {
    color: #111111;
}

.home-page .hero ~ .home-services .service-card p {
    color: #443c32;
}

.home-page .hero ~ .home-services .service-tag,
.interior-page .section.section-cream .eyebrow,
.interior-page .section.section-warm .eyebrow {
    color: #76551b;
}

.interior-page .section.section-cream .heading-icon,
.interior-page .section.section-warm .heading-icon,
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta) .heading-icon,
.home-page .hero ~ .section.section-warm:not(.route-panel) .heading-icon {
    color: #76551b;
    border-color: rgba(118, 85, 27, 0.34);
    background: rgba(118, 85, 27, 0.08);
}

.interior-page .section.section-cream :is(.cards article, .feature-grid article, .service-card, .route-grid article, .contact-details, .package-list),
.interior-page .section.section-warm :is(.cards article, .feature-grid article, .service-card, .route-grid article, .contact-details, .package-list),
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta) :is(.cards article, .feature-grid article, .service-card, .route-grid article, .contact-details, .package-list),
.home-page .hero ~ .section.section-warm:not(.route-panel) :is(.cards article, .feature-grid article, .service-card, .route-grid article, .contact-details, .package-list) {
    color: #111111;
    background: rgba(255, 255, 255, 0.36);
    border-color: rgba(17, 17, 17, 0.16);
    box-shadow: none;
}

.interior-page .section.section-cream :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2),
.interior-page .section.section-warm :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2),
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta) :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2),
.home-page .hero ~ .section.section-warm:not(.route-panel) :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2) {
    color: #111111;
}

.interior-page .section.section-cream :is(.cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .package-list li),
.interior-page .section.section-warm :is(.cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .package-list li),
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta) :is(.cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .package-list li),
.home-page .hero ~ .section.section-warm:not(.route-panel) :is(.cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .package-list li) {
    color: #443c32;
}

.interior-page .section.section-cream :is(.cards, .feature-grid, .service-card-grid, .route-grid),
.interior-page .section.section-warm :is(.cards, .feature-grid, .service-card-grid, .route-grid),
.home-page .hero ~ .section.section-cream:not(.why-direct):not(.closing-cta) :is(.cards, .feature-grid, .service-card-grid, .route-grid),
.home-page .hero ~ .section.section-warm:not(.route-panel) :is(.cards, .feature-grid, .service-card-grid, .route-grid) {
    border-top-color: rgba(17, 17, 17, 0.18);
}

.interior-page .section.section-soft :is(.section-heading p, .service-heading p, .cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .fleet-photo-grid p),
.interior-page .section.section-ink :is(.section-heading p, .service-heading p, .cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .fleet-photo-grid p),
.home-page .hero ~ .section.section-ink :is(.section-heading p, .service-heading p, .cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .fleet-photo-grid p),
.home-page .hero ~ .section.section-soft :is(.section-heading p, .service-heading p, .cards article p, .feature-grid article p, .service-card p, .route-grid p, .contact-details p, .fleet-photo-grid p) {
    color: rgba(255, 246, 223, 0.84);
}

.interior-page .section.section-soft :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2, .fleet-photo-grid h2),
.interior-page .section.section-ink :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2, .fleet-photo-grid h2),
.home-page .hero ~ .section.section-ink :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2, .fleet-photo-grid h2),
.home-page .hero ~ .section.section-soft :is(.cards article h2, .feature-grid article h2, .service-card h2, .route-grid h2, .contact-details h2, .fleet-photo-grid h2) {
    color: #fff6df;
}

.interior-page .section.section-soft input::placeholder,
.interior-page .section.section-soft textarea::placeholder,
.interior-page .section.section-ink input::placeholder,
.interior-page .section.section-ink textarea::placeholder,
.request-ride-page .booking-form input::placeholder,
.request-ride-page .booking-form textarea::placeholder,
.home-v2 .booking-form input::placeholder,
.home-v2 .booking-form textarea::placeholder {
    color: rgba(255, 246, 223, 0.68);
}

/* Homepage simplification: fewer cards, clearer dark/light contrast. */
.home-page .hero ~ .section {
    --home-dark-text: #fff6df;
    --home-dark-muted: rgba(255, 246, 223, 0.84);
    --home-dark-line: rgba(255, 246, 223, 0.18);
    --home-light-text: #111111;
    --home-light-muted: #3f382f;
    --home-light-line: rgba(17, 17, 17, 0.18);
}

.home-page .hero ~ .section:is(.section-ink, .section-soft, .why-direct, .route-panel, .difference-panel, .closing-cta) {
    --section-text: var(--home-dark-text);
    --section-muted: var(--home-dark-muted);
    --section-line: var(--home-dark-line);
    color: var(--home-dark-text);
    background: #09090a;
}

.home-page .hero ~ .section:is(.section-cream, .section-warm):not(.why-direct):not(.route-panel):not(.difference-panel):not(.closing-cta) {
    --section-text: var(--home-light-text);
    --section-muted: var(--home-light-muted);
    --section-line: var(--home-light-line);
    color: var(--home-light-text);
    background: #f4eee2;
}

.home-page .hero ~ .section:is(.section-warm):not(.route-panel) {
    background: #ece0cb;
}

.home-page .hero ~ .section:is(.section-ink, .section-soft, .why-direct, .route-panel, .difference-panel, .closing-cta) :is(h1, h2, h3, li, p, a, span:not(.service-tag)) {
    color: var(--home-dark-text);
}

.home-page .hero ~ .section:is(.section-ink, .section-soft, .why-direct, .route-panel, .difference-panel, .closing-cta) :is(.section-heading p, .service-heading p, .service-match-heading p, .service-match-option span, .feature-grid p, .route-grid p, .quiet-list p, .fleet-photo-grid p, .package-list li, .event-card p, .events-empty p, .closing-copy p:not(.eyebrow)) {
    color: var(--home-dark-muted);
}

.home-page .hero ~ .section:is(.section-cream, .section-warm):not(.why-direct):not(.route-panel):not(.difference-panel):not(.closing-cta) :is(h1, h2, h3, li, p, a, span:not(.service-tag)) {
    color: var(--home-light-text);
}

.home-page .hero ~ .section:is(.section-cream, .section-warm):not(.why-direct):not(.route-panel):not(.difference-panel):not(.closing-cta) :is(.section-heading p, .service-heading p, .feature-grid p, .service-card p, .cards p, .quiet-list p) {
    color: var(--home-light-muted);
}

.home-page .hero ~ .section :is(.service-card, .feature-grid article, .route-grid article, .fleet-photo-grid article, .event-card, .events-empty, .package-list, .quiet-list, .contact-details) {
    background: transparent;
    box-shadow: none;
}

.home-page .hero ~ .section :is(.service-card, .feature-grid article, .route-grid article, .event-card, .package-list, .quiet-list) {
    border-radius: 0;
}

.home-page .home-services .service-card-grid,
.home-page .process-panel .feature-grid,
.home-page .route-panel .route-grid,
.home-page .fleet-showcase .fleet-photo-grid {
    gap: 0;
    border-top: 1px solid var(--section-line);
}

.home-page .home-services .service-card,
.home-page .process-panel .feature-grid article,
.home-page .route-panel .route-grid article {
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid var(--section-line);
}

.home-page .fleet-showcase .fleet-photo-grid article {
    grid-template-columns: minmax(112px, 0.28fr) minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--section-line);
}

.home-page .fleet-showcase .fleet-photo-grid img {
    border: 0;
    border-radius: 4px;
}

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

.home-page .why-direct .quiet-list,
.home-page .difference-panel .quiet-list,
.home-page .closing-cta .package-list {
    padding: 0;
    border: 0;
}

.home-page .closing-cta .package-list {
    list-style-position: outside;
    padding-left: 22px;
}

.home-page .events-empty {
    padding: 0;
    border: 0;
}

.home-page .event-card {
    border: 0;
}

.home-page .event-card img {
    border: 0;
    border-radius: 4px;
}

.home-page .event-card-body {
    padding: 14px 0 0;
}

.home-page .event-card-meta span {
    color: var(--brand-bright);
}

.home-page .hero ~ .section .button.primary,
.home-page .hero ~ .section .button.primary:is(:hover, :focus-visible) {
    color: #111111;
}

.home-page .hero ~ .section .button.primary * {
    color: inherit;
}

@media (max-width: 760px) {
    .home-page .fleet-showcase .fleet-photo-grid article {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-page .home-services .service-card,
    .home-page .process-panel .feature-grid article,
    .home-page .route-panel .route-grid article {
        padding: 22px 0;
    }
}

/* Homepage app-like section rhythm. Keep structure, make each section simpler and distinct. */
.home-page .hero ~ .section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.home-page .hero ~ .section::before {
    display: none;
}

.home-page .hero ~ .section :is(.heading-icon) {
    display: none;
}

.home-page .hero ~ .section .section-heading,
.home-page .hero ~ .section .service-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.52fr);
    gap: clamp(18px, 4vw, 56px);
    align-items: end;
    max-width: none;
    margin: 0 0 clamp(28px, 4vw, 48px);
    text-align: left;
}

.home-page .hero ~ .section .section-heading h2,
.home-page .hero ~ .section .split-section h2,
.home-page .hero ~ .section .service-match-heading h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 4rem);
    line-height: 0.98;
}

.home-page .hero ~ .section .section-heading p,
.home-page .hero ~ .section .service-heading p,
.home-page .hero ~ .section .service-match-heading p,
.home-page .hero ~ .section .closing-copy p:not(.eyebrow) {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.68;
}

.home-page .hero ~ .section .button.primary,
.home-page .hero ~ .section .button.primary:is(:hover, :focus-visible) {
    color: #111111 !important;
    background: #d8ad42 !important;
    box-shadow: none !important;
}

.home-page .service-strip {
    background: #09090a;
}

.home-page .service-match {
    grid-template-columns: minmax(260px, 0.4fr) minmax(0, 0.6fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: center;
}

.home-page .service-match-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 6px;
}

.home-page .service-match-list {
    margin-top: clamp(24px, 3vw, 36px);
    border-color: rgba(255, 246, 223, 0.18);
}

.home-page .service-match-option {
    display: grid;
    grid-template-columns: minmax(92px, 0.22fr) minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-color: rgba(255, 246, 223, 0.16);
}

.home-page .service-match-option strong,
.home-page .hero ~ .section .service-tag,
.home-page .hero ~ .section .eyebrow,
.home-page .hero ~ .route-panel .route-grid span {
    color: var(--brand-bright);
}

.home-page .vegas-events {
    background: #0d0d0e;
}

.home-page .event-carousel-top,
.home-page .events-empty {
    border-top: 1px solid rgba(255, 246, 223, 0.18);
    padding-top: 20px;
}

.home-page .events-empty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.home-page .event-card-grid {
    gap: 22px;
}

.home-page .event-card {
    flex-basis: clamp(260px, 28vw, 340px);
}

.home-page .home-services {
    background: #f4eee2;
}

.home-page .home-services .container {
    max-width: 1120px;
}

.home-page .home-services .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(34px, 6vw, 78px);
    border-top-color: rgba(17, 17, 17, 0.18);
}

.home-page .home-services .service-card {
    min-height: 0;
    padding: 26px 0;
    border-bottom-color: rgba(17, 17, 17, 0.16);
}

.home-page .home-services .service-card :is(h2, p, span) {
    color: #111111;
}

.home-page .home-services .service-card p {
    color: #3f382f;
}

.home-page .home-services .service-tag {
    color: #76551b !important;
}

.home-page .fleet-showcase {
    background: #09090a;
}

.home-page .fleet-showcase-layout {
    grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
    gap: clamp(36px, 6vw, 82px);
}

.home-page .fleet-showcase-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border: 0;
    border-radius: 6px;
}

.home-page .fleet-showcase .fleet-photo-grid {
    border-top-color: rgba(255, 246, 223, 0.18);
}

.home-page .fleet-showcase .fleet-photo-grid article {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    border-bottom-color: rgba(255, 246, 223, 0.16);
}

.home-page .fleet-showcase .fleet-photo-grid img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.home-page .process-panel {
    background: #111111;
}

.home-page .process-panel .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 5vw, 64px);
    border-top: 1px solid rgba(255, 246, 223, 0.18);
}

.home-page .process-panel .feature-grid article {
    padding: 24px 0 0;
    border: 0;
}

.home-page .process-panel .feature-grid article h2 {
    font-size: 1.28rem;
}

.home-page .why-direct {
    background: #f4eee2 !important;
}

.home-page .why-direct :is(h2, p, li, span:not(.eyebrow)) {
    color: #111111 !important;
}

.home-page .why-direct .quiet-list p {
    color: #3f382f !important;
    border-color: rgba(17, 17, 17, 0.16);
}

.home-page .route-panel {
    background: #ece0cb !important;
}

.home-page .route-panel :is(h2, p, li, span:not(.eyebrow)) {
    color: #111111 !important;
}

.home-page .route-panel .section-heading p,
.home-page .route-panel .route-grid p {
    color: #3f382f !important;
}

.home-page .route-panel .route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 4vw, 42px);
    border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.home-page .route-panel .route-grid article {
    padding: 24px 0 0;
    border: 0;
}

.home-page .route-panel .route-grid span {
    display: block;
    margin-bottom: 14px;
}

.home-page .difference-panel {
    background: #09090a;
}

.home-page .difference-panel .split-section,
.home-page .why-direct .split-section {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: clamp(32px, 7vw, 96px);
}

.home-page .closing-cta {
    background: #f4eee2 !important;
}

.home-page .closing-cta :is(h2, p, li, span:not(.eyebrow)) {
    color: #111111 !important;
}

.home-page .closing-cta .closing-copy p:not(.eyebrow),
.home-page .closing-cta .package-list li {
    color: #3f382f !important;
}

.home-page .closing-cta .split-section {
    grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
    gap: clamp(34px, 7vw, 90px);
}

.home-page .closing-visual {
    border: 0;
    border-radius: 6px;
    box-shadow: none;
}

.home-page .closing-cta .package-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-left: 20px;
    border: 0;
}

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

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

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

    .home-page .hero ~ .section .section-heading,
    .home-page .hero ~ .section .service-heading {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 26px;
    }

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

    .home-page .events-empty {
        grid-template-columns: 1fr;
    }

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

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

.interior-page .services-catalog .service-card,
.interior-page .fleet-section .cards article,
.interior-page .process-panel .feature-grid article,
.interior-page .route-panel .route-grid article {
    padding: clamp(18px, 2vw, 24px) !important;
    color: #15120c !important;
    background: rgba(255, 250, 240, 0.92) !important;
    border: 1px solid rgba(21, 18, 12, 0.12) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

/* Final light cards for interior service groups. */
.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card h2, .feature-grid h2, .cards h2, .route-grid h2) {
    color: #15120c !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card p, .feature-grid p, .cards p, .route-grid p) {
    color: #4a4136 !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-tag, .route-grid span) {
    color: #76551b !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card-grid, .feature-grid, .cards, .route-grid) {
    gap: 14px !important;
    border-top: 0 !important;
}

.interior-page .services-catalog .service-card-featured {
    background: rgba(255, 246, 226, 0.98) !important;
    border-color: rgba(118, 85, 27, 0.18) !important;
}

/* Final light cards for interior service groups. */
.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card h2, .feature-grid h2, .cards h2, .route-grid h2) {
    color: #15120c !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card p, .feature-grid p, .cards p, .route-grid p) {
    color: #4a4136 !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-tag, .route-grid span) {
    color: #76551b !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card-grid, .feature-grid, .cards, .route-grid) {
    gap: 14px !important;
    border-top: 0 !important;
}

.interior-page .services-catalog .service-card-featured {
    background: rgba(255, 246, 226, 0.98) !important;
    border-color: rgba(118, 85, 27, 0.18) !important;
}

/* Final light cards for interior service groups. */
.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card, .feature-grid article, .cards article, .route-grid article) {
    padding: clamp(18px, 2vw, 24px) !important;
    color: #15120c !important;
    background: rgba(255, 250, 240, 0.92) !important;
    border: 1px solid rgba(21, 18, 12, 0.12) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card h2, .feature-grid h2, .cards h2, .route-grid h2) {
    color: #15120c !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card p, .feature-grid p, .cards p, .route-grid p) {
    color: #4a4136 !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-tag, .route-grid span) {
    color: #76551b !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card-grid, .feature-grid, .cards, .route-grid) {
    gap: 14px !important;
    border-top: 0 !important;
}

.interior-page .services-catalog .service-card-featured {
    background: rgba(255, 246, 226, 0.98) !important;
    border-color: rgba(118, 85, 27, 0.18) !important;
}

/* Final interior hero repair: keep media and copy in separate tracks. */
.interior-page .service-strip {
    padding: clamp(72px, 7vw, 96px) 0 !important;
}

.interior-page .service-match {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.52fr) !important;
    gap: clamp(44px, 5vw, 74px) !important;
    align-items: center !important;
}

.interior-page .service-match-media {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    aspect-ratio: 4 / 3 !important;
}

.interior-page .service-match-content,
.interior-page .fleet-showcase-content {
    display: block !important;
    min-width: 0 !important;
    max-width: 680px !important;
    justify-self: end !important;
}

.interior-page .service-match-heading,
.interior-page .service-match-heading h2,
.interior-page .service-match-heading p,
.interior-page .service-match-list {
    max-width: 100% !important;
}

.interior-page .service-match-heading h2 {
    font-size: clamp(2.4rem, 4.8vw, 4.35rem) !important;
    line-height: 0.96 !important;
}

.interior-page .service-match-option {
    grid-template-columns: minmax(104px, 0.24fr) minmax(0, 1fr) !important;
}

@media (max-width: 980px) {
    .interior-page .service-match {
        grid-template-columns: 1fr !important;
    }

    .interior-page .service-match-content,
    .interior-page .fleet-showcase-content {
        max-width: none !important;
        justify-self: stretch !important;
    }
}

@media (max-width: 760px) {
    .interior-page .service-strip {
        padding: 56px 0 !important;
    }

    .interior-page .service-match {
        gap: 24px !important;
    }

    .interior-page .service-match-media {
        aspect-ratio: 16 / 10 !important;
    }

    .interior-page .service-match-heading h2 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .interior-page .service-match-option {
        grid-template-columns: 1fr !important;
    }
}

/* Interior pages use no hero background image. Homepage remains image-led. */
.interior-page .page-hero {
    background: #070707 !important;
}

.interior-page .page-hero::before {
    background: #070707 !important;
    background-image: none !important;
}

.interior-page .page-hero::after {
    display: none !important;
}

/* Light, minimal cards for interior service groups. */
.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card, .feature-grid article, .cards article, .route-grid article) {
    padding: clamp(18px, 2vw, 24px) !important;
    color: #15120c !important;
    background: rgba(255, 250, 240, 0.92) !important;
    border: 1px solid rgba(21, 18, 12, 0.12) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card h2, .feature-grid h2, .cards h2, .route-grid h2) {
    color: #15120c !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card p, .feature-grid p, .cards p, .route-grid p) {
    color: #4a4136 !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-tag, .route-grid span) {
    color: #76551b !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card-grid, .feature-grid, .cards, .route-grid) {
    gap: 14px !important;
    border-top: 0 !important;
}

.interior-page .services-catalog .service-card-featured {
    background: rgba(255, 246, 226, 0.98) !important;
    border-color: rgba(118, 85, 27, 0.18) !important;
}

/* Interior hero repair: keep media and copy in separate tracks. */
.interior-page .service-strip {
    padding: clamp(72px, 7vw, 96px) 0 !important;
}

.interior-page .service-match {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.52fr) !important;
    gap: clamp(44px, 5vw, 74px) !important;
    align-items: center !important;
}

.interior-page .service-match-media {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    aspect-ratio: 4 / 3 !important;
}

.interior-page .service-match-content,
.interior-page .fleet-showcase-content {
    display: block !important;
    min-width: 0 !important;
    max-width: 680px !important;
    justify-self: end !important;
}

.interior-page .service-match-heading,
.interior-page .service-match-heading h2,
.interior-page .service-match-heading p,
.interior-page .service-match-list {
    max-width: 100% !important;
}

.interior-page .service-match-heading h2 {
    font-size: clamp(2.4rem, 4.8vw, 4.35rem) !important;
    line-height: 0.96 !important;
}

.interior-page .service-match-option {
    grid-template-columns: minmax(104px, 0.24fr) minmax(0, 1fr) !important;
}

@media (max-width: 980px) {
    .interior-page .service-match {
        grid-template-columns: 1fr !important;
    }

    .interior-page .service-match-content,
    .interior-page .fleet-showcase-content {
        max-width: none !important;
        justify-self: stretch !important;
    }
}

@media (max-width: 760px) {
    .interior-page .service-strip {
        padding: 56px 0 !important;
    }

    .interior-page .service-match {
        gap: 24px !important;
    }

    .interior-page .service-match-media {
        aspect-ratio: 16 / 10 !important;
    }

    .interior-page .service-match-heading h2 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .interior-page .service-match-option {
        grid-template-columns: 1fr !important;
    }
}

/* Final interior overrides must come after legacy section rules. */
.home-v2 .home-v2-form .choice-picker-toggle [data-choice-label] {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-v2 .home-v2-form .choice-picker-chevron {
    flex: 0 0 auto;
    width: 7px !important;
    height: 7px !important;
    margin-right: 2px;
}

.interior-page .section {
    --interior-bg: #09090a;
    --interior-text: #fff6df;
    --interior-muted: rgba(255, 246, 223, 0.78);
    --interior-line: rgba(255, 246, 223, 0.16);
    --interior-accent: var(--brand-bright);
    color: var(--interior-text) !important;
    background: var(--interior-bg) !important;
    border-top: 1px solid var(--interior-line) !important;
}

.interior-page .section::before,
.interior-page .section::after {
    display: none !important;
}

.interior-page .section.section-soft,
.interior-page .section.section-ink,
.interior-page .section.dark-band,
.interior-page .section.closing-cta.section-ink {
    --interior-bg: #09090a;
    --interior-text: #fff6df;
    --interior-muted: rgba(255, 246, 223, 0.78);
    --interior-line: rgba(255, 246, 223, 0.16);
    --interior-accent: var(--brand-bright);
    color: var(--interior-text) !important;
    background: var(--interior-bg) !important;
}

.interior-page .section.section-warm {
    --interior-bg: #ece0cb;
    --interior-text: #111111;
    --interior-muted: #3f382f;
    --interior-line: rgba(17, 17, 17, 0.18);
    --interior-accent: #76551b;
    color: var(--interior-text) !important;
    background: var(--interior-bg) !important;
}

.interior-page .section.section-cream,
.interior-page .section.policy-section {
    --interior-bg: #f4eee2;
    --interior-text: #111111;
    --interior-muted: #3f382f;
    --interior-line: rgba(17, 17, 17, 0.16);
    --interior-accent: #76551b;
    color: var(--interior-text) !important;
    background: var(--interior-bg) !important;
}

.interior-page .section :where(h1, h2, h3, h4, li, a, span, strong, small) {
    color: var(--interior-text) !important;
}

.interior-page .section :where(p, .lead, .section-heading p, .service-heading p, .service-match-heading p, .service-match-option span, .service-card p, .feature-grid p, .cards p, .route-grid p, .quiet-list p, .fleet-photo-grid p, .package-list li, .contact-details p, .policy-content p) {
    color: var(--interior-muted) !important;
}

.interior-page .section :where(.eyebrow, .service-tag, .route-grid span, .policy-updated) {
    color: var(--interior-accent) !important;
}

.interior-page .section :where(.service-card, .feature-grid article, .cards article, .route-grid article, .fleet-photo-grid article, .contact-details, .package-list, .quiet-list) {
    background: transparent !important;
    border-color: var(--interior-line) !important;
    box-shadow: none !important;
}

.interior-page .section :where(.service-card, .feature-grid article, .cards article, .route-grid article, .contact-details, .package-list) {
    border-radius: 0 !important;
}

.interior-page .contact-form {
    color: var(--ink) !important;
    background: rgba(12, 12, 13, 0.96) !important;
    border: 1px solid rgba(241, 211, 131, 0.24) !important;
    border-radius: 6px !important;
}

.interior-page .contact-form label {
    color: var(--brand-bright) !important;
}

.interior-page .contact-form :where(.field-label, .field-required, .field-optional, label > span) {
    color: var(--brand-bright) !important;
}

.interior-page .contact-form input,
.interior-page .contact-form select,
.interior-page .contact-form textarea {
    color: #151515 !important;
    background: rgba(255, 252, 242, 0.94) !important;
    border-color: rgba(255, 255, 255, 0.62) !important;
}

/* Homepage-aligned interior system. */
.home-v2 .home-v2-form .booking-step-panel {
    display: grid;
}

.home-v2 .home-v2-form .booking-step-panel[hidden] {
    display: none !important;
}

.home-v2 .home-v2-form .booking-step-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.home-v2 .home-v2-form .booking-step-actions .button {
    width: 100%;
    min-width: 0;
}

.interior-page main {
    background: var(--bg);
}

.interior-page .page-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(420px, 56vh, 620px);
    padding: clamp(138px, 13vw, 174px) 0 clamp(72px, 8vw, 104px);
    overflow: hidden;
    color: #fff6df;
    background: #070707;
    border-bottom: 1px solid rgba(241, 211, 131, 0.18);
}

.interior-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #070707;
}

.interior-page .page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 10, 0.94) 100%);
}

.interior-page .page-hero-inner {
    display: grid;
    min-height: clamp(250px, 32vh, 360px);
    align-content: end;
}

.interior-page .page-hero-copy {
    width: min(100%, 760px);
}

.interior-page .page-hero .eyebrow {
    margin-bottom: 14px;
    padding-bottom: 10px;
    color: var(--brand-bright);
    border-bottom: 1px solid rgba(241, 211, 131, 0.42);
}

.interior-page .page-hero h1 {
    max-width: 860px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.25rem);
    line-height: 0.92;
}

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

.interior-page .page-hero .button-row {
    max-width: none;
}

.interior-page .section {
    --interior-bg: #09090a;
    --interior-text: #fff6df;
    --interior-muted: rgba(255, 246, 223, 0.78);
    --interior-line: rgba(255, 246, 223, 0.16);
    --interior-accent: var(--brand-bright);
    color: var(--interior-text);
    background: var(--interior-bg);
    border-top: 1px solid var(--interior-line);
    padding: clamp(72px, 8vw, 108px) 0;
}

.interior-page .section.section-ink {
    --interior-bg: #111111;
}

.interior-page .section.section-warm {
    --interior-bg: #ece0cb;
    --interior-text: #111111;
    --interior-muted: #3f382f;
    --interior-line: rgba(17, 17, 17, 0.18);
    --interior-accent: #76551b;
}

.interior-page .section.section-cream,
.interior-page .section.policy-section {
    --interior-bg: #f4eee2;
    --interior-text: #111111;
    --interior-muted: #3f382f;
    --interior-line: rgba(17, 17, 17, 0.16);
    --interior-accent: #76551b;
}

.interior-page .section :where(h1, h2, h3, h4, p, li, a, span, strong, small) {
    color: inherit;
}

.interior-page .section :where(.lead, .section-heading p, .service-heading p, .service-match-heading p, .service-match-option span, .service-card p, .feature-grid p, .cards p, .route-grid p, .quiet-list p, .fleet-photo-grid p, .package-list li, .contact-details p, .policy-content p) {
    color: var(--interior-muted);
}

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

.interior-page .section .heading-icon {
    display: none;
}

.interior-page .section-heading,
.interior-page .service-heading {
    margin-bottom: clamp(28px, 4vw, 46px);
}

.interior-page .service-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.52fr);
    gap: clamp(20px, 4vw, 56px);
    align-items: end;
}

.interior-page .section-heading h2,
.interior-page .split-section h2,
.interior-page .service-match-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--interior-text);
    font-size: clamp(2rem, 4.4vw, 3.75rem);
    line-height: 0.98;
}

.interior-page .section-heading p,
.interior-page .service-heading p,
.interior-page .service-match-heading p,
.interior-page .closing-copy p:not(.eyebrow) {
    max-width: 600px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.68;
}

.interior-page .service-match {
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(36px, 7vw, 92px);
}

.interior-page .service-match-media,
.interior-page .closing-visual {
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
}

.interior-page .service-match-media {
    aspect-ratio: 4 / 3;
}

.interior-page .service-match-list,
.interior-page .service-card-grid,
.interior-page .feature-grid,
.interior-page .cards,
.interior-page .route-grid,
.interior-page .fleet-photo-grid {
    gap: 0;
    border-top: 1px solid var(--interior-line);
}

.interior-page .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(34px, 6vw, 78px);
}

.interior-page .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(28px, 5vw, 64px);
}

.interior-page .route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(22px, 4vw, 42px);
}

.interior-page .service-match-option {
    display: grid;
    grid-template-columns: minmax(98px, 0.24fr) minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--interior-line);
    border-radius: 0;
    box-shadow: none;
}

.interior-page .service-match-option strong {
    min-width: 0;
    min-height: 0;
    justify-content: start;
    padding: 0;
    color: var(--interior-accent);
    background: transparent;
    border: 0;
    border-radius: 0;
}

.interior-page :where(.service-card, .feature-grid article, .cards article, .route-grid article, .contact-details, .package-list) {
    color: var(--interior-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--interior-line);
    border-radius: 0;
    box-shadow: none;
}

.interior-page :where(.service-card, .feature-grid article, .cards article, .route-grid article) {
    min-height: 0;
    padding: 24px 0;
}

.interior-page .service-card::before {
    display: none;
}

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

.interior-page :where(.service-card h2, .feature-grid h2, .cards h2, .route-grid h2, .fleet-photo-grid h2, .contact-details h2) {
    color: var(--interior-text);
    font-size: 1.22rem;
}

.interior-page .package-list {
    gap: 12px;
    padding: 18px 0 18px 20px;
    border-top: 1px solid var(--interior-line);
}

.interior-page .package-list li::marker {
    color: var(--interior-accent);
}

.interior-page .quiet-list {
    padding: 0;
    background: transparent;
    border: 0;
}

.interior-page .quiet-list p {
    padding: 18px 0;
    border-color: var(--interior-line);
}

.interior-page .quiet-list p:first-child {
    padding-top: 0;
}

.interior-page .fleet-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 42px);
}

.interior-page .fleet-photo-grid article {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 16px;
    padding: 0 0 22px;
    color: var(--interior-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--interior-line);
    border-radius: 0;
    box-shadow: none;
}

.interior-page .fleet-photo-grid img,
.interior-page .closing-visual img,
.interior-page .service-match-media img {
    border: 0;
    border-radius: 6px;
}

.interior-page .fleet-photo-grid article div {
    padding: 0;
}

.interior-page .contact-layout {
    grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
    gap: clamp(34px, 7vw, 86px);
}

.interior-page .contact-form {
    color: var(--ink);
    background: rgba(12, 12, 13, 0.96);
    border: 1px solid rgba(241, 211, 131, 0.24);
    border-radius: 6px;
    box-shadow: none;
    padding: clamp(20px, 3vw, 28px);
}

.interior-page .contact-form label {
    color: var(--brand-bright);
}

.interior-page .contact-form input,
.interior-page .contact-form select,
.interior-page .contact-form textarea {
    color: #151515;
    background: rgba(255, 252, 242, 0.94);
    border-color: rgba(255, 255, 255, 0.62);
    border-radius: 6px;
}

.interior-page .contact-form input::placeholder,
.interior-page .contact-form textarea::placeholder {
    color: rgba(21, 21, 21, 0.58);
}

.interior-page .contact-details {
    align-self: start;
    padding: 0;
    border-bottom: 0;
}

.interior-page .contact-details a {
    color: var(--interior-text);
    font-weight: 800;
}

.interior-page .contact-details-action {
    border-top-color: var(--interior-line);
}

.interior-page .policy-content {
    max-width: 860px;
}

.interior-page .policy-content h2 {
    margin-top: 18px;
    color: var(--interior-text) !important;
}

.interior-page .policy-content p,
.interior-page .policy-content a,
.interior-page .policy-content .policy-updated {
    color: var(--interior-muted) !important;
}

.interior-page .policy-content a {
    color: var(--interior-accent) !important;
    font-weight: 800;
}

.interior-page .button.primary,
.interior-page .button.primary:is(:hover, :focus-visible) {
    color: #111111;
    background: #d8ad42;
    border-color: transparent;
    box-shadow: none;
}

.interior-page .button.secondary {
    color: var(--interior-text, var(--ink));
    background: transparent;
    border-color: var(--interior-line, rgba(255, 246, 223, 0.28));
}

@media (max-width: 980px) {
    .interior-page .service-match,
    .interior-page .service-heading,
    .interior-page .split-section,
    .interior-page .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

    .interior-page .page-hero::before {
        background: #070707;
    }

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

    .interior-page .page-hero h1 {
        max-width: 360px;
        font-size: clamp(2.45rem, 12vw, 3.25rem);
        line-height: 0.96;
    }

    .interior-page .page-hero .lead {
        max-width: 360px;
        font-size: 1rem;
    }

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

    .interior-page .section-heading,
    .interior-page .service-heading {
        gap: 14px;
        margin-bottom: 26px;
    }

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

    .interior-page .service-match-cta,
    .interior-page .button-row,
    .interior-page .button-row .button {
        width: 100%;
        max-width: none;
    }

    .interior-page .contact-form {
        padding: 18px;
    }

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

/* Final homepage hero form treatment. */
.home-v2 .home-v2-form {
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

.home-v2 .home-v2-form .booking-step-panel,
.home-v2 .home-v2-form .booking-fieldset,
.home-v2 .home-v2-form .booking-field-grid {
    gap: 10px !important;
}

@media (min-width: 761px) {
    .home-v2 .home-v2-form .booking-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .home-v2 .home-v2-form .booking-field-grid > label,
    .home-v2 .home-v2-form .booking-field-grid > .choice-field,
    .home-v2 .home-v2-form .booking-field-grid .field-compact,
    .home-v2 .home-v2-form .booking-field-grid .field-time {
        justify-self: stretch;
        width: 100%;
    }

    .home-v2 .home-v2-form .vehicle-fit-field {
        grid-column: auto;
    }
}

.home-v2 .home-v2-form .booking-progress {
    display: grid;
    gap: 7px;
    margin-bottom: 10px;
}

.home-v2 .home-v2-form .booking-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 246, 223, 0.78);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-v2 .home-v2-form .booking-progress-meta span:last-child {
    color: var(--brand-bright);
}

.home-v2 .home-v2-form .booking-progress-track {
    position: relative;
    height: 5px;
    overflow: hidden;
    background: rgba(255, 246, 223, 0.16);
    border-radius: 999px;
}

.home-v2 .home-v2-form .booking-progress-track span {
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #fff3c2 0%, var(--brand-bright) 48%, #d9ae45 100%);
    border-radius: inherit;
    transition: width 220ms ease;
}

.home-v2 .home-v2-form .ride-location-card {
    position: relative;
    z-index: 120;
    gap: 8px !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.home-v2 .home-v2-form .location-status {
    display: none !important;
}

.home-v2 .home-v2-form .location-suggestions {
    position: absolute !important;
    left: 0;
    right: 0;
    z-index: 150;
    max-height: min(330px, 52vh) !important;
    margin: 0 !important;
    overflow-y: auto;
    background: rgba(12, 12, 13, 0.98) !important;
    border: 1px solid rgba(241, 211, 131, 0.28) !important;
    border-radius: 6px !important;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.34) !important;
}

.home-v2 .home-v2-form .ride-location-card[data-active-target="pickup"] .location-suggestions {
    top: 62px;
}

.home-v2 .home-v2-form .ride-location-card[data-active-target="dropoff"] .location-suggestions {
    top: 126px;
}

.home-v2 .home-v2-form .location-suggestion {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 10px 12px;
    color: var(--ink);
    font-size: 0.86rem;
    line-height: 1.25;
}

.home-v2 .home-v2-form .location-suggestion small {
    display: block;
    color: rgba(255, 246, 223, 0.64);
}

.home-v2 .home-v2-form .location-suggestion-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
}

.home-v2 .home-v2-form .location-suggestion-icon::before,
.home-v2 .home-v2-form .location-suggestion-icon::after {
    content: "";
    position: absolute;
}

.home-v2 .home-v2-form .location-suggestion-icon.is-current::before {
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.home-v2 .home-v2-form .location-suggestion-icon.is-current::after {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 999px;
    opacity: 0.42;
}

.home-v2 .home-v2-form .location-suggestion-icon.is-place::before {
    width: 9px;
    height: 9px;
    background: currentColor;
    border-radius: 999px;
}

.home-v2 .home-v2-form .booking-field-grid > label,
.home-v2 .home-v2-form .booking-field-grid > .choice-field,
.home-v2 .home-v2-form .ride-location-row {
    color: #151515 !important;
    background: rgba(255, 252, 242, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.62) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2) !important;
}

.home-v2 .home-v2-form .ride-location-field {
    position: relative;
    display: block !important;
    align-self: center !important;
    gap: 0 !important;
    width: 100%;
    height: 38px !important;
    min-height: 38px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.home-v2 .home-v2-form .ride-location-field input[type="hidden"] {
    display: none !important;
    width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home-v2 .home-v2-form .ride-location-field input[type="text"] {
    position: absolute;
    inset: 0;
    display: block !important;
    height: 38px !important;
    min-height: 38px !important;
    line-height: 38px !important;
}

.home-v2 .home-v2-form .ride-location-card::before {
    top: 28px !important;
    bottom: 28px !important;
    left: 20px !important;
    width: 1px !important;
    background: rgba(107, 79, 19, 0.34) !important;
    transform: translateX(-0.5px);
}

.home-v2 .home-v2-form .ride-location-row {
    box-sizing: border-box;
    align-items: center;
    height: 56px !important;
    min-height: 56px !important;
    padding: 8px 10px !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
}

.home-v2 .home-v2-form .ride-location-row.has-current-location {
    grid-template-columns: 20px minmax(0, 1fr) 40px !important;
}

.home-v2 .home-v2-form .ride-location-marker {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 18px !important;
    height: 18px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.home-v2 .home-v2-form .ride-location-marker::before,
.home-v2 .home-v2-form .ride-location-marker::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.home-v2 .home-v2-form .pickup-marker::before {
    width: 14px;
    height: 14px;
    background: #fff9e8;
    border: 2px solid #8f681a;
    border-radius: 999px;
}

.home-v2 .home-v2-form .pickup-marker::after {
    width: 4px;
    height: 4px;
    background: #151515;
    border-radius: 999px;
}

.home-v2 .home-v2-form .dropoff-marker::before {
    width: 13px;
    height: 13px;
    background: #fff9e8;
    border: 2px solid #8f681a;
    border-radius: 50% 50% 50% 2px;
    transform: rotate(45deg);
}

.home-v2 .home-v2-form .dropoff-marker::after {
    width: 4px;
    height: 4px;
    background: #151515;
    border-radius: 999px;
    transform: translateY(-1px);
}

.home-v2 .home-v2-form .location-current-button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    min-height: 40px;
    color: #17140d !important;
    background: #d8ad42 !important;
    border-color: rgba(107, 79, 19, 0.24) !important;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 246, 223, 0.34);
}

.home-v2 .home-v2-form .location-current-button svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
    shape-rendering: geometricPrecision;
}

.home-v2 .home-v2-form .location-current-button:hover {
    background: #e0b64f !important;
}

.home-v2 .home-v2-form .choice-field {
    position: relative;
    z-index: 20;
    min-width: 0;
    border-radius: 8px;
}

.home-v2 .home-v2-form .choice-field.is-open {
    z-index: 140;
}

.home-v2 .home-v2-form .choice-picker-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 38px;
    padding: 0;
    color: rgba(21, 21, 21, 0.62);
    background: transparent;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.home-v2 .home-v2-form .choice-picker-toggle.has-value {
    color: #151515;
}

.home-v2 .home-v2-form .choice-picker-chevron {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.72;
}

.home-v2 .home-v2-form .choice-field.is-open .choice-picker-chevron {
    transform: rotate(225deg) translateY(-1px);
}

.home-v2 .home-v2-form .choice-picker-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 150;
    display: grid;
    gap: 0;
    max-height: min(330px, 52vh);
    overflow-y: auto;
    background: rgba(12, 12, 13, 0.98);
    border: 1px solid rgba(241, 211, 131, 0.28);
    border-radius: 6px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.34);
}

.home-v2 .home-v2-form .choice-picker-list[hidden] {
    display: none;
}

.home-v2 .home-v2-form .choice-picker-option {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 58px;
    width: 100%;
    padding: 10px 12px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 246, 223, 0.12);
    border-radius: 0;
    font: inherit;
    font-size: 0.86rem;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.home-v2 .home-v2-form .choice-picker-option:last-child {
    border-bottom: 0;
}

.home-v2 .home-v2-form .choice-picker-option:hover,
.home-v2 .home-v2-form .choice-picker-option:focus-visible,
.home-v2 .home-v2-form .choice-picker-option[aria-selected="true"] {
    background: rgba(241, 211, 131, 0.12);
    outline: 0;
}

.home-v2 .home-v2-form .choice-picker-option strong,
.home-v2 .home-v2-form .choice-picker-option small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.home-v2 .home-v2-form .choice-picker-option strong {
    color: #ffffff;
    font-weight: 900;
}

.home-v2 .home-v2-form .choice-picker-option small {
    margin-top: 2px;
    color: rgba(255, 246, 223, 0.64);
    font-size: 0.78rem;
    font-weight: 600;
}

.home-v2 .home-v2-form .choice-picker-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--brand-bright);
    background: rgba(241, 211, 131, 0.1);
    border-radius: 999px;
}

.home-v2 .home-v2-form .choice-picker-icon::before,
.home-v2 .home-v2-form .choice-picker-icon::after {
    content: "";
    position: absolute;
}

.home-v2 .home-v2-form .choice-picker-icon.is-time::before {
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.home-v2 .home-v2-form .choice-picker-icon.is-time::after {
    width: 5px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(1px, -1px);
}

.home-v2 .home-v2-form .choice-picker-icon.is-passenger::before {
    top: 7px;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 999px;
}

.home-v2 .home-v2-form .choice-picker-icon.is-passenger::after {
    bottom: 7px;
    width: 15px;
    height: 7px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
}

.home-v2 .home-v2-form .choice-field.field-invalid .choice-picker-toggle {
    outline: 2px solid rgba(255, 137, 137, 0.9);
    outline-offset: 2px;
}

.home-v2 .home-v2-form .booking-step-actions {
    position: relative;
    z-index: 10;
}

.home-v2 .home-v2-form .ride-location-field input {
    min-height: 38px;
    padding: 0 !important;
    font-size: 1rem;
    font-weight: 800 !important;
    line-height: 1.2;
}

.home-v2 .home-v2-form .booking-field-grid > label,
.home-v2 .home-v2-form .booking-field-grid > .choice-field {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 8px 10px !important;
}

.home-v2 .home-v2-form .booking-fieldset legend {
    display: none;
}

.home-v2 .home-v2-form .booking-field-grid > label {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 8px 10px !important;
}

.home-v2 .home-v2-form .booking-field-grid > label:has(textarea) {
    align-items: flex-start;
    min-height: 116px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.home-v2 .home-v2-form .field-label,
.home-v2 .home-v2-form .field-required,
.home-v2 .home-v2-form .field-optional {
    display: none !important;
}

.home-v2 .home-v2-form :is(input, textarea) {
    width: 100%;
    min-height: 38px;
    padding: 0 !important;
    font-size: 1rem;
    font-weight: 800 !important;
    line-height: 1.2;
}

.home-v2 .home-v2-form textarea {
    min-height: 94px;
    padding-top: 4px !important;
    line-height: 1.35;
    resize: vertical;
}

.home-v2 .home-v2-form .booking-step-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.home-v2 .home-v2-form .booking-step-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin-top: 0;
}

.home-v2 .home-v2-form .booking-step-actions .button.secondary {
    min-height: 44px;
}

.home-v2 .home-v2-form .booking-field-grid > label > :is(input, select) {
    min-height: 38px;
    padding: 0 !important;
    font-size: 1rem;
    font-weight: 800 !important;
    line-height: 1.2;
}

.home-v2 .home-v2-form select:has(option[value=""]:checked) {
    color: rgba(21, 21, 21, 0.62) !important;
}

.home-v2 .home-v2-form select option {
    color: #151515;
    background: #fffcf2;
}

.home-v2 .home-v2-form .vehicle-fit-hint {
    display: none !important;
}

.home-v2 .home-v2-form :is(.field-label, .field-required, .field-optional) {
    color: #6b4f13 !important;
}

.home-v2 .home-v2-form :is(input, select, textarea) {
    color: #151515 !important;
    background: transparent !important;
}

.home-v2 .home-v2-form :is(input, textarea)::placeholder {
    color: rgba(21, 21, 21, 0.62) !important;
}

.home-v2 .home-v2-form :is(.vehicle-fit-hint, .location-status) {
    color: rgba(21, 21, 21, 0.68) !important;
}

/* Authoritative homepage post-hero system.
   This protects section colors and removes repeated card-heavy surfaces. */
.home-page .hero ~ .section {
    --home-section-bg: #09090a;
    --home-section-text: #fff6df;
    --home-section-muted: rgba(255, 246, 223, 0.82);
    --home-section-line: rgba(255, 246, 223, 0.16);
    --home-section-accent: var(--brand-bright);
    --home-section-marker-line: rgba(216, 173, 66, 0.42);
    color: var(--home-section-text) !important;
    background: var(--home-section-bg) !important;
    border-top: 1px solid var(--home-section-line);
}

.home-page .hero ~ .section::before,
.home-page .hero ~ .section::after {
    display: none !important;
}

.home-page .hero ~ .section:is(.home-services, .why-direct, .closing-cta) {
    --home-section-bg: #f4eee2;
    --home-section-text: #111111;
    --home-section-muted: #3f382f;
    --home-section-line: rgba(17, 17, 17, 0.16);
    --home-section-accent: #76551b;
    --home-section-marker-line: rgba(118, 85, 27, 0.34);
}

.home-page .hero ~ .section.route-panel {
    --home-section-bg: #ece0cb;
    --home-section-text: #111111;
    --home-section-muted: #3f382f;
    --home-section-line: rgba(17, 17, 17, 0.18);
    --home-section-accent: #76551b;
    --home-section-marker-line: rgba(118, 85, 27, 0.34);
}

.home-page .hero ~ .section.process-panel {
    --home-section-bg: #111111;
}

.home-page .hero ~ .section.vegas-events {
    --home-section-bg: #0d0d0e;
}

.home-page .hero ~ .section :where(h1, h2, h3, h4, p, li, span, strong, small, a) {
    color: inherit;
}

.home-page .hero ~ .section :where(.section-heading p, .service-heading p, .service-match-heading p, .service-match-option span, .service-card p, .feature-grid p, .route-grid p, .quiet-list p, .fleet-photo-grid p, .event-card p, .events-empty p, .package-list li, .closing-copy p:not(.eyebrow)) {
    color: var(--home-section-muted) !important;
}

.home-page .hero ~ .section :where(.eyebrow, .service-tag, .route-grid span, .event-card-meta span, .fleet-showcase-visual figcaption span) {
    color: var(--home-section-accent) !important;
}

.home-page .hero ~ .section .heading-icon {
    display: none !important;
}

.home-page .hero ~ .section .button.primary,
.home-page .hero ~ .section .button.primary:is(:hover, :focus-visible) {
    color: #111111 !important;
    background: #d8ad42 !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.home-page .hero ~ .section .button.secondary {
    color: var(--home-section-text) !important;
    background: transparent !important;
    border-color: var(--home-section-line) !important;
}

.home-page .hero ~ .section :where(.service-card, .feature-grid article, .route-grid article, .fleet-photo-grid article, .event-card, .events-empty, .quiet-list, .package-list, .contact-details) {
    color: var(--home-section-text) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.home-page .hero ~ .section .container {
    max-width: 1180px;
}

.home-page .hero ~ .section {
    padding: clamp(72px, 8vw, 108px) 0;
}

.home-page .hero ~ .section .section-heading,
.home-page .hero ~ .section .service-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.52fr);
    gap: clamp(20px, 4vw, 56px);
    align-items: end;
    margin: 0 0 clamp(28px, 4vw, 46px);
    text-align: left;
}

.home-page .hero ~ .section .section-heading h2,
.home-page .hero ~ .section .split-section h2,
.home-page .hero ~ .section .service-match-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--home-section-text) !important;
    font-size: clamp(2rem, 4.4vw, 3.75rem);
    line-height: 0.98;
}

.home-page .hero ~ .section .section-heading p,
.home-page .hero ~ .section .service-heading p,
.home-page .hero ~ .section .service-match-heading p,
.home-page .hero ~ .section .closing-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.68;
}

.home-page .service-match {
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(36px, 7vw, 92px);
    align-items: center;
}

.home-page .service-match-media,
.home-page .fleet-showcase-visual,
.home-page .closing-visual {
    overflow: hidden;
    background: transparent;
    border: 0 !important;
    border-radius: 6px;
    box-shadow: none !important;
}

.home-page .service-match-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
}

.home-page .service-match-list,
.home-page .home-services .service-card-grid,
.home-page .process-panel .feature-grid,
.home-page .route-panel .route-grid,
.home-page .fleet-showcase .fleet-photo-grid {
    gap: 0;
    border-top: 1px solid var(--home-section-line);
}

.home-page .service-match-option {
    display: grid;
    grid-template-columns: minmax(98px, 0.24fr) minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid var(--home-section-line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.home-page .service-match-option strong {
    display: block;
    min-width: 0;
    padding: 0;
    color: var(--home-section-accent) !important;
    background: transparent !important;
    border: 0 !important;
}

.home-page .events-empty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--home-section-line) !important;
}

.home-page .event-carousel-top {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--home-section-line);
}

.home-page .event-card-grid {
    gap: 24px;
}

.home-page .event-card {
    flex-basis: clamp(260px, 28vw, 340px);
}

.home-page .event-card img,
.home-page .fleet-showcase .fleet-photo-grid img {
    border: 0 !important;
    border-radius: 5px;
}

.home-page .event-card-body {
    padding: 14px 0 0;
}

.home-page .home-services .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(34px, 6vw, 78px);
}

.home-page .home-services .service-card,
.home-page .process-panel .feature-grid article,
.home-page .route-panel .route-grid article {
    min-height: 0;
    padding: 26px 0;
    border-bottom: 1px solid var(--home-section-line) !important;
}

.home-page .home-services .service-card::before,
.home-page .route-panel .route-grid article::before {
    display: none !important;
}

.home-page .home-services .service-card h2,
.home-page .process-panel .feature-grid article h2,
.home-page .route-panel .route-grid article h2 {
    color: var(--home-section-text) !important;
    font-size: 1.22rem;
}

.home-page .fleet-showcase-layout {
    grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
    gap: clamp(36px, 6vw, 82px);
}

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

.home-page .fleet-showcase .fleet-photo-grid article {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--home-section-line) !important;
}

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

.home-page .fleet-showcase .fleet-photo-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.home-page .process-panel .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 5vw, 64px);
}

.home-page .process-panel .feature-grid article {
    padding: 24px 0;
    border-bottom: 1px solid var(--home-section-line) !important;
}

.home-page .process-panel .process-step-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--home-section-accent) !important;
    font-size: var(--text-xs);
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-page .hero ~ :is(.process-panel, .why-direct, .route-panel, .difference-panel, .closing-cta) .eyebrow {
    width: fit-content;
    margin-bottom: 14px;
    padding-bottom: 10px;
    color: var(--home-section-accent) !important;
    border-bottom: 1px solid var(--home-section-marker-line);
}

.home-page .hero ~ :is(.process-panel, .route-panel) .section-heading .eyebrow {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-page .why-direct .split-section,
.home-page .difference-panel .split-section {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: clamp(32px, 7vw, 96px);
}

.home-page .why-direct .quiet-list p,
.home-page .difference-panel .quiet-list p {
    position: relative;
    border-bottom: 1px solid var(--home-section-line) !important;
}

.home-page .why-direct .quiet-list p {
    padding: 18px 0 18px 34px;
}

.home-page .hero ~ .why-direct .quiet-list p {
    padding: 18px 0 18px 34px !important;
}

.home-page .difference-panel .quiet-list p {
    padding: 18px 0;
}

.home-page .why-direct .quiet-list p::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(118, 85, 27, 0.5);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, #76551b 0 3px, transparent 4px),
        rgba(216, 173, 66, 0.16);
}

.home-page .why-direct .quiet-list p:first-child,
.home-page .difference-panel .quiet-list p:first-child {
    padding-top: 0;
}

.home-page .hero ~ .why-direct .quiet-list p:first-child {
    padding-top: 18px !important;
}

.home-page .route-panel .route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 4vw, 42px);
}

.home-page .route-panel .route-grid article {
    padding-top: 24px;
    border-bottom: 0 !important;
}

.home-page .route-panel .route-grid span {
    display: block;
    margin-bottom: 14px;
}

.home-page .closing-cta .split-section {
    grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
    gap: clamp(34px, 7vw, 90px);
}

.home-page .closing-cta .package-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-left: 20px;
}

@media (max-width: 980px) {
    .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 {
        grid-template-columns: 1fr;
    }

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

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

    .home-page .hero ~ .section .section-heading,
    .home-page .hero ~ .section .service-heading {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 26px;
    }

    .home-page .service-match-option,
    .home-page .events-empty {
        grid-template-columns: 1fr;
    }

    .home-page .service-match-option {
        gap: 6px;
        padding: 16px 0;
    }

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

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

.interior-page .services-catalog .service-card,
.interior-page .fleet-section .cards article,
.interior-page .process-panel .feature-grid article,
.interior-page .route-panel .route-grid article {
    padding: clamp(18px, 2vw, 24px) !important;
    color: #15120c !important;
    background: rgba(255, 250, 240, 0.92) !important;
    border: 1px solid rgba(21, 18, 12, 0.12) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

/* Final light cards for interior service groups. */
.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card h2, .feature-grid h2, .cards h2, .route-grid h2) {
    color: #15120c !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card p, .feature-grid p, .cards p, .route-grid p) {
    color: #4a4136 !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-tag, .route-grid span) {
    color: #76551b !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card-grid, .feature-grid, .cards, .route-grid) {
    gap: 14px !important;
    border-top: 0 !important;
}

.interior-page .services-catalog .service-card-featured {
    background: rgba(255, 246, 226, 0.98) !important;
    border-color: rgba(118, 85, 27, 0.18) !important;
}

.interior-page .services-catalog .service-card h2,
.interior-page .fleet-section .cards article h2,
.interior-page .process-panel .feature-grid article h2,
.interior-page .route-panel .route-grid article h2 {
    color: #15120c !important;
}

.interior-page .services-catalog .service-card p,
.interior-page .fleet-section .cards article p,
.interior-page .process-panel .feature-grid article p,
.interior-page .route-panel .route-grid article p {
    color: #4a4136 !important;
}

.interior-page .services-catalog .service-card .service-tag,
.interior-page .route-panel .route-grid article span {
    color: #76551b !important;
}

/* Mobile homepage tightening and dropdown overlay fix. */
@media (max-width: 760px) {
    .site-header {
        min-height: 80px !important;
        padding-top: 9px !important;
        padding-bottom: 9px !important;
        z-index: 1300 !important;
    }

    .site-header .brand-logo {
        width: 146px !important;
        height: 62px !important;
        object-fit: contain;
        object-position: left center;
    }

    .home-v2 .hero {
        min-height: 100vh !important;
        min-height: 100svh !important;
        padding: 94px 0 28px !important;
        overflow: visible !important;
        z-index: 30;
    }

    .home-v2 .hero-inner {
        min-height: calc(100vh - 122px) !important;
        min-height: calc(100svh - 122px) !important;
        align-content: center !important;
        align-items: center !important;
        justify-items: center !important;
        gap: 10px !important;
    }

    .home-v2 .home-v2-copy {
        width: min(100%, 360px) !important;
        justify-self: center !important;
        gap: 9px !important;
    }

    .home-v2 .home-v2-copy h1 {
        max-width: 330px !important;
        font-size: clamp(2.25rem, 10.4vw, 3.05rem) !important;
        line-height: 0.9 !important;
    }

    .home-v2 .home-v2-copy .lead {
        max-width: 310px !important;
        font-size: 0.9rem !important;
        line-height: 1.42 !important;
    }

    .home-v2 .home-v2-form {
        position: relative;
        z-index: 60;
        width: min(100%, 360px) !important;
        justify-self: center !important;
        margin-inline: auto !important;
        overflow: visible !important;
    }

    .home-v2 .home-v2-form .booking-step-panel,
    .home-v2 .home-v2-form .booking-fieldset,
    .home-v2 .home-v2-form .booking-field-grid {
        overflow: visible !important;
    }

    .home-v2 .home-v2-form .booking-progress {
        gap: 5px !important;
        margin-bottom: 8px !important;
    }

    .home-v2 .home-v2-form .booking-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        align-items: stretch !important;
        gap: 8px !important;
    }

    .home-v2 .home-v2-form .booking-field-grid .field-span-full {
        grid-column: 1 / -1 !important;
    }

    .home-v2 .home-v2-form .booking-field-grid .vehicle-fit-field {
        grid-column: auto !important;
    }

    .home-v2 .home-v2-form .ride-location-row,
    .home-v2 .home-v2-form .booking-field-grid > label,
    .home-v2 .home-v2-form .booking-field-grid > .choice-field {
        height: 50px !important;
        min-height: 50px !important;
        padding: 7px 9px !important;
    }

    .home-v2 .home-v2-form .booking-field-grid > label:has(textarea) {
        height: auto !important;
        min-height: 108px !important;
    }

    .home-v2 .home-v2-form .ride-location-card::before {
        top: 25px !important;
        bottom: 25px !important;
        left: 19px !important;
    }

    .home-v2 .home-v2-form .ride-location-row.has-current-location {
        grid-template-columns: 20px minmax(0, 1fr) 36px !important;
    }

    .home-v2 .home-v2-form .ride-location-field input,
    .home-v2 .home-v2-form .booking-field-grid > label > :is(input, select),
    .home-v2 .home-v2-form .choice-picker-toggle {
        min-height: 34px !important;
        font-size: 0.94rem !important;
    }

    .home-v2 .home-v2-form .ride-location-field {
        height: 34px !important;
        min-height: 34px !important;
    }

    .home-v2 .home-v2-form .ride-location-field input[type="text"] {
        height: 34px !important;
        min-height: 34px !important;
        line-height: 34px !important;
    }

    .home-v2 .home-v2-form .location-current-button {
        width: 36px !important;
        height: 36px !important;
        min-height: 36px !important;
    }

    .home-v2 .home-v2-form .location-current-button svg {
        width: 16px !important;
        height: 16px !important;
    }

    .home-v2 .home-v2-form .booking-step-actions .button {
        min-height: 48px !important;
    }

    .home-v2 .home-v2-form .choice-field.is-open,
    .home-v2 .home-v2-form .ride-location-card {
        z-index: 1000 !important;
    }

    .home-v2 .home-v2-form .choice-picker-list,
    .home-v2 .home-v2-form .location-suggestions {
        z-index: 1100 !important;
        max-height: min(280px, 46vh) !important;
    }

    .home-v2 .home-v2-form .choice-picker-list {
        top: auto !important;
        bottom: calc(100% + 6px) !important;
    }

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

/* Subtle interior card icons. */
.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card, .feature-grid article, .cards article, .route-grid article) h2.icon-heading {
    align-items: center;
    gap: 10px;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card, .feature-grid article, .cards article, .route-grid article) .heading-icon {
    display: inline-grid !important;
    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;
    margin-top: 0 !important;
    color: rgba(118, 85, 27, 0.82) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.interior-page :where(.services-catalog, .fleet-section, .process-panel, .route-panel) :where(.service-card, .feature-grid article, .cards article, .route-grid article) .heading-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.9;
}

.interior-page .route-panel .route-grid article h2 .heading-icon {
    display: inline-grid !important;
    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 !important;
    color: rgba(118, 85, 27, 0.82) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.hero .lead,
.page-hero .lead {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero .lead .heading-icon,
.page-hero .lead .heading-icon {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    margin-top: 0.12em !important;
    color: rgba(241, 211, 131, 0.92) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.hero .lead .heading-icon svg,
.page-hero .lead .heading-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.9;
}

.page-hero .lead .heading-icon {
    color: rgba(241, 211, 131, 0.88) !important;
}

.hero .lead > span:not(.heading-icon),
.page-hero .lead > span:not(.heading-icon) {
    min-width: 0;
}

.home-page .hero ~ .section :where(.service-card, .feature-grid article, .route-grid article) h2.icon-heading {
    align-items: center;
    gap: 10px;
}

.home-page .hero ~ .section :where(.service-card, .feature-grid article, .route-grid article) h2 .heading-icon {
    display: inline-grid !important;
    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;
    margin-top: 0 !important;
    color: rgba(241, 211, 131, 0.92) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.home-page .hero ~ .section :where(.service-card, .feature-grid article, .route-grid article) h2 .heading-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.9;
}

.home-page .hero ~ .section:is(.section-cream, .section-warm) :where(.service-card, .feature-grid article, .route-grid article) h2 .heading-icon {
    color: rgba(118, 85, 27, 0.88) !important;
    background: transparent !important;
    border: 0 !important;
}
