:root {
    --bg: #08060a;
    --bg-soft: #100b13;
    --surface: #151018;
    --surface-2: #1c1420;
    --text: #f7f3f7;
    --muted: #b8abb9;
    --pink: #f0419a;
    --pink-light: #ff83c1;
    --magenta: #a31569;
    --purple: #6d2b86;
    --gold: #d7b15a;
    --gold-light: #f4d990;
    --gold-dark: #856321;
    --border: rgba(215, 177, 90, 0.28);
    --border-soft: rgba(255, 255, 255, 0.09);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --font-display: "Cinzel", Georgia, serif;
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Montserrat", Arial, sans-serif;
    --header-height: 72px;
    --radius: 18px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 15%, rgba(109, 43, 134, 0.08), transparent 28rem),
        var(--bg);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 9999;
    padding: 10px 16px;
    color: #09060b;
    background: var(--gold-light);
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(8, 6, 10, 0.78);
    border-bottom: 1px solid rgba(215, 177, 90, 0.12);
    backdrop-filter: blur(16px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 6, 10, 0.96);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #0d0910;
    background: linear-gradient(145deg, var(--gold-light), #a97928);
    border: 1px solid #f6dea1;
    transform: rotate(45deg);
    font: 700 21px/1 var(--font-display);
    box-shadow: 0 0 24px rgba(215, 177, 90, 0.24);
}

.brand-mark::first-letter {
    transform: rotate(-45deg);
}

.brand-mark {
    text-indent: 1px;
}

.brand-mark::before {
    content: "L";
    transform: rotate(-45deg);
}

.brand-mark {
    font-size: 0;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font: 700 17px/1.1 var(--font-display);
    letter-spacing: 0.03em;
}

.brand-copy strong span {
    color: var(--gold);
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    color: white;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 6, 10, 0.98);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}

.main-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding: 18px 20px 28px;
    opacity: 1;
    pointer-events: auto;
}

.main-nav > a:not(.button) {
    padding: 13px 5px;
    color: #e8e0e8;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    font-weight: 600;
}

.main-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    color: #130a10;
    background: linear-gradient(110deg, #c89636 0%, #f6dea0 45%, #d3a747 100%);
    border: 1px solid #f5d98f;
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(215, 177, 90, 0.22);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.button::after {
    position: absolute;
    inset: 0 auto 0 -45%;
    width: 35%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(215, 177, 90, 0.34);
    filter: brightness(1.06);
}

.button:hover::after {
    left: 125%;
}

.button-small {
    min-height: 40px;
    padding-inline: 20px;
    font-size: 11px;
}

.button-outline {
    color: var(--gold-light);
    background: rgba(12, 8, 14, 0.56);
    border-color: rgba(215, 177, 90, 0.55);
    box-shadow: none;
}

.button-pink {
    color: white;
    background: linear-gradient(110deg, #a91d6a, #f04a9e 58%, #ae246c);
    border-color: #ff8bc5;
    box-shadow: 0 10px 36px rgba(240, 65, 154, 0.27);
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 58px) 0 66px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8,6,10,0.98) 0%, rgba(8,6,10,0.88) 48%, rgba(8,6,10,0.5) 100%),
        radial-gradient(circle at 78% 45%, rgba(240,65,154,0.12), transparent 30rem);
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    content: "";
    background: linear-gradient(transparent, var(--bg));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 52px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.eyebrow {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow.centered {
    justify-content: center;
}

.eyebrow.centered > span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1,
.section-heading h2,
.ladies-content h2,
.booking-copy h2,
.legal-hero h1 {
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.03;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 19px;
    font-size: clamp(43px, 13vw, 78px);
}

.hero h1 em,
.section-heading h2 em,
.ladies-content h2 em,
.booking-copy h2 em,
.legal-hero h1 em {
    display: block;
    color: var(--pink-light);
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    text-shadow: 0 0 26px rgba(240, 65, 154, 0.28);
}

.hero-tagline {
    margin-bottom: 12px;
    color: var(--gold-light);
    font: italic 600 clamp(20px, 5vw, 27px)/1.35 var(--font-serif);
}

.hero-copy {
    max-width: 630px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 15px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-facts {
    display: grid;
    margin: 34px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.hero-facts li {
    padding: 0 12px;
    border-right: 1px solid var(--border);
}

.hero-facts li:first-child {
    padding-left: 0;
}

.hero-facts li:last-child {
    border-right: 0;
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    color: var(--gold-light);
    font: 600 16px var(--font-display);
}

.hero-facts span {
    margin-top: 2px;
    color: #897f8a;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    width: min(100%, 450px);
    margin-inline: auto;
}

.hero-showpiece {
    position: relative;
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    isolation: isolate;
    background:
        radial-gradient(circle, rgba(240,65,154,.16) 0 13%, transparent 38%),
        radial-gradient(circle, rgba(215,177,90,.09), transparent 62%);
}

.hero-showpiece::before,
.hero-showpiece::after {
    position: absolute;
    z-index: -1;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.hero-showpiece::before {
    inset: 7%;
    border: 1px solid rgba(215,177,90,.48);
    box-shadow: inset 0 0 55px rgba(240,65,154,.08), 0 0 55px rgba(215,177,90,.08);
}

.hero-showpiece::after {
    inset: 16%;
    border: 1px solid rgba(240,65,154,.24);
    box-shadow: 0 0 35px rgba(240,65,154,.12);
}

.showpiece-orbit {
    position: absolute;
    inset: 1%;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    animation: orbit-spin 28s linear infinite;
}

.showpiece-orbit::before,
.showpiece-orbit::after {
    position: absolute;
    inset: 50% -2% auto;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(215,177,90,.3), transparent);
}

.showpiece-orbit::after {
    transform: rotate(90deg);
}

.showpiece-orbit i {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-light);
    border: 2px solid #fff2c8;
    transform: rotate(45deg);
    box-shadow: 0 0 16px var(--gold);
}

.showpiece-orbit i:nth-child(1) { top: 9%; left: 25%; }
.showpiece-orbit i:nth-child(2) { right: 4%; bottom: 32%; }
.showpiece-orbit i:nth-child(3) { bottom: 4%; left: 33%; }

.showpiece-center {
    position: relative;
    z-index: 2;
    display: flex;
    width: 70%;
    padding: 56px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, rgba(24,15,27,.92), rgba(9,6,11,.55) 68%, transparent 69%);
}

.showpiece-center span {
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.showpiece-center strong {
    margin: 3px 0 -5px;
    color: transparent;
    background: linear-gradient(180deg, #fff4c7, #d19c36 55%, #7e5618);
    background-clip: text;
    -webkit-background-clip: text;
    font: 700 clamp(62px, 19vw, 106px)/1 var(--font-display);
    letter-spacing: -.06em;
    filter: drop-shadow(0 0 18px rgba(215,177,90,.2));
}

.showpiece-center em {
    color: var(--pink-light);
    font: italic 600 clamp(18px, 5vw, 28px)/1.1 var(--font-serif);
    text-shadow: 0 0 18px rgba(240,65,154,.38);
}

.showpiece-center small {
    margin-top: 13px;
    color: #a99daa;
    font-size: 7px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.showpiece-crown {
    position: absolute;
    z-index: 4;
    top: 4%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: linear-gradient(145deg, #fff1b8, #bf8427);
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 0 20px 4px rgba(215,177,90,.32);
}

.showpiece-crown::before,
.showpiece-crown::after {
    position: absolute;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--pink-light);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--pink);
}

.showpiece-crown::before { top: -10px; left: -10px; }
.showpiece-crown::after { right: -10px; bottom: -10px; }

.showpiece-glitter b {
    position: absolute;
    z-index: 3;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 9px 2px var(--pink-light);
    animation: twinkle 2.8s ease-in-out infinite;
}

.showpiece-glitter b:nth-child(1) { top: 23%; left: 12%; }
.showpiece-glitter b:nth-child(2) { top: 17%; right: 18%; animation-delay: .5s; }
.showpiece-glitter b:nth-child(3) { top: 48%; left: 4%; animation-delay: 1.2s; }
.showpiece-glitter b:nth-child(4) { top: 44%; right: 5%; animation-delay: 1.8s; }
.showpiece-glitter b:nth-child(5) { bottom: 17%; left: 17%; animation-delay: .8s; }
.showpiece-glitter b:nth-child(6) { right: 24%; bottom: 10%; animation-delay: 2.1s; }
.showpiece-glitter b:nth-child(7) { top: 33%; right: 27%; animation-delay: 1.5s; }
.showpiece-glitter b:nth-child(8) { bottom: 29%; left: 29%; animation-delay: .3s; }

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

.floating-card {
    position: absolute;
    right: -8px;
    bottom: -28px;
    z-index: 3;
    display: flex;
    width: min(280px, 83%);
    padding: 16px 20px;
    flex-direction: column;
    background: rgba(19, 13, 23, 0.94);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.floating-card span {
    color: var(--pink-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.floating-card strong {
    font-family: var(--font-display);
    font-size: 16px;
}

.floating-card small {
    color: var(--gold-light);
    font-size: 10px;
}

.hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
}

.hero-glow-one {
    top: 12%;
    right: -160px;
    background: var(--pink);
}

.hero-glow-two {
    bottom: -180px;
    left: 25%;
    background: var(--purple);
}

.sparkles i {
    position: absolute;
    z-index: 3;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px 2px var(--pink-light);
    opacity: 0.75;
    animation: twinkle 3.5s ease-in-out infinite;
}

.sparkles i:nth-child(1) { top: 18%; left: 8%; }
.sparkles i:nth-child(2) { top: 32%; right: 7%; animation-delay: .8s; }
.sparkles i:nth-child(3) { top: 69%; left: 5%; animation-delay: 1.4s; }
.sparkles i:nth-child(4) { top: 21%; left: 52%; animation-delay: 2s; }
.sparkles i:nth-child(5) { bottom: 15%; right: 13%; animation-delay: .5s; }
.sparkles i:nth-child(6) { top: 12%; right: 28%; animation-delay: 2.7s; }
.sparkles i:nth-child(7) { top: 43%; left: 3%; animation-delay: 1.1s; }
.sparkles i:nth-child(8) { top: 57%; right: 4%; animation-delay: 2.3s; }
.sparkles i:nth-child(9) { bottom: 8%; left: 28%; animation-delay: .3s; }
.sparkles i:nth-child(10) { top: 9%; left: 35%; animation-delay: 1.8s; }
.sparkles i:nth-child(11) { bottom: 26%; right: 36%; animation-delay: 2.9s; }
.sparkles i:nth-child(12) { top: 37%; right: 21%; animation-delay: .7s; }

.sparkles i:nth-child(3n) {
    background: var(--gold-light);
    box-shadow: 0 0 9px 2px var(--gold);
}

.sparkles i:nth-child(4n) {
    width: 2px;
    height: 11px;
    border-radius: 1px;
}

.sparkles i:nth-child(4n)::after {
    position: absolute;
    top: 5px;
    left: -4px;
    width: 10px;
    height: 1px;
    content: "";
    background: inherit;
    box-shadow: inherit;
}

.section-sparkles i,
.booking-sparkles i {
    opacity: .58;
}

@keyframes twinkle {
    0%, 100% { opacity: .2; transform: scale(.6); }
    50% { opacity: .9; transform: scale(1.3); }
}

.scroll-cue {
    display: none;
}

.trust-strip {
    position: relative;
    z-index: 5;
    background: linear-gradient(90deg, #9a7028, #f3d583 45%, #946921);
    color: #130d16;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.trust-grid span {
    padding: 13px 8px;
    text-align: center;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding: 90px 0;
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.ladies-content h2,
.booking-copy h2,
.legal-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 9vw, 56px);
}

.section-heading h2 em {
    margin-top: 4px;
}

.section-heading > p:last-child {
    max-width: 630px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
}

.vehicles-section::before {
    position: absolute;
    inset: 10% 0 auto;
    height: 560px;
    content: "";
    background: radial-gradient(ellipse at center, rgba(109,43,134,0.12), transparent 65%);
    pointer-events: none;
}

.vehicles-section::after {
    position: absolute;
    inset: 5% 0;
    content: "";
    opacity: .4;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(255,255,255,.8) 0 1px, transparent 2px),
        radial-gradient(circle at 78% 16%, rgba(244,217,144,.8) 0 1px, transparent 2px),
        radial-gradient(circle at 91% 72%, rgba(255,131,193,.8) 0 1px, transparent 2px),
        radial-gradient(circle at 24% 81%, rgba(244,217,144,.65) 0 1px, transparent 2px);
    background-size: 190px 170px, 240px 210px, 210px 190px, 260px 240px;
    pointer-events: none;
}

.vehicles-section .container {
    position: relative;
    z-index: 2;
}

.vehicle-grid {
    display: grid;
    gap: 22px;
}

.vehicle-grid.single-vehicle {
    max-width: 760px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
}

.vehicle-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(27,20,31,0.96), rgba(13,9,15,0.98));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(0,0,0,.26);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.vehicle-card::after {
    position: absolute;
    inset: auto 14% 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215,177,90,.42);
    box-shadow: 0 22px 55px rgba(0,0,0,.4), 0 0 30px rgba(240,65,154,.07);
}

.vehicle-card.featured {
    border-color: rgba(240,65,154,.33);
}

.vehicle-card-glitter {
    position: absolute;
    z-index: 0;
    top: -80px;
    right: -75px;
    width: 220px;
    height: 220px;
    background:
        radial-gradient(circle at 50% 50%, rgba(240,65,154,.21), transparent 58%),
        radial-gradient(circle at 23% 37%, white 0 1px, transparent 2px),
        radial-gradient(circle at 61% 21%, var(--pink-light) 0 1px, transparent 2px),
        radial-gradient(circle at 74% 68%, var(--gold-light) 0 1px, transparent 2px),
        radial-gradient(circle at 39% 78%, white 0 1px, transparent 2px);
    background-size: auto, 27px 31px, 39px 35px, 31px 43px, 45px 37px;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(240,65,154,.22));
    pointer-events: none;
    animation: glitter-drift 9s ease-in-out infinite alternate;
}

.vehicle-card-glitter.gold {
    filter: hue-rotate(36deg) drop-shadow(0 0 8px rgba(215,177,90,.22));
}

.vehicle-card-glitter.purple {
    filter: hue-rotate(-28deg) drop-shadow(0 0 8px rgba(109,43,134,.25));
    animation-delay: -4s;
}

@keyframes glitter-drift {
    from { transform: translate3d(0, 0, 0) rotate(0deg); }
    to { transform: translate3d(-12px, 14px, 0) rotate(8deg); }
}

.vehicle-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 92px;
    margin-bottom: 28px;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(215,177,90,.18);
}

.vehicle-card-top::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 64px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--pink-light), var(--gold));
    box-shadow: 0 0 10px rgba(240,65,154,.35);
}

.vehicle-card-top > span {
    color: transparent;
    background: linear-gradient(150deg, #f8e5a7, #8b6423);
    background-clip: text;
    -webkit-background-clip: text;
    font: 600 55px/1 var(--font-display);
    opacity: .72;
}

.vehicle-card-top small {
    max-width: 110px;
    padding-top: 7px;
    color: #887d89;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.5;
    text-align: right;
    text-transform: uppercase;
}

.vehicle-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 11px;
    color: white;
    background: rgba(179,28,105,.9);
    border: 1px solid rgba(255,132,193,.55);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vehicle-body {
    position: relative;
    z-index: 2;
    padding: 30px 24px 32px;
}

.vehicle-kicker {
    margin-bottom: 7px;
    color: var(--pink-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.vehicle-card h3 {
    margin-bottom: 9px;
    color: white;
    font: 600 22px/1.2 var(--font-display);
}

.vehicle-meta {
    display: flex;
    margin-bottom: 17px;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.vehicle-meta i {
    width: 3px;
    height: 3px;
    background: var(--pink);
    border-radius: 50%;
}

.vehicle-body > p:not(.vehicle-kicker):not(.vehicle-meta) {
    min-height: 76px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
}

.vehicle-price {
    display: flex;
    margin: 4px 0 22px;
    flex-direction: column;
}

.vehicle-price span {
    color: var(--gold-light);
    font: 600 25px var(--font-serif);
}

.vehicle-price small {
    color: #8c818e;
    font-size: 10px;
}

.vehicle-price.request span {
    font-size: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f3ebf3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--pink-light);
    font-size: 18px;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.ladies-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: #0b070d;
    border-block: 1px solid rgba(240,65,154,.14);
}

.ladies-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(240,65,154,.18), transparent 25rem),
        radial-gradient(circle at 16% 72%, rgba(109,43,134,.18), transparent 25rem),
        repeating-linear-gradient(135deg, transparent 0 38px, rgba(215,177,90,.018) 38px 39px);
    opacity: .75;
}

.ladies-section::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 12% 12%, rgba(240,65,154,.2), transparent 24rem),
        radial-gradient(circle at 90% 70%, rgba(109,43,134,.2), transparent 28rem);
    pointer-events: none;
}

.ladies-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 46px;
    align-items: center;
}

.ladies-content h2 {
    margin-bottom: 6px;
    font-size: clamp(50px, 15vw, 92px);
}

.ladies-content h2 em {
    display: inline;
    color: var(--pink-light);
}

.ladies-tagline {
    margin-bottom: 20px;
    color: var(--gold-light);
    font: italic 600 22px var(--font-serif);
}

.ladies-intro {
    max-width: 620px;
    color: #d1c5d1;
    font-size: 14px;
}

.ladies-prices {
    display: grid;
    margin: 30px 0;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(8,5,10,.66);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.ladies-prices > div {
    position: relative;
    padding: 17px 8px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.ladies-prices > div::before {
    position: absolute;
    top: 8px;
    right: 11px;
    width: 4px;
    height: 4px;
    content: "";
    background: white;
    transform: rotate(45deg);
    box-shadow: 0 0 10px 2px var(--pink-light);
    animation: twinkle 3s ease-in-out infinite;
}

.ladies-prices > div:nth-child(2)::before { animation-delay: 1s; }
.ladies-prices > div:nth-child(3)::before { animation-delay: 2s; }

.ladies-prices > div:last-child {
    border-right: 0;
}

.ladies-prices span,
.ladies-prices strong {
    display: block;
}

.ladies-prices span {
    color: var(--pink-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ladies-prices strong {
    margin-top: 3px;
    color: white;
    font: 600 clamp(18px, 5vw, 27px) var(--font-display);
}

.ladies-prices small {
    color: var(--gold-light);
    font-size: 9px;
}

.ladies-package {
    position: relative;
    padding: 32px 25px;
    background: linear-gradient(145deg, rgba(28,18,31,.94), rgba(9,6,11,.96));
    border: 1px solid rgba(215,177,90,.5);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,.5), 0 0 40px rgba(240,65,154,.08);
    backdrop-filter: blur(12px);
}

.ladies-package::before,
.ladies-package::after {
    position: absolute;
    width: 45px;
    height: 45px;
    content: "";
    border-color: var(--pink);
}

.ladies-package::before {
    top: 10px;
    left: 10px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.ladies-package::after {
    right: 10px;
    bottom: 10px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.package-topline {
    display: inline-flex;
    padding: 7px 12px;
    color: #140a11;
    background: linear-gradient(100deg, var(--gold), var(--gold-light));
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ladies-package h3 {
    margin: 18px 0 23px;
    font: 600 28px var(--font-serif);
}

.feature-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 13px;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #e0d7e0;
    font-size: 13px;
}

.check-icon {
    display: grid;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    place-items: center;
    color: #140b10;
    background: linear-gradient(140deg, var(--pink-light), var(--pink));
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.fine-print {
    margin: 24px 0 0;
    padding-top: 17px;
    color: #877b88;
    border-top: 1px solid var(--border-soft);
    font-size: 9px;
    line-height: 1.6;
}

.services-section {
    background: linear-gradient(180deg, #0c080e, var(--bg));
}

.services-grid {
    display: grid;
    gap: 16px;
}

.service-card {
    position: relative;
    min-height: 245px;
    padding: 27px 24px;
    overflow: hidden;
    background: rgba(23,16,26,.72);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.service-card:hover {
    background: rgba(29,19,33,.95);
    border-color: var(--border);
    transform: translateY(-4px);
}

.service-card::after {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    content: "";
    background: radial-gradient(circle, rgba(240,65,154,.15), transparent 68%);
}

.service-number {
    position: absolute;
    top: 17px;
    right: 20px;
    color: rgba(215,177,90,.18);
    font: 600 37px var(--font-display);
}

.service-card svg {
    width: 34px;
    height: 34px;
    margin-bottom: 29px;
    fill: none;
    stroke: var(--pink-light);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 7px rgba(240,65,154,.25));
}

.service-card h3 {
    margin-bottom: 11px;
    font: 600 17px/1.4 var(--font-display);
}

.service-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
}

.booking-section {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at 12% 24%, rgba(109,43,134,.18), transparent 30rem),
        linear-gradient(145deg, #100a13, #08060a 60%);
    border-top: 1px solid rgba(215,177,90,.12);
}

.booking-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .14;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, black, transparent 70%);
}

.booking-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 48px;
    align-items: start;
}

.booking-copy {
    max-width: 540px;
}

.booking-copy h2 em {
    margin-top: 6px;
}

.booking-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 14px;
}

.booking-assurance {
    display: grid;
    margin-top: 34px;
    gap: 15px;
}

.booking-assurance > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.booking-assurance > div > span {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    place-items: center;
    color: var(--gold-light);
    border: 1px solid var(--border);
    border-radius: 50%;
    font: 600 10px var(--font-display);
}

.booking-assurance p,
.booking-assurance strong,
.booking-assurance small {
    display: block;
    margin: 0;
}

.booking-assurance strong {
    font-size: 12px;
}

.booking-assurance small {
    color: #887c89;
    font-size: 10px;
}

.booking-card {
    position: relative;
    padding: 24px 18px;
    overflow: hidden;
    background: rgba(18,13,21,.96);
    border: 1px solid rgba(215,177,90,.35);
    border-radius: 20px;
    box-shadow: var(--shadow), 0 0 50px rgba(109,43,134,.1);
}

.booking-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    opacity: .42;
    background-image:
        radial-gradient(circle at 9% 13%, rgba(255,255,255,.85) 0 1px, transparent 2px),
        radial-gradient(circle at 91% 19%, rgba(244,217,144,.8) 0 1px, transparent 2px),
        radial-gradient(circle at 83% 71%, rgba(255,131,193,.85) 0 1px, transparent 2px),
        radial-gradient(circle at 14% 87%, rgba(244,217,144,.72) 0 1px, transparent 2px);
    background-size: 150px 170px, 210px 190px, 180px 230px, 240px 200px;
    pointer-events: none;
}

.booking-form,
.form-status {
    position: relative;
    z-index: 2;
}

.form-status {
    display: flex;
    margin-bottom: 24px;
    padding: 16px;
    align-items: flex-start;
    gap: 13px;
    border: 1px solid;
    border-radius: 12px;
    outline: none;
}

.form-status.success {
    color: #c9f1d8;
    background: rgba(47,135,81,.12);
    border-color: rgba(93,198,131,.35);
}

.form-status.error {
    color: #ffd4dc;
    background: rgba(184,52,77,.12);
    border-color: rgba(255,106,133,.35);
}

.status-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-weight: 800;
    box-shadow: 0 0 14px currentColor;
}

.form-status strong {
    font: 600 17px var(--font-serif);
}

.form-status p {
    margin: 2px 0 0;
    font-size: 11px;
    line-height: 1.6;
}

.form-status ul {
    margin: 8px 0 0;
    padding-left: 18px;
    font-size: 10px;
}

.form-section-heading {
    display: flex;
    margin: 0 0 17px;
    padding-top: 8px;
    align-items: center;
    gap: 11px;
}

.form-section-heading:not(:first-of-type) {
    margin-top: 28px;
}

.form-section-heading > span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    color: #150c12;
    background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
    border-radius: 50%;
    font: 700 10px var(--font-display);
}

.form-section-heading strong,
.form-section-heading small {
    display: block;
}

.form-section-heading strong {
    font: 600 14px var(--font-display);
}

.form-section-heading small {
    color: #8e828f;
    font-size: 9px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.field label {
    display: block;
    margin: 0 0 6px 2px;
    color: #d8cdd9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fixed-field-label {
    display: block;
    margin: 0 0 6px 2px;
    color: #d8cdd9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.vehicle-fixed-selection {
    display: flex;
    min-height: 48px;
    padding: 9px 14px;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(105deg, rgba(215,177,90,.09), rgba(240,65,154,.07));
    border: 1px solid rgba(215,177,90,.28);
    border-radius: 9px;
}

.vehicle-fixed-selection span,
.vehicle-fixed-selection strong {
    display: block;
    line-height: 1.25;
}

.vehicle-fixed-selection span {
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vehicle-fixed-selection strong {
    color: var(--text);
    font: 600 13px var(--font-display);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--text);
    background: #0c090e;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 9px;
    outline: none;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
    min-height: 90px;
    resize: vertical;
}

.field select {
    padding-right: 38px;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold) 50%),
        linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background-color: #110c13;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(215,177,90,.1);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #e25b77;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #655d66;
}

.field-hint {
    display: block;
    margin: 6px 2px 0;
    color: #817683;
    font-size: 8px;
    line-height: 1.5;
}

.field input[type="date"],
.field input[type="time"] {
    color-scheme: dark;
}

.price-preview {
    display: flex;
    margin: 17px 0 26px;
    padding: 17px;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(100deg, rgba(215,177,90,.09), rgba(240,65,154,.07));
    border: 1px solid var(--border);
    border-radius: 11px;
}

.price-preview span {
    color: #aaa0aa;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.price-preview strong {
    margin: 2px 0;
    color: var(--gold-light);
    font: 600 26px var(--font-serif);
}

.price-preview small {
    color: #766d77;
    font-size: 8px;
}

.consent {
    display: flex;
    margin: 22px 1px;
    align-items: flex-start;
    gap: 10px;
    color: #a99eaa;
    font-size: 9px;
    line-height: 1.6;
    cursor: pointer;
}

.consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.custom-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: #0b080c;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
}

.consent input:focus-visible + .custom-checkbox {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.consent input:checked + .custom-checkbox {
    background: linear-gradient(145deg, var(--pink), var(--magenta));
    border-color: var(--pink-light);
}

.consent input:checked + .custom-checkbox::after {
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    content: "";
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

.consent.has-error .custom-checkbox {
    border-color: #e25b77;
}

.consent a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-submit {
    width: 100%;
    border-radius: 10px;
}

.form-submit svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-privacy {
    margin: 10px 0 0;
    color: #6e6570;
    text-align: center;
    font-size: 8px;
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.partner-section {
    background:
        radial-gradient(circle at 50% 50%, rgba(215,177,90,.08), transparent 30rem),
        #0b080d;
}

.partner-logos {
    display: flex;
    max-width: 850px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.partner-logo {
    display: grid;
    width: min(100%, 390px);
    height: 150px;
    padding: 24px;
    place-items: center;
    background: rgba(5,4,6,.82);
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.partner-logo:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 20px 48px rgba(0,0,0,.4), 0 0 30px rgba(215,177,90,.08);
}

.partner-logo.ronnys img {
    width: min(100%, 270px);
    max-height: 110px;
    object-fit: contain;
}

.partner-logo.leo img {
    width: min(100%, 270px);
    image-rendering: auto;
}

.partner-and {
    color: var(--pink-light);
    font: italic 600 30px var(--font-serif);
}

.direct-booking {
    display: flex;
    margin-top: 34px;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

.direct-booking span {
    color: var(--muted);
    font: italic 600 15px var(--font-serif);
}

.direct-booking a {
    color: var(--gold-light);
    font: 600 clamp(27px, 8vw, 42px) var(--font-display);
    text-shadow: 0 0 24px rgba(215,177,90,.15);
}

.contact-line {
    margin: 25px 0 0;
    color: #8f8490;
    text-align: center;
    font-size: 11px;
}

.contact-line a {
    color: var(--pink-light);
}

.site-footer {
    padding: 58px 0 18px;
    background: #050406;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    gap: 36px;
}

.footer-grid .brand {
    margin-bottom: 18px;
}

.footer-grid p,
.footer-links {
    margin: 0;
    padding: 0;
    color: #8f858f;
    font-size: 11px;
    list-style: none;
}

.footer-grid h2 {
    margin-bottom: 12px;
    color: var(--gold-light);
    font: 600 13px var(--font-display);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 7px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover {
    color: var(--pink-light);
}

.footer-bottom {
    display: flex;
    margin-top: 42px;
    padding-top: 18px;
    flex-direction: column;
    gap: 5px;
    color: #716871;
    border-top: 1px solid rgba(255,255,255,.07);
    font-size: 8px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--gold);
}

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

.legal-main {
    min-height: 70vh;
    padding-top: var(--header-height);
}

.legal-hero {
    padding: 78px 0 55px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 10%, rgba(240,65,154,.15), transparent 28rem),
        linear-gradient(180deg, #110b14, var(--bg));
    border-bottom: 1px solid var(--border-soft);
}

.legal-hero h1 {
    margin-bottom: 12px;
}

.legal-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.legal-content {
    max-width: 860px;
    padding-top: 58px;
    padding-bottom: 80px;
}

.legal-content section {
    margin-bottom: 34px;
    padding: 25px;
    background: rgba(22,15,25,.72);
    border: 1px solid var(--border-soft);
    border-radius: 13px;
}

.legal-content h2 {
    margin-bottom: 13px;
    color: var(--gold-light);
    font: 600 18px var(--font-display);
}

.legal-content h3 {
    margin: 20px 0 8px;
    font: 600 14px var(--font-display);
}

.legal-content p,
.legal-content li {
    color: #bbb0bb;
    font-size: 12px;
}

.legal-content a {
    color: var(--pink-light);
    text-decoration: underline;
}

.todo-box {
    padding: 15px !important;
    color: #ffe8b5;
    background: rgba(215,177,90,.08) !important;
    border-color: rgba(215,177,90,.35) !important;
    font-size: 11px;
}

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

.has-js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

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

:focus-visible {
    outline: 2px solid var(--pink-light);
    outline-offset: 4px;
}

@media (min-width: 560px) {
    .container {
        width: min(100% - 56px, var(--container));
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-grid span {
        padding: 15px 8px;
        border-right: 1px solid rgba(72,45,5,.22);
    }

    .trust-grid span:last-child {
        border-right: 0;
    }

    .services-grid,
    .two-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-span-2 {
        grid-column: 1 / -1;
    }

    .booking-card {
        padding: 32px;
    }

    .partner-logos {
        flex-direction: row;
    }

    .partner-and {
        flex: 0 0 auto;
    }

    .partner-logo {
        height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 760px) {
    :root {
        --header-height: 78px;
    }

    .section {
        padding: 120px 0;
    }

    .hero {
        padding-top: calc(var(--header-height) + 75px);
    }

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

    .vehicle-card.featured {
        grid-column: 1 / -1;
    }

    .vehicle-card.featured .vehicle-body {
        padding: 42px 35px;
    }

    .ladies-section {
        padding: 120px 0;
    }

    .ladies-package {
        padding: 42px 38px;
    }

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

    .legal-content section {
        padding: 34px;
    }
}

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

    .main-nav {
        position: static;
        display: flex;
        max-height: none;
        padding: 0;
        overflow: visible;
        flex-direction: row;
        align-items: center;
        gap: clamp(13px, 1.7vw, 28px);
        background: none;
        border: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav > a:not(.button) {
        position: relative;
        padding: 8px 0;
        border: 0;
        font-size: 10px;
        letter-spacing: .03em;
    }

    .main-nav > a:not(.button)::after {
        position: absolute;
        right: 0;
        bottom: 2px;
        left: 0;
        height: 1px;
        content: "";
        background: var(--pink-light);
        transform: scaleX(0);
        transition: transform .2s ease;
    }

    .main-nav > a:not(.button):hover::after {
        transform: scaleX(1);
    }

    .main-nav .nav-cta {
        margin-top: 0;
    }

    .hero-grid {
        grid-template-columns: 1.08fr .92fr;
        gap: 70px;
    }

    .hero h1 {
        font-size: clamp(62px, 6vw, 91px);
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-visual {
        width: min(100%, 490px);
    }

    .scroll-cue {
        position: absolute;
        z-index: 5;
        bottom: 27px;
        left: 50%;
        display: block;
        width: 21px;
        height: 35px;
        border: 1px solid rgba(215,177,90,.45);
        border-radius: 20px;
        transform: translateX(-50%);
    }

    .scroll-cue span {
        position: absolute;
        top: 7px;
        left: 9px;
        width: 2px;
        height: 6px;
        background: var(--gold-light);
        border-radius: 2px;
        animation: scroll-cue 1.8s ease infinite;
    }

    @keyframes scroll-cue {
        0% { opacity: 0; transform: translateY(0); }
        35% { opacity: 1; }
        100% { opacity: 0; transform: translateY(12px); }
    }

    .vehicle-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .vehicle-card.featured .vehicle-body,
    .vehicle-body {
        padding: 29px 27px 31px;
    }

    .ladies-grid {
        grid-template-columns: 1.12fr .88fr;
        gap: 80px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-section {
        padding: 128px 0;
    }

    .booking-grid {
        grid-template-columns: .82fr 1.18fr;
        gap: 80px;
    }

    .booking-copy {
        position: sticky;
        top: calc(var(--header-height) + 40px);
    }

    .booking-card {
        padding: 38px;
    }
}

@media (min-width: 1200px) {
    .brand-copy strong {
        font-size: 19px;
    }

    .main-nav {
        gap: 25px;
    }

    .main-nav > a:not(.button) {
        font-size: 11px;
    }

    .hero-grid {
        gap: 95px;
    }

    .hero-visual {
        width: 510px;
    }

    .booking-grid {
        gap: 110px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

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

@media print {
    .site-header,
    .site-footer,
    .button,
    .sparkles {
        display: none !important;
    }

    body {
        color: #111;
        background: white;
    }

    .legal-main {
        padding-top: 0;
    }
}
