/* =========================================
   1. CORE DESIGN TOKENS
   ========================================= */
:root {
    --black: #050505;        /* Near-pure black for depth */
    --gold: #d4af37;         /* Classic 24k Gold tone */
    --gold-dim: #8e7323;     /* Muted Gold for borders */
    --white: #ffffff;
    --text-muted: #a0a0a0;
    --inter: 'Inter', sans-serif;
    --cinzel: 'Cinzel', serif; /* Roman-inspired luxury font */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--inter);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: auto; }

/* =========================================
   2. HEADER (True Center)
   ========================================= */
.main-header {
    background: rgba(5, 5, 5, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid var(--gold-dim);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand-wrapper, .nav-cta-wrapper { flex: 1; }
.nav-cta-wrapper { display: flex; justify-content: flex-end; }

.header-logo { height: 100px; width: auto; }

.nav-center-title {
    flex: 2;
    text-align: center;
    font-family: var(--cinzel);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-cta {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    padding: 10px 20px;
    transition: 0.4s;
}

.nav-cta:hover { background: var(--gold); color: var(--black); }

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    padding: 50px 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.8), var(--black)),
                url('luxury-sedan-dark.jpg') center/cover;
}

.hero-text { max-width: 700px; }

.gold-line { display: block; width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }

.badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
}

h1 {
    font-family: var(--cinzel);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 20px 0;
    line-height: 1.1;
}

h1 span { color: var(--gold); display: block; }

p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; font-weight: 300; }

.btn-gold {
    display: inline-block;
    padding: 20px 45px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-gold:hover { background: var(--white); transform: scale(1.05); }

/* =========================================
   4. VALUE BAR
   ========================================= */
.value-bar { background: #0a0a0a; padding: 40px 0; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.bar-flex { display: flex; justify-content: space-around; text-align: center; }
.stat { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.stat span { display: block; color: var(--gold); font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; }

/* =========================================
   5. SERVICES GRID
   ========================================= */
.services { padding: 100px 0; }
.section-title { font-family: var(--cinzel); text-align: center; font-size: 2.5rem; margin-bottom: 60px; letter-spacing: 2px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.service-card {
    background: #0a0a0a;
    padding: 50px 40px;
    position: relative;
    border: 1px solid #1a1a1a;
    transition: 0.4s;
}

.service-num { font-family: var(--cinzel); color: var(--gold); font-size: 0.9rem; margin-bottom: 20px; display: block; opacity: 0.5; }

.service-card h3 { font-family: var(--cinzel); font-size: 1.5rem; margin-bottom: 15px; color: var(--white); }

.service-card p { font-size: 0.95rem; margin-bottom: 0; }

.service-card:hover, .service-card.active {
    border-color: var(--gold);
}

/* =========================================
   6. FOOTER
   ========================================= */
footer { padding: 100px 0; text-align: center; border-top: 1px solid var(--gold-dim); background: #000; }
.footer-logo { font-family: var(--cinzel); font-size: 2.2rem; letter-spacing: 12px; color: var(--gold); margin-bottom: 15px; }
.footer-divider { width: 40px; height: 1px; background: var(--gold); margin: 35px auto; }
.legal { font-size: 0.7rem; letter-spacing: 3px; color: #444; text-transform: uppercase; }

/* =========================================
   7. RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .nav-center-title { display: none; }
    .bar-flex { flex-direction: column; gap: 40px; }
    .hero { text-align: center; padding: 50px 0; background: var(--black); }
    .gold-line { margin: 0 auto 25px; }
    .hero-text { margin: 0 auto; }
}

/* =========================================
   MUTED IMAGE FILTER (Elite Aesthetic)
   ========================================= */
.hero-image-wrap {
    margin-top: 50px;
    width: 100%;
    max-width: 500px; /* Keeps it from over-powering the text */
    position: relative;
    overflow: hidden;
    border-left: 1px solid var(--gold-dim); /* Small luxury detail */
    padding-left: 20px;
}

.muted-image {
    width: 100%;
    height: auto;
    display: block;
    
    /* The "Vibe" Filters */
    filter: brightness(0.3) contrast(1.2) grayscale(100%); 
    opacity: 0.4;
    
    /* Smooth entrance if you decide to use GSAP later */
    transition: 0.6s ease-in-out;
}

/* Subtle hover effect for extra "premium" feel */
.hero-image-wrap:hover .muted-image {
    filter: brightness(0.5) contrast(1.1) grayscale(0%);
    opacity: 0.6;
}


/* =========================================
   CINEMATIC IMAGE BREAK (Noir Aesthetic)
   ========================================= */
.cinematic-break {
    width: 100%;
    background: var(--black);
    padding: 0;
    margin: 40px 0; /* Space between the button and the image */
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.05); /* Very subtle gold outer glow */
    overflow: hidden;
}

.noir-image-container {
    width: 100%;
    height: 70vh; /* Takes up 70% of the screen height */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.noir-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions perfect */
    display: block;

    /* The "Expensive" Filter Combo */
    filter: brightness(0.7) contrast(1.4) grayscale(100%);
    opacity: 0.6;
    
    transition: filter 0.8s ease, opacity 0.8s ease;
}

/* Vignette: Fades the image edges into the site background */
.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle, 
        transparent 30%, 
        var(--black) 95%
    );
    pointer-events: none;
}

/* Subtle Reveal on Hover */
.cinematic-break:hover .noir-image-container img {
    filter: brightness(0.35) contrast(1.2) grayscale(0%);
    opacity: 0.8;
}