@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
    --bg: #0a0a0d;
    --bg-soft: #111116;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-strong: rgba(255, 255, 255, 0.07);
    --white: #ffffff;
    --text: #f5f1e8;
    --muted: #b9b1a3;
    --gold: #c6a76a;
    --gold-light: #ead9b3;
    --gold-dark: #9f7d45;
    --border: rgba(198, 167, 106, 0.18);
    --border-light: rgba(255, 255, 255, 0.08);
    --danger: #ff8e8e;
    --success: #8ef0b4;
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
    --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.45);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --radius-pill: 999px;
    --container: 1240px;
    --header-height: 82px;
    --transition: 0.28s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(198, 167, 106, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 18%),
        linear-gradient(180deg, #09090c 0%, #121218 100%);
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

iframe {
    border: 0;
}

main {
    display: block;
}

::selection {
    background: rgba(198, 167, 106, 0.28);
    color: var(--white);
}

:focus-visible {
    outline: 2px solid rgba(234, 217, 179, 0.85);
    outline-offset: 3px;
    border-radius: 8px;
}

/* HEADER */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: rgba(8, 8, 10, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), border-color var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
    border-color: rgba(234, 217, 179, 0.34);
}

.logo p {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    letter-spacing: 0.03em;
    color: var(--white);
}

.logo span {
    color: var(--gold);
}

.site-header nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
    transition: color var(--transition), opacity var(--transition);
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.menu li a:hover {
    color: var(--gold-light);
}

.menu li a:hover::after {
    transform: scaleX(1);
}

.menu_toggle {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.menu_toggle span,
.menu_toggle span::before,
.menu_toggle span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 20px;
    background: var(--white);
    position: relative;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.menu_toggle span::before {
    position: absolute;
    top: -7px;
    left: 0;
}

.menu_toggle span::after {
    position: absolute;
    top: 7px;
    left: 0;
}

.menu_toggle.active span {
    background: transparent;
}

.menu_toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu_toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* HERO */
.hero-premium {
    position: relative;
    min-height: 100vh;
    padding: 150px 8% 90px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 9, 0.92) 0%,
            rgba(7, 7, 9, 0.78) 42%,
            rgba(7, 7, 9, 0.28) 100%
        );
    pointer-events: none;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    margin-bottom: 24px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 24px;
    max-width: 9ch;
    font-family: "Playfair Display", serif;
    font-size: clamp(4.8rem, 7vw, 8rem);
    line-height: 0.98;
    color: var(--white);
}

.hero-description {
    max-width: 620px;
    margin: 0 0 34px;
    font-size: 1.85rem;
    line-height: 1.9;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: var(--radius-pill);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #b8924f, #ead9b3);
    color: #111;
    box-shadow: 0 12px 30px rgba(198, 167, 106, 0.24);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: rgba(234, 217, 179, 0.45);
    color: var(--gold-light);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--muted);
    font-size: 1.3rem;
    font-weight: 500;
}

.hero-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
}

.hero-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero-card-content {
    padding: 28px;
}

.hero-card-label {
    margin: 0 0 12px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-card-content h2 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-card-content p {
    margin: 0;
    color: var(--muted);
    font-size: 1.55rem;
}

/* EXPERIENCE STRIP */
.experience-strip {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: -10px auto 0;
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.experience-item {
    padding: 22px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.experience-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.experience-item span {
    color: var(--muted);
    font-size: 1.45rem;
}

/* SECTIONS */
.section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 90px 24px;
}

.section-dark,
.section-soft,
.lifestyle-section {
    position: relative;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-eyebrow {
    margin: 0 0 14px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 1.2rem;
    font-weight: 700;
}

.section_title {
    margin: 0 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.2rem, 5vw, 5rem);
    line-height: 1.08;
    color: var(--white);
}

.section-intro {
    margin: 0;
    color: var(--muted);
    font-size: 1.7rem;
    line-height: 1.8;
}

.left-align {
    text-align: left;
}

/* FILTERS */
.cars-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.filter-btn {
    min-height: 46px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #b8924f, #ead9b3);
    color: #111;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(198, 167, 106, 0.2);
}

/* CARS BASE */
.cars-wrapper {
    width: 100%;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.car,
.car-empty {
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.car {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.car:hover {
    transform: translateY(-6px);
    border-color: rgba(198, 167, 106, 0.32);
    box-shadow: var(--shadow-strong);
}

.car-empty {
    padding: 24px;
    color: var(--muted);
    font-size: 1.5rem;
}

.car > div:first-child {
    position: relative;
    overflow: hidden;
}

.car-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: rgba(10, 10, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.car img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.car:hover img {
    transform: scale(1.05);
}

.car > span:not(.prix),
.car-description,
.car .book-btn,
.car .card-meta {
    margin-left: 22px;
    margin-right: 22px;
}

.car > span:not(.prix) {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

#vehicules li span.prix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    margin: 0 22px 14px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    background: rgba(198, 167, 106, 0.14);
    border: 1px solid rgba(198, 167, 106, 0.2);
    color: var(--gold-light);
    font-size: 1.35rem;
    font-weight: 700;
}

.car-description {
    min-height: 72px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 1.45rem;
    line-height: 1.75;
}

.card-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.card-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 1.35rem;
    line-height: 1.6;
}

.card-meta strong {
    color: var(--white);
}

.market-price {
    color: var(--gold-light);
}

#vehicules li a,
.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: auto 22px 22px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #b8924f, #ead9b3);
    color: #111;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform var(--transition), box-shadow var(--transition);
}

#vehicules li a:hover,
.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(198, 167, 106, 0.24);
}

/* PREMIUM CATEGORY UI */
#carsList.cars-grid {
    display: block;
}

.category-item {
    list-style: none;
}

.category-block {
    margin-top: 56px;
}

.category-item:first-child .category-block {
    margin-top: 0;
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.category-kicker {
    margin: 0 0 10px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 1.1rem;
    font-weight: 800;
}

.category-title {
    margin: 0 0 8px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1.08;
}

.category-count {
    margin: 0;
    color: var(--muted);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.car {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    will-change: transform;
}

.car::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(198, 167, 106, 0.12), transparent 28%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.car:hover {
    transform: translateY(-10px);
    border-color: rgba(198, 167, 106, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.car:hover::before {
    opacity: 1;
}

.car-media {
    position: relative;
    overflow: hidden;
}

.car-media img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.car:hover .car-media img {
    transform: scale(1.06);
}

.car-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.car-name {
    display: block;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 2.1rem;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

.car-description {
    color: var(--muted);
    font-size: 1.48rem;
    line-height: 1.8;
    margin-top: 18px;
    margin-bottom: 18px;
    min-height: 84px;
}

.card-meta {
    margin-top: auto;
    margin-bottom: 20px;
}

.card-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 1.38rem;
    line-height: 1.6;
}

.card-meta strong {
    color: var(--white);
}

.market-price {
    color: var(--gold-light);
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #b8924f, #ead9b3);
    color: #111;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(198, 167, 106, 0.26);
}

.car-empty {
    padding: 28px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 1.6rem;
    box-shadow: var(--shadow-soft);
}

/* PREMIUM ANIMATIONS */
.reveal-block {
    opacity: 0;
    transform: translateY(24px);
    animation: revealBlock 0.7s ease forwards;
}

.reveal-card {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    animation: revealCard 0.6s ease forwards;
}

@keyframes revealBlock {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    padding: 30px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.035) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 167, 106, 0.12);
    border: 1px solid rgba(198, 167, 106, 0.22);
    color: var(--gold-light);
    font-size: 2rem;
}

.service-card h3 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    color: var(--white);
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1.8;
}

/* LIFESTYLE */
.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.lifestyle-copy,
.lifestyle-panel {
    padding: 34px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.lifestyle-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lifestyle-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 40px;
    margin-bottom: 18px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    background: rgba(198, 167, 106, 0.12);
    border: 1px solid rgba(198, 167, 106, 0.22);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.1rem;
    font-weight: 800;
}

.lifestyle-list {
    display: grid;
    gap: 14px;
}

.lifestyle-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1.8;
}

.lifestyle-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8924f, #ead9b3);
    box-shadow: 0 0 0 6px rgba(198, 167, 106, 0.08);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 26px;
    align-items: start;
}

.location-card,
.form-card {
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.location-card h3,
.form-card h3 {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: var(--white);
}

.location-text {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1.8;
}

.map-iframe {
    width: 100%;
    min-height: 390px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.form-card form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 10px;
}

.field label {
    color: var(--gold-light);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-card textarea {
    min-height: 150px;
    padding-top: 16px;
    padding-bottom: 16px;
    resize: vertical;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
    color: rgba(245, 241, 232, 0.42);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: rgba(234, 217, 179, 0.38);
    box-shadow: 0 0 0 4px rgba(198, 167, 106, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.form-card select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(234, 217, 179, 0.9) 50%),
        linear-gradient(135deg, rgba(234, 217, 179, 0.9) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 4px),
        calc(100% - 16px) calc(50% - 4px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 48px;
}

#pricePreview {
    min-height: 26px;
    margin: 2px 0 0;
    color: var(--gold-light);
    font-size: 1.45rem;
    font-weight: 700;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #b8924f, #ead9b3);
    color: #111;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 14px 28px rgba(198, 167, 106, 0.22);
    transition: transform var(--transition), box-shadow var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(198, 167, 106, 0.28);
}

#resultatReservation {
    min-height: 28px;
    margin: 18px 0 0;
    color: var(--gold-light);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
    padding: 30px 24px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 1.4rem;
}

.site-footer p {
    margin: 0;
}

/* UTILITIES */
.hidden {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-premium,
    .contact-grid,
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-card img {
        height: 500px;
    }

    .experience-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 0 24px;
    }

    .hero-premium {
        padding: 140px 24px 70px;
        gap: 34px;
    }

    .section {
        padding: 72px 24px;
    }

    .hero-content h1 {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .menu_toggle {
        display: inline-flex;
        order: 3;
    }

    .site-header {
        gap: 16px;
    }

    .site-header nav {
        order: 4;
    }

    .menu {
        position: fixed;
        top: calc(var(--header-height) + 12px);
        left: 16px;
        right: 16px;
        z-index: 60;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(10, 10, 14, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-strong);
        backdrop-filter: blur(16px);
    }

    .menu.responsive {
        display: flex;
    }

    .menu li a {
        min-height: 50px;
        padding: 0 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        letter-spacing: 0.08em;
    }

    .menu li a::after {
        display: none;
    }

    .hero-premium {
        min-height: auto;
    }

    .services-grid,
    .experience-strip,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-card img {
        height: 380px;
    }

    .location-card,
    .form-card,
    .service-card,
    .lifestyle-copy,
    .lifestyle-panel {
        padding: 24px;
    }

    .category-header {
        margin-bottom: 22px;
    }

    .car-media img {
        height: 240px;
    }

    .car-description {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 58%;
    }

    .site-header {
        height: 74px;
        padding: 0 16px;
    }

    .logo {
        min-height: 46px;
        padding: 0 16px;
    }

    .logo p {
        font-size: 2rem;
    }

    .hero-premium {
        padding: 118px 16px 54px;
    }

    .section {
        padding: 58px 16px;
    }

    .hero-actions,
    .hero-trust {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .submit-btn {
        width: 100%;
    }

    .hero-card img {
        height: 300px;
    }

    .car img,
    .car-media img {
        height: 220px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .location-card,
    .form-card,
    .service-card,
    .lifestyle-copy,
    .lifestyle-panel,
    .experience-item {
        border-radius: 22px;
    }

    .map-iframe {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal-block,
    .reveal-card {
        opacity: 1 !important;
        transform: none !important;
    }
}