/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: #0d0d0d;
  color: #e0d8cc;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 500; }
em { font-style: italic; color: #c9a84c; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== URGENCE BAR ===== */
.urgence-bar {
  background: #c9a84c;
  color: #111;
  text-align: center;
  padding: 10px 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.urgence-tel {
  font-weight: 600;
  border: 1.5px solid #111;
  padding: 3px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.urgence-tel:hover { background: #111; color: #c9a84c; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 38px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  padding: 0.8rem 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 50px; height: 50px; object-fit: contain; filter: brightness(0) invert(1); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.logo-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; letter-spacing: 0.22em; color: #f0ece4; font-weight: 600; text-transform: uppercase; }
.logo-tagline { font-family: 'Cormorant Garamond', serif; font-size: 0.88rem; letter-spacing: 0.1em; color: #c9a84c; font-style: italic; font-weight: 400; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo-img { width: 50px; height: 50px; object-fit: contain; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.08em; color: #a09080; text-transform: uppercase; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: #c9a84c; }
.nav-cta {
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: #c9a84c; color: #111; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { width: 24px; height: 1.5px; background: #e0d8cc; display: block; transition: all 0.3s; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0d0d0d;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #e0d8cc; }
.mobile-menu a:hover { color: #c9a84c; }
.mobile-tel { font-family: 'Inter', sans-serif !important; font-size: 1.2rem !important; color: #c9a84c !important; border: 1px solid #c9a84c; padding: 0.8rem 2rem; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-floor-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.88) 0%, rgba(10,8,6,0.65) 60%, rgba(10,8,6,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  max-width: 720px;
  padding-left: 5vw;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-title {
  color: #f5f0e8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-sub {
  font-size: 1.05rem;
  color: #a09080;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 5px 14px;
  letter-spacing: 0.06em;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a84c;
  color: #111;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #d4b660; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #e0d8cc;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border: 1px solid rgba(224,216,204,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: #c9a84c; color: #c9a84c; }

/* ===== HERO SCROLL ===== */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #666;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== STATS ===== */
.stats-section {
  background: #141414;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 1rem 3rem; }
.stat-number { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: #c9a84c; font-weight: 400; line-height: 1; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #7a7060; margin-top: 6px; display: block; }
.stat-divider { width: 1px; height: 60px; background: rgba(201,168,76,0.2); }

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
  font-weight: 400;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { color: #f0ece4; margin-top: 0.5rem; }

/* ===== PROBLEM SECTION ===== */
.problem-section { padding: 7rem 0; background: #111; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-left h2 { color: #f0ece4; margin: 0.5rem 0 1.5rem; }
.problem-left p { color: #8a8070; margin-bottom: 1.2rem; font-size: 0.95rem; }
.problem-highlight {
  color: #e0d8cc;
  font-size: 1.05rem;
  border-left: 2px solid #c9a84c;
  padding-left: 1.2rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.solution-card {
  background: #1a1a1a;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.solution-icon { margin-bottom: 1rem; }
.solution-card h3 { color: #f0ece4; margin-bottom: 0.8rem; font-size: 1.2rem; }
.solution-card p { color: #8a8070; font-size: 0.9rem; }
.solution-items { display: flex; flex-direction: column; gap: 0.75rem; }
.solution-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #a09080; }

/* ===== SERVICES ===== */
.services-section { padding: 7rem 0; background: #0d0d0d; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.service-card {
  background: #111;
  overflow: hidden;
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { background: #141414; }
.service-visual { width: 100%; overflow: hidden; }
.service-visual svg { width: 100%; display: block; }
.service-content { padding: 2rem; }
.service-tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: #c9a84c; margin-bottom: 0.6rem; }
.service-content h3 { color: #f0ece4; margin-bottom: 0.8rem; font-size: 1.5rem; }
.service-content p { color: #7a7060; font-size: 0.9rem; margin-bottom: 1.2rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li { font-size: 0.82rem; color: #8a8070; padding-left: 1rem; position: relative; }
.service-list li::before { content: '—'; position: absolute; left: 0; color: #c9a84c; font-size: 0.7rem; }

/* ===== ZONE ===== */
.zone-section { padding: 7rem 0; background: #0a0a0a; border-top: 1px solid #1a1a1a; }
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.zone-left h2 { color: #f0ece4; margin: 0.5rem 0 1.5rem; }
.zone-left p { color: #8a8070; margin-bottom: 1.5rem; font-size: 0.95rem; }
.zone-regions { display: flex; flex-wrap: wrap; gap: 8px; }
.region-pill {
  font-size: 0.72rem;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.25);
  color: #7a7060;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.region-pill:hover { border-color: #c9a84c; color: #c9a84c; }
.france-map { width: 100%; max-width: 340px; margin: 0 auto; }

/* ===== WHY ===== */
.why-section { padding: 7rem 0; background: #111; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.why-card {
  background: #141414;
  padding: 2.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s, border-color 0.3s, background 0.3s;
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { border-bottom-color: #c9a84c; background: #181818; }
.why-icon { margin-bottom: 1.5rem; }
.why-card h3 { color: #f0ece4; margin-bottom: 0.8rem; font-size: 1.1rem; font-weight: 500; font-family: 'Inter', sans-serif; }
.why-card p { color: #6a6050; font-size: 0.88rem; line-height: 1.7; }

/* ===== TEMOIGNAGES ===== */
.temoignages-section { padding: 7rem 0; background: #0d0d0d; }
.temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.temoignage-card {
  background: #111;
  padding: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.temoignage-card.visible { opacity: 1; transform: translateY(0); }
.stars { color: #c9a84c; font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: 2px; }
.temoignage-text { color: #8a8070; font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; }
.temoignage-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: #c9a84c;
  font-weight: 500;
  flex-shrink: 0;
}
.author-name { font-size: 0.88rem; color: #c0b8a8; font-weight: 400; }
.author-loc { font-size: 0.75rem; color: #5a5040; margin-top: 2px; }

/* ===== CONTACT ===== */
.contact-section { padding: 7rem 0; background: #0a0a0a; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-left h2 { color: #f0ece4; margin: 0.5rem 0 1rem; }
.contact-left p { color: #7a7060; font-size: 0.95rem; margin-bottom: 2rem; }
.contact-infos { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.9rem; color: #a09080;
  transition: color 0.2s;
}
.contact-info-item:hover { color: #c9a84c; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #6a6050; font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #141414;
  border: 1px solid #2a2a2a;
  color: #e0d8cc;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #c9a84c; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a4030; }
.form-group select option { background: #141414; }
.phone-input-group { display: flex; gap: 0.6rem; }
.phone-input-group select { flex: 0 0 92px; padding-left: 0.6rem; padding-right: 0.3rem; }
.phone-input-group input { flex: 1; min-width: 0; }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #c9a84c;
  color: #111;
  padding: 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.btn-submit:hover { background: #d4b660; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-mention { font-size: 0.7rem; color: #4a4030; text-align: center; }
.form-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9a84c;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: #5a5040; line-height: 1.7; max-width: 260px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.footer-links a, .footer-contact a {
  display: block;
  font-size: 0.85rem;
  color: #5a5040;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: #c9a84c; }
.footer-contact p { font-size: 0.82rem; color: #4a4030; margin-top: 0.5rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: #3a3020; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: #3a3020; transition: color 0.2s; }
.footer-legal a:hover { color: #c9a84c; }

/* ===== FLOAT BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: transform 0.2s, background 0.2s;
  color: #111;
  border-radius: 2px;
}
.float-btn:hover { transform: translateY(-2px); }
.float-whatsapp {
  background: #25D366;
  animation: pulse-green 3s infinite;
}
.float-whatsapp:hover { background: #20ba5a; }
.float-phone {
  background: #c9a84c;
  animation: pulse-gold 3s infinite;
}
.float-phone:hover { background: #d4b660; }
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
  50% { box-shadow: 0 4px 28px rgba(201,168,76,0.55); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.55); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .problem-grid, .zone-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .zone-right { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 0; }
  .stat-item { padding: 1rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-divider { display: none; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .float-btn span { display: none; }
  .float-btn { padding: 1rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .float-buttons { right: 1rem; bottom: 1rem; gap: 8px; }
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .section-header { margin-bottom: 2.5rem; }
  .services-section, .why-section, .temoignages-section, .contact-section, .zone-section, .problem-section, .galerie-section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .urgence-bar { font-size: 0.7rem; gap: 0.6rem; padding: 8px 1rem; text-align: center; }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== FAQ ===== */
.faq-section { padding: 7rem 0; background: #111; }
.faq-grid { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: #141414; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.8rem; background: none; border: none; cursor: pointer;
  color: #e0d8cc; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  font-weight: 400; text-align: left; gap: 1rem; transition: color 0.2s;
}
.faq-question:hover { color: #c9a84c; }
.faq-question svg { flex-shrink: 0; color: #c9a84c; transition: transform 0.3s; }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 1.8rem 1.4rem; color: #7a7060; font-size: 0.9rem;
  line-height: 1.8; border-top: 1px solid #1e1e1e;
  padding-top: 1rem;
}
.faq-answer strong { color: #c9a84c; font-weight: 500; }

/* ===== LIENS INTERNES ===== */
.links-section { padding: 4rem 0; background: #0a0a0a; border-top: 1px solid #1a1a1a; }
.links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.links-col h3 {
  font-family: 'Inter', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 1.2rem; font-weight: 500;
}
.links-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.links-list li a {
  font-size: 0.82rem; color: #5a5040;
  transition: color 0.2s; display: block;
  padding-left: 0.8rem; position: relative;
}
.links-list li a::before { content: '→'; position: absolute; left: 0; color: #3a3020; font-size: 0.7rem; }
.links-list li a:hover { color: #c9a84c; }
.links-list li a:hover::before { color: #c9a84c; }

@media (max-width: 768px) {
  .links-grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq-question { padding: 1.1rem 1.2rem; font-size: 0.88rem; }
}

/* ===== GALERIE RÉALISATIONS ===== */
.galerie-section { padding: 7rem 0; background: #0d0d0d; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.galerie-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}
.galerie-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.galerie-large {
  grid-column: span 2;
}
.galerie-large img { height: 380px; }
.galerie-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 2rem 1.2rem 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #c9a84c;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-large { grid-column: span 1; }
  .galerie-large img, .galerie-item img { height: 220px; }
  .galerie-overlay { opacity: 1; }
}

/* ===== AVANT/APRÈS GRID ===== */
.avant-apres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.aa-card {
  background: #111;
  overflow: hidden;
}
.aa-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.aa-img {
  position: relative;
  overflow: hidden;
}
.aa-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.aa-card:hover .aa-img img { transform: scale(1.03); }
.aa-label {
  position: absolute;
  bottom: 6px;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 2px 7px;
  text-transform: uppercase;
  font-weight: 600;
}
.aa-avant {
  left: 6px;
  background: rgba(0,0,0,0.65);
  color: #e0d8cc;
}
.aa-apres {
  right: 6px;
  background: rgba(201,168,76,0.9);
  color: #111;
}
.aa-arrow {
  background: #c9a84c;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 8px;
  z-index: 2;
  flex-shrink: 0;
}
.aa-desc {
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #6a6050;
  text-transform: uppercase;
  border-top: 1px solid #1a1a1a;
}

@media (max-width: 768px) {
  .avant-apres-grid { grid-template-columns: 1fr; }
  .aa-img img { height: 140px; }
}

/* ===== TARIFS ===== */
.tarifs-section { padding: 7rem 0; background: #0a0a0a; border-top: 1px solid #1a1a1a; }
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2rem;
}
.tarif-card {
  background: #111;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: background 0.3s;
}
.tarif-card:hover { background: #141414; }
.tarif-matiere {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 500;
}
.tarif-fourchette {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #f0ece4;
  line-height: 1;
}
.tarif-unit { font-size: 1rem; color: #6a6050; margin-left: 2px; }
.tarif-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.tarif-list li {
  font-size: 0.82rem;
  color: #7a7060;
  padding-left: 1rem;
  position: relative;
}
.tarif-list li::before { content: '—'; position: absolute; left: 0; color: #c9a84c; font-size: 0.7rem; }
.tarif-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.6rem 1.2rem;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.tarif-cta:hover { background: #c9a84c; color: #111; }
.tarifs-mention {
  text-align: center;
  font-size: 0.78rem;
  color: #4a4030;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) { .tarifs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tarifs-grid { grid-template-columns: 1fr; } }

/* ===== ENTRETIEN ===== */
.entretien-section { padding: 7rem 0; background: #111; border-top: 1px solid #1a1a1a; }
.entretien-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.entretien-card {
  background: #141414;
  padding: 2.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s, border-color 0.3s, background 0.3s;
}
.entretien-card.visible { opacity: 1; transform: translateY(0); }
.entretien-card:hover { border-bottom-color: #c9a84c; background: #181818; }
.entretien-icon { margin-bottom: 1.5rem; }
.entretien-card h3 { color: #f0ece4; margin-bottom: 0.8rem; font-size: 1.1rem; font-weight: 500; font-family: 'Inter', sans-serif; }
.entretien-card p { color: #6a6050; font-size: 0.88rem; line-height: 1.7; }
@media (max-width: 768px) {
  .entretien-grid { grid-template-columns: 1fr; }
  .tarifs-section, .entretien-section { padding: 4rem 0; }
}
