:root {
    --home-ink: #141416;
    --home-ink-soft: #1c1c20;
    --home-gold: #e8b46f;
    --home-gold-dim: rgba(232, 180, 111, 0.35);
    --home-paper: #f6f5f3;
    --home-muted: rgba(20, 20, 22, 0.62);
    --home-display: "Newsreader", "Iowan Old Style", Georgia, serif;
    --home-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vs-hero__item2.style2 {
    position: relative;
    height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0a0a0b;
    padding: 0 !important;
}

.vs-hero__item2.style2 > .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.vs-hero__media {
    position: absolute !important;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
}

.vs-hero__img {
    position: absolute !important;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center center;
}

/* Header overlay styles live in style.css under html.is-home (wire:navigate-safe). */

.vs-hero__item2.style2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.42) 48%,
        rgba(0, 0, 0, 0.22) 100%
    );
    z-index: 1;
}

.vs-hero__content {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    padding-top: 72px;
    padding-bottom: 32px;
}

.vs-hero-style2 .vs-hero__title {
    font-size: clamp(32px, 5.2vw, 58px);
    line-height: 1.08;
    max-width: 14em;
}

.vs-hero__trust {
    margin: 0 0 26px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.88;
}

.vs-hero__content .hero-enter {
    opacity: 0;
    transform: translateY(18px);
    animation: heroEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--hero-delay, 0.15s);
}

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

@media (prefers-reduced-motion: reduce) {
    .vs-hero__content .hero-enter {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@media (max-width: 767px) {
    .vs-hero__item2.style2 {
        height: 100svh;
        min-height: 640px;
    }

    .vs-hero__img {
        /* Keep chauffeur + car in frame on tall phones */
        object-position: 62% center;
    }

    .hero-btn {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-btn .vs-btn2 {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
        min-width: 140px;
        white-space: nowrap;
    }
}

/* Shared section intro */
.home-intro {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.home-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--home-gold);
    font-family: var(--home-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-intro__eyebrow::before,
.home-intro__eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--home-gold);
    opacity: 0.7;
}

.home-intro__title {
    margin: 0 0 14px;
    font-family: var(--home-display);
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--home-ink);
}

.home-intro__text {
    margin: 0 auto;
    max-width: 34em;
    color: var(--home-muted);
    font-family: var(--home-sans);
    font-size: 16px;
    line-height: 1.7;
}

.home-intro--light .home-intro__title {
    color: #fff;
}

.home-intro--light .home-intro__text {
    color: rgba(255, 255, 255, 0.68);
}

/* ---- Services ---- */
.home-services {
    position: relative;
    padding: 110px 0 96px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 180, 111, 0.08), transparent 55%),
        var(--home-paper);
}

.home-service {
    position: relative;
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    background: var(--home-ink);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-service:hover {
    color: inherit;
    transform: translateY(-6px);
}

.home-service__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.home-service__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
    filter: saturate(0.92) contrast(1.05);
}

.home-service:hover .home-service__media img {
    transform: scale(1.08);
    filter: saturate(1) contrast(1.08);
}

.home-service__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(20, 20, 22, 0.05) 0%,
        rgba(20, 20, 22, 0.2) 40%,
        rgba(20, 20, 22, 0.88) 100%
    );
    z-index: 1;
}

.home-service__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 26px 30px;
}

.home-service__index {
    display: block;
    margin-bottom: 10px;
    color: var(--home-gold);
    font-family: var(--home-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.home-service__title {
    margin: 0 0 10px;
    font-family: var(--home-display);
    font-size: clamp(26px, 2.2vw, 32px);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
}

.home-service__text {
    margin: 0 0 18px;
    max-width: 28em;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--home-sans);
    font-size: 14px;
    line-height: 1.55;
}

.home-service__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--home-gold);
    font-family: var(--home-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: gap 0.35s ease, color 0.35s ease;
}

.home-service:hover .home-service__link {
    gap: 14px;
    color: #fff;
}

.home-services__footer {
    margin-top: 48px;
    text-align: center;
}

/* ---- Trust ---- */
.home-trust {
    position: relative;
    padding: 34px 0;
    background: var(--home-ink);
    border-top: 1px solid var(--home-gold-dim);
    border-bottom: 1px solid var(--home-gold-dim);
}

.home-trust__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-trust__item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--home-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-trust__item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 14px;
    margin: 0 28px;
    background: var(--home-gold);
    opacity: 0.55;
}

/* ---- How it works ---- */
.home-how {
    position: relative;
    padding: 96px 0 88px;
    background: #fff;
}

.home-how__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.home-how__step {
    position: relative;
    padding-top: 8px;
    text-align: left;
}

.home-how__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 1px;
    background: var(--home-gold);
    opacity: 0.45;
}

.home-how__num {
    display: block;
    margin-bottom: 14px;
    color: var(--home-gold);
    font-family: var(--home-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.home-how__title {
    margin: 0 0 10px;
    font-family: var(--home-display);
    font-size: clamp(26px, 2.4vw, 32px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--home-ink);
}

.home-how__text {
    margin: 0;
    max-width: 26em;
    color: var(--home-muted);
    font-family: var(--home-sans);
    font-size: 15px;
    line-height: 1.65;
}

.home-how__footer {
    margin-top: 48px;
    text-align: center;
}

/* ---- Popular U.S. airports ---- */
.home-airports {
    padding: 36px 0;
    background: var(--home-paper);
    border-top: 1px solid rgba(20, 20, 22, 0.06);
}

.home-airports__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 28px;
    text-align: center;
}

.home-airports__label {
    margin: 0;
    width: 100%;
    color: var(--home-ink);
    font-family: var(--home-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.55;
}

.home-airports__support {
    margin: -4px 0 0;
    width: 100%;
    max-width: 36em;
    color: rgba(20, 20, 22, 0.62);
    font-family: var(--home-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.home-airports__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-airports__list li:not(:last-child)::after {
    content: "·";
    margin: 0 10px;
    color: rgba(20, 20, 22, 0.28);
}

.home-airports__list a {
    color: var(--home-ink);
    font-family: var(--home-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.home-airports__list a:hover {
    color: var(--home-gold);
}

.home-airports__fallback {
    margin: 0;
    width: 100%;
    max-width: 40em;
    color: rgba(20, 20, 22, 0.62);
    font-family: var(--home-sans);
    font-size: 13px;
    line-height: 1.55;
}

.home-airports__fallback a {
    color: var(--home-gold);
    font-weight: 600;
    text-decoration: none;
}

.home-airports__fallback a:hover {
    color: var(--home-ink);
}

.home-airports__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-gold);
    font-family: var(--home-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.home-airports__more:hover {
    gap: 12px;
    color: var(--home-ink);
}

/* ---- Guides ---- */
.home-guides {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: var(--home-paper);
    border-top: 1px solid rgba(20, 20, 22, 0.06);
}

.home-guides__head {
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.home-guides__eyebrow {
    display: block;
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--home-gold);
}

.home-guides__title {
    margin: 0 0 0.55rem;
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--home-ink);
}

.home-guides__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(20, 20, 22, 0.65);
}

.home-guides__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.home-guides__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(20, 20, 22, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-guides__card:hover {
    border-color: rgba(232, 180, 111, 0.45);
    box-shadow: 0 12px 28px rgba(20, 20, 22, 0.07);
}

.home-guides__media {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--home-ink);
}

.home-guides__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-guides__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.1rem 1.2rem;
}

.home-guides__cat {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--home-gold);
}

.home-guides__card-title {
    margin: 0 0 0.45rem;
    font-family: Newsreader, Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--home-ink);
}

.home-guides__excerpt {
    margin: 0 0 0.85rem;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(20, 20, 22, 0.65);
}

.home-guides__more {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--home-ink);
}

.home-guides__card:hover .home-guides__more {
    color: var(--home-gold);
}

.home-guides__footer {
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991px) {
    .home-guides__grid {
        grid-template-columns: 1fr;
        max-width: 28rem;
        margin: 0 auto;
    }
}

/* ---- Fleet ---- */
.home-fleet {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(232, 180, 111, 0.12), transparent 55%),
        linear-gradient(180deg, var(--home-ink) 0%, var(--home-ink-soft) 100%);
}

.home-fleet__card {
    display: block;
    height: 100%;
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-fleet__card:hover {
    color: inherit;
}

.home-fleet__card:hover .home-fleet__title {
    color: var(--home-gold);
}

.home-fleet__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 22px;
    padding: 20px 10px;
}

.home-fleet__media::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 18%;
    height: 42%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(232, 180, 111, 0.18), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.home-fleet__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-fleet__card:hover .home-fleet__media img {
    transform: translateY(-6px) scale(1.03);
}

.home-fleet__title {
    margin: 0 0 6px;
    font-family: var(--home-display);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.home-fleet__meta {
    margin: 0;
    color: rgba(232, 180, 111, 0.85);
    font-family: var(--home-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-fleet__footer {
    margin-top: 52px;
    text-align: center;
}

.home-fleet .vs-btn2 {
    border-color: var(--home-gold);
    background: transparent;
    color: #fff;
}

.home-fleet .vs-btn2:hover {
    background: var(--home-gold);
    border-color: var(--home-gold);
    color: var(--home-ink);
}

.home-fleet .vs-btn2 i {
    background: transparent;
    color: inherit;
}

.home-fleet .vs-btn2:hover i {
    background: transparent;
    color: inherit;
}

/* ---- About ---- */
.home-about {
    position: relative;
    padding: 110px 0;
    background: #fff;
}

.home-about__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--home-ink);
}

.home-about__media::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(232, 180, 111, 0.45);
    pointer-events: none;
    z-index: 2;
}

.home-about__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 72%;
    display: block;
    filter: contrast(1.04);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about:hover .home-about__media img {
    transform: scale(1.04);
}

.home-about__content {
    padding-left: 12px;
}

.home-about__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--home-gold);
    font-family: var(--home-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-about__title {
    margin: 0 0 20px;
    font-family: var(--home-display);
    font-size: clamp(34px, 3.6vw, 48px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--home-ink);
}

.home-about__title em {
    font-style: italic;
    color: var(--home-gold);
    font-weight: 500;
}

.home-about__rule {
    width: 48px;
    height: 1px;
    margin: 0 0 22px;
    background: var(--home-gold);
}

.home-about__text {
    margin: 0 0 32px;
    max-width: 34em;
    color: var(--home-muted);
    font-family: var(--home-sans);
    font-size: 16px;
    line-height: 1.75;
}

.home-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 991px) {
    .home-services,
    .home-fleet,
    .home-about,
    .home-how {
        padding: 72px 0;
    }

    .home-service__media {
        aspect-ratio: 5 / 6;
    }

    .home-how__list {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 420px;
        margin: 0 auto;
    }

    .home-how__step:not(:last-child)::after {
        display: none;
    }

    .home-how__step {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(20, 20, 22, 0.08);
    }

    .home-how__step:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .home-about__media {
        /* Keep a taller crop so the sedan stays visible (photo is portrait with subject low) */
        aspect-ratio: 4 / 5;
        margin-bottom: 8px;
    }

    .home-about__content {
        padding-left: 0;
    }

    .home-about__media::after {
        inset: 12px;
    }

    .home-about__media img {
        object-position: center 78%;
    }
}

@media (max-width: 767px) {
    .home-intro {
        margin-bottom: 40px;
    }

    .home-service__media {
        aspect-ratio: 16 / 11;
    }

    .home-service__text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-trust__item {
        width: 50%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        padding: 8px 6px;
        letter-spacing: 0.12em;
    }

    .home-trust__item:not(:last-child)::after {
        display: none;
    }

    .home-service__body {
        padding: 22px 20px 24px;
    }

    .home-airports__list li:not(:last-child)::after {
        margin: 0 8px;
    }

    .home-airports__list a {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-service,
    .home-service__media img,
    .home-fleet__media img,
    .home-about__media img {
        transition: none;
    }

    .home-service:hover,
    .home-fleet__card:hover .home-fleet__media img,
    .home-about:hover .home-about__media img {
        transform: none;
    }

    .home-service:hover .home-service__media img {
        transform: none;
    }
}
