/*
    ADZ Motors — Design System
    Refined dark-theme luxury for premium automotive
    Palette: obsidian canvas · pearl ink · gold accent
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700;800&family=Orbitron:wght@500;600;700;800&display=swap');

:root {
    /* Variable names retained for cascade compatibility; values flipped to dark */
    --ivory: #000000;          /* page canvas — pure black */
    --ivory-soft: #0A0A0A;     /* slightly elevated surface */
    --ivory-deep: #141414;     /* deeper accented surface */
    --paper: #0E0E0E;          /* card / sheet surface */
    --ink: #F2EFE7;            /* primary text */
    --ink-soft: #C7CAD3;       /* secondary text */
    --ink-mute: #8A8E9A;       /* muted/captions */
    --line: rgba(242, 239, 231, 0.12);
    --line-soft: rgba(242, 239, 231, 0.06);
    --gold: #C9A24A;
    --gold-bright: #E5C77A;
    --gold-deep: #A07E2A;
    --gold-glow: rgba(201, 162, 74, 0.28);

    --primary: var(--ivory);
    --secondary: var(--ink-soft);
    --accent: var(--gold);
    --accent-hover: var(--gold-bright);
    --text-main: var(--ink);
    --text-muted: var(--ink-mute);
    --bg-dark: var(--ivory);
    --card-bg: var(--paper);
    --border: var(--line);

    --section-padding: 120px 5%;
    --container-max-width: 1240px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lift: 0 18px 40px rgba(0, 0, 0, 0.55), 0 4px 10px rgba(0, 0, 0, 0.35);
    --shadow-deep: 0 30px 60px rgba(0, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body {
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gold); color: var(--paper); }

h1, h2, h3, h4 { color: var(--ink); }
h1, h2, .display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
h3, .brand {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container-max-width); margin: 0 auto; width: 90%; }

.eyebrow {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 32px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 22px; height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 3rem;
    text-transform: none;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
    color: var(--ink);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 56px; height: 2px;
    background: var(--gold);
}

/* --- ADZ Wordmark --- */
.adz-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    transition: var(--transition);
}
.adz-wordmark .adz-mono {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 6px;
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-right: 2px;
}
.adz-wordmark .adz-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 0.55em;
    color: var(--ink-mute);
    letter-spacing: 2px;
    margin-left: 12px;
    padding-left: 14px;
    border-left: 1px solid var(--gold);
    text-transform: uppercase;
}
.adz-wordmark.adz-light .adz-mono {
    background: linear-gradient(135deg, #E6C97A, #FFEAB3, #E6C97A);
    -webkit-background-clip: text;
    background-clip: text;
}
.adz-wordmark.adz-light .adz-tag { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }

/* --- Header --- */
.minimal-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
    padding: 1.75rem 0;
    transition: var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}
.minimal-header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    padding: 1.75rem 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-placeholder {
    display: flex;
    align-items: center;
    z-index: 1001;
    transition: opacity 0.4s ease;
}
.header-wordmark { font-size: 1.5rem; }

.menu-btn {
    position: fixed;
    top: 1.75rem;
    right: 5%;
    display: flex; flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 1000000;       /* always above fullscreen-menu (999999) so the X is clickable */
    padding: 8px;
    background: transparent;
    border: none;
    transition: transform 0.3s ease, opacity 0.4s ease;
}
.menu-btn.open span { background: var(--ink) !important; }
@media (max-width: 768px) {
    .menu-btn { top: 1rem; }
}
.menu-btn:hover { transform: translateY(-1px); }

/* Fade chrome on scroll so it doesn't block page content; restore on hover */
.minimal-header.scrolled .logo-placeholder,
.minimal-header.scrolled .menu-btn {
    opacity: 0.35;
}
.minimal-header.scrolled .logo-placeholder:hover,
.minimal-header.scrolled .menu-btn:hover {
    opacity: 1;
}
.menu-btn span {
    width: 32px; height: 2px;
    background: var(--ink);
    transition: var(--transition);
    border-radius: 2px;
}
/* Landing page: bars stay light over the hero image and the rest of the dark page */
body:has(.hero) .minimal-header:not(.scrolled) .menu-btn span {
    background: var(--ink);
}
.menu-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999999;         /* always on top — above splash, header, floating buttons */
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.5s;
}
.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}
.fullscreen-menu .full-nav-links a { pointer-events: auto; }

/* Dedicated close (X) button inside the fullscreen menu */
.menu-close {
    position: absolute;
    top: 1.75rem;
    right: 5%;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000001;
    transition: transform 0.3s ease;
}
.menu-close:hover {
    transform: rotate(90deg);
}
.menu-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: background 0.3s ease;
}
.menu-close span:nth-child(1) { transform: rotate(45deg); }
.menu-close span:nth-child(2) { transform: rotate(-45deg); }
.menu-close:hover span { background: var(--gold-bright); }
@media (max-width: 768px) {
    .menu-close { top: 1rem; width: 44px; height: 44px; }
}

/* Hide the hamburger while the fullscreen menu is open — the close X takes over */
.fullscreen-menu.active ~ * .menu-btn,
body:has(.fullscreen-menu.active) .menu-btn {
    opacity: 0;
    pointer-events: none;
}

.full-nav-links { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.full-nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 3.5rem;
    letter-spacing: -1px;
    color: var(--ink);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    position: relative;
    display: block;
    padding: 0.5rem 2rem;
    min-width: 360px;
    text-align: center;
}
.full-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0.3em; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s ease, left 0.4s ease;
}
.full-nav-links a:hover { color: var(--gold-deep); }
.full-nav-links a:hover::after { width: 60%; left: 20%; }

.fullscreen-menu.active .full-nav-links a { transform: translateY(0); opacity: 1; }
.fullscreen-menu.active .full-nav-links a:nth-child(1) { transition-delay: 0.08s; }
.fullscreen-menu.active .full-nav-links a:nth-child(2) { transition-delay: 0.16s; }
.fullscreen-menu.active .full-nav-links a:nth-child(3) { transition-delay: 0.24s; }
.fullscreen-menu.active .full-nav-links a:nth-child(4) { transition-delay: 0.32s; }
.fullscreen-menu.active .full-nav-links a:nth-child(5) { transition-delay: 0.40s; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 2.25rem;
    background: var(--ink);
    color: var(--ivory-soft);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--paper);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px var(--gold-glow);
}
.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--ivory); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
    border-color: var(--gold);
    color: var(--paper);
}
.btn-gold:hover { background: var(--ink); border-color: var(--ink); color: var(--gold-bright); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../assets/landing-bg.png') center/cover no-repeat;
    padding-top: 120px;     /* clear fixed header (~115px) */
    padding-bottom: 80px;   /* clear bottom marquee strip */
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.78) 55%,
        rgba(0, 0, 0, 0.92) 100%);
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(242, 239, 231, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 239, 231, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    z-index: 0;
    opacity: 0.7;
}
.hero > .container { position: relative; z-index: 1; }
.hero-content { text-align: center; max-width: 920px; margin: 0 auto; padding: 0; position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 1.25rem;
    padding: 0.45rem 1.1rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(201, 162, 74, 0.45);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold-bright);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 1.25rem;
    color: var(--ink);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(184, 146, 60, 0.35));
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.65;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.hero-cta-row .btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}
.hero-cta-row .btn:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--ink);
    box-shadow: 0 10px 25px rgba(212, 175, 84, 0.4);
}
.hero-cta-row .btn-secondary {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    color: var(--ink);
    border-color: rgba(242, 239, 231, 0.35);
}
.hero-cta-row .btn-secondary:hover {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
}

.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0; width: 100%;
    padding: 0.85rem 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    border-top: 1px solid rgba(242, 239, 231, 0.12);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
}
.hero-marquee-track {
    display: flex; gap: 4rem;
    white-space: nowrap;
    animation: marquee 32s linear infinite;
    width: max-content;
}
.hero-marquee span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink-soft);
    letter-spacing: 0.5px;
}
.hero-marquee span::after {
    content: '◆';
    margin-left: 4rem;
    color: var(--gold);
    font-style: normal;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.scroll-indicator {
    position: absolute;
    bottom: 65px; left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    color: var(--ink-mute);
    transition: var(--transition);
    display: flex; flex-direction: column;
    align-items: center; gap: 0.4rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.scroll-indicator:hover { color: var(--gold); }
.scroll-indicator svg { width: 22px; height: 22px; fill: currentColor; animation: bounce 2.4s infinite; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* --- Stats --- */
.stats-section {
    padding: 80px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.stats-lead h3 {
    font-family: 'Cormorant Garamond', serif;
    text-transform: none;
    letter-spacing: -0.5px;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.stats-lead p { color: var(--ink-mute); font-size: 0.95rem; line-height: 1.6; }
.stat-block { border-left: 1px solid var(--line); padding-left: 2rem; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--ink-mute);
    font-family: 'Orbitron', sans-serif;
}

/* --- Direct Imports Sections --- */
.direct-imports {
    display: flex;
    flex-direction: column;
    background: var(--ivory); /* the black canvas */
}
.import-block {
    position: relative;
    padding: 60px 5%;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.import-bg-slant {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--ivory-soft), var(--ivory-deep));
    clip-path: polygon(0 0, 65% 0, 50% 100%, 0 100%);
    z-index: 0;
    border-right: 2px solid var(--gold); /* Add gold accent line */
}
.import-bg-slant.alt-slant {
    background: linear-gradient(135deg, rgba(201, 162, 74, 0.15), rgba(201, 162, 74, 0.02));
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 35% 100%);
    border-right: none;
    border-left: 2px solid var(--gold);
}
.import-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr; /* Give visuals column much more space */
    gap: 1rem;
    align-items: center;
    width: 100%;
}
.import-grid.alt-grid {
    /* To offset the visuals for the Japan block so it fits the alt slant */
    direction: rtl;
}
.import-grid.alt-grid > * {
    direction: ltr; /* Reset text direction inside */
}
.import-content {
    color: var(--ink);
    max-width: 480px;
}
.import-eyebrow {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.import-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--ink);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.import-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
}
.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}
.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.plate-icon {
    background: var(--ink);
    color: var(--ivory);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.import-visuals {
    position: relative;
    min-height: 250px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 1rem 0; /* Reduced padding */
    width: 115%;
    transform: translateX(0);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.import-grid.alt-grid .import-visuals {
    transform: translateX(-5%);
}
.import-grid .import-content {
    position: relative;
    z-index: 5;
}
.import-grid.alt-grid .import-content {
    margin-left: 3rem;
}
.import-track {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Reduced gap */
    width: max-content;
}
.marquee-group {
    display: flex;
    gap: 1.5rem; /* Reduced gap */
    align-items: center;
}
.uk-track {
    animation: slideLeftToRight 25s linear infinite;
}
.japan-track {
    animation: slideRightToLeft 25s linear infinite;
}
@keyframes slideRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); } /* -50% - half of gap */
}
@keyframes slideLeftToRight {
    0% { transform: translateX(calc(-50% - 0.75rem)); } /* -50% - half of gap */
    100% { transform: translateX(0); }
}

.import-car {
    position: relative;
    width: clamp(200px, 18vw, 320px); /* Reduced sizing */
    flex-shrink: 0;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}
.import-car:hover {
    transform: translateY(-8px) scale(1.02);
}

@media (max-width: 992px) {
    .import-grid, .import-grid.alt-grid { grid-template-columns: 1fr; text-align: center; direction: ltr; }
    .import-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .import-bg-slant { clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); border-right: none; border-bottom: 2px solid var(--gold); }
    .import-bg-slant.alt-slant { clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%); border-left: none; border-top: 2px solid var(--gold); }
    .import-visuals { margin-top: 2rem; width: 100%; transform: none; padding-bottom: 1rem; mask-image: none; -webkit-mask-image: none; }
    .import-grid.alt-grid .import-visuals { transform: none; }
    .import-car { width: clamp(200px, 60vw, 300px); }
}

/* --- Car Cards --- */
.car-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-soft);
}
.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(184, 146, 60, 0.35);
}
.card-image-box {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ivory-deep), var(--ivory));
    display: flex; align-items: center; justify-content: center;
}
.card-image-box .car-silhouette {
    width: 78%;
    height: auto;
    color: var(--ink-soft);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 12px 18px rgba(17, 19, 26, 0.18));
    z-index: 1;
}
.car-card:hover .car-silhouette { transform: scale(1.06) translateY(-4px); }
.card-image-box::after {
    content: '';
    position: absolute;
    bottom: 8%; left: 12%; right: 12%;
    height: 14px;
    background: radial-gradient(ellipse at center, rgba(17, 19, 26, 0.18), transparent 70%);
    filter: blur(2px);
    z-index: 0;
}
.card-marque {
    position: absolute;
    top: 14px; right: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold-deep);
    letter-spacing: 0.5px;
    z-index: 2;
}
.card-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink);
    color: var(--gold-bright);
    padding: 0.3rem 0.85rem;
    font-size: 0.6rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px;
    z-index: 2;
}
.card-body {
    padding: 1.6rem 1.6rem 1.4rem;
    flex-grow: 1;
    display: flex; flex-direction: column;
    border-top: 1px solid var(--line-soft);
}
.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1rem;
}
.card-title-row h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: -0.3px;
    color: var(--ink);
    font-weight: 600;
}
.card-price {
    font-family: 'Inter', sans-serif;
    color: var(--gold-deep);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.card-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line-soft);
}
.spec-item {
    display: flex; align-items: center; gap: 0.55rem;
    color: var(--ink-mute);
    font-size: 0.78rem;
}
.spec-item svg { width: 14px; height: 14px; fill: var(--gold); }
.card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: auto;
}
.btn-card {
    padding: 0.75rem;
    font-size: 0.7rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid;
}
.btn-card-outline { background: transparent; border-color: var(--line); color: var(--ink-soft); }
.btn-card-outline:hover { background: var(--ivory-deep); border-color: var(--ink); color: var(--ink); }
.btn-card-solid { background: var(--ink); color: var(--gold-bright); border-color: var(--ink); }
.btn-card-solid:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }

/* --- Slider --- */
.slider-wrapper { position: relative; padding: 20px 0; }
.slider-container { overflow: hidden; margin: 0 -1.25rem; padding: 0 1.25rem; }
.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 20px 0;
}
.slider-track .car-card { flex: 0 0 calc(33.333% - 1.34rem); min-width: 320px; }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    box-shadow: var(--shadow-lift);
}
.slider-btn:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--gold-bright);
    transform: translateY(-50%) scale(1.06);
}
.slider-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.slider-btn.prev { left: -28px; }
.slider-btn.next { right: -28px; }

@media (max-width: 1200px) {
    .slider-track .car-card { flex: 0 0 calc(50% - 1rem); }
    .slider-btn.prev { left: -8px; }
    .slider-btn.next { right: -8px; }
}
@media (max-width: 768px) {
    .slider-track .car-card { flex: 0 0 100%; }
    .slider-btn { width: 44px; height: 44px; }
    .slider-btn.prev { left: 0; }
    .slider-btn.next { right: 0; }
}

/* --- Brands --- */
.brands-section {
    padding: 100px 5%;
    background: var(--ivory-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.brands-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.brands-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: -0.5px;
    color: var(--ink);
}
.brands-head p { color: var(--ink-mute); max-width: 360px; font-size: 0.95rem; }
/* Auto-scrolling floating logos */
.brands-marquee {
    overflow: hidden;
    width: 100%;
    padding: 28px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
            mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.brands-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: brand-scroll 55s linear infinite;
}
.brands-marquee:hover .brands-track { animation-play-state: paused; }

@keyframes brand-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.brand-box {
    flex: 0 0 auto;
    width: 130px;
    height: 110px;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 700px;
    animation: brand-float 5s ease-in-out infinite;
    will-change: transform;
}
.brands-track .brand-box:nth-child(3n)   { animation-delay: -0.6s; }
.brands-track .brand-box:nth-child(3n+1) { animation-delay: -1.7s; }
.brands-track .brand-box:nth-child(3n+2) { animation-delay: -2.9s; }
.brands-track .brand-box:nth-child(5n)   { animation-duration: 6.4s; }
.brands-track .brand-box:nth-child(7n)   { animation-duration: 4.3s; }

@keyframes brand-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

.brand-box:hover {
    background: transparent;
    animation-play-state: paused;
}

.brand-box img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    opacity: 0.88;
    filter:
        drop-shadow(0 8px 14px rgba(20, 16, 8, 0.18))
        drop-shadow(0 2px 3px rgba(20, 16, 8, 0.12));
    transition:
        transform 0.5s cubic-bezier(0.22, 0.8, 0.25, 1),
        filter   0.5s ease,
        opacity  0.4s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.brand-box img.logo-xl { max-height: 92px; }

.brand-box:hover img {
    opacity: 1;
    transform: translateY(-14px) scale(1.18) rotateY(10deg);
    filter:
        drop-shadow(0 18px 24px rgba(20, 16, 8, 0.28))
        drop-shadow(0 0 36px rgba(212, 175, 84, 0.5));
}

@media (max-width: 600px) {
    .brand-box { width: 100px; height: 90px; }
    .brand-box img { max-height: 56px; }
    .brand-box img.logo-xl { max-height: 72px; }
    .brands-track {
        gap: 2.25rem;
        animation-duration: 42s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .brand-box { animation: none; }
    .brands-marquee {
        -webkit-mask-image: none;
                mask-image: none;
    }
}

/* --- Testimonials --- */
.testimonials { padding: 60px 5%; background: var(--paper); }
.testimonials-head { text-align: center; margin-bottom: 2.25rem; }
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.value-card {
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    padding: 2.4rem 2rem;
    border-radius: 14px;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-soft);
}
.value-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
}
.value-card:hover {
    background: var(--paper);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(184, 146, 60, 0.35);
}
.value-card .stars { color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 4px; font-size: 0.85rem; }
.value-card p.quote {
    color: var(--ink-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.value-card .reviewer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.value-card .reviewer-mono {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.value-card .reviewer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--ink);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0.15rem;
    font-weight: 600;
}
.value-card .reviewer p {
    font-size: 0.65rem;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- CTA --- */
.cta-section {
    padding: 130px 5%;
    background: var(--ivory-deep);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.cta-section {
    padding: 120px 5%;
    background: url('../assets/private-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 19, 26, 0.7); /* dark overlay to make text readable */
    z-index: 0;
}
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 84, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 84, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: 0;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .eyebrow {
    color: var(--gold-bright);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}
.cta-section .eyebrow::before {
    background: var(--gold-bright);
    width: 28px;
    height: 1.5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    margin-bottom: 1.25rem;
    color: var(--ivory);
    letter-spacing: -0.8px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(247, 244, 238, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}
.cta-section .btn-secondary { color: var(--ivory); border-color: rgba(242, 239, 231, 0.4); }
.cta-section .btn-secondary:hover { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.cta-section .btn { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.cta-section .btn:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

/* --- Footer --- */
footer {
    background: var(--ivory-soft);
    padding: 60px 0 28px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    gap: 3rem;
    margin-bottom: 40px;
}
.footer-col h4 {
    margin-bottom: 1.1rem;
    color: var(--ink);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.footer-col p, .footer-col li {
    color: var(--ink-mute);
    font-size: 0.82rem;
    margin-bottom: 0.65rem;
    line-height: 1.5;
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-tagline {
    margin-top: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.footer-wordmark { font-size: 1.45rem; }

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--ink-mute);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}
.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-mute);
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-top: 0.9rem;
    transition: var(--transition);
}
.admin-link svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2; fill: none; }
.admin-link:hover {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-1px);
}
.scroll-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-soft);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1.5rem;
    box-shadow: var(--shadow-soft);
}
.scroll-top-btn:hover {
    background: var(--ink);
    color: var(--gold-bright);
    transform: translateY(-3px);
}
.scroll-top-btn svg { width: 18px; height: 18px; fill: currentColor; }

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.25rem;
    align-items: center;
}
.social-link {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink-soft);
    transition: var(--transition);
    flex-shrink: 0;
}
.social-link svg { width: 15px; height: 15px; fill: currentColor; }
.social-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.social-link.facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f; color: #fff;
}
.social-link.tiktok:hover { background: #010101; border-color: #69C9D0; color: #69C9D0; }

/* --- Reveal --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* --- Page Banner --- */
.page-banner {
    padding: 180px 0 70px;
    background: var(--ivory-soft);
    border-bottom: 1px solid var(--line);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before { content: none; }
.page-banner > * { position: relative; z-index: 1; }
.page-banner-eyebrow {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.page-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 1rem;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.05;
}
.page-banner p {
    color: var(--ink-mute);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Inventory --- */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.filter-bar {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
}
.filter-group { display: flex; flex-direction: column; gap: 0.6rem; }
.filter-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gold-deep);
    text-transform: uppercase;
}
.filter-group select,
.filter-group input {
    width: 100%;
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}
.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.filter-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2311131A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}
.btn-filter {
    background: var(--ink);
    color: var(--gold-bright);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.95rem 1.5rem;
    border: 1px solid var(--ink);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
}
.btn-filter:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--paper);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px var(--gold-glow);
}

/* --- About --- */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory-soft);
    text-align: center;
    padding: 180px 5% 80px;
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.about-hero::before { content: none; }
.about-hero > * { position: relative; z-index: 1; }
.about-hero-eyebrow {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 1.5rem;
    color: var(--ink);
}
.about-hero-title em { color: var(--gold); font-style: italic; }
.about-hero-subtitle {
    font-size: 1.1rem;
    color: var(--ink-mute);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
    padding: 4rem 0;
}
.story-image-stack {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    padding: 3rem;
    text-align: center;
}
.story-image-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,84,0.18), transparent 50%);
}
.story-image-stack > * { position: relative; }
.story-image-stack .crest {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(212,175,84,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.story-image-stack .est-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.story-image-stack .est-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: rgba(247,244,238,0.6);
    text-transform: uppercase;
}
.story-image-stack::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 80px; height: 80px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 4px 0 0 0;
}

@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

.value-card.with-icon h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    text-transform: none;
    letter-spacing: -0.3px;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.value-card.with-icon p { color: var(--ink-mute); font-size: 0.92rem; line-height: 1.65; }

.timeline-v {
    position: relative;
    max-width: 820px;
    margin: 4rem auto;
}
.timeline-item {
    padding: 1.5rem 2.5rem;
    border-left: 2px solid var(--line);
    position: relative;
    margin-bottom: 1.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px; top: 1.9rem;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--line);
}
.timeline-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}
.timeline-item h4 {
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: -0.3px;
}
.timeline-item p { color: var(--ink-mute); font-size: 0.95rem; line-height: 1.7; }

.qa-section {
    background: var(--ivory-soft);
    padding: var(--section-padding);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
}
.feature-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.3px;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
}
.feature-item h3::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    width: 22px; height: 22px;
    background: var(--gold-glow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.feature-item p { color: var(--ink-mute); font-size: 0.9rem; line-height: 1.65; }

/* --- Director --- */
.director-hero {
    padding: 180px 0 100px;
    background: var(--ivory-soft);
    border-bottom: 1px solid var(--line);
}
.director-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}
.director-photo {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    text-align: center;
    padding: 2rem;
}
.director-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,84,0.18), transparent 60%);
}
.director-photo .director-monogram {
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.director-photo .director-photo-name {
    position: absolute;
    bottom: 2rem; left: 0; right: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: rgba(247,244,238,0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.director-badge {
    position: absolute;
    right: -20px; bottom: -20px;
    padding: 1.5rem 1.75rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lift);
}
.director-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}
.director-badge-label {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-family: 'Orbitron', sans-serif;
    margin-top: 0.4rem;
}
.director-eyebrow {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}
.director-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.05;
    color: var(--ink);
    margin: 0.6rem 0 0.9rem;
}
.director-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-deep);
    margin-bottom: 1.5rem;
}
.director-bio { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }

/* --- Detail page --- */
.detail-header {
    padding: 160px 0 60px;
    background: var(--ivory-soft);
    border-bottom: 1px solid var(--line);
}
.breadcrumbs {
    display: flex;
    gap: 0.85rem;
    color: var(--ink-mute);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--line); }

.detail-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
    padding: 60px 0 100px;
}
.detail-gallery { display: grid; gap: 1rem; }
.main-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--ivory-deep) 0%, var(--ivory) 100%);
    border-radius: 14px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-img-wrap .car-silhouette {
    width: 80%;
    color: var(--ink-soft);
    filter: drop-shadow(0 18px 28px rgba(17, 19, 26, 0.18));
}
.main-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 12%; left: 14%; right: 14%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(17, 19, 26, 0.18), transparent 70%);
    filter: blur(2px);
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.gallery-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--ivory-deep), var(--ivory));
    border-radius: 8px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-mute);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
}
.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--gold);
    color: var(--gold-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--gold-glow);
}

.detail-info { position: sticky; top: 110px; }
.detail-title-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}
.detail-title-section .marque {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold-deep);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.detail-title-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: none;
}
.detail-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.spec-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.spec-p-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.1rem 1.25rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
}
.spec-p-item span {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--ink-mute);
    letter-spacing: 2.5px;
    font-family: 'Orbitron', sans-serif;
}
.spec-p-item strong {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    font-weight: 600;
}

.detail-form-card {
    background: var(--paper);
    padding: 2.5rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}
.detail-form-card h3 {
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.detail-form-card h3::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.form-group-p { margin-bottom: 1.25rem; }
.form-group-p label {
    display: block;
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}
.form-group-p input,
.form-group-p textarea,
.form-group-p select {
    width: 100%;
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
}
.form-group-p input:focus,
.form-group-p textarea:focus,
.form-group-p select:focus {
    border-color: var(--gold);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--gold-glow);
    outline: none;
}
.form-group-p textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
}

/* ============================================================
   Detail page — polish (gallery counter, lightbox, CTAs, trust strip)
   ============================================================ */

/* Tagline + status badge row above the title */
.detail-title-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.detail-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
    padding: 0.35rem 0.7rem;
    background: var(--gold-glow);
    border: 1px solid rgba(184, 146, 60, 0.3);
    border-radius: 999px;
}
.detail-price-row { margin-top: 0.5rem; }

/* Gallery: image counter + fullscreen expand button */
.gallery-counter {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(17, 19, 26, 0.7);
    color: var(--ivory);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 3;
}
.gallery-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(17, 19, 26, 0.7);
    color: var(--ivory);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: var(--transition);
    z-index: 3;
}
.gallery-expand:hover {
    background: var(--gold);
    color: var(--paper);
    border-color: var(--gold);
    transform: scale(1.06);
}
.gallery-expand svg { width: 18px; height: 18px; }
.main-img-wrap .main-img { cursor: zoom-in; }

/* Trust strip — universal dealer signals under the title */
.detail-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin: 1.75rem 0 2rem;
    padding: 1rem;
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
}
.detail-trust-strip li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}
.detail-trust-strip li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold-deep);
}

/* Sticky CTA group — Call / WhatsApp / Book Viewing */
.detail-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}
.detail-cta-group .cta-book { grid-column: span 2; }
.cta-action {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    box-shadow: var(--shadow-soft);
}
.cta-action:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 146, 60, 0.4);
    box-shadow: var(--shadow-lift);
}
.cta-action svg { width: 22px; height: 22px; flex-shrink: 0; }
.cta-action .cta-label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.2;
}
.cta-action .cta-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--ink-mute);
    margin-top: 0.15rem;
    letter-spacing: 0.3px;
}
.cta-call svg { color: var(--gold-deep); }
.cta-wa { background: #25D366; border-color: #25D366; color: #fff; }
.cta-wa .cta-label, .cta-wa .cta-sub { color: #fff; }
.cta-wa .cta-sub { color: rgba(255, 255, 255, 0.85); }
.cta-wa:hover { background: #1ebe5a; border-color: #1ebe5a; }
.cta-book { background: var(--ink); border-color: var(--ink); color: var(--ivory); justify-content: center; }
.cta-book .cta-label, .cta-book .cta-sub { color: var(--ivory); }
.cta-book .cta-sub { color: rgba(247, 244, 238, 0.7); }
.cta-book:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.cta-book:hover .cta-label, .cta-book:hover .cta-sub { color: var(--paper); }

/* Section heading inside the info column */
.detail-section-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink);
}
.detail-section-head::before {
    content: '';
    width: 28px; height: 1.5px;
    background: var(--gold);
}

/* Spec tiles with icons — replaces the plain spec-p-item layout */
.spec-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}
.spec-tile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: var(--transition);
}
.spec-tile:hover {
    border-color: rgba(184, 146, 60, 0.35);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}
.spec-tile-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--gold-glow);
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 146, 60, 0.25);
}
.spec-tile-icon svg { width: 20px; height: 20px; }
.spec-tile-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.spec-tile-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.spec-tile-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    word-break: break-word;
}

/* Inquiry form: subtitle, preset chips, two-col grid, disclaimer */
.detail-form-card .form-card-sub {
    color: var(--ink-mute);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: -0.5rem 0 1.25rem;
}
.form-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}
.preset-chip {
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: var(--transition);
}
.preset-chip:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
    background: var(--paper);
}
.preset-chip.active {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-grid-2 .form-group-p { margin-bottom: 0; }
.form-optional {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--ink-mute);
    letter-spacing: 0;
    text-transform: none;
    margin-left: 0.25rem;
}
.detail-form-submit { width: 100%; margin-top: 0.5rem; }
.form-disclaimer {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    color: var(--ink-mute);
    text-align: center;
    line-height: 1.5;
}

/* Lightbox — fullscreen image viewer */
.detail-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 9, 12, 0.96);
    backdrop-filter: blur(8px);
    z-index: 999998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}
.detail-lightbox.open { display: flex; }
.detail-lightbox .lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.detail-lightbox .lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}
.detail-lightbox .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: rotate(90deg);
}
.detail-lightbox .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ivory);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.detail-lightbox .lightbox-nav:hover {
    background: var(--gold);
    color: var(--paper);
    border-color: var(--gold);
}
.detail-lightbox .lightbox-nav svg { width: 22px; height: 22px; }
.detail-lightbox .lightbox-prev { left: 1.5rem; }
.detail-lightbox .lightbox-next { right: 1.5rem; }
.detail-lightbox .lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ivory);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Mobile sticky bottom action bar (hidden on desktop) */
.detail-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 0.65rem;
    gap: 0.5rem;
    box-shadow: 0 -8px 24px rgba(17, 19, 26, 0.12);
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
}
.detail-mobile-bar .mb-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.55rem 0.4rem;
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}
.detail-mobile-bar .mb-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.detail-mobile-bar .mb-btn svg { width: 18px; height: 18px; }
.detail-mobile-bar .mb-primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--ivory);
}
.detail-mobile-bar .mb-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }

@media (max-width: 992px) {
    .detail-main { grid-template-columns: 1fr; gap: 3rem; }
    .detail-info { position: static; }
    .director-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .detail-trust-strip { grid-template-columns: 1fr; gap: 0.5rem; }
    .detail-cta-group { grid-template-columns: 1fr; }
    .detail-cta-group .cta-book { grid-column: 1; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 1.25rem; }
    .spec-grid-premium { grid-template-columns: 1fr; }
    .detail-mobile-bar { display: flex; }
    main { padding-bottom: 84px; } /* clear the mobile bar */
    .detail-lightbox { padding: 2.5rem 1rem; }
    .detail-lightbox .lightbox-nav { width: 44px; height: 44px; }
    .detail-lightbox .lightbox-prev { left: 0.5rem; }
    .detail-lightbox .lightbox-next { right: 0.5rem; }
    .gallery-counter { font-size: 0.65rem; padding: 0.3rem 0.6rem; }
    .gallery-expand { width: 36px; height: 36px; }
}

/* --- Spec boxes --- */
.spec-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.spec-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}
.spec-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
}
.spec-box:hover {
    border-color: rgba(184, 146, 60, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}
.spec-box-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-deep);
    background: var(--gold-glow);
    border: 1px solid rgba(184, 146, 60, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.65rem;
    line-height: 1;
    flex-shrink: 0;
}
.spec-box-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--ink-soft);
    word-break: break-word;
    padding-top: 0.15rem;
}

.sidebar-key-specs {
    margin: 2rem 0;
    padding: 1.5rem 1.4rem;
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.sidebar-key-specs::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
}
.sidebar-key-specs-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--line);
}
.sidebar-key-specs-eyebrow {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gold-deep);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.sidebar-key-specs h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
    color: var(--ink);
    text-transform: none;
    font-weight: 600;
    margin: 0;
}
.sidebar-key-specs-count {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 26px;
    padding: 0 0.55rem;
    background: var(--gold);
    color: var(--paper);
    border-radius: 13px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
}
.sidebar-key-specs-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column;
    gap: 0.55rem;
}
.sidebar-key-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0.85rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: var(--transition);
}
.sidebar-key-specs-list li:hover {
    border-color: rgba(184, 146, 60, 0.35);
    background: var(--ivory-soft);
}
.sidebar-key-specs-list .ks-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-deep);
    background: var(--gold-glow);
    border: 1px solid rgba(184, 146, 60, 0.25);
    border-radius: 4px;
    padding: 0.2rem 0.45rem;
    line-height: 1;
    margin-top: 0.1rem;
    flex-shrink: 0;
}
.sidebar-key-specs-list .ks-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--ink-soft);
    word-break: break-word;
}

/* --- Status pills --- */
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.35rem 0.85rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid;
    line-height: 1.2;
    white-space: nowrap;
}
.status-pill::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    margin-right: 0.5rem;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
}
.status-available { color: #2D8A3F; border-color: rgba(45, 138, 63, 0.4); background: rgba(45, 138, 63, 0.08); }
.status-booked { color: #B8923C; border-color: rgba(184, 146, 60, 0.4); background: var(--gold-glow); }
.status-sold { color: #B5293A; border-color: rgba(181, 41, 58, 0.4); background: rgba(181, 41, 58, 0.08); }
.status-available::before { animation: statusPulse 1.8s ease-in-out infinite; }
@keyframes statusPulse {
    0%, 100% { opacity: 0.95; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.88); }
}

/* --- Enquiry messages --- */
.enquiry-success, .enquiry-error {
    margin-top: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 10px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.enquiry-success { background: rgba(45, 138, 63, 0.08); border: 1px solid rgba(45, 138, 63, 0.3); color: var(--ink); }
.enquiry-error { background: rgba(181, 41, 58, 0.08); border: 1px solid rgba(181, 41, 58, 0.3); color: var(--ink); }
.enquiry-success.fading, .enquiry-error.fading { opacity: 0; transform: translateY(-6px); }
.enquiry-success svg, .enquiry-error svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    stroke-width: 2.5;
    fill: none;
    margin-top: 2px;
}
.enquiry-success svg { stroke: #2D8A3F; }
.enquiry-error svg { stroke: #B5293A; }
.enquiry-success strong, .enquiry-error strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.enquiry-success strong { color: #2D8A3F; }
.enquiry-error strong { color: #B5293A; }
.enquiry-success p, .enquiry-error p { font-size: 0.85rem; color: var(--ink-mute); line-height: 1.5; }

.welcome-splash {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;           /* above floating UI but below the menu (999999) */
    animation: splashExit 0.7s cubic-bezier(0.65, 0, 0.35, 1) 2.2s forwards;
    overflow: hidden;
}
.splash-content {
    position: relative;
    text-align: center;
    z-index: 2;
    animation: splashContentExit 0.7s cubic-bezier(0.65, 0, 0.35, 1) 2.2s forwards;
}
.splash-content .splash-logo {
    /* Curtain reveal: a thin horizontal slit opens vertically while the
       logo settles from a 4% upscale. Gives a premium "unveil" feel
       without any literal motion path. */
    clip-path: inset(50% 0 50% 0);
    opacity: 0;
    transform: scale(1.04);
    animation: splashLogoReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
    margin: 0 auto;
}
.splash-line {
    width: 0;
    height: 1px;
    /* Gradient hairline — fades at the edges so it doesn't look pasted on */
    background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
    margin: 1.5rem auto 0;
    animation: splashLineExpand 0.9s cubic-bezier(0.65, 0, 0.35, 1) 1s forwards;
}
.splash-tag-track {
    position: relative;
    display: inline-block;
    margin-top: 1.1rem;
    /* Bottom padding gives the wheel circles room without affecting baseline */
    padding-bottom: 4px;
}
.splash-content .splash-tag {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--ink-mute);
    letter-spacing: 6px;
    text-transform: uppercase;
    /* Hidden behind the car; revealed L→R as the car drives across.
       Same easing + duration + delay as .splash-car keeps the reveal edge
       under the car body. */
    clip-path: inset(0 100% 0 0);
    animation: splashTagWipe 0.85s cubic-bezier(0.45, 0, 0.25, 1) 1.2s forwards;
}
.splash-car {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: auto;
    color: #D40000; /* Ferrari Rosso Corsa */
    /* Start fully off-screen left of the text, vertically centered */
    transform: translate(-100%, -50%);
    opacity: 0;
    filter: drop-shadow(0 3px 6px rgba(212, 0, 0, 0.28));
    animation: splashCarDrive 0.85s cubic-bezier(0.45, 0, 0.25, 1) 1.2s forwards;
}
@keyframes splashLogoReveal {
    to { clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1); }
}
@keyframes splashLineExpand { to { width: 160px; } }
@keyframes splashTagWipe { to { clip-path: inset(0 0 0 0); } }
@keyframes splashCarDrive {
    0%   { left: 0;    transform: translate(-100%, -50%); opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { left: 100%; transform: translate(0, -50%);     opacity: 0; }
}
@keyframes splashContentExit {
    to { transform: scale(1.025); opacity: 0; }
}
@keyframes splashExit {
    0%   { opacity: 1; visibility: visible; pointer-events: auto; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-splash { animation: splashExit 0.4s ease 1.2s forwards; }
    .splash-content,
    .splash-content .splash-logo,
    .splash-content .splash-tag,
    .splash-line {
        animation: none;
        opacity: 1;
        transform: none;
        clip-path: none;
    }
    .splash-line { width: 160px; }
    .splash-car { display: none; }
}

/* --- Floating buttons --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    animation: waSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}
.whatsapp-float-btn {
    width: 62px; height: 62px;
    background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    position: relative;
    flex-shrink: 0;
}
.whatsapp-float-btn svg {
    width: 30px; height: 30px;
    fill: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 211, 102, 0.55);
    animation: waPulse 2.4s ease-out infinite;
    pointer-events: none;
}
.whatsapp-float-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--gold-bright);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.whatsapp-status-dot {
    position: absolute;
    top: 3px; right: 3px;
    width: 12px; height: 12px;
    background: var(--gold-bright);
    border: 2px solid #fff;
    border-radius: 50%;
    animation: waStatus 2s ease-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    70%, 100% { transform: scale(1.5); opacity: 0; }
}
@keyframes waStatus {
    0% { box-shadow: 0 0 0 0 rgba(229, 199, 122, 0.7); }
    70% { box-shadow: 0 0 0 7px rgba(229, 199, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 199, 122, 0); }
}
.whatsapp-tooltip {
    display: inline-flex;
    align-items: center;
    background: var(--ink);
    color: var(--ivory);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    border: 1px solid rgba(201, 162, 74, 0.4);
    box-shadow: 0 10px 28px rgba(17, 19, 26, 0.22);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    order: -1;
}
.whatsapp-tooltip::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.9);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-float:hover .whatsapp-float-btn {
    transform: scale(1.06);
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.whatsapp-float:hover .whatsapp-float-btn::after {
    opacity: 1;
    transform: scale(1);
}
@keyframes waSlideIn {
    from { transform: translateY(80px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* --- Floating Product Button (Interactive) --- */
.product-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: none;
    animation: waSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both, floatBob 4s ease-in-out infinite alternate 1.8s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.product-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(212, 175, 84, 0.5) 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
    animation: goldPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes goldPulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(0.8); opacity: 0; }
}

.product-float:hover {
    background: transparent;
    border-color: transparent;
    transform: translateY(-8px) scale(1.12) rotate(-5deg);
    filter: drop-shadow(0 15px 30px rgba(212, 175, 84, 0.7));
}

.product-float .float-logo {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.product-float:active .float-logo {
    transform: scale(0.9);
}

/* --- Contact info cards --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}
.contact-info-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.15rem 1.4rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}
.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
a.contact-info-card:hover {
    background: var(--ivory-soft);
    border-color: rgba(184, 146, 60, 0.4);
    transform: translateX(4px);
    box-shadow: var(--shadow-lift);
}
a.contact-info-card:hover::before { transform: scaleY(1); }
.contact-info-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid rgba(184, 146, 60, 0.28);
    border-radius: 50%;
    color: var(--gold-deep);
    transition: var(--transition);
}
.contact-info-icon svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
a.contact-info-card:hover .contact-info-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--paper);
    transform: scale(1.05) rotate(-3deg);
}
.contact-info-content { flex: 1; min-width: 0; }
.contact-info-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
    font-family: 'Orbitron', sans-serif;
}
.contact-info-value {
    margin: 0;
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.55;
    word-break: break-word;
    font-weight: 600;
}
.contact-info-sub {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: var(--ink-mute);
    font-weight: 400;
}

/* --- Contact Waze CTA --- */
.contact-waze-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.contact-waze-btn svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    stroke: var(--gold);
    stroke-width: 1.5;
    stroke-linejoin: round;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-waze-btn:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}
.contact-waze-btn:hover svg {
    fill: var(--gold-bright);
    stroke: var(--gold-bright);
    transform: translateX(2px) scale(1.1);
}

/* --- Footer contact list --- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--ink-mute);
    text-decoration: none;
    font-size: 0.78rem;
    line-height: 1.45;
    margin: 0;
    transition: color 0.25s ease, transform 0.25s ease;
}
.footer-contact-item .footer-contact-icon {
    flex-shrink: 0;
    width: 14px; height: 14px;
    margin-top: 2px;
    color: var(--gold);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}
a.footer-contact-item:hover { color: var(--ink); }
a.footer-contact-item:hover .footer-contact-icon { transform: scale(1.18); }
.footer-waze-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 0.85rem;
    transition: var(--transition);
}
.footer-waze-link::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.7rem;
}
.footer-waze-link:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

/* --- Mobile --- */
@media (max-width: 992px) {
    :root { --section-padding: 80px 5%; }
    .container { width: 92%; }
    .section-title { font-size: 2.2rem; margin-bottom: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-lead { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 5%; }
    html, body { overflow-x: hidden; }
    .container { width: 92%; }

    .section-title { font-size: 1.85rem; padding-bottom: 1rem; margin-bottom: 1.75rem; }
    .section-title::after { width: 40px; }

    .minimal-header { padding: 1rem 0; }
    .header-wordmark { font-size: 1.25rem; }
    .header-wordmark .adz-tag { display: none; }

    .full-nav-links { gap: 1rem; }
    .full-nav-links a { font-size: 2.4rem; }

    .btn { padding: 0.85rem 1.65rem; font-size: 0.7rem; min-height: 44px; }

    .hero { padding: 100px 5% 80px; }
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 2.25rem; }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn { width: 100%; }
    .hero-marquee { display: none; }

    .stats-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .stat-block { border-left: none; border-top: 1px solid var(--line); padding: 1rem 0 0; }

    .showcase-banner { padding: 70px 5%; }
    .showcase-banner h2 { font-size: 1.8rem; }

    .brands-head { flex-direction: column; align-items: flex-start; }
    .brands-head h2 { font-size: 1.85rem; }

    .testimonials { padding: 44px 5%; }
    .value-card { padding: 1.85rem 1.5rem; }
    .value-card p.quote { font-size: 1rem; }

    .cta-section { padding: 80px 5%; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-col {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--line);
    }
    .footer-col:last-child { border-bottom: none; }

    .director-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .director-photo { max-width: 380px; margin: 0 auto; }
    .director-badge { position: static; display: inline-block; margin-top: 1rem; }

    .page-banner { padding: 130px 0 50px; }
    .detail-header { padding: 130px 0 50px; }
    .detail-main { gap: 2rem; padding: 40px 0 70px; }
    .detail-title-section h1 { font-size: 1.95rem; }
    .detail-price { font-size: 1.35rem; }
    .spec-grid-premium { gap: 0.85rem; }
    .detail-form-card { padding: 1.75rem 1.4rem; }

    .filter-bar { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.25rem; }
    .btn-filter { grid-column: 1 / -1; }

    .form-group-p input, .form-group-p textarea, .form-group-p select { font-size: 16px; }
    .filter-group select, .filter-group input { font-size: 16px; }
}

@media (max-width: 480px) {
    .full-nav-links a { font-size: 1.85rem; }
    .filter-bar { grid-template-columns: 1fr; }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 3px; padding: 0.4rem 0.85rem; }
    .whatsapp-float { bottom: 20px; right: 18px; }
    .whatsapp-float-btn { width: 54px; height: 54px; }
    .whatsapp-float-btn svg { width: 26px; height: 26px; }
    .whatsapp-status-dot { width: 10px; height: 10px; top: 2px; right: 2px; }
    .whatsapp-tooltip { display: none; }
    .product-float { bottom: 20px; left: 18px; padding: 0; }
    .product-float .float-logo { height: 50px; }
}
