/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--color-black);
}

/* Full-bleed photo */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 22s ease-out forwards;
}

@keyframes hero-zoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-media img {
        animation: none;
    }
}

/* Scrim: readable text without flattening the photo */
.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to top, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.45) 34%, rgba(5, 5, 6, 0.08) 62%),
        linear-gradient(100deg, rgba(5, 5, 6, 0.62) 0%, rgba(5, 5, 6, 0.18) 46%, rgba(5, 5, 6, 0) 70%);
}

/* Content block, anchored low-left */
.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: calc(var(--navbar-height) + var(--spacing-2xl));
    padding-bottom: var(--spacing-2xl);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 3px;
    background: var(--color-primary);
    transform: skewX(-20deg);
}

.hero-title {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8.5vw, 6.5rem);
    font-weight: var(--font-weight-bold);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    max-width: 18ch;
    margin-bottom: var(--spacing-lg);
}

.hero-title-accent {
    color: var(--color-primary);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.65;
    max-width: 46ch;
    margin-bottom: var(--spacing-xl);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Entrance: one orchestrated rise, staggered */
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-cta {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.18s; }
.hero-cta { animation-delay: 0.28s; }

@keyframes hero-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow,
    .hero-title,
    .hero-sub,
    .hero-cta {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Dealer strip along the hero's bottom edge */
.hero-strip {
    position: relative;
    z-index: 3;
    margin-top: var(--spacing-md);
    background: rgba(8, 8, 9, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.hero-strip-brands {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-strip-label {
    color: var(--color-gray-light);
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: var(--spacing-sm);
}

.hero-strip-brand {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.hero-strip-sep {
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    transform: rotate(45deg);
}

.hero-strip-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.open-status {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
}

.open-status-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--color-gray-light);
    flex-shrink: 0;
}

.open-status.is-open .open-status-dot {
    background: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25);
}

.open-status.is-closed .open-status-dot {
    background: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(238, 27, 36, 0.22);
}

.hero-strip-phone {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.hero-strip-phone:hover {
    color: var(--color-primary);
}

/* ========================================
   Hero Responsive
   ======================================== */
@media (max-width: 900px) {
    .hero-strip-status {
        gap: var(--spacing-md);
    }
}

@media (max-width: 700px) {
    .hero-inner {
        padding-bottom: var(--spacing-xl);
    }

    .hero-eyebrow {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    /* Let the headline wrap naturally on narrow screens */
    .hero-title br {
        display: none;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-cta .btn {
        flex: 1 1 100%;
        max-width: none;
    }

    .hero-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .hero-strip-label {
        flex-basis: 100%;
        margin-right: 0;
    }

    .hero-strip-brand {
        font-size: 1rem;
    }

    .hero-strip-status {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
}
