:root {
  --gold: #C9A84C;
  --gold-light: #E8C86A;
  --gold-dark: #9A7A30;
  --black: #0E0E0E;
  --dark: #161616;
  --dark2: #1E1E1E;
  --dark3: #252525;
  --white: #F5F0E8;
  --border: rgba(201,168,76,0.2);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; font-weight: 400; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px 60px; background: rgba(14,14,14,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: padding 0.3s; }
.nav-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); letter-spacing: 3px; text-decoration: none; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 10px 24px; opacity: 1 !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* HERO VILLE */
.hero-ville { min-height: 70vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 140px 60px 80px; position: relative; overflow: hidden; }
.hero-ville-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-ville-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(14,14,14,0.95) 50%, rgba(14,14,14,0.6) 100%); }
.hero-ville-content { position: relative; z-index: 1; max-width: 720px; }
.breadcrumb { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,0.45); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.hero-tag { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 6px 16px; margin-bottom: 24px; }
.hero-title-ville { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5vw, 72px); line-height: 1.05; font-weight: 900; margin-bottom: 20px; }
.hero-title-ville em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 17px; font-weight: 300; color: rgba(245,240,232,0.7); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }
.btn-primary { background: var(--gold); color: var(--black); padding: 16px 40px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); padding: 16px 40px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; display: inline-block; margin-left: 12px; }
.btn-outline:hover { background: rgba(201,168,76,0.1); }

/* SECTIONS */
section { padding: 80px 60px; }
.section-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; line-height: 1.15; }
.section-title em { font-style: italic; color: var(--gold); }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 20px 0 36px; }

/* INTRO TEXTE */
.ville-intro { background: var(--dark); }
.ville-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.ville-intro-text p { font-size: 16px; font-weight: 300; color: rgba(245,240,232,0.7); line-height: 1.8; margin-bottom: 20px; }
.ville-intro-text strong { color: var(--white); font-weight: 600; }
.ville-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ville-stat { background: var(--dark2); padding: 32px 28px; }
.ville-stat-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--gold); line-height: 1; }
.ville-stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,0.45); margin-top: 6px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.service-card { background: var(--dark2); padding: 40px 32px; border-bottom: 3px solid transparent; transition: border-color 0.3s, background 0.3s; }
.service-card:hover { border-color: var(--gold); background: var(--dark3); }
.service-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; color: var(--white); }
.service-desc { font-size: 14px; font-weight: 300; color: rgba(245,240,232,0.6); line-height: 1.7; }
.service-icon-txt { font-size: 28px; margin-bottom: 20px; }

/* CTA BAND */
.cta-band { background: var(--gold); color: var(--black); padding: 50px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; }
.cta-band-sub { font-size: 15px; font-weight: 300; margin-top: 6px; opacity: 0.8; }
.cta-band-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: 2px; white-space: nowrap; text-decoration: none; color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: background 0.2s; display: inline-block; }
.btn-dark:hover { background: #333; }

/* FAQ */
.faq-section { background: var(--dark); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--dark2); overflow: hidden; }
.faq-question { padding: 24px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.faq-question:hover { background: var(--dark3); }
.faq-question::after { content: '+'; color: var(--gold); font-size: 22px; font-weight: 300; transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 32px; font-size: 15px; font-weight: 300; color: rgba(245,240,232,0.7); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 32px 24px; }

/* FORM */
.contact-section { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info-block { padding-top: 10px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px; }
.contact-icon { width: 42px; height: 42px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.contact-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 300; color: var(--white); line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,0.45); }
.form-input, .form-select, .form-textarea { background: var(--dark2); border: 1px solid var(--border); color: var(--white); padding: 14px 18px; font-family: 'Barlow', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--dark2); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--gold); color: var(--black); border: none; padding: 18px; width: 100%; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-top: 8px; transition: background 0.2s; }
.form-submit:hover { background: var(--gold-light); }

/* FOOTER */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 50px 60px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 40px; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); letter-spacing: 3px; text-decoration: none; }
.footer-tagline { font-size: 13px; font-style: italic; color: rgba(245,240,232,0.35); margin-top: 4px; }
.footer-links { display: flex; gap: 36px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(245,240,232,0.45); text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-villes { margin-bottom: 24px; }
.footer-villes-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.3); margin-bottom: 12px; }
.footer-villes-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-villes-links a { color: rgba(245,240,232,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-villes-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(245,240,232,0.2); text-align: center; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-ville { padding: 100px 20px 50px; }
  section { padding: 60px 20px; }
  .ville-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; padding: 40px 20px; text-align: center; }
  .contact-section { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
