@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&family=Manrope:wght@500;600;700&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

:root {
    --ink: #0b0d0f;
    --ink-soft: #171a1e;
    --text: #151719;
    --muted: #6f7378;
    --gold: #c79b55;
    --gold-light: #e5c78f;
    --cream: #f7f5f0;
    --white: #fff;
    --line: rgba(18, 20, 22, .11);
    --green: #3fc878;
    --shadow-sm: 0 16px 40px rgba(8, 10, 12, .08);
    --shadow-lg: 0 35px 90px rgba(8, 10, 12, .16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-container {
    width: min(calc(100% - 48px), 1360px);
    margin-inline: auto;
}

.section-space {
    padding: 125px 0;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(10, 12, 14, .72);
    backdrop-filter: blur(18px);
    transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    height: 68px;
    background: rgba(10, 12, 14, .94);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.brand {
    position: relative;
    width: 158px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: brightness(0) invert(1);
}

.brand-glow {
    position: absolute;
    inset: -18px -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 155, 85, .27), transparent 65%);
    animation: logoGlow 2.8s ease-in-out infinite;
}

.brand-live-text {
    position: absolute;
    z-index: 3;
    right: -48px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.brand-live-text i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(63, 200, 120, .55);
    animation: liveRing 1.8s infinite;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width .25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-phone {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 11px;
}

.header-book-btn {
    min-width: 132px;
    height: 40px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease;
}

.header-book-btn:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-button span {
    width: 17px;
    height: 1px;
    background: #fff;
    transition: .25s ease;
}

.hero-section {
    position: relative;
    min-height: 895px;
    padding-top: 76px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(circle at 75% 35%, #2b3035 0, #171b1f 28%, #0b0d0f 65%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .12;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.hero-grid {
    min-height: 760px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding-bottom: 55px;
}

.hero-eyebrow {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.eyebrow-line {
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    max-width: 660px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(60px, 5.9vw, 96px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: -5.7px;
}

.hero-title em {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: .61em;
    font-weight: 500;
    letter-spacing: -2px;
}

.hero-description {
    max-width: 520px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.primary-hero-btn {
    min-width: 230px;
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 13px 35px rgba(199, 155, 85, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.primary-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(199, 155, 85, .34);
}

.text-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.text-hero-btn span:last-child {
    color: var(--gold-light);
    transition: transform .2s ease;
}

.text-hero-btn:hover span:last-child {
    transform: translateX(5px);
}

.hero-trust {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.hero-trust div {
    display: grid;
    gap: 3px;
}

.hero-trust strong {
    font-size: 17px;
}

.hero-trust span {
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.vehicle-photo-wrap {
    --mouse-x: 0px;
    --mouse-y: 0px;
    position: relative;
    width: min(100%, 650px);
    transform: translate(var(--mouse-x), var(--mouse-y));
    transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.vehicle-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px 90px 4px 90px;
    box-shadow: var(--shadow-lg);
}

.vehicle-frame::before {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: inherit;
    pointer-events: none;
}

.vehicle-photo {
    width: 100%;
    height: 590px;
    object-fit: cover;
    filter: saturate(.75) contrast(1.08);
    transform: scale(1.03);
    transition: transform 1.1s cubic-bezier(.2, .8, .2, 1);
}

.vehicle-frame:hover .vehicle-photo {
    transform: scale(1.08);
}

.vehicle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 8, 10, .72));
}

.vehicle-tag {
    position: absolute;
    left: 30px;
    bottom: 28px;
    color: rgba(255, 255, 255, .75);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.live-vehicle-card {
    position: absolute;
    z-index: 5;
    left: -68px;
    bottom: 55px;
    width: 310px;
    padding: 12px;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(16, 19, 22, .86);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
    animation: cardFloat 4s ease-in-out infinite;
}

.live-car-picture {
    position: relative;
    height: 82px;
    overflow: hidden;
    border-radius: 12px;
}

.live-car-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.8) saturate(.7);
}

.live-car-sweep {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .22) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: imageSweep 3.6s ease-in-out infinite;
}

.live-car-content {
    min-width: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.status-label {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(63, 200, 120, .65);
    border-radius: 50%;
    animation: liveRing 1.8s infinite;
}

.live-car-content strong {
    color: #fff;
    font-size: 13px;
}

.live-car-content small {
    margin-top: 5px;
    overflow: hidden;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.route-card {
    position: absolute;
    z-index: 4;
    top: 55px;
    right: -35px;
    width: 215px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
}

.route-card>span {
    color: rgba(255, 255, 255, .4);
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.route-card strong {
    display: block;
    margin-top: 8px;
    font-size: 12px;
}

.route-line {
    position: relative;
    height: 2px;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 3px;
    background: rgba(255, 255, 255, .12);
}

.route-line i {
    position: absolute;
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: var(--gold);
    animation: routeMove 2.4s ease-in-out infinite;
}

.ambient-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.shape-one {
    width: 600px;
    height: 600px;
    top: 70px;
    right: -170px;
    border: 1px solid rgba(199, 155, 85, .12);
    animation: slowRotate 22s linear infinite;
}

.shape-two {
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: 30px;
    background: radial-gradient(circle, rgba(199, 155, 85, .12), transparent 70%);
    animation: ambientFloat 8s ease-in-out infinite alternate;
}

.ambient-lines {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 170px;
    width: 200px;
    display: grid;
    gap: 14px;
    opacity: .22;
}

.ambient-lines span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    animation: lineSweep 4s ease-in-out infinite;
}

.ambient-lines span:nth-child(2) {
    width: 72%;
    animation-delay: .4s;
}

.ambient-lines span:nth-child(3) {
    width: 45%;
    animation-delay: .8s;
}

.booking-position {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: -53px;
    transform: translateX(-50%);
}

.booking-bar {
    min-height: 106px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr .9fr auto;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 28px 75px rgba(6, 8, 10, .18);
}

.booking-field {
    min-width: 0;
    padding: 0 20px;
    border-right: 1px solid var(--line);
}

.booking-field:first-child {
    padding-left: 4px;
}

.booking-field>span {
    display: block;
    margin-bottom: 9px;
    color: #999b9d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.booking-field input,
.booking-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
}

.booking-field select {
    appearance: none;
}

.quote-btn {
    min-width: 172px;
    height: 50px;
    margin-left: 22px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.quote-btn:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
}

.service-strip {
    padding: 92px 0 32px;
    background: var(--cream);
}

.service-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #777;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.service-strip-inner i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.section-heading-row {
    margin-bottom: 55px;
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: end;
    gap: 60px;
}

.section-kicker {
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.section-title {
    max-width: 850px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -3.8px;
}

.section-intro {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.car-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.car-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-sm);
}

.car-image-wrap {
    position: relative;
    height: 275px;
    overflow: hidden;
    background: #ece9e3;
}

.car-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.car-card:hover img {
    transform: scale(1.055);
}

.car-image-wrap span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.car-card-body {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.car-card h3 {
    margin-bottom: 7px;
    font-size: 20px;
}

.car-card p {
    color: var(--muted);
    font-size: 12px;
}

.car-card-body a {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    text-decoration: none;
    transition: .2s ease;
}

.car-card-body a:hover {
    background: var(--ink);
    color: #fff;
}

/* Performance strip matching the supplied reference */
.performance-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0 118px;
    color: #fff;
    background: #08090a;
    isolation: isolate;
}

.performance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.performance-glow {
    position: absolute;
    z-index: -1;
    top: -220px;
    left: 50%;
    width: 760px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 155, 85, .12), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 72px;
    align-items: start;
}

.performance-item {
    position: relative;
    min-width: 0;
}

.performance-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 8px;
    right: -36px;
    width: 1px;
    height: 86px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .13), transparent);
}

.performance-value {
    min-height: 82px;
    display: flex;
    align-items: flex-start;
    color: var(--gold-light);
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}

.performance-value strong {
    font-size: clamp(62px, 5.7vw, 92px);
    font-weight: 600;
    letter-spacing: -5px;
}

.performance-value sup {
    margin: 9px 0 0 5px;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 700;
    letter-spacing: -1px;
}

.performance-item p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
    line-height: 1.55;
}

.performance-item:hover .performance-value {
    transform: translateY(-4px);
}

.performance-value {
    transition: transform .3s ease;
}

.about {
    padding: 140px 0;
    color: #fff;
    background: var(--ink);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 100px;
}

.section-kicker.light {
    color: var(--gold-light);
}

.about h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1;
    letter-spacing: -4px;
}

.about h2 em {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.about-panel {
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
}

.about-panel p {
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.8;
}

.outline-btn {
    min-height: 48px;
    margin-top: 30px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease;
}

.outline-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.contact-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.contact-copy h2 {
    max-width: 520px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(45px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -3.8px;
}

.contact-copy>p:not(.section-kicker) {
    max-width: 450px;
    margin-top: 25px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-detail {
    margin-top: 45px;
    display: grid;
    gap: 6px;
}

.contact-detail span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-detail strong {
    font-size: 18px;
}

.contact-form {
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: 24px;
    background: var(--cream);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label>span {
    color: #8e9092;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid #d8d5cf;
    outline: 0;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 115px;
    resize: vertical;
}

.full-field {
    grid-column: 1 / -1;
}

.contact-submit {
    margin-top: 8px;
}

.faq-section {
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.faq-list details {
    border-top: 1px solid #d9d6d0;
}

.faq-list details:last-child {
    border-bottom: 1px solid #d9d6d0;
}

.faq-list summary {
    padding: 25px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    font-size: 22px;
    font-weight: 400;
    transition: transform .25s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list p {
    max-width: 680px;
    padding: 0 2px 25px;
    color: var(--muted);
    line-height: 1.75;
}

.reveal {
    opacity: 0;
    filter: blur(4px);
    transition: opacity .85s cubic-bezier(.2, .8, .2, 1), transform .85s cubic-bezier(.2, .8, .2, 1), filter .85s ease;
    will-change: opacity, transform;
}

.reveal-left {
    transform: translate3d(-55px, 0, 0);
}

.reveal-right {
    transform: translate3d(55px, 0, 0);
}

.reveal-up {
    transform: translate3d(0, 45px, 0);
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}

.delay-3 {
    transition-delay: .36s;
}

@keyframes logoGlow {

    0%,
    100% {
        opacity: .35;
        transform: scale(.92);
    }

    50% {
        opacity: .9;
        transform: scale(1.08);
    }
}

@keyframes liveRing {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 200, 120, .55);
        transform: scale(.75);
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0 8px rgba(63, 200, 120, 0);
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes imageSweep {

    0%,
    45% {
        transform: translateX(-130%);
    }

    75%,
    100% {
        transform: translateX(130%);
    }
}

@keyframes routeMove {
    0% {
        left: -45%;
    }

    100% {
        left: 100%;
    }
}

@keyframes slowRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ambientFloat {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(45px, -25px, 0);
    }
}

@keyframes lineSweep {

    0%,
    100% {
        transform: scaleX(.35);
        opacity: .25;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .header-phone {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .vehicle-photo {
        height: 535px;
    }

    .route-card {
        right: -10px;
    }

    .booking-bar {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px 0;
    }

    .quote-btn {
        grid-column: 1 / -1;
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 70px;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .brand-live-text {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 16px;
        background: rgba(10, 12, 14, .98);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-section {
        padding-top: 70px;
    }

    .hero-grid {
        padding: 85px 0 120px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-bottom: 0;
    }

    .hero-visual {
        justify-content: center;
    }

    .vehicle-photo-wrap {
        width: min(90%, 620px);
    }

    .booking-position {
        position: relative;
        left: auto;
        bottom: auto;
        padding-bottom: 35px;
        transform: none;
    }

    .booking-bar {
        grid-template-columns: 1fr 1fr;
    }

    .service-strip {
        padding-top: 45px;
    }

    .section-heading-row,
    .about-grid,
    .contact-inner,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .car-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .performance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 58px 48px;
    }

    .performance-item:nth-child(2)::after {
        display: none;
    }

    .car-image-wrap {
        height: 330px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .back-top {
        justify-self: start;
    }
}

@media (max-width: 600px) {
    .site-container {
        width: min(calc(100% - 28px), 560px);
    }

    .section-space {
        padding: 85px 0;
    }

    .header-book-btn {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .brand {
        width: 145px;
    }

    .hero-grid {
        padding-top: 65px;
        gap: 55px;
    }

    .hero-title {
        font-size: clamp(50px, 15vw, 72px);
        letter-spacing: -3.8px;
    }

    .hero-title em {
        font-size: .68em;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-hero-btn {
        width: 100%;
    }

    .text-hero-btn {
        justify-content: center;
    }

    .hero-trust {
        gap: 22px;
        justify-content: space-between;
    }

    .hero-trust strong {
        font-size: 14px;
    }

    .hero-trust span {
        font-size: 8px;
    }

    .vehicle-photo-wrap {
        width: 100%;
    }

    .vehicle-photo {
        height: 430px;
    }

    .vehicle-frame {
        border-radius: 4px 55px 4px 55px;
    }

    .live-vehicle-card {
        left: 8px;
        bottom: -35px;
        width: calc(100% - 16px);
    }

    .route-card {
        display: none;
    }

    .booking-position {
        padding-top: 70px;
    }

    .booking-bar {
        padding: 23px;
        grid-template-columns: 1fr;
    }

    .booking-field,
    .booking-field:first-child {
        padding: 0 0 17px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-strip-inner {
        flex-wrap: wrap;
        gap: 14px;
    }

    .section-heading-row {
        margin-bottom: 38px;
    }

    .section-title {
        letter-spacing: -2.6px;
    }

    .car-row {
        grid-template-columns: 1fr;
    }

    .car-image-wrap {
        height: 285px;
    }

    .performance-section {
        padding: 78px 0 82px;
    }

    .performance-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .performance-item:not(:last-child)::after {
        top: auto;
        right: auto;
        left: 0;
        bottom: -21px;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .12), transparent);
    }

    .performance-value {
        min-height: auto;
    }

    .performance-value strong {
        font-size: 68px;
    }

    .performance-item p {
        margin-top: 10px;
    }

    .about {
        padding: 90px 0;
    }

    .about h2 {
        letter-spacing: -2.8px;
    }

    .about-panel {
        padding: 28px;
    }

    .contact-form {
        padding: 24px;
        grid-template-columns: 1fr;
    }

    .full-field {
        grid-column: auto;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
    }
}



/* Standalone booking panel placed immediately after the hero */
.booking-panel-section {
    position: relative;
    z-index: 12;
    padding: 0 0 26px;
    background: linear-gradient(180deg, var(--ink) 0 52px, var(--cream) 52px 100%);
}

.booking-panel-section .booking-position {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(calc(100% - 40px), 1440px);
    transform: none;
}

.booking-panel-section .booking-bar {
    min-height: 158px;
    padding: 34px 50px;
    grid-template-columns: 1.12fr 1.12fr .95fr .95fr 230px;
    border: 1px solid rgba(20, 22, 24, .04);
    border-radius: 30px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 30px 75px rgba(21, 23, 25, .12);
    backdrop-filter: blur(20px);
}

.booking-panel-section .booking-field {
    min-height: 62px;
    padding: 3px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-panel-section .booking-field:first-child {
    padding-left: 0;
}

.booking-panel-section .booking-field>span {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 1.45px;
}

.booking-panel-section .booking-field input,
.booking-panel-section .booking-field select {
    font-size: 16px;
    font-weight: 500;
}

.booking-panel-section .booking-field input {
    color: #a4a4a4;
}

.booking-panel-section .booking-field select {
    color: #171717;
    cursor: pointer;
}

.booking-panel-section .quote-btn {
    min-width: 0;
    width: 100%;
    height: 66px;
    margin-left: 32px;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    background: var(--gold);
    color: #101112;
    font-size: 14px;
}

.booking-panel-section .quote-btn:hover {
    background: var(--ink);
    color: #fff;
}

/* Supplied Range Rover image inside the live update */
.live-car-picture {
    background: #e7dac5;
}

.live-car-picture img {
    object-position: center;
    transform: scale(1.03);
}

.live-vehicle-card:hover .live-car-picture img {
    transform: scale(1.09);
}

@media (max-width: 1180px) {
    .booking-panel-section .booking-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .booking-panel-section .booking-field:nth-child(2) {
        border-right: 0;
    }

    .booking-panel-section .quote-btn {
        grid-column: 1 / -1;
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .booking-panel-section {
        padding-top: 0;
        background: var(--cream);
    }

    .booking-panel-section .booking-position {
        width: min(calc(100% - 40px), 860px);
        padding-bottom: 0;
    }

    .booking-panel-section .booking-bar {
        margin-top: -58px;
    }
}

@media (max-width: 600px) {
    .booking-panel-section .booking-position {
        width: min(calc(100% - 28px), 560px);
    }

    .booking-panel-section .booking-bar {
        min-height: auto;
        margin-top: -30px;
        padding: 24px;
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .booking-panel-section .booking-field,
    .booking-panel-section .booking-field:first-child {
        min-height: auto;
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .booking-panel-section .booking-field:nth-child(4) {
        border-bottom: 0;
    }

    .booking-panel-section .booking-field input,
    .booking-panel-section .booking-field select {
        font-size: 14px;
    }

    .booking-panel-section .quote-btn {
        grid-column: auto;
        height: 58px;
        margin-top: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

/* Hero image visibility fix */
.vehicle-photo {
    object-fit: cover;
    object-position: center;
    background: #171a1e;
}

.vehicle-frame img,
.live-car-picture img,
.car-image-wrap img {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 901px) {
    .luxury-cars .site-container {
        width: min(calc(100% - 48px), 1500px);
    }
}

/* Premium five-column footer */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 118px 0 34px;
    color: rgba(255, 255, 255, .66);
    background: #08090a;
    border-top: 1px solid rgba(199, 155, 85, .18);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 78%;
    background: linear-gradient(180deg, var(--gold), rgba(199, 155, 85, .18));
}

.site-footer::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 78%;
    width: 14px;
    height: 14px;
    border: 5px solid rgba(199, 155, 85, .16);
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
    box-sizing: content-box;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr .78fr .92fr 1.08fr 1.22fr;
    gap: clamp(42px, 5vw, 88px);
    align-items: start;
    padding-bottom: 96px;
}

.footer-brand-column {
    max-width: 300px;
}

.footer-brand {
    width: 188px;
    display: inline-flex;
    margin-bottom: 27px;
}

.footer-brand img {
    width: 100%;
    filter: brightness(0) invert(1);
}

.footer-brand-column>p,
.footer-newsletter>p {
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
    line-height: 1.8;
}

.footer-column h3,
.footer-newsletter h3 {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-newsletter h3 {
    margin-bottom: 2px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -.3px;
    text-transform: none;
}

.footer-column nav,
.footer-contact {
    display: grid;
    gap: 18px;
}

.footer-column a,
.footer-contact p,
.footer-legal a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-legal a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-newsletter>p {
    max-width: 330px;
    margin-bottom: 22px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.newsletter-form input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .48);
}

.newsletter-form button {
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}

.newsletter-form button:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom>p {
    color: rgba(255, 255, 255, .56);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1180px) {
    .footer-main {
        grid-template-columns: 1.4fr repeat(2, .8fr) 1.15fr;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 520px;
    }
}

@media (max-width: 900px) {
    .site-footer {
        padding-top: 88px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 42px;
        padding-bottom: 70px;
    }

    .footer-brand-column,
    .footer-newsletter {
        max-width: none;
    }

    .footer-brand-column,
    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 72px 0 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-bottom: 56px;
    }

    .footer-brand-column,
    .footer-newsletter {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 18px 26px;
    }

    .newsletter-form {
        grid-template-columns: 1fr auto;
    }
}

/* =========================================
   MODERN BUSINESS TRAVEL EXPERIENCE
========================================= */
.business-travel-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 132px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(247, 245, 240, .92)),
        radial-gradient(circle at 85% 20%, rgba(199, 155, 85, .12), transparent 32%);
    isolation: isolate;
}

.business-travel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .22;
    background-image:
        linear-gradient(rgba(11, 13, 15, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 13, 15, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.business-travel-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.business-orb-one {
    width: 460px;
    height: 460px;
    top: -230px;
    right: -90px;
    border: 1px solid rgba(199, 155, 85, .18);
    animation: businessOrbRotate 24s linear infinite;
}

.business-orb-two {
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(199, 155, 85, .15), transparent 70%);
    animation: businessOrbFloat 8s ease-in-out infinite alternate;
}

.business-travel-heading {
    margin-bottom: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    align-items: end;
    gap: 80px;
}

.business-kicker {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.business-kicker span {
    width: 34px;
    height: 1px;
    background: var(--gold);
    transform-origin: left;
    animation: businessLinePulse 3s ease-in-out infinite;
}

.business-travel-heading h2 {
    max-width: 920px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(52px, 6.2vw, 92px);
    font-weight: 600;
    line-height: .99;
    letter-spacing: -5.5px;
}

.business-travel-intro {
    max-width: 470px;
    padding-bottom: 8px;
    color: #8c8f93;
    font-size: 17px;
    line-height: 1.6;
}

.business-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(15, 17, 19, .14);
    border-radius: 28px;
    background: rgba(255, 255, 255, .66);
    box-shadow: 0 32px 80px rgba(15, 17, 19, .08);
    backdrop-filter: blur(18px);
}

.business-service-card {
    --spot-x: 50%;
    --spot-y: 50%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    min-height: 350px;
    padding: 45px 38px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform .22s ease, background .35s ease, box-shadow .35s ease;
}

.business-service-card:not(:last-child) {
    border-right: 1px solid rgba(15, 17, 19, .13);
}

.business-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(280px circle at var(--spot-x) var(--spot-y), rgba(199, 155, 85, .17), transparent 66%);
    transition: opacity .3s ease;
}

.business-service-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.business-service-card:hover {
    z-index: 2;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 65px rgba(15, 17, 19, .13);
}

.business-service-card:hover::before {
    opacity: 1;
}

.business-service-card:hover::after {
    transform: scaleX(1);
}

.business-card-number {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    transform: translateZ(24px);
}

.business-card-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 82px;
    transform: translateZ(30px);
}

.business-card-content h3 {
    max-width: 260px;
    margin-bottom: 17px;
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.7px;
}

.business-card-content p {
    color: #898c90;
    font-size: 15px;
    line-height: 1.65;
}

.business-card-arrow {
    position: absolute;
    top: 35px;
    right: 34px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(15, 17, 19, .13);
    border-radius: 50%;
    opacity: 0;
    transform: translate(8px, -8px);
    transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease;
}

.business-service-card:hover .business-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: var(--ink);
    color: #fff;
}

.business-travel-cta {
    margin-top: 32px;
    padding: 24px 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.business-travel-cta p {
    color: #8a8d91;
    font-size: 14px;
}

.business-travel-cta a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.business-travel-cta a span {
    color: var(--gold);
    transition: transform .25s ease;
}

.business-travel-cta a:hover span {
    transform: translateX(6px);
}

@keyframes businessOrbRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes businessOrbFloat {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(48px, -30px, 0);
    }
}

@keyframes businessLinePulse {

    0%,
    100% {
        transform: scaleX(.45);
        opacity: .55;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .business-travel-heading {
        grid-template-columns: 1fr 360px;
        gap: 45px;
    }

    .business-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-service-card:nth-child(2) {
        border-right: 0;
    }

    .business-service-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(15, 17, 19, .13);
    }
}

@media (max-width: 900px) {
    .business-travel-section {
        padding: 105px 0 100px;
    }

    .business-travel-heading {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 52px;
    }

    .business-travel-intro {
        max-width: 620px;
    }

    .business-travel-heading h2 {
        letter-spacing: -3.8px;
    }
}

@media (max-width: 600px) {
    .business-travel-section {
        padding: 82px 0 78px;
    }

    .business-travel-heading h2 {
        font-size: clamp(43px, 13vw, 61px);
        letter-spacing: -2.8px;
    }

    .business-travel-intro {
        font-size: 15px;
    }

    .business-service-grid {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .business-service-card {
        min-height: 300px;
        padding: 34px 27px 30px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(15, 17, 19, .13);
        transform: none !important;
    }

    .business-service-card:last-child {
        border-bottom: 0;
    }

    .business-card-content {
        padding-top: 58px;
    }

    .business-card-arrow {
        opacity: 1;
        transform: none;
    }

    .business-travel-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   WHITE EDITORIAL HERO + SCROLL-DRIVEN VEHICLE PRESENTATION
   ========================================================= */
.site-header {
    border-bottom-color: rgba(14, 16, 18, .08);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 34px rgba(16, 18, 20, .04);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 15px 45px rgba(16, 18, 20, .09);
}

.brand img,
.footer-brand img {
    filter: none;
}

.brand-glow {
    background: radial-gradient(circle, rgba(199, 155, 85, .18), transparent 66%);
}

.brand-live-text {
    color: rgba(17, 19, 21, .55);
}

.main-nav a {
    color: rgba(17, 19, 21, .72);
}

.main-nav a:hover {
    color: #0b0d0f;
}

.header-phone {
    color: rgba(17, 19, 21, .58);
}

.header-book-btn {
    border-color: rgba(17, 19, 21, .18);
    color: #fff;
    background: #0b0d0f;
}

.mobile-menu-button {
    border-color: rgba(17, 19, 21, .14);
    background: #0b0d0f;
}

.hero-section {
    min-height: 900px;
    color: var(--text);
    background:
        radial-gradient(circle at 76% 34%, rgba(199, 155, 85, .10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
}

.hero-noise {
    opacity: .035;
}

.shape-one {
    border-color: rgba(199, 155, 85, .20);
}

.shape-two {
    background: radial-gradient(circle, rgba(199, 155, 85, .12), transparent 70%);
}

.hero-eyebrow {
    color: var(--gold);
}

.hero-title {
    color: #090a0b;
    font-size: clamp(68px, 6vw, 104px);
}

.hero-title em {
    color: var(--gold);
    font-size: .72em;
}

.hero-description {
    color: #7c7f83;
    font-size: 16px;
}

.primary-hero-btn {
    background: #090a0b;
    color: #fff;
    box-shadow: 0 15px 34px rgba(9, 10, 11, .15);
}

.primary-hero-btn:hover {
    background: var(--gold);
    color: #090a0b;
}

.text-hero-btn {
    color: #202225;
}

.hero-trust strong {
    color: #111315;
}

.hero-trust span {
    color: rgba(17, 19, 21, .48);
}

.hero-visual {
    perspective: 1500px;
}

.vehicle-photo-wrap {
    --scroll-y: 0px;
    --scroll-rotate: -5deg;
    --scroll-scale: .96;
    width: min(100%, 700px);
    transform:
        translate3d(var(--mouse-x), calc(var(--mouse-y) + var(--scroll-y)), 0) rotate(var(--scroll-rotate)) scale(var(--scroll-scale));
    transform-origin: 52% 55%;
    transition: transform .18s linear;
    will-change: transform;
}

.vehicle-frame {
    --image-shift: 0px;
    border-radius: 8px 78px 8px 78px;
    background: #ede8df;
    box-shadow: 0 45px 100px rgba(37, 31, 24, .20);
    transition: box-shadow .55s ease, border-radius .55s ease;
}

.vehicle-frame::before {
    border-color: rgba(255, 255, 255, .72);
}

.vehicle-photo {
    height: 620px;
    object-position: center;
    filter: saturate(.88) contrast(1.04);
    transform: translate3d(0, var(--image-shift), 0) scale(1.08);
    transition: transform .2s linear, filter .55s ease;
    will-change: transform;
}

.vehicle-frame:hover {
    border-radius: 8px 48px 8px 48px;
    box-shadow: 0 52px 120px rgba(37, 31, 24, .27);
}

.vehicle-frame:hover .vehicle-photo {
    transform: translate3d(0, var(--image-shift), 0) scale(1.125);
    filter: saturate(1) contrast(1.06);
}

.vehicle-overlay {
    background: linear-gradient(180deg, transparent 58%, rgba(8, 10, 12, .55));
}

.vehicle-tag {
    color: rgba(255, 255, 255, .85);
}

.live-vehicle-card {
    --card-scroll-y: 0px;
    left: -60px;
    bottom: 46px;
    border-color: rgba(17, 19, 21, .10);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 25px 65px rgba(30, 24, 18, .16);
    transform: translateY(var(--card-scroll-y));
    animation: none;
    transition: transform .2s linear, box-shadow .35s ease;
}

.live-vehicle-card:hover {
    box-shadow: 0 32px 80px rgba(30, 24, 18, .22);
}

.live-car-content strong {
    color: #111315;
}

.live-car-content small {
    color: rgba(17, 19, 21, .48);
}

.status-label {
    color: #8c6a31;
}

.route-card {
    --route-scroll-y: 0px;
    border-color: rgba(17, 19, 21, .10);
    color: #111315;
    background: rgba(255, 255, 255, .80);
    box-shadow: 0 18px 46px rgba(20, 18, 15, .10);
    transform: translateY(var(--route-scroll-y));
    transition: transform .2s linear;
}

.route-card>span {
    color: rgba(17, 19, 21, .42);
}

.route-line {
    background: rgba(17, 19, 21, .10);
}

.booking-panel-section {
    background: linear-gradient(180deg, #fbfaf8 0 52px, var(--cream) 52px 100%);
}

@media (max-width: 900px) {
    .main-nav {
        background: rgba(255, 255, 255, .98);
        border-color: rgba(17, 19, 21, .10);
    }

    .main-nav a {
        color: #17191b;
    }

    .hero-grid {
        padding-top: 72px;
    }

    .vehicle-photo-wrap {
        width: min(92%, 650px);
        transform: translate3d(0, var(--scroll-y), 0) rotate(var(--scroll-rotate)) scale(var(--scroll-scale));
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(58px, 17vw, 82px);
    }

    .vehicle-photo {
        height: 455px;
    }

    .vehicle-photo-wrap {
        --scroll-rotate: -2deg;
        width: 96%;
    }

    .live-vehicle-card {
        left: 6px;
        bottom: -42px;
        width: calc(100% - 12px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .vehicle-photo-wrap,
    .vehicle-photo,
    .live-vehicle-card,
    .route-card {
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================
   NORMAL-TO-ELEVATED HERO SCROLL EFFECT
   ========================================================= */

/*
 * Initial state:
 * the vehicle is straight, flat and naturally positioned.
 *
 * Scrolled state:
 * JavaScript increases the CSS variables below and creates
 * a premium elevated card effect.
 */
.vehicle-photo-wrap {
    --mouse-x: 0px;
    --mouse-y: 0px;
    --scroll-x: 0px;
    --scroll-y: 0px;
    --scroll-rotate: 0deg;
    --scroll-scale: 1;
    --scroll-lift: 0;

    transform:
        translate3d(calc(var(--mouse-x) + var(--scroll-x)),
            calc(var(--mouse-y) + var(--scroll-y)),
            0) rotate(var(--scroll-rotate)) scale(var(--scroll-scale));

    transform-origin: 50% 58%;
    will-change: transform;
    transition:
        transform .12s linear,
        filter .35s ease;
}

.vehicle-frame {
    --frame-elevation: 0;

    position: relative;
    border-radius:
        calc(28px - (var(--frame-elevation) * 8px));

    box-shadow:
        0 calc(18px + (var(--frame-elevation) * 35px)) calc(45px + (var(--frame-elevation) * 55px)) rgba(11,
            13,
            15,
            calc(.10 + (var(--frame-elevation) * .12)));

    transform:
        translateZ(calc(var(--frame-elevation) * 24px));

    transition:
        border-radius .3s ease,
        box-shadow .18s linear,
        transform .18s linear;
}

.vehicle-frame::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 8%;
    right: 8%;
    bottom: -34px;
    height: 60px;
    border-radius: 50%;

    background:
        radial-gradient(ellipse,
            rgba(10, 12, 14, .24),
            transparent 70%);

    filter: blur(18px);
    opacity: var(--scroll-lift);
    transform:
        scale(calc(.78 + (var(--scroll-lift) * .28)));

    transition:
        opacity .18s linear,
        transform .18s linear;
    pointer-events: none;
}

.vehicle-photo {
    transform:
        translate3d(0,
            var(--image-shift, 0px),
            0) scale(calc(1.02 + (var(--scroll-lift) * .025)));

    transition:
        transform .18s linear,
        filter .35s ease;
}

.vehicle-frame:hover .vehicle-photo {
    transform:
        translate3d(0,
            var(--image-shift, 0px),
            0) scale(calc(1.055 + (var(--scroll-lift) * .025)));
}

.live-vehicle-card {
    --card-scroll-x: 0px;
    --card-scroll-y: 0px;

    transform:
        translate3d(var(--card-scroll-x),
            var(--card-scroll-y),
            0);

    transition:
        transform .18s linear,
        box-shadow .35s ease;
}

.route-card {
    --route-scroll-x: 0px;
    --route-scroll-y: 0px;

    transform:
        translate3d(var(--route-scroll-x),
            var(--route-scroll-y),
            0);

    transition:
        transform .18s linear,
        box-shadow .35s ease;
}

/* Extra depth only after the hero has started scrolling. */
.hero-section.is-hero-elevated .vehicle-frame {
    border-color: rgba(199, 155, 85, .24);
}

.hero-section.is-hero-elevated .live-vehicle-card,
.hero-section.is-hero-elevated .route-card {
    box-shadow:
        0 24px 60px rgba(12, 14, 16, .16);
}

/* Keep the effect controlled on smaller screens. */
@media (max-width: 900px) {
    .vehicle-photo-wrap {
        transform:
            translate3d(var(--scroll-x),
                var(--scroll-y),
                0) rotate(calc(var(--scroll-rotate) * .55)) scale(calc(1 + ((var(--scroll-scale) - 1) * .65)));
    }
}

@media (max-width: 600px) {
    .vehicle-photo-wrap {
        --scroll-x: 0px;
        --scroll-rotate: 0deg;
    }

    .vehicle-frame::after {
        bottom: -22px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .vehicle-photo-wrap,
    .vehicle-frame,
    .vehicle-photo,
    .live-vehicle-card,
    .route-card {
        transform: none !important;
        transition: none !important;
    }

    .vehicle-frame::after {
        display: none;
    }
}

/* =========================================================
   SERVICES HEADER LINK + ANIMATED ICON
   ========================================================= */

.main-nav {
    gap: 30px;
}

.main-nav a {
    font-size: 13.5px;
    font-weight: 650;
    letter-spacing: -.1px;
}

.nav-service-link {
    min-height: 42px;
    padding: 0 13px 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;
}

.nav-service-link::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(110deg,
            rgba(199, 155, 85, .14),
            rgba(255, 255, 255, .06));
    opacity: 0;
    transform: scale(.82);
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.nav-service-link:hover,
.nav-service-link.is-active {
    color: #fff;
    border-color: rgba(199, 155, 85, .28);
}

.nav-service-link:hover::before,
.nav-service-link.is-active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-service-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 199, 143, .36);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.nav-service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(199, 155, 85, .22);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.72);
}

.nav-service-link:hover .nav-service-icon::after,
.nav-service-link.is-active .nav-service-icon::after {
    animation: servicesIconRing 1.65s ease-out infinite;
}

.nav-service-icon svg {
    width: 21px;
    height: 21px;
    overflow: visible;
}

.nav-service-icon path,
.nav-service-icon circle {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-service-link:hover .service-icon-car,
.nav-service-link.is-active .service-icon-car {
    animation: servicesCarMove 1.35s ease-in-out infinite;
}

.nav-service-link:hover .service-icon-wheel,
.nav-service-link.is-active .service-icon-wheel {
    transform-origin: center;
    animation: servicesWheelSpin .85s linear infinite;
}

.nav-service-link:hover .service-icon-star,
.nav-service-link.is-active .service-icon-star {
    transform-origin: center;
    animation: servicesStarPulse 1.15s ease-in-out infinite;
}

.nav-service-link:hover .service-icon-road,
.nav-service-link.is-active .service-icon-road {
    stroke-dasharray: 5 4;
    animation: servicesRoadMove .8s linear infinite;
}

@keyframes servicesCarMove {

    0%,
    100% {
        transform: translateX(-.8px) translateY(0);
    }

    50% {
        transform: translateX(1.3px) translateY(-.6px);
    }
}

@keyframes servicesWheelSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes servicesStarPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.78) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.12) rotate(20deg);
    }
}

@keyframes servicesRoadMove {
    to {
        stroke-dashoffset: -9;
    }
}

@keyframes servicesIconRing {
    0% {
        opacity: .8;
        transform: scale(.72);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

/* Animated items in the cream service strip */
.service-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition:
        color .25s ease,
        transform .25s ease;
}

.service-strip-item:hover {
    color: var(--ink);
    transform: translateY(-2px);
}

.service-strip-icon {
    color: var(--gold);
    font-size: 10px;
    animation: stripIconFloat 2.4s ease-in-out infinite;
}

.service-strip-item:nth-of-type(2) .service-strip-icon {
    animation-delay: .3s;
}

.service-strip-item:nth-of-type(3) .service-strip-icon {
    animation-delay: .6s;
}

.service-strip-item:nth-of-type(4) .service-strip-icon {
    animation-delay: .9s;
}

@keyframes stripIconFloat {

    0%,
    100% {
        opacity: .55;
        transform: translateY(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translateY(-3px) rotate(90deg);
    }
}

/* =========================================================
   BOOKING PANEL ICONS
   ========================================================= */

.booking-field-with-icon {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.booking-field-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-field-label {
    display: block;
    margin-bottom: 12px;
    color: #999b9d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.booking-field-icon {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 155, 85, .24);
    border-radius: 12px;
    color: var(--gold);
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .98),
            rgba(247, 245, 240, .92));
    box-shadow:
        0 8px 22px rgba(13, 15, 17, .06);
    overflow: hidden;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.booking-field-icon::after {
    content: '';
    position: absolute;
    inset: -35%;
    background:
        linear-gradient(115deg,
            transparent 35%,
            rgba(255, 255, 255, .9) 50%,
            transparent 65%);
    transform: translateX(-110%) rotate(8deg);
}

.booking-field-with-icon:hover .booking-field-icon {
    border-color: rgba(199, 155, 85, .55);
    box-shadow:
        0 14px 30px rgba(13, 15, 17, .10);
    transform: translateY(-3px) rotate(-2deg);
}

.booking-field-with-icon:hover .booking-field-icon::after {
    animation: bookingIconSweep .85s ease forwards;
}

.booking-field-icon svg {
    width: 22px;
    height: 22px;
    overflow: visible;
}

.booking-field-icon path,
.booking-field-icon circle,
.booking-field-icon rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-icon-pickup svg {
    animation: pickupPinFloat 2.5s ease-in-out infinite;
}

.booking-icon-destination path:nth-child(2) {
    stroke-dasharray: 4 3;
    animation: destinationRouteMove 1.2s linear infinite;
}

.booking-icon-calendar svg {
    transform-origin: center;
    animation: calendarTick 3s ease-in-out infinite;
}

.booking-icon-vehicle circle {
    transform-origin: center;
    animation: bookingWheelSpin 1.5s linear infinite;
}

@keyframes bookingIconSweep {
    from {
        transform: translateX(-110%) rotate(8deg);
    }

    to {
        transform: translateX(110%) rotate(8deg);
    }
}

@keyframes pickupPinFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes destinationRouteMove {
    to {
        stroke-dashoffset: -7;
    }
}

@keyframes calendarTick {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

@keyframes bookingWheelSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   INDIVIDUAL SERVICE STRIP ICONS
   ========================================================= */

.service-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-strip-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 155, 85, .24);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255, 255, 255, .58);
    transition:
        transform .3s ease,
        color .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.service-strip-icon svg {
    width: 16px;
    height: 16px;
    overflow: visible;
}

.service-strip-icon path,
.service-strip-icon circle,
.service-strip-icon rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-strip-item:hover .service-strip-icon {
    color: #fff;
    border-color: var(--gold);
    background: var(--gold);
    transform: translateY(-4px) rotate(5deg);
}

.airport-service-icon svg {
    animation: airportIconFly 3s ease-in-out infinite;
}

.corporate-service-icon svg {
    animation: corporateIconLift 2.6s ease-in-out infinite;
}

.events-service-icon path:last-child {
    transform-origin: 8px 7px;
    animation: eventsIconSparkle 1.8s ease-in-out infinite;
}

.hourly-service-icon path:nth-child(2) {
    transform-origin: 16px 16px;
    animation: hourlyIconTick 4s linear infinite;
}

@keyframes airportIconFly {

    0%,
    100% {
        transform: translate(-1px, 1px) rotate(-2deg);
    }

    50% {
        transform: translate(2px, -2px) rotate(3deg);
    }
}

@keyframes corporateIconLift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes eventsIconSparkle {

    0%,
    100% {
        opacity: .45;
        transform: scale(.75) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.15) rotate(90deg);
    }
}

@keyframes hourlyIconTick {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .booking-field-with-icon {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .service-strip-item {
        min-width: 210px;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .booking-field-with-icon {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .booking-field-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .booking-field-label {
        margin-bottom: 8px;
    }

    .service-strip-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .service-strip-inner>i {
        display: none;
    }

    .service-strip-item {
        width: 100%;
        min-width: 0;
        padding: 11px 14px;
        border: 1px solid rgba(18, 20, 22, .07);
        border-radius: 14px;
        background: rgba(255, 255, 255, .55);
    }
}

@media (prefers-reduced-motion: reduce) {

    .booking-field-icon,
    .booking-field-icon::after,
    .booking-field-icon svg,
    .booking-field-icon path,
    .booking-field-icon circle,
    .service-strip-icon,
    .service-strip-icon svg,
    .service-strip-icon path {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   SERVICES EDITORIAL PAGE — EMBEDDED IN MAIN CSS
   ========================================================= */

:root {
    --svc-navy: #081421;
    --svc-navy-soft: #0d1c2a;
    --svc-cream: #f2eee4;
    --svc-cream-deep: #eae4d7;
    --svc-paper: #f8f5ed;
    --svc-gold: #c69a4a;
    --svc-gold-light: #e5c98d;
    --svc-green: #0c2a20;
    --svc-green-deep: #082119;
    --svc-ink: #161714;
    --svc-muted: #6e6c64;
    --svc-line: rgba(37, 34, 27, .2);
    --svc-dark-line: rgba(225, 201, 141, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--svc-cream);
}

.svc-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--svc-ink);
    background: var(--svc-cream);
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.svc-page a {
    color: inherit;
}

.svc-shell {
    width: min(calc(100% - 64px), 1040px);
    margin-inline: auto;
}

.svc-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    color: #fff;
    border-bottom: 1px solid rgba(229, 201, 141, .2);
    background: rgba(8, 20, 33, .92);
    backdrop-filter: blur(18px);
    transition:
        height .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.svc-header.is-scrolled {
    height: 62px;
    background: rgba(8, 20, 33, .98);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.svc-header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
}

.svc-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.svc-logo-mark {
    position: relative;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid var(--svc-gold);
    transform: rotate(45deg);
}

.svc-logo-mark::before,
.svc-logo-mark::after {
    content: '';
    position: absolute;
    background: var(--svc-gold);
}

.svc-logo-mark::before {
    width: 13px;
    height: 1px;
}

.svc-logo-mark::after {
    width: 1px;
    height: 13px;
}

.svc-logo-mark i {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(229, 201, 141, .5);
    animation: svcMarkPulse 2.8s ease-in-out infinite;
}

.svc-logo-copy {
    display: grid;
    gap: 2px;
}

.svc-logo-copy strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.svc-logo-copy small {
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.svc-main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.svc-main-nav a {
    position: relative;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.svc-main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--svc-gold);
    transition: width .25s ease;
}

.svc-main-nav a:hover {
    color: #fff;
}

.svc-main-nav a:hover::after {
    width: 100%;
}

.svc-quote-link {
    justify-self: end;
    min-width: 116px;
    height: 33px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--svc-gold);
    color: var(--svc-gold-light);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.svc-quote-link:hover {
    color: var(--svc-navy);
    background: var(--svc-gold);
    transform: translateY(-2px);
}

.svc-menu-button {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    cursor: pointer;
}

.svc-menu-button span {
    width: 16px;
    height: 1px;
    margin: 4px auto;
    display: block;
    background: #fff;
    transition: transform .25s ease;
}

.svc-side-rail {
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 34px;
    height: 100vh;
    border-right: 1px solid rgba(198, 154, 74, .25);
    background:
        linear-gradient(180deg,
            var(--svc-navy) 0 27%,
            var(--svc-cream) 27% 56%,
            var(--svc-gold) 56% 79%,
            var(--svc-navy) 79%);
}

.svc-rail-brand {
    position: absolute;
    top: 9px;
    left: 5px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--svc-gold);
    color: var(--svc-gold-light);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    transform: rotate(45deg);
}

.svc-rail-brand span {
    transform: rotate(-45deg);
}

.svc-rail-nav {
    position: absolute;
    top: 58px;
    bottom: 35px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 13px;
}

.svc-rail-nav::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 50%;
    width: 1px;
    opacity: .55;
    background:
        repeating-linear-gradient(180deg,
            currentColor 0 2px,
            transparent 2px 8px);
}

.svc-rail-nav a {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 74px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .54);
    text-decoration: none;
}

.svc-rail-nav a:nth-child(2),
.svc-rail-nav a:nth-child(3) {
    color: rgba(22, 23, 20, .55);
}

.svc-rail-nav a span {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    background: inherit;
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.svc-rail-nav a em {
    margin-top: 2px;
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    font-style: normal;
    letter-spacing: .6px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.svc-rail-nav a.is-active span,
.svc-rail-nav a:hover span {
    color: var(--svc-navy);
    background: var(--svc-gold);
    transform: rotate(45deg);
}

.svc-hero {
    position: relative;
    min-height: 535px;
    padding: 70px 0 0;
    overflow: hidden;
    color: #fff;
    background: var(--svc-navy);
    isolation: isolate;
}

.svc-grid-lines {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .14;
    background:
        linear-gradient(90deg,
            transparent 0,
            transparent calc(50% - .5px),
            rgba(229, 201, 141, .25) 50%,
            transparent calc(50% + .5px)),
        repeating-linear-gradient(90deg,
            transparent 0 140px,
            rgba(229, 201, 141, .13) 140px 141px);
}

.svc-hero-glow {
    position: absolute;
    z-index: -1;
    right: 12%;
    top: 80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(198, 154, 74, .09), transparent 70%);
    animation: svcHeroGlow 5s ease-in-out infinite;
}

.svc-hero-grid {
    min-height: 465px;
    display: grid;
    grid-template-columns: 1fr .92fr;
    align-items: center;
    gap: 100px;
}

.svc-overline,
.svc-section-label {
    margin: 0 0 22px;
    color: var(--svc-gold);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.svc-hero h1 {
    max-width: 510px;
    margin: 0;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(48px, 5.3vw, 76px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -2.8px;
}

.svc-hero h1 em {
    display: block;
    color: var(--svc-gold-light);
    font-style: italic;
}

.svc-hero-description {
    max-width: 480px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .68);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    line-height: 1.65;
}

.svc-hero-actions {
    margin-top: 27px;
    display: flex;
    gap: 14px;
}

.svc-button {
    min-width: 132px;
    height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid transparent;
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: .3px;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.svc-button:hover {
    transform: translateY(-3px);
}

.svc-button-gold {
    color: var(--svc-navy);
    background: var(--svc-gold);
}

.svc-button-gold:hover {
    background: var(--svc-gold-light);
}

.svc-button-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .42);
    background: transparent;
}

.svc-button-outline:hover {
    color: var(--svc-navy);
    background: #fff;
}

.svc-departures {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 201, 141, .34);
    background: rgba(3, 11, 18, .38);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .15);
}

.svc-departures-head {
    min-height: 42px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(229, 201, 141, .25);
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.svc-departures-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.svc-departures-head small {
    font-size: 6px;
}

.svc-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--svc-gold);
    box-shadow: 0 0 0 0 rgba(198, 154, 74, .55);
    animation: svcLivePulse 1.8s infinite;
}

.svc-board-labels,
.svc-board-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr .8fr;
    align-items: center;
}

.svc-board-labels {
    min-height: 28px;
    padding: 0 15px;
    color: rgba(255, 255, 255, .35);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    text-transform: uppercase;
}

.svc-board-row {
    min-height: 44px;
    padding: 0 15px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    transition:
        background .25s ease,
        transform .25s ease;
}

.svc-board-row:hover {
    background: rgba(198, 154, 74, .08);
    transform: translateX(4px);
}

.svc-board-row strong {
    font-weight: 500;
}

.svc-board-row span {
    color: rgba(255, 255, 255, .68);
}

.svc-board-row em {
    color: var(--svc-gold-light);
    font-style: normal;
}

.svc-board-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            transparent 0 45%,
            rgba(198, 154, 74, .08) 50%,
            transparent 55% 100%);
    transform: translateY(-100%);
    animation: svcBoardScan 4.2s linear infinite;
}

.svc-about {
    padding: 85px 0 90px;
    background: var(--svc-paper);
}

.svc-about-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 120px;
}

.svc-section-intro h2,
.svc-services-heading h2,
.svc-fleet-heading h2,
.svc-pricing h2 {
    margin: 0;
    font-family: 'Libre Caslon Display', serif;
    font-weight: 400;
}

.svc-section-intro h2 {
    max-width: 430px;
    font-size: clamp(31px, 3.4vw, 46px);
    line-height: 1.04;
    letter-spacing: -1.3px;
}

.svc-about-content>p {
    margin: 0 0 18px;
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    line-height: 1.7;
}

.svc-credentials {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svc-credentials div {
    display: grid;
    gap: 5px;
}

.svc-credentials strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 20px;
    font-weight: 400;
}

.svc-credentials span {
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    line-height: 1.45;
}

.svc-about-stats {
    margin-top: 32px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    border-top: 1px solid var(--svc-line);
}

.svc-about-stats div {
    display: grid;
    gap: 6px;
}

.svc-about-stats strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.svc-about-stats span {
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.svc-services {
    padding: 75px 0 85px;
    background: var(--svc-cream-deep);
}

.svc-services-inner {
    max-width: 870px;
}

.svc-services-heading {
    margin-bottom: 30px;
}

.svc-services-heading h2 {
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.08;
}

.svc-service-list {
    border-top: 1px solid var(--svc-line);
}

.svc-service-row {
    position: relative;
    min-height: 64px;
    padding: 0 42px 0 0;
    display: grid;
    grid-template-columns: 86px 1.05fr 1.45fr;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--svc-line);
    color: var(--svc-ink);
    text-decoration: none;
    transition:
        color .3s ease,
        background .3s ease,
        padding .3s ease;
}

.svc-service-row:hover {
    padding-left: 14px;
    color: #fff;
    background: var(--svc-navy);
}

.svc-service-code {
    color: var(--svc-gold);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
}

.svc-service-row strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 17px;
    font-weight: 400;
}

.svc-service-row p {
    margin: 0;
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    line-height: 1.55;
    transition: color .3s ease;
}

.svc-service-row:hover p {
    color: rgba(255, 255, 255, .65);
}

.svc-service-arrow {
    position: absolute;
    right: 15px;
    color: var(--svc-gold);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.svc-service-row:hover .svc-service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.svc-fleet {
    padding: 85px 0 90px;
    background: var(--svc-paper);
}

.svc-fleet-heading {
    margin-bottom: 28px;
}

.svc-fleet-heading h2 {
    font-size: clamp(31px, 3.4vw, 46px);
}

.svc-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.svc-fleet-card {
    position: relative;
    min-height: 330px;
    padding: 21px;
    overflow: hidden;
    border: 1px solid var(--svc-line);
    background: rgba(255, 255, 255, .14);
    transition:
        color .35s ease,
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.svc-fleet-card:hover {
    color: #fff;
    background: var(--svc-navy);
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(8, 20, 33, .14);
}

.svc-car-drawing {
    height: 117px;
    display: grid;
    place-items: center;
}

.svc-car-drawing svg {
    width: 100%;
    max-width: 310px;
}

.svc-car-drawing path,
.svc-car-drawing circle {
    fill: none;
    stroke: var(--svc-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke-dashoffset .8s ease,
        transform .5s ease;
}

.svc-car-drawing path {
    stroke-dasharray: 760;
    stroke-dashoffset: 0;
}

.svc-fleet-card:hover .svc-car-drawing path {
    animation: svcCarDraw 1.1s ease;
}

.svc-fleet-card:hover .svc-car-drawing circle {
    transform-origin: center;
    animation: svcWheelRotate 1.1s linear infinite;
}

.svc-fleet-type {
    margin: 5px 0 8px;
    color: var(--svc-gold);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.svc-fleet-card h3 {
    margin: 0;
    font-family: 'Libre Caslon Display', serif;
    font-size: 20px;
    font-weight: 400;
}

.svc-fleet-copy {
    min-height: 55px;
    margin: 12px 0 17px;
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    line-height: 1.55;
    transition: color .35s ease;
}

.svc-fleet-card:hover .svc-fleet-copy {
    color: rgba(255, 255, 255, .62);
}

.svc-fleet-card dl {
    margin: 0;
    padding-top: 13px;
    display: grid;
    grid-template-columns: .7fr .8fr 1.3fr;
    border-top: 1px solid var(--svc-line);
}

.svc-fleet-card dl div {
    display: grid;
    gap: 4px;
}

.svc-fleet-card dt {
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 5px;
}

.svc-fleet-card dd {
    margin: 0;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
}

.svc-pricing {
    position: relative;
    padding: 82px 0 88px;
    overflow: hidden;
    color: #fff;
    background: var(--svc-navy);
}

.svc-pricing-grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    background:
        repeating-linear-gradient(90deg,
            transparent 0 145px,
            rgba(229, 201, 141, .2) 145px 146px);
}

.svc-pricing-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.svc-label-dark {
    color: var(--svc-gold);
}

.svc-pricing h2 {
    font-size: clamp(31px, 3.5vw, 48px);
}

.svc-pricing p {
    max-width: 520px;
    margin: 14px auto 25px;
    color: rgba(255, 255, 255, .62);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    line-height: 1.55;
}

.svc-pricing .svc-button {
    margin-inline: auto;
}

.svc-footer {
    padding: 55px 0 22px;
    color: #fff;
    background: var(--svc-green);
}

.svc-footer-grid {
    padding-bottom: 38px;
    display: grid;
    grid-template-columns: 1.2fr .75fr 1fr .75fr;
    gap: 55px;
}

.svc-footer strong {
    display: block;
    margin-bottom: 13px;
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.svc-footer p,
.svc-footer a {
    color: rgba(255, 255, 255, .66);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    line-height: 1.65;
}

.svc-footer-company p {
    margin: 0 0 11px;
}

.svc-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.svc-footer-column a {
    margin-bottom: 5px;
    text-decoration: none;
}

.svc-footer-column a:hover {
    color: var(--svc-gold-light);
}

.svc-footer-quote a {
    min-width: 116px;
    height: 35px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--svc-gold);
    color: var(--svc-gold-light);
    text-decoration: none;
    text-transform: uppercase;
}

.svc-footer-quote a:hover {
    color: var(--svc-green);
    background: var(--svc-gold);
}

.svc-footer-bottom {
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(229, 201, 141, .18);
}

.svc-footer-bottom p {
    margin: 0;
    font-size: 6px;
}

.svc-trip-meter {
    position: fixed;
    z-index: 1200;
    right: 17px;
    bottom: 15px;
    width: 130px;
    padding: 12px;
    color: #fff;
    border: 1px solid var(--svc-gold);
    background: rgba(8, 20, 33, .96);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
}

.svc-trip-meter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.svc-trip-meter-head i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--svc-gold);
    animation: svcLivePulse 1.8s infinite;
}

.svc-trip-meter-values {
    margin-top: 7px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: 'DM Mono', monospace;
}

.svc-trip-meter-values strong {
    font-size: 15px;
    font-weight: 500;
}

.svc-trip-meter-values span,
.svc-trip-meter-values small {
    color: var(--svc-gold-light);
    font-size: 7px;
}

.svc-trip-meter p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .55);
    font-family: 'DM Mono', monospace;
    font-size: 5px;
}

.svc-reveal {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(24px);
    transition:
        opacity .75s cubic-bezier(.2, .8, .2, 1),
        transform .75s cubic-bezier(.2, .8, .2, 1),
        filter .75s ease;
}

.svc-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@keyframes svcMarkPulse {

    0%,
    100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes svcHeroGlow {

    0%,
    100% {
        opacity: .6;
        transform: scale(.92);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes svcLivePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 154, 74, .55);
    }

    100% {
        box-shadow: 0 0 0 9px rgba(198, 154, 74, 0);
    }
}

@keyframes svcBoardScan {
    to {
        transform: translateY(100%);
    }
}

@keyframes svcCarDraw {
    0% {
        stroke-dashoffset: 760;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes svcWheelRotate {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1050px) {
    .svc-header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .svc-main-nav {
        gap: 18px;
    }

    .svc-hero-grid {
        gap: 55px;
    }

    .svc-about-grid {
        gap: 70px;
    }
}

@media (max-width: 850px) {
    .svc-shell {
        width: min(calc(100% - 44px), 760px);
    }

    .svc-side-rail {
        display: none;
    }

    .svc-main-nav {
        position: absolute;
        top: 62px;
        left: 22px;
        right: 22px;
        display: none;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid rgba(229, 201, 141, .25);
        background: var(--svc-navy);
        box-shadow: 0 25px 55px rgba(0, 0, 0, .22);
    }

    .svc-main-nav.is-open {
        display: flex;
    }

    .svc-main-nav a {
        padding: 13px;
    }

    .svc-main-nav a::after {
        display: none;
    }

    .svc-quote-link {
        display: none;
    }

    .svc-menu-button {
        display: block;
    }

    .svc-hero {
        min-height: auto;
        padding: 115px 0 75px;
    }

    .svc-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .svc-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .svc-services-inner {
        max-width: none;
    }

    .svc-service-row {
        grid-template-columns: 72px 1fr;
        gap: 15px;
        padding: 15px 40px 15px 0;
    }

    .svc-service-row p {
        grid-column: 2;
    }

    .svc-fleet-grid {
        grid-template-columns: 1fr;
    }

    .svc-fleet-card {
        min-height: 310px;
    }

    .svc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .svc-shell {
        width: min(calc(100% - 28px), 520px);
    }

    .svc-header-inner {
        grid-template-columns: 1fr auto;
    }

    .svc-logo-copy small {
        display: none;
    }

    .svc-hero h1 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .svc-hero-description {
        font-size: 9px;
    }

    .svc-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .svc-button {
        width: 100%;
    }

    .svc-board-labels {
        display: none;
    }

    .svc-board-row {
        padding: 10px 13px;
        grid-template-columns: 1fr 1fr;
        gap: 7px 14px;
    }

    .svc-credentials {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .svc-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .svc-service-row {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 17px 34px 17px 0;
    }

    .svc-service-row p {
        grid-column: auto;
    }

    .svc-fleet-card dl {
        grid-template-columns: repeat(3, 1fr);
    }

    .svc-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .svc-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .svc-trip-meter {
        right: 10px;
        bottom: 10px;
        width: 116px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .svc-page *,
    .svc-page *::before,
    .svc-page *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .svc-reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}