/* =====================================================
   CLASSIC CARS — Full-bleed hero image layout
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --cc-red:        #dc2626;
    --cc-red-deep:   #b91c1c;
    --cc-gold:       #d97706;
    --cc-gold-light: #fbbf24;
    --cc-dark:       #0d0505;
    --cc-ink:        #1a1a1a;
    --cc-muted:      #6b7280;
    --cc-border:     rgba(220,38,38,0.2);
}

/* ── HERO: full-bleed image ── */
.page-hero--classic-cars {
    position: relative;
    height: 60vh;
    min-height: 360px;
    max-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.page-hero--classic-cars .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1600&q=80');
    background-size: cover;
    background-position: center 55%;
    filter: brightness(0.58);
    transition: filter 0.4s;
}
.page-hero--classic-cars:hover .hero-bg { filter: brightness(0.65); }

.page-hero--classic-cars .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,5,5,0.88) 0%, rgba(13,5,5,0.2) 55%, transparent 100%);
}

/* Gold pinstripe at the bottom */
.page-hero--classic-cars .hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cc-gold-light), var(--cc-gold), var(--cc-gold-light), transparent);
}

.page-hero--classic-cars .container {
    position: relative;
    z-index: 2;
    padding: 0 2rem 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.page-hero--classic-cars h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.page-hero__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

/* ── CONTENT ── */
.page-section { padding: 2.5rem 0; }
.page-section .container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }

.page-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: #1a0505; margin-bottom: 0.8rem;
}
.page-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--cc-red); font-size: 1.15rem; margin-bottom: 0.4rem;
}
.page-section p  { color: #ffffff; line-height: 1.75; }
.page-section > .container > p { color: #ffffff; }
.fw-semibold     { color: #ffffff; font-weight: 600; }
.text-muted      { color: rgba(255,255,255,0.55) !important; font-size: 0.85rem; }

/* ── LATEST PROJECT CARD ── */
.classic-latest {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(220,38,38,0.25);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 20px rgba(220,38,38,0.1);
}
.classic-latest h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff !important; font-size: 1.45rem;
    border-bottom: 2px solid rgba(220,38,38,0.25);
    padding-bottom: 0.65rem; margin-bottom: 0.7rem;
}
.classic-latest-image img {
    width: 100%; border-radius: 12px;
    max-height: 400px; object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.classic-content { line-height: 1.8; color: #ffffff !important; margin-top: 0.75rem; }

/* ── OLDER PROJECTS ── */
.page-section hr { border-color: rgba(220,38,38,0.12); margin: 2rem 0; }
.page-section article {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(220,38,38,0.2);
    border-left: 4px solid var(--cc-red);
    border-radius: 0 14px 14px 0;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.15s, transform 0.15s;
}
.page-section article:hover {
    box-shadow: 0 4px 16px rgba(220,38,38,0.1);
    transform: translateX(2px);
}
.page-section article h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff !important; font-size: 1.05rem; margin: 0 0 0.3rem;
}

/* ── CONTACT ── */
.page-section--contact {
    background: linear-gradient(135deg, #0d0505, #1a0505, #3d0000);
    border-radius: 20px; color: #fff;
    text-align: center; padding: 4rem 1.5rem; margin: 2rem 0;
}
.page-section--contact h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.8rem; margin-bottom: 0.7rem; }
.page-section--contact p  { color: rgba(255,255,255,0.72); }
.contact-cta a, .contact-cta .btn-primary {
    display: inline-block;
    background: var(--cc-gold); color: #fff;
    padding: 0.7rem 2rem; border-radius: 999px;
    text-decoration: none; font-weight: 700; font-size: 0.9rem; border: none;
    transition: background 0.2s, transform 0.15s;
}
.contact-cta a:hover { background: var(--cc-gold-light); color: #1a0505; transform: translateY(-1px); }

/* ── EMPTY STATE & ALL CONTENT TEXT ── */
.page-section p,
.page-section .container p,
.page-section .classic-content p {
    color: #ffffff !important;
}
.page-section article h4 { color: #ffffff !important; }
.page-section--contact p  { color: rgba(255,255,255,0.82) !important; }
