/* ============================
   ASPIRE LUXURY LLC — Stylesheet
   Luxury / Dark / Gold / Editorial
   ============================ */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --gold: #c9a96e;
    --gold-light: #dfc08a;
    --gold-dim: rgba(201, 169, 110, 0.15);
    --white: #f5f0eb;
    --white-dim: rgba(245, 240, 235, 0.6);
    --white-faint: rgba(245, 240, 235, 0.08);
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'Outfit', 'Helvetica Neue', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}
.preloader-logo {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1.4;
}
.preloader-logo-sub {
    display: block;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--white-dim);
    text-transform: uppercase;
}
.preloader-bar {
    width: 200px; height: 1px;
    background: var(--white-faint);
    border-radius: 1px; overflow: hidden;
}
.preloader-fill {
    width: 0%; height: 100%;
    background: var(--gold);
    animation: preloaderFill 1.8s var(--ease) forwards;
}
@keyframes preloaderFill { to { width: 100%; } }

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease);
}
#navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--white-faint);
}
.nav-container {
    max-width: 1320px; margin: 0 auto;
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 0; }
.logo-text {
    font-family: var(--serif);
    font-size: 1.4rem; font-weight: 400;
    letter-spacing: 0.4em; color: var(--gold);
    line-height: 1;
}
.logo-sub {
    font-size: 0.55rem; font-weight: 300;
    letter-spacing: 0.35em; color: var(--white-dim);
    text-transform: uppercase;
}
.nav-links {
    display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
    font-size: 0.8rem; font-weight: 300;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--white-dim);
    position: relative;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-cta svg { transition: transform 0.3s; }
.nav-cta:hover svg { transform: translate(2px, -2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
    width: 24px; height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
#mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
    opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease);
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu ul { list-style: none; text-align: center; }
#mobile-menu ul li { margin-bottom: 1.5rem; }
#mobile-menu ul a {
    font-family: var(--serif);
    font-size: 2rem; font-weight: 300;
    letter-spacing: 0.1em; color: var(--white);
    transition: color 0.3s;
}
#mobile-menu ul a:hover { color: var(--gold); }
.mobile-cta {
    font-size: 0.85rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--black); background: var(--gold);
    padding: 0.8rem 2rem; border-radius: 100px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, rgba(17, 17, 17, 0.8) 50%, var(--black) 100%);
}
.hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.7rem; font-weight: 300;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 2s forwards;
}
.badge-line { width: 30px; height: 1px; background: var(--gold); opacity: 0.5; }

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}
.hero-line { display: block; }
.hero-line-italic { font-style: italic; color: var(--gold); }

.hero h1 .hero-line:nth-child(1) { opacity: 0; transform: translateY(40px); animation: fadeUp 0.8s var(--ease) 2.15s forwards; }
.hero h1 .hero-line:nth-child(2) { opacity: 0; transform: translateY(40px); animation: fadeUp 0.8s var(--ease) 2.3s forwards; }
.hero h1 .hero-line:nth-child(3) { opacity: 0; transform: translateY(40px); animation: fadeUp 0.8s var(--ease) 2.45s forwards; }

.hero-sub {
    font-size: 1.05rem; font-weight: 300;
    color: var(--white-dim);
    max-width: 560px; margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 2.6s forwards;
}
.hero-actions {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 2.75s forwards;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    transition: all 0.35s var(--ease);
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.2); }
.btn-outline {
    border: 1px solid rgba(245, 240, 235, 0.2);
    color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.65rem; font-weight: 300;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--white-dim);
    opacity: 0; animation: fadeIn 1s 3.2s forwards;
    transition: opacity 0.4s;
    pointer-events: none;
}
.hero-scroll.hidden { opacity: 0 !important; }
.scroll-line { width: 1px; height: 40px; background: var(--white-faint); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute;
    top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--gold);
    animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%{top:-100%} 50%{top:100%} 100%{top:100%} }

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 1.5rem 0;
    border-top: 1px solid var(--white-faint);
    border-bottom: 1px solid var(--white-faint);
    overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-content {
    display: flex; align-items: center; gap: 2rem;
    padding-right: 2rem;
    font-family: var(--serif);
    font-size: 1rem; font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--white-dim);
    white-space: nowrap;
}
.marquee-dot { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SECTIONS COMMON ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    font-size: 0.7rem; font-weight: 400;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    display: inline-block; margin-bottom: 1rem;
}
.section-header h2, .about-content h2, .contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
}
.section-header h2 em, .about-content h2 em, .contact-info h2 em {
    font-style: italic; color: var(--gold);
}
.section-header p {
    font-size: 0.95rem; font-weight: 300;
    color: var(--white-dim);
    max-width: 500px; margin: 1rem auto 0;
    line-height: 1.7;
}

/* ===== INVENTORY ===== */
.inventory { padding: 7rem 0; }
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.watch-card {
    background: var(--dark);
    border: 1px solid var(--white-faint);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.watch-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-image {
    aspect-ratio: 1;
    background: var(--dark-2);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.watch-card:hover .card-img { transform: scale(1.05); }
.card-placeholder {
    color: rgba(245, 240, 235, 0.12);
    transition: color 0.4s;
}
.watch-card:hover .card-placeholder { color: rgba(201, 169, 110, 0.2); }
.card-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 1;
    font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}
.card-badge.sold {
    color: #f5f0eb;
    background: rgba(245, 240, 235, 0.12);
    border-color: rgba(245, 240, 235, 0.2);
}
.card-info { padding: 1.5rem; }
.card-brand {
    font-size: 0.65rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    display: block; margin-bottom: 0.4rem;
}
.card-info h3 {
    font-family: var(--serif);
    font-size: 1.3rem; font-weight: 400;
    margin-bottom: 0.3rem;
}
.card-info p {
    font-size: 0.82rem; font-weight: 300;
    color: var(--white-dim);
    margin-bottom: 1rem;
}
.card-link {
    font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s;
    display: inline-flex; gap: 0.3rem;
}
.card-link:hover { gap: 0.6rem; }

.inventory-footer { text-align: center; margin-top: 3.5rem; }
.inventory-footer p {
    font-size: 0.9rem; font-weight: 300;
    color: var(--white-dim); margin-bottom: 1.5rem;
}
.inventory-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== ABOUT ===== */
.about { padding: 7rem 0; background: var(--dark); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-wrapper {
    aspect-ratio: 4/5;
    border-radius: 12px;
    border: 1px solid var(--white-faint);
    overflow: hidden;
}
.about-image {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 1.5rem;
}
.stat {
    background: var(--dark-2);
    border: 1px solid var(--white-faint);
    border-radius: 12px;
    padding: 1.5rem; text-align: center;
}
.stat-number {
    font-family: var(--serif);
    font-size: 2.5rem; font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-plus {
    font-family: var(--serif);
    font-size: 1.5rem; color: var(--gold);
}
.stat-label {
    display: block; margin-top: 0.3rem;
    font-size: 0.7rem; font-weight: 300;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--white-dim);
}
.about-content .section-tag { display: block; margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-lead {
    font-size: 1.05rem; font-weight: 300;
    line-height: 1.8; color: var(--white);
    margin-bottom: 1rem;
}
.about-content p {
    font-size: 0.9rem; font-weight: 300;
    color: var(--white-dim); line-height: 1.8;
    margin-bottom: 0.8rem;
}
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.feature {
    display: flex; align-items: flex-start; gap: 1rem;
}
.feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid var(--white-faint);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.feature strong {
    font-size: 0.85rem; font-weight: 500;
    display: block; margin-bottom: 0.1rem;
}
.feature span {
    font-size: 0.8rem; font-weight: 300;
    color: var(--white-dim);
}

/* ===== DIVIDER ===== */
.divider-section {
    padding: 6rem 2rem;
    background: var(--black);
    border-top: 1px solid var(--white-faint);
    border-bottom: 1px solid var(--white-faint);
    text-align: center;
}
.divider-quote {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300; font-style: italic;
    color: var(--white);
    display: block; max-width: 700px; margin: 0 auto 1rem;
    line-height: 1.5;
}
.divider-attr {
    font-size: 0.75rem; font-weight: 300;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 7rem 0; background: var(--dark); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--dark-2);
    border: 1px solid var(--white-faint);
    border-radius: 12px;
    padding: 2rem;
    display: flex; flex-direction: column; gap: 1.2rem;
    transition: all 0.4s var(--ease);
}
.testimonial-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.testimonial-stars { display: flex; gap: 0.2rem; }
.testimonial-text {
    font-family: var(--serif);
    font-size: 1.05rem; font-weight: 300;
    font-style: italic;
    color: var(--white-dim);
    line-height: 1.8;
    flex: 1;
}
.testimonial-author { border-top: 1px solid var(--white-faint); padding-top: 1.2rem; }
.testimonial-author strong {
    font-size: 0.9rem; font-weight: 500;
    display: block; margin-bottom: 0.15rem;
    color: var(--white);
}
.testimonial-author span {
    font-size: 0.7rem; font-weight: 300;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
}
.testimonials-footer {
    text-align: center; margin-top: 3rem;
}
.testimonials-footer p {
    font-size: 0.9rem; font-weight: 300;
    color: var(--white-dim); margin-bottom: 1.5rem;
}

/* ===== FAQ ===== */
.faq { padding: 7rem 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--white-faint);
}
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 1rem; font-weight: 400;
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg { flex-shrink: 0; transition: transform 0.4s var(--ease); color: var(--gold); }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.9rem; font-weight: 300;
    color: var(--white-dim); line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact { padding: 7rem 0; background: var(--dark); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info .section-tag { display: block; margin-bottom: 1rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p {
    font-size: 0.9rem; font-weight: 300;
    color: var(--white-dim); line-height: 1.8;
    margin-bottom: 2.5rem;
}
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--dark-2);
    border: 1px solid var(--white-faint);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}
a.contact-method:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.05);
}
.method-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--gold-dim);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.contact-method strong {
    font-size: 0.85rem; font-weight: 500;
    display: block; margin-bottom: 0.1rem;
}
.contact-method span {
    font-size: 0.8rem; font-weight: 300;
    color: var(--white-dim);
}
.contact-map { position: sticky; top: 6rem; }
.map-placeholder {
    aspect-ratio: 1;
    background: var(--dark-2);
    border-radius: 12px;
    border: 1px solid var(--white-faint);
    overflow: hidden;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--white-faint);
}
.footer-top {
    display: flex; justify-content: space-between;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p {
    font-size: 0.8rem; font-weight: 300;
    color: var(--white-dim);
    margin-top: 1rem; line-height: 1.7;
}
.footer-logo { display: flex; align-items: center; gap: 1rem; }
.footer-logo-img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
}
.footer-links { display: flex; gap: 4rem; }
.footer-col h4 {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
    font-size: 0.82rem; font-weight: 300;
    color: var(--white-dim);
    display: block; margin-bottom: 0.5rem;
    transition: color 0.3s; line-height: 1.6;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--white-faint);
    padding-top: 2rem; text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem; font-weight: 300;
    color: rgba(245, 240, 235, 0.3);
    letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
[data-animate] { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--ease); }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .inventory-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero-scroll { display: none; }
    .inventory-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hero-actions { flex-direction: column; align-items: center; }
    .footer-links { flex-direction: column; gap: 2rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .map-placeholder { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .container { padding: 0 1.25rem; }
}
