/* ============================================================
   Vintage British Classic Cars — style.css
   Colors: British Racing Green #0a1a0a | Gold #c5a44e
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #0a1a0a;
  --green-mid: #112211;
  --green-light: #1a3a1a;
  --gold: #c5a44e;
  --gold-light: #d4b96a;
  --cream: #f5f0e8;
  --cream-dark: #ede8de;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #e0e0e0;
  --text: #2d2d2d;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Georgia', 'Times New Roman', serif; color: var(--text); background: var(--white); line-height: 1.75; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* ---- HEADER ---- */
header { background: var(--green); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.6); border-bottom: 1px solid rgba(197,164,78,0.25); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { height: 54px; width: auto; }
nav { display: flex; align-items: center; gap: 4px; }
nav a { color: rgba(255,255,255,0.78); padding: 8px 16px; font-size: 0.87rem; font-weight: 400; letter-spacing: 0.06em; font-family: 'Segoe UI', Arial, sans-serif; transition: var(--transition); }
nav a:hover, nav a.active { color: var(--gold); }
.nav-cta { border: 1px solid var(--gold) !important; color: var(--gold) !important; border-radius: 2px; }
.nav-cta:hover { background: var(--gold) !important; color: var(--green) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ---- SPLIT HERO ---- */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.hero-video-half { position: relative; overflow: hidden; background: var(--green); }
.hero-split-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.hero-text-half { display: flex; flex-direction: column; justify-content: center; padding: 60px; background: var(--green); color: var(--white); }
@media(max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-video-half { height: 300px; }
  .hero-text-half { padding: 40px 24px; }
}
.hero-text-half .label { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Segoe UI', sans-serif; margin-bottom: 20px; display: block; }
.hero-text-half h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.2; margin-bottom: 24px; }
.hero-text-half h1 em { color: var(--gold); font-style: italic; }
.hero-text-half p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; font-family: 'Segoe UI', Arial, sans-serif; }
.hero-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.badge { display: inline-block; background: rgba(197,164,78,0.12); border: 1px solid rgba(197,164,78,0.35); color: var(--gold); padding: 7px 18px; font-size: 0.8rem; font-family: 'Segoe UI', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 14px 36px; font-weight: 400; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; transition: var(--transition); cursor: pointer; border: none; font-family: 'Segoe UI', Arial, sans-serif; }
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--gold-light); color: var(--green); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--green); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- SECTIONS ---- */
section { padding: 96px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; color: var(--gold); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Segoe UI', sans-serif; margin-bottom: 18px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--green); margin-bottom: 18px; line-height: 1.2; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 580px; margin-bottom: 48px; font-family: 'Segoe UI', Arial, sans-serif; }
.section-header { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.gold-divider { width: 56px; height: 2px; background: var(--gold); margin: 18px 0; }
.gold-divider.center { margin: 18px auto; }

/* ---- STATS ---- */
.stats-bar { background: var(--green); padding: 60px 40px; }
.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 2.6rem; font-weight: 400; color: var(--gold); }
.stat-item p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 8px; font-family: 'Segoe UI', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---- 2-COL ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { width: 100%; height: 440px; object-fit: cover; }
.col-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--green); margin-bottom: 20px; }
.col-content p { color: var(--gray); margin-bottom: 20px; font-family: 'Segoe UI', Arial, sans-serif; }
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li { padding: 8px 0; color: var(--text); display: flex; align-items: flex-start; gap: 12px; font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.95rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.check-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ---- CARDS ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card { background: var(--cream); padding: 36px; transition: var(--transition); border-bottom: 3px solid transparent; }
.card:hover { border-bottom-color: var(--gold); }
.card-icon { font-size: 2rem; margin-bottom: 20px; }
.card h3 { font-size: 1.15rem; font-weight: 400; color: var(--green); margin-bottom: 12px; }
.card p { color: var(--gray); font-size: 0.92rem; font-family: 'Segoe UI', Arial, sans-serif; }

/* ---- BANNER ---- */
.banner-section { position: relative; padding: 120px 40px; background-image: url('/images/vue-lehavre.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.banner-section::before { content: ''; position: absolute; inset: 0; background: rgba(10,26,10,0.88); }
.banner-section .container { position: relative; z-index: 1; text-align: center; color: var(--white); }
.banner-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; margin-bottom: 20px; }
.banner-section p { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 620px; margin: 0 auto 36px; font-family: 'Segoe UI', Arial, sans-serif; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: var(--cream); padding: 32px; border-left: 3px solid var(--gold); }
.testimonial p { color: var(--text); font-style: italic; margin-bottom: 18px; }
.testimonial-author { font-size: 0.88rem; color: var(--green); font-family: 'Segoe UI', sans-serif; letter-spacing: 0.04em; }
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 12px; }

/* ---- FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; color: var(--green); margin-bottom: 8px; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Segoe UI', sans-serif; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--gray-light); font-size: 1rem; transition: var(--transition); background: var(--white); color: var(--text); font-family: 'Segoe UI', Arial, sans-serif; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.info-box { background: var(--green); padding: 40px; color: rgba(255,255,255,0.8); }
.info-box h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 24px; font-weight: 400; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.info-icon { width: 40px; height: 40px; background: rgba(197,164,78,0.2); border: 1px solid rgba(197,164,78,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-item p { font-size: 0.93rem; font-family: 'Segoe UI', sans-serif; }
.info-item strong { color: var(--gold); display: block; margin-bottom: 2px; font-family: 'Segoe UI', sans-serif; font-weight: 400; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 36px; }
.blog-card { background: var(--white); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-tag { display: inline-block; color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; font-family: 'Segoe UI', sans-serif; }
.blog-card h3 { font-size: 1.1rem; font-weight: 400; color: var(--green); margin-bottom: 12px; line-height: 1.4; }
.blog-card p { color: var(--gray); font-size: 0.91rem; margin-bottom: 18px; font-family: 'Segoe UI', Arial, sans-serif; }
.blog-card .read-more { color: var(--gold); font-size: 0.88rem; font-family: 'Segoe UI', sans-serif; }
.blog-meta { font-size: 0.82rem; color: var(--gray); margin-bottom: 8px; font-family: 'Segoe UI', sans-serif; }

/* ---- ARTICLE ---- */
.article-hero { background: var(--green); padding: 88px 40px 64px; text-align: center; color: var(--white); border-bottom: 1px solid rgba(197,164,78,0.2); }
.article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; max-width: 820px; margin: 0 auto 16px; }
.article-meta { color: rgba(255,255,255,0.5); font-size: 0.88rem; font-family: 'Segoe UI', sans-serif; }
.article-body { max-width: 780px; margin: 0 auto; padding: 64px 40px; }
.article-body h2 { font-size: 1.6rem; font-weight: 400; color: var(--green); margin: 44px 0 18px; }
.article-body h3 { font-size: 1.2rem; font-weight: 400; color: var(--green); margin: 32px 0 14px; }
.article-body p { color: var(--text); margin-bottom: 20px; line-height: 1.9; font-family: 'Segoe UI', Arial, sans-serif; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; color: var(--text); font-family: 'Segoe UI', sans-serif; }
.article-body li { margin-bottom: 8px; line-height: 1.8; }
.article-body a { color: var(--gold); text-decoration: underline; }
.article-img { margin: 36px 0; width: 100%; height: 400px; object-fit: cover; }
.article-img-mid { margin: 28px 0; width: 100%; height: 300px; object-fit: cover; }
.article-nav { display: flex; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-light); }

/* ---- CTA ---- */
.cta-section { background: var(--cream); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cta-inner img { width: 100%; height: 420px; object-fit: cover; }
.cta-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--green); margin-bottom: 20px; }
.cta-content p { color: var(--gray); margin-bottom: 24px; font-family: 'Segoe UI', Arial, sans-serif; }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--green); padding: 88px 40px 64px; text-align: center; color: var(--white); border-bottom: 1px solid rgba(197,164,78,0.15); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; margin-bottom: 18px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto; font-family: 'Segoe UI', Arial, sans-serif; }
.breadcrumb { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 18px; font-family: 'Segoe UI', sans-serif; }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q { padding: 22px 0; font-weight: 400; color: var(--green); cursor: pointer; display: flex; justify-content: space-between; font-size: 1.05rem; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gold); margin-left: 16px; }
.faq-a { padding: 0 0 22px; color: var(--gray); line-height: 1.8; font-family: 'Segoe UI', Arial, sans-serif; }

/* ---- SITEMAP ---- */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.sitemap-col h3 { font-size: 0.82rem; font-weight: 400; color: var(--green); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Segoe UI', sans-serif; }
.sitemap-col ul { list-style: none; }
.sitemap-col ul li { margin-bottom: 10px; }
.sitemap-col ul li a { color: var(--gray); font-size: 0.93rem; font-family: 'Segoe UI', sans-serif; }
.sitemap-col ul li a:hover { color: var(--gold); }

/* ---- 404 ---- */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 40px; }
.error-page h1 { font-size: 8rem; font-weight: 400; color: var(--gold); opacity: 0.3; line-height: 1; }
.error-page h2 { font-size: 2rem; font-weight: 400; color: var(--green); margin-bottom: 16px; }
.error-page p { color: var(--gray); margin-bottom: 36px; font-family: 'Segoe UI', sans-serif; }

/* ---- FOOTER ---- */
footer { background: var(--green); color: rgba(255,255,255,0.55); padding: 72px 40px 24px; border-top: 1px solid rgba(197,164,78,0.15); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-col h4 { color: var(--gold); font-weight: 400; margin-bottom: 18px; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Segoe UI', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.9rem; font-family: 'Segoe UI', sans-serif; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; font-family: 'Segoe UI', sans-serif; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col, .contact-grid, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 64px 24px; }
  .article-body { padding: 48px 24px; }
}
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--green); padding: 16px; gap: 4px; border-bottom: 1px solid rgba(197,164,78,0.2); }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
