/* Luxury refresh — black / gold / white, glass, calmer hierarchy */

:root {
    --lux-bg: #040406;
    --lux-bg-elevated: #0a0a0e;
    --lux-surface: rgba(16, 18, 26, 0.78);
    --lux-gold: #d4af37;
    --lux-gold-bright: #e8c76b;
    --lux-gold-soft: rgba(212, 175, 55, 0.32);
    --lux-text: #f6f6f9;
    --lux-muted: #969aad;
    --lux-radius: 20px;
    --lux-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
    --lux-nav-h: 72px;
    --lux-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --lux-ease-soft: cubic-bezier(0.45, 0, 0.15, 1);
    --lux-reveal-duration: 0.78s;
}

html {
    scroll-padding-top: calc(var(--lux-nav-h) + 12px);
    scroll-behavior: smooth;
}

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

body {
    background: var(--lux-bg) !important;
    color: var(--lux-text);
    letter-spacing: 0.01em;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.lux-modal-open {
    overflow: hidden;
}

html.lux-preloader-lock,
html.lux-preloader-lock body {
    overflow: hidden;
    height: 100%;
}

h1, h2, h3, h4, .lux-modal__title, .section-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1600 !important;
    min-height: var(--lux-nav-h);
    padding: 12px clamp(18px, 3vw, 40px) !important;
    background: rgba(6, 6, 10, 0.72) !important;
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar.is-scrolled {
    background: rgba(6, 6, 10, 0.88) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .navbar {
        backdrop-filter: blur(8px) saturate(120%) !important;
        -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
    }
}

a.logo {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo span {
    text-shadow: none !important;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.nav-social__link:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .nav-social {
        display: none;
    }
}

.nav-links {
    gap: clamp(18px, 2.2vw, 32px) !important;
    align-items: center;
    margin-left: auto;
}

.nav-links li a {
    position: relative;
    display: inline-block;
    font-size: 13px !important;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
    padding: 6px 2px 8px;
    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        text-shadow 0.3s ease;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
    opacity: 0.85;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover {
    color: var(--lux-gold) !important;
    opacity: 1;
}

.nav-links li a:hover::after {
    transform: scaleX(1);
}

.nav-links li a.is-active {
    color: var(--lux-gold) !important;
    opacity: 1;
}

.nav-links li a.is-active::after {
    transform: scaleX(1);
}

.logo span {
    font-size: 13px !important;
    letter-spacing: 0.18em;
}

.hero.hero--cinematic {
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    padding: 0 !important;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    background: #020203 !important;
    animation: none !important;
    isolation: isolate;
}

.hero__slides {
    position: absolute;
    inset: -6%;
    z-index: 0;
    transform: translate3d(0, 0, 0) scale(1.03);
    will-change: transform;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-color: #060608;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.45s var(--lux-ease-soft);
    pointer-events: none;
    transform: scale(1);
    transform-origin: center center;
}

.hero__slide.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .hero__slide.is-active {
        animation: heroKenBurns 22s var(--lux-ease-out) forwards;
    }
}

@keyframes heroKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}

.hero__depth {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(6, 8, 18, 0.55) 0%,
        transparent 42%,
        transparent 58%,
        rgba(2, 2, 6, 0.65) 100%
    );
}

.hero.hero--cinematic .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(4, 4, 10, 0.35) 38%,
            rgba(6, 6, 14, 0.42) 62%,
            rgba(0, 0, 0, 0.88) 100%
        ),
        radial-gradient(ellipse 90% 70% at 50% 45%, transparent 0%, rgba(0, 0, 0, 0.5) 100%) !important;
    backdrop-filter: blur(5px) saturate(112%);
    -webkit-backdrop-filter: blur(5px) saturate(112%);
    z-index: 2;
}

.hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    box-shadow:
        inset 0 0 100px 24px rgba(0, 0, 0, 0.45),
        inset 0 0 220px 60px rgba(0, 0, 0, 0.35);
}

.hero-inner {
    position: relative;
    z-index: 4;
    width: min(56rem, 100%);
    margin: 0 auto;
    padding: calc(var(--lux-nav-h) + clamp(52px, 14vh, 128px)) clamp(22px, 5vw, 56px) clamp(48px, 11vh, 112px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__accent-line {
    display: block;
    width: min(120px, 22vw);
    height: 1px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
    opacity: 0.85;
}

@keyframes luxHeroIn {
    from {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes luxFloatSoft {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.hero-float-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 22px 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(12, 14, 22, 0.45));
    backdrop-filter: blur(10px) saturate(125%);
    -webkit-backdrop-filter: blur(10px) saturate(125%);
    box-shadow:
        0 4px 1px rgba(255, 255, 255, 0.04) inset,
        0 20px 50px rgba(0, 0, 0, 0.4);
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s ease,
        box-shadow 0.45s ease,
        background 0.35s ease;
    animation: luxFloatSoft 7s ease-in-out infinite;
}

.hero-float-card--tour {
    animation-delay: -3.5s;
}

.hero-float-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.12),
        0 28px 70px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.08);
}

.hero-float-card:focus-visible {
    outline: 2px solid var(--lux-gold);
    outline-offset: 3px;
}

.hero-float-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--lux-gold);
}

.hero-float-card__kicker {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 6px;
}

.hero-float-card__title {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-float-card__desc {
    display: block;
    font-size: 14px;
    color: var(--lux-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.hero-float-card__cta {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(228, 194, 93, 0.98);
    margin-top: auto;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(232, 199, 107, 0.95);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-headline,
#heroTitle {
    font-size: clamp(2.5rem, 5.8vw, 4.15rem) !important;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-transform: none;
    margin-bottom: 24px;
    color: #fdfdfd;
    text-shadow:
        0 2px 40px rgba(0, 0, 0, 0.45),
        0 32px 80px rgba(0, 0, 0, 0.55);
    text-wrap: balance;
}

.hero-subtitle,
#heroSubtitle {
    font-size: clamp(1.05rem, 1.9vw, 1.22rem) !important;
    font-weight: 300;
    color: rgba(228, 228, 236, 0.82);
    max-width: 36rem;
    margin: 0 0 40px;
    line-height: 1.72;
    letter-spacing: 0.02em;
    text-wrap: balance;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions__primary {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-actions__secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: center;
    align-items: center;
}

.hero-animate {
    opacity: 0;
    animation: luxHeroIn var(--lux-reveal-duration) var(--lux-ease-out) forwards;
}

.hero-animate--1 {
    animation-delay: 0.08s;
}
.hero-animate--2 {
    animation-delay: 0.22s;
}
.hero-animate--3 {
    animation-delay: 0.38s;
}
.hero-animate--4 {
    animation-delay: 0.52s;
}

button.btn,
.btn {
    font-family: inherit;
    cursor: pointer;
    border: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.btn {
    background: linear-gradient(135deg, #e8c96a, var(--lux-gold)) !important;
    color: #141210 !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 14px 28px !important;
    border-radius: 999px !important;
}

.btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

.btn2 {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(10px);
}

.btn2:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--lux-gold-soft) !important;
    color: #fff !important;
}

.stats-section {
    padding: 72px 24px !important;
    gap: 20px !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(180deg, #08080c, #0c0c12) !important;
}

.stat-card {
    flex: 1 1 140px;
    max-width: 200px;
    padding: 22px 18px !important;
    border-radius: var(--lux-radius) !important;
    background: var(--lux-surface) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: var(--lux-shadow);
    text-align: center;
}

.stat-card h3 {
    color: var(--lux-gold) !important;
    font-size: 1.35rem !important;
}

.lux-section {
    padding: 104px 28px !important;
    background: #08080c !important;
}

.lux-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.lux-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem) !important;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.lux-lead {
    color: var(--lux-muted) !important;
    font-size: 1.05rem !important;
    line-height: 1.7;
    margin-bottom: 24px !important;
}

.lux-vehicle-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px !important;
    max-width: 1200px;
    margin: 0 auto;
}

.lux-showcase-card {
    border-radius: var(--lux-radius) !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--lux-shadow);
}

.lux-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--lux-muted);
    grid-column: 1 / -1;
}

.about-section {
    padding: 80px 24px !important;
}

.about-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem) !important;
}

.registered-tag {
    text-align: center;
    padding: 28px 16px 8px;
    color: var(--lux-muted);
    font-size: 13px;
}

.lux-showcase-thumbs {
    display: flex;
    gap: 6px;
    margin: 10px 0 4px;
    flex-wrap: wrap;
}

.lux-showcase-thumbs img {
    width: 52px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.88;
}

.media-section,
.contact-section {
    padding: 80px 24px 100px !important;
}

.contact-section h2 {
    font-family: "Playfair Display", serif !important;
}

.site-footer {
    padding: 0 !important;
    border-top: none;
    background: linear-gradient(180deg, #07070c 0%, #050508 48%, #030305 100%) !important;
}

.lux-footer-crest {
    height: 2px;
    margin: 10px auto 0;
    max-width: min(1080px, calc(100% - 40px));
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.12) 14%,
        rgba(244, 212, 132, 0.55) 50%,
        rgba(212, 175, 55, 0.12) 86%,
        transparent 100%
    );
    box-shadow:
        0 0 32px rgba(212, 175, 55, 0.26),
        0 0 72px rgba(212, 175, 55, 0.07);
}

.site-footer--lux {
    padding: 56px 22px 40px !important;
}

@media (min-width: 768px) {
    .site-footer--lux {
        padding: 72px 32px 48px !important;
    }
}

.site-footer__inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.contact-section .office-map-wrap--lux {
    margin-top: 36px !important;
    margin-bottom: 4px;
}

.office-map-wrap--lux {
    position: relative;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.14) 100%),
        rgba(10, 10, 14, 0.55) !important;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(212, 175, 55, 0.07) inset,
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    padding: 28px 24px 22px !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.office-map-wrap--lux::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(120% 85% at 50% 0%, rgba(212, 175, 55, 0.09), transparent 56%);
}

.office-map-wrap--lux h3 {
    font-family: "Playfair Display", serif !important;
    letter-spacing: 0.04em;
    margin-bottom: 8px !important;
}

.office-map-wrap--lux p {
    color: rgba(210, 210, 220, 0.82) !important;
    margin-bottom: 18px !important;
}

.office-map-wrap--lux iframe {
    border-radius: 14px !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer--lux .footer-brand {
    margin-bottom: 4px;
}

.site-footer--lux .footer-brand__logo-shell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px;
}

.site-footer--lux .footer-brand__logo-shell::after {
    content: "";
    position: absolute;
    inset: -22%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.32) 0%, rgba(212, 175, 55, 0.08) 45%, transparent 72%);
    filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}

.site-footer--lux .footer-brand__logo-shell img {
    position: relative;
    z-index: 1;
    width: 92px !important;
    height: auto !important;
    max-width: none;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
}

@media (min-width: 768px) {
    .site-footer--lux .footer-brand__logo-shell img {
        width: 108px !important;
    }
}

.site-footer--lux .footer-brand__title {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem) !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 250, 252, 0.95) !important;
    margin: 0 0 6px !important;
    line-height: 1.45 !important;
}

.site-footer--lux .footer-reg {
    color: rgba(180, 180, 190, 0.72) !important;
    font-size: 11px !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 !important;
}

.site-footer--lux .footer-links {
    margin: 26px 0 22px !important;
    gap: 10px 20px !important;
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer--lux .footer-links a {
    padding: 6px 2px !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid transparent !important;
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: rgba(232, 232, 238, 0.78) !important;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.site-footer--lux .footer-links a:hover {
    color: rgba(250, 232, 170, 0.98) !important;
    border-bottom-color: rgba(212, 175, 55, 0.5) !important;
    transform: translateY(-1px);
}

.site-footer--lux .footer-social {
    margin: 8px 0 24px !important;
    gap: 12px !important;
}

.site-footer--lux .footer-social a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    color: rgba(245, 245, 250, 0.88) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(212, 175, 55, 0.04) inset;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        color 0.28s ease;
}

.site-footer--lux .footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.35) !important;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.35),
        0 0 22px rgba(212, 175, 55, 0.18) !important;
    color: #fff !important;
}

.site-footer--lux .footer-social svg {
    width: 16px !important;
    height: 16px !important;
}

.site-footer--lux .footer-meta {
    color: rgba(165, 165, 178, 0.82) !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
    letter-spacing: 0.03em;
    margin-top: 6px !important;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.site-footer--lux .footer-meta--muted {
    color: rgba(135, 136, 148, 0.72) !important;
    font-size: 11px !important;
    margin-top: 4px !important;
}

@media (max-width: 520px) {
    .site-footer--lux .footer-links {
        flex-direction: column;
        gap: 4px !important;
        align-items: center;
    }

    .site-footer--lux .footer-links a {
        letter-spacing: 0.18em !important;
    }
}

/* —— Premium modal system —— */
.lux-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    background: rgba(4, 4, 8, 0.58);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
    opacity: 0;
    transition: opacity 0.35s ease, background 0.35s ease;
}

.lux-overlay.is-open {
    opacity: 1;
}

.lux-modal__panel {
    position: relative;
    width: min(100%, 480px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 32px 28px 28px;
    border-radius: 24px !important;
    background: linear-gradient(155deg, rgba(22, 24, 34, 0.96), rgba(12, 12, 18, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.08) inset;
    backdrop-filter: blur(14px);
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.lux-overlay.is-open .lux-modal__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lux-modal__panel--form {
    width: min(100%, 560px);
}

.lux-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.lux-modal__close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--lux-gold);
}

.lux-modal__kicker {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 10px;
}

.lux-modal__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
    margin-bottom: 10px;
    line-height: 1.15;
}

.lux-modal__lead {
    color: var(--lux-muted);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.lux-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
    margin-bottom: 22px;
}

.lux-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a8adb8;
}

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

.lux-field input,
.lux-field textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
}

.lux-field input:focus,
.lux-field textarea:focus {
    outline: none;
    border-color: var(--lux-gold-soft);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.lux-modal__submit {
    width: 100%;
    margin-top: 4px;
    padding: 16px !important;
    font-size: 14px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lux-modal__panel--prompt {
    text-align: center;
    width: min(100%, 420px);
}

.lux-prompt-icon {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--lux-gold);
}

.book-choice-grid {
    display: grid;
    gap: 16px;
}

.book-choice-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.book-choice-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--lux-gold);
}

.book-choice-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.07);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.book-choice-card__label {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 6px;
    text-transform: none;
}

.book-choice-card__desc {
    font-size: 14px;
    color: var(--lux-muted);
    line-height: 1.55;
    font-family: "Inter", sans-serif;
}

.book-choice-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.book-choice-quick--inline {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.book-choice-quick__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2px;
    transition:
        transform 0.4s var(--lux-ease-out),
        border-color 0.35s ease,
        background 0.35s ease;
}

.book-choice-quick__btn:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.1);
}

.book-choice-quick__btn--wa {
    border-color: rgba(37, 211, 102, 0.35);
}

.book-choice-quick__btn--wa:hover {
    border-color: rgba(37, 211, 102, 0.55);
    background: rgba(37, 211, 102, 0.12);
}

.book-choice-quick__btn--secondary {
    opacity: 0.92;
}

.lux-form-error {
    width: 100%;
    margin: 0 0 16px;
    padding: 12px 14px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: #ffb4b4;
    background: rgba(120, 20, 20, 0.35);
    border: 1px solid rgba(255, 120, 120, 0.25);
    border-radius: 4px;
}

.lux-field--invalid > span {
    color: rgba(255, 210, 170, 0.95) !important;
}

.lux-field.lux-field--invalid input,
.lux-field.lux-field--invalid textarea,
.lux-field.lux-field--invalid select {
    border-color: rgba(212, 175, 55, 0.65) !important;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.22),
        0 0 24px rgba(212, 175, 55, 0.12);
}

.lux-modal__submit.is-pressing {
    transform: scale(0.985);
    transition: transform 0.14s ease;
}

.lux-modal__actions {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.btn--hero-book {
    min-width: 240px;
    padding: 18px 36px !important;
    font-size: 12px !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase;
    border-radius: 2px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28) inset,
        0 22px 56px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(212, 175, 55, 0.12);
    background: linear-gradient(165deg, #e8c96a 0%, var(--lux-gold-bright) 38%, #b8922b 100%) !important;
    color: #0a0a0c !important;
    font-weight: 600 !important;
    transition:
        transform 0.5s var(--lux-ease-out),
        box-shadow 0.5s ease,
        filter 0.35s ease,
        border-color 0.35s ease;
}

.btn--hero-book:hover {
    transform: translateY(-5px);
    filter: brightness(1.06);
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.btn--hero-primary {
    min-width: 220px;
    padding: 16px 32px !important;
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase;
    border-radius: 2px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22) inset,
        0 20px 50px rgba(0, 0, 0, 0.5);
    background: linear-gradient(165deg, var(--lux-gold-bright) 0%, #c9a227 48%, var(--lux-gold) 100%) !important;
    transition:
        transform 0.5s var(--lux-ease-out),
        box-shadow 0.5s ease,
        filter 0.35s ease,
        border-color 0.35s ease;
}

.btn--hero-primary:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
    border-color: rgba(255, 255, 255, 0.28) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28) inset,
        0 28px 60px rgba(0, 0, 0, 0.55);
}

.btn--hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 220px;
    padding: 14px 28px !important;
    font-size: 11px !important;
    font-weight: 500;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.94) !important;
    background: rgba(8, 8, 12, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 2px !important;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.5s var(--lux-ease-out),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.45s ease;
}

.btn--hero-ghost:hover {
    transform: translateY(-4px);
    background: rgba(14, 14, 20, 0.55) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.btn--outline-gold {
    background: transparent !important;
    color: #f5f5f5 !important;
    border: 1px solid rgba(212, 175, 55, 0.55) !important;
    box-shadow: none !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 11px !important;
    padding: 14px 26px !important;
    border-radius: 999px !important;
}

.btn--outline-gold:hover {
    background: rgba(212, 175, 55, 0.12) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn--text-gold {
    display: inline-flex;
    margin-top: 12px;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--lux-gold) !important;
    font-size: 12px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0 !important;
}

.btn--text-gold:hover {
    color: #e8c96a !important;
    transform: none;
    filter: none;
}

.whatsapp-float {
    border-radius: 999px !important;
    background: rgba(20, 22, 30, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    font-size: 12px !important;
    padding: 10px 18px !important;
}

.lux-section,
.service-showcase,
.lux-split-section,
.lux-reviews,
.why-section,
.contact-section {
    scroll-margin-top: calc(var(--lux-nav-h) + 8px);
}

#home {
    scroll-margin-top: 0;
}

.section-kicker {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 500;
    line-height: 1.18;
    margin-bottom: 16px;
    color: #f7f7fb;
}

.section-lead {
    color: var(--lux-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 36rem;
}

.lux-service-list {
    list-style: none;
    margin: 22px 0 28px;
    padding: 0;
}

.lux-service-list li {
    position: relative;
    padding: 10px 0 10px 1.35rem;
    color: rgba(235, 235, 242, 0.88);
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lux-service-list li:last-child {
    border-bottom: none;
}

.lux-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lux-gold);
    opacity: 0.85;
}

.lux-split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    min-height: 520px;
    background: #070708;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lux-split-section--reverse .lux-split-section__intro {
    order: 2;
}

.lux-split-section--reverse .lux-split-section__visual {
    order: 1;
}

.lux-split-section__intro {
    padding: clamp(56px, 9vw, 112px) clamp(24px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
}

.lux-split-section__visual {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lux-split-section__visual--wedding {
    background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
        url("../images/wedding.webp");
}

.lux-split-section__visual--tour {
    background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
        url("../images/tours.webp");
}

.lux-section--tight {
    padding-top: 72px !important;
}

.why-section {
    padding: clamp(80px, 11vw, 120px) clamp(20px, 5vw, 48px);
    background: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-section__inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.why-section__inner .section-lead {
    margin: 0 auto 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    text-align: left;
}

.why-pillar {
    padding: 26px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.35s ease;
}

.why-pillar:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.why-pillar h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #f2f2f7;
}

.why-pillar p {
    font-size: 0.95rem;
    color: var(--lux-muted);
    line-height: 1.65;
}

.media-section__head {
    text-align: center;
    margin-bottom: 36px;
}

.lux-vehicle-grid .vehicle-card,
.lux-vehicle-grid .lux-showcase-card {
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s ease;
}

.lux-vehicle-grid .vehicle-card img,
.lux-vehicle-grid .vehicle-card__media img {
    height: 300px;
    transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-vehicle-grid .vehicle-card:hover img,
.lux-vehicle-grid .vehicle-card:hover .vehicle-card__media img {
    transform: scale(1.05);
}

.lux-vehicle-grid .vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lux-vehicle-grid .vehicle-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.82) 100%);
    pointer-events: none;
}

.lux-section-head h2 {
    font-family: "Playfair Display", serif !important;
}

#dynamicSectionsContainer .about-content {
    margin-bottom: 0;
}

.contact-details-block {
    max-width: 520px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.9;
    color: #c8cad4;
}

.contact-details-block a {
    color: #f2f2f7;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    transition: color 0.2s ease;
}

.contact-details-block a:hover {
    color: #d4af37;
}

.contact-reg {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #d4af37;
}

.contact-muted {
    display: block;
    font-size: 0.8rem;
    color: #7c8294;
    margin-top: 2px;
}

.contact-cards a {
    box-shadow: none !important;
}

.footer-reg {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #d4af37;
    margin-top: 6px;
}

.footer-social--icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-social--icons a:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.lux-modal__foot {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
}

button.btn--hero-ghost {
    font-family: inherit;
    cursor: pointer;
}

.media-strip .media-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 280px;
    background: #0c0c10;
    padding: 0 0 16px !important;
    scroll-snap-align: start;
    transition: transform 0.45s ease;
}

.media-strip .media-card:hover {
    transform: translateY(-4px);
}

.media-strip .media-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 14px;
}

.media-strip .media-card h3 {
    font-family: "Playfair Display", serif;
    padding: 0 16px;
}

.nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 8px;
}

.nav-links li a {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
}

@media (max-width: 1100px) {
    .nav-links li a {
        font-size: 9px !important;
        letter-spacing: 0.1em !important;
    }
}

@media (max-width: 900px) {
    .lux-split-section {
        grid-template-columns: 1fr !important;
    }

    .lux-split-section__visual {
        min-height: 280px;
        order: -1;
    }

    .lux-split-section--reverse .lux-split-section__visual {
        order: -1;
    }

    .lux-split-section--reverse .lux-split-section__intro {
        order: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 14px !important;
    }

    .hero.hero--cinematic {
        min-height: 100svh;
    }

    .logo span {
        letter-spacing: 0.12em;
    }

    .hero-headline,
    #heroTitle {
        font-size: clamp(2rem, 9vw, 2.65rem) !important;
    }

    .hero-subtitle,
    #heroSubtitle {
        font-size: 1.02rem !important;
        line-height: 1.62;
        margin-bottom: 26px;
    }

    .hero-actions {
        max-width: none;
        gap: 14px;
    }

    .hero-actions__secondary {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .hero-actions .btn--hero-book,
    .hero-actions .btn--hero-ghost {
        width: 100%;
        justify-content: center;
    }

    .lux-section {
        padding: 64px 18px !important;
    }

    .lux-vehicle-grid .vehicle-card:hover {
        transform: none;
    }

    .lux-vehicle-grid .vehicle-card:hover img,
    .lux-vehicle-grid .vehicle-card:hover .vehicle-card__media img {
        transform: none;
    }

    .stats-section {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-card {
        max-width: none;
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    html {
        scroll-behavior: auto;
    }

    .hero__slides {
        will-change: auto;
    }

    .hero__slide.is-active {
        animation: none !important;
        transform: scale(1) !important;
    }

    .reveal {
        transition-duration: 0.55s;
    }

    .navbar,
    .hero.hero--cinematic .overlay,
    .lux-overlay,
    .lux-modal__panel,
    .book-choice-card,
    .vehicle-lightbox {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .lux-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    @keyframes luxHeroIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    html {
        scroll-behavior: auto;
    }

    .hero-animate {
        animation: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .nav-links li a::after {
        transition: none;
    }
}

.lux-vehicle-grid .vehicle-card__media {
    cursor: zoom-in;
}

.vehicle-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 56px);
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.vehicle-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.vehicle-lightbox__image {
    max-width: min(1100px, 94vw);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
    transform: scale(0.96);
    transition: transform 0.28s ease;
}

.vehicle-lightbox.is-open .vehicle-lightbox__image {
    transform: scale(1);
}

.vehicle-lightbox__close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    background: rgba(10, 10, 14, 0.72);
    color: #f5d77b;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vehicle-lightbox__close:hover {
    background: rgba(212, 175, 55, 0.16);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .vehicle-lightbox {
        padding: 14px;
    }

    .vehicle-lightbox__image {
        max-width: 96vw;
        max-height: 78vh;
        border-radius: 16px;
    }

    .vehicle-lightbox__close {
        top: 14px;
        right: 14px;
    }
}

/* --- Premium polish: layout, CTAs, image UX --- */
html {
    overflow-x: clip;
}

body {
    overflow-x: clip;
}

.vehicle-card__media {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 0;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.vehicle-card__media:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.65);
    outline-offset: 3px;
}

.lux-img-fade {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lux-img-fade.is-loaded {
    opacity: 1;
}

.lux-float-wa {
    position: fixed;
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    z-index: 9990;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lux-float-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.lux-float-wa svg {
    width: 28px;
    height: 28px;
}

.lux-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9985;
    display: none;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(8, 8, 10, 0), rgba(8, 8, 10, 0.92) 28%, rgba(6, 6, 8, 0.98));
    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.lux-sticky-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.lux-sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(16, 16, 20, 0.92);
    color: #f8f4ea;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.lux-sticky-cta__btn:active {
    transform: scale(0.98);
}

.lux-sticky-cta__btn--primary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(160, 120, 40, 0.95));
    color: #0b0b0d;
    border-color: rgba(212, 175, 55, 0.55);
}

.lux-sticky-cta__btn--wa {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(12, 40, 28, 0.92);
    color: #e8fff2;
}

@media (max-width: 768px) {
    .lux-float-wa {
        display: flex;
    }

    .lux-sticky-cta {
        display: block;
    }

    .lux-vehicle-grid .vehicle-card,
    .lux-vehicle-grid .lux-showcase-card {
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
    }
}

body.lux-modal-open .lux-sticky-cta,
body.lux-modal-open .lux-float-wa {
    visibility: hidden;
    pointer-events: none;
}

@media (min-width: 769px) {
    .lux-float-wa,
    .lux-sticky-cta {
        display: none !important;
    }
}

@media (pointer: coarse) {
    .vehicle-lightbox {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.88);
    }
}

/* —— Cinematic loader —— */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lux-cinema-loader {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: grid;
    place-items: center;
    background: #030304;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.55s var(--lux-ease-out),
        visibility 0.55s step-end;
}

.lux-cinema-loader--done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.5s var(--lux-ease-out),
        visibility 0.5s step-end;
}

.lux-cinema-loader__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 24px;
    animation: luxLoaderFadeIn 0.55s var(--lux-ease-out) both;
}

@keyframes luxLoaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lux-cinema-loader__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.lux-cinema-loader__ring-track {
    stroke: rgba(255, 255, 255, 0.14);
    stroke-width: 1.15;
}

.lux-cinema-loader__ring-bar {
    stroke: rgba(248, 248, 252, 0.95);
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-dasharray: 113.1;
    stroke-dashoffset: 113.1;
    transform: rotate(-90deg);
    transform-origin: 22px 22px;
    animation: luxRingDraw 1.75s var(--lux-ease-out) forwards;
}

@keyframes luxRingDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.lux-cinema-loader__logo-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
}

.lux-cinema-loader__logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
}

.lux-cinema-loader__tagline {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(230, 232, 240, 0.72);
    text-align: center;
    max-width: 22rem;
    line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
    .lux-cinema-loader__inner {
        animation: none;
    }

    .lux-cinema-loader__ring-bar {
        animation: none;
        stroke-dashoffset: 0;
    }
}

.lux-split-section.reveal,
.service-showcase.reveal,
.lux-reviews,
.why-section.reveal {
    content-visibility: auto;
}

.lux-reviews {
    padding: clamp(72px, 10vw, 112px) clamp(18px, 4vw, 40px);
    background: linear-gradient(180deg, #050508, #07070c);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lux-reviews__head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 40px;
}

.lux-reviews__lead {
    margin-left: auto;
    margin-right: auto;
}

.lux-reviews__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 4vw, 40px);
    max-width: 1100px;
    margin: 0 auto 36px;
    align-items: start;
}

.lux-reviews__featured {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lux-review-spot {
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 14, 20, 0.72);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    transition:
        border-color 0.35s ease,
        transform 0.45s var(--lux-ease-out);
}

.lux-review-spot:hover {
    border-color: rgba(212, 175, 55, 0.28);
    transform: translateY(-2px);
}

.lux-review-spot__stars {
    margin: 0 0 10px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: rgba(245, 215, 140, 0.95);
}

.lux-review-spot__text {
    margin: 0 0 12px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(244, 244, 250, 0.92);
}

.lux-review-spot__name {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(200, 204, 220, 0.75);
}

.lux-reviews__empty {
    margin: 0;
    padding: 22px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(210, 212, 224, 0.72);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.lux-review-form--premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 14, 0.85);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.lux-review-form__title {
    margin: 0 0 4px;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    color: #fafafa;
}

.lux-review-form__label input,
.lux-review-form__label textarea,
.lux-review-form__label select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #f4f4f8;
    padding: 12px 14px;
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    touch-action: manipulation;
}

.lux-review-form__label textarea {
    min-height: 120px;
    resize: vertical;
}

.lux-review-form__label input:focus,
.lux-review-form__label textarea:focus,
.lux-review-form__label select:focus {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(255, 255, 255, 0.07);
}

.lux-review-form__label--inline {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200, 204, 220, 0.75);
}

.lux-review-form__submit {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}

.lux-review-form__msg {
    margin: 10px 0 0;
    min-height: 1.4em;
    font-size: 0.88rem;
    color: rgba(255, 200, 200, 0.9);
}

.lux-review-form__msg--ok {
    color: rgba(170, 230, 200, 0.95);
}

.lux-reviews__carousel {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 44px;
}

.lux-reviews__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 8, 12, 0.55);
}

.lux-reviews__viewport::-webkit-scrollbar {
    display: none;
}

.lux-reviews__track {
    display: flex;
    gap: 14px;
    padding: 16px 14px;
}

.lux-review-card {
    flex: 0 0 min(88vw, 360px);
    scroll-snap-align: center;
    padding: 20px 20px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 16, 22, 0.88);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition:
        border-color 0.35s ease,
        transform 0.4s var(--lux-ease-out);
}

.lux-review-card:hover {
    border-color: rgba(212, 175, 55, 0.22);
    transform: translateY(-3px);
}

.lux-review-card--solo {
    flex: 1 1 auto;
    text-align: center;
}

.lux-review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.lux-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    background: linear-gradient(145deg, #e8c96a, #a88930);
}

.lux-review-card__stars {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: rgba(245, 215, 140, 0.95);
}

.lux-review-card__text {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.62;
    color: rgba(238, 238, 246, 0.92);
}

.lux-review-card__name {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(180, 186, 204, 0.82);
}

.lux-review-card--flash {
    animation: luxReviewFlash 0.85s var(--lux-ease-out) both;
}

@keyframes luxReviewFlash {
    0% {
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
        border-color: rgba(212, 175, 55, 0.55);
    }
    100% {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.08);
    }
}

.lux-reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 18, 0.75);
    color: rgba(248, 248, 252, 0.9);
    cursor: pointer;
    z-index: 2;
    transition: background 0.25s ease, border-color 0.25s ease;
    touch-action: manipulation;
}

.lux-reviews__nav:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.12);
}

.lux-reviews__nav--prev {
    left: 0;
}

.lux-reviews__nav--next {
    right: 0;
}

.lux-reviews__nav::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.lux-reviews__nav--prev::after {
    transform: rotate(135deg);
}

.lux-reviews__nav--next::after {
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .lux-reviews__grid {
        grid-template-columns: 1fr;
    }

    .lux-reviews__carousel {
        padding: 0 36px;
    }
}

.btn,
button.btn {
    touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
    .lux-review-card--flash {
        animation: none !important;
    }
}