*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #12203a;
  --navy-light: #1e3560;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a8872e;
  --white: #ffffff;
  --off-white: #faf9f6;
  --cream: #f4f1eb;
  --gray: #8a8a8a;
  --light-gray: #efece6;
  --border: #e8e4dc;
}
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }

.logo-svg { display: block; }

/* ===== SPLASH (ÉPURÉ & MINIMALISTE) ===== */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
  overflow: hidden;
}
#splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-logo { 
  text-align: center; position: relative; z-index: 5;
  padding: 0 30px;
}

/* Logo : apparition douce */
.splash-house { 
  margin: 0 auto 35px; display: flex; justify-content: center;
  opacity: 0;
  animation: logoFadeIn 1.2s ease 0.3s forwards;
}
.splash-house svg { 
  width: 130px; height: auto;
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Titre simple et élégant - Robert / & Fils */
.splash-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 6px;
  line-height: 1;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
  text-align: center;
}
.splash-title-line {
  display: block;
}
.splash-title-line + .splash-title-line {
  margin-top: 8px;
}
.splash-amp { 
  color: var(--gold); 
  font-style: italic; 
  margin-right: 14px;
  font-weight: 400;
  font-size: 1.05em;
}

/* Ligne dorée fine animée */
.splash-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin: 28px auto;
  animation: lineExpand 1s ease 1.5s forwards;
}
@keyframes lineExpand { to { width: 80px; } }

/* Sous-titre */
.splash-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
  margin-bottom: 60px;
}

@keyframes fadeIn { to { opacity: 1; } }

/* Bouton épuré */
.splash-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 42px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  cursor: pointer; background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
}
.splash-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--navy);
  transition: left 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.splash-btn:hover::before { left: 0; }
.splash-btn:hover { color: var(--gold); }
.splash-btn span { position: relative; z-index: 1; }
.splash-btn svg { transition: transform 0.4s; position: relative; z-index: 1; }
.splash-btn:hover svg { transform: translateX(4px); }

/* Mention discrète en bas */
.splash-footer-text {
  position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}
.splash-footer-text .gold-accent { color: var(--gold-dark); font-weight: 700; }

/* ===== NAV (CLAIR) ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(18,32,58,0.04);
  transition: all 0.3s;
}
nav.scrolled { height: 65px; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-icon svg { width: 55px; height: auto; }
.nav-logo-text { font-family: 'Playfair Display', serif; }
.nav-logo-text .name { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: 1.5px; }
.nav-logo-text .name .amp { color: var(--gold); font-style: italic; }
.nav-logo-text .tag { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  color: var(--navy); text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 11px 24px; background: var(--gold);
  color: var(--navy) !important; font-weight: 700 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,168,76,0.3); }
.nav-cta::after { display: none !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 26px; height: 2px; background: var(--navy); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; z-index: 999;
  background: var(--white); padding: 30px;
  flex-direction: column; gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--navy); text-decoration: none; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-weight: 600;
}

/* ===== HERO (CLAIR) ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: stretch;
  overflow: hidden; background: var(--white);
  padding-top: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.hero-left {
  padding: 100px 8% 100px 8%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  min-height: 100vh;
  background: url('images/hero-bg-left.jpeg') center/cover no-repeat;
}
.hero-left::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.82);
  pointer-events: none; z-index: 0;
}
.hero-left > * { position: relative; z-index: 1; }
.hero-left::before {
  content: ''; position: absolute; top: 60px; left: 0; bottom: 60px;
  width: 4px; background: var(--gold);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  background: rgba(201,168,76,0.08);
  margin-bottom: 30px; width: fit-content;
}
.hero-badge span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900; color: var(--navy); line-height: 1;
  letter-spacing: 3px;
}
.hero-title .gold { color: var(--gold); font-style: italic; }
.hero-title .gold-amp { 
  color: var(--gold); 
  font-style: italic; 
  font-size: 1.15em;
  margin-right: 12px;
  font-weight: 400;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--gold-dark);
  margin-top: 18px;
  letter-spacing: 2px;
}
.hero-divider {
  display: flex; align-items: center; gap: 15px; margin: 22px 0 25px;
}
.hero-divider-line { width: 80px; height: 2px; background: var(--gold); }
.hero-divider-text { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.hero-desc {
  font-size: 16px; line-height: 1.8; color: #555;
  margin-bottom: 40px; max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.btn-primary {
  padding: 16px 36px; background: var(--gold); color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,168,76,0.35); }
.btn-outline {
  padding: 16px 36px; border: 1.5px solid var(--navy); color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; background: transparent;
  transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: var(--gold); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px 50px; padding-top: 35px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700; color: var(--gold-dark); line-height: 1;
}
.hero-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); opacity: 0.6; margin-top: 6px; font-weight: 600; }
.hero-right { display: none; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--white) 0%, transparent 12%);
}
.hero-badge-floating {
  position: absolute; bottom: 40px; right: 40px;
  width: 150px; height: 150px;
  background: var(--navy);
  border: 4px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 10px;
  box-shadow: 0 20px 50px rgba(18,32,58,0.3);
}
.hero-badge-floating .num { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--gold); font-weight: 700; line-height: 1; }
.hero-badge-floating .small { font-size: 9px; letter-spacing: 2px; color: var(--white); text-transform: uppercase; margin: 4px 0; font-weight: 600; }
.hero-badge-floating .label { font-size: 8px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; font-weight: 700; }

/* ===== PHONE CTA (mis en évidence) ===== */
.phone-cta {
  display: inline-flex; align-items: center; gap: 18px;
  margin-top: 30px; margin-bottom: 0;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 2px solid var(--gold);
  position: relative;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(18, 32, 58, 0.18);
}
.phone-cta::before {
  content: '';
  position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.phone-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201, 168, 76, 0.3); }
.phone-cta:hover::before { opacity: 1; }
.phone-cta-icon {
  width: 50px; height: 50px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: phoneRing 2.5s ease-in-out infinite;
}
@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  50% { transform: rotate(0deg); }
}
.phone-cta-icon svg { width: 24px; height: 24px; color: var(--navy); }
.phone-cta-text {
  display: flex; flex-direction: column; gap: 4px;
}
.phone-cta-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.phone-cta-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
  line-height: 1;
}
.phone-cta-sub {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6); font-weight: 600;
}
@media (max-width: 600px) {
  .phone-cta-number { font-size: 22px; letter-spacing: 1px; }
  .phone-cta { padding: 16px 20px; gap: 14px; }
}
.section { padding: 100px 8%; background: var(--white); }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
  display: inline-block;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px; font-weight: 700;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 20px auto 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(18,32,58,0.12); }
.service-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: brightness(0.95);
}
.service-card:hover .service-card-img img { 
  transform: scale(1.12); 
  filter: brightness(1.05);
}
.service-card-img::before {
  content: '';
  position: absolute;
  top: 50%; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 3;
  transition: left 0.8s ease;
}
.service-card:hover .service-card-img::before {
  left: 100%;
}
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,32,58,0.2) 0%, transparent 40%);
  transition: opacity 0.4s;
}
.service-card-icon-wrap {
  position: absolute; top: -25px; right: 25px;
  width: 56px; height: 56px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(201,168,76,0.4);
  z-index: 2;
}
.service-card-icon-wrap svg { width: 26px; height: 26px; color: var(--navy); }
.service-card-body { padding: 40px 30px 30px; position: relative; }
.service-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.service-card-desc {
  font-size: 13px; color: #666; line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-link {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.service-card:hover .service-card-link { gap: 14px; color: var(--navy); }

/* ===== WHY US ===== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-image { position: relative; }
.why-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
}
.why-image-frame {
  position: absolute; top: -20px; left: -20px; right: 30px; bottom: 30px;
  border: 2px solid var(--gold); z-index: -1;
}
.why-image-badge {
  position: absolute; bottom: -30px; right: -30px;
  width: 150px; height: 150px;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 5px solid var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-badge-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--navy); line-height: 1; }
.why-badge-text { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); text-align: center; margin-top: 4px; font-weight: 700; }
.why-items { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }

/* ===== TIMELINE HISTOIRE ===== */
.history-intro {
  font-size: 15px; line-height: 1.9; color: #555;
  margin: 28px 0 35px;
}
.history-intro strong { color: var(--navy); font-weight: 700; }
.history-quote {
  position: relative;
  padding: 25px 30px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  margin: 30px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.6;
}
.history-quote::before {
  content: '"';
  position: absolute;
  top: -10px; left: 15px;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.history-quote-author {
  display: block;
  margin-top: 12px;
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.timeline {
  margin-top: 40px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 10px; bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.2));
}
.timeline-item {
  display: flex; gap: 24px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
  width: 45px; height: 45px; flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold);
  position: relative; z-index: 2;
}
.timeline-content {
  padding-top: 8px;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 13px; line-height: 1.7; color: #666;
}
.why-item { display: flex; gap: 22px; align-items: flex-start; }
.why-item-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--cream); border-left: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.why-item-icon svg { width: 24px; height: 24px; color: var(--gold-dark); }
.why-item-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.why-item-desc { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== RÉALISATIONS ===== */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 8px;
}
.realisation-item { overflow: hidden; position: relative; }
.realisation-item:first-child { grid-row: span 2; }
.realisation-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.realisation-item:hover img { transform: scale(1.05); }
/* Overlay sombre permanent et plus marqué en bas */
.realisation-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(0deg, rgba(18,32,58,1) 0%, rgba(18,32,58,0.85) 40%, rgba(18,32,58,0) 100%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.realisation-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 26px;
  z-index: 2;
}
.realisation-label-line {
  width: 32px; height: 2px;
  background: var(--gold);
  margin-bottom: 10px;
}
.realisation-label-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.realisation-item:hover .realisation-label-text { color: var(--gold-light); }

/* ===== TÉMOIGNAGES (CLAIR) ===== */
.testimonials { background: var(--off-white); padding: 100px 8%; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 35px; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(18,32,58,0.08); }
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 90px; line-height: 0.7;
  color: var(--gold); opacity: 0.25;
  position: absolute; top: 25px; left: 25px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; line-height: 1.8; color: #555; margin-bottom: 22px; position: relative; z-index: 1; }
.testimonial-author { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); font-weight: 700; }
.testimonial-location { font-size: 11px; color: var(--gold-dark); margin-top: 3px; font-weight: 600; }
.google-rating {
  text-align: center; margin-top: 50px;
  display: flex; align-items: center; justify-content: center;
}
.google-badge {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 32px; background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(18,32,58,0.06);
}
.google-logo { font-size: 24px; font-weight: 700; }
.google-logo .g-r { color: #EA4335; }
.google-logo .g-g { color: #34A853; }
.google-logo .g-o { color: #FBBC05; }
.google-logo .g-b { color: #4285F4; }
.google-score { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
.google-stars { color: #FBBC05; font-size: 14px; letter-spacing: 2px; margin: 3px 0; }
.google-count { font-size: 12px; color: var(--gray); }

/* ===== ZONES ===== */
.zones { background: var(--white); padding: 80px 8%; text-align: center; }
.zones-list { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.zone-chip {
  padding: 13px 28px; border: 1.5px solid var(--border);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy); font-weight: 700; background: var(--white);
  transition: all 0.3s;
}
.zone-chip:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }

/* ===== DEVIS ===== */
.devis-section {
  background: var(--cream);
  padding: 100px 8%;
  position: relative; overflow: hidden;
}
.devis-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.devis-section::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,32,58,0.05) 0%, transparent 70%);
}
.devis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 2; }
.devis-info .section-title { text-align: left; }
.devis-info .section-label { text-align: left; }
.devis-info .section-line { margin: 20px 0 0; }
.devis-info-desc { font-size: 15px; color: #555; line-height: 1.8; margin: 25px 0 35px; }
.devis-promises { display: flex; flex-direction: column; gap: 16px; }
.devis-promise { display: flex; align-items: center; gap: 14px; }
.devis-promise-check {
  width: 28px; height: 28px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.devis-promise-check svg { width: 14px; height: 14px; color: var(--navy); }
.devis-promise span { font-size: 14px; color: var(--navy); font-weight: 500; }
.devis-form {
  background: var(--white); padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(18,32,58,0.1);
  border-top: 4px solid var(--gold);
}
.devis-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--navy); margin-bottom: 6px;
}
.devis-form-sub { font-size: 13px; color: var(--gray); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px; color: var(--navy);
  outline: none; transition: all 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 17px;
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  transition: all 0.3s; margin-top: 10px;
}
.form-submit:hover { background: var(--navy); color: var(--gold); }

/* ===== CONTACT BAR ===== */
.contact-bar {
  background: var(--gold);
  padding: 28px 8%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.contact-bar-item { display: flex; align-items: center; gap: 14px; }
.contact-bar-item svg { width: 22px; height: 22px; color: var(--navy); }
.contact-bar-item-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(18,32,58,0.6); font-weight: 700; }
.contact-bar-item-value { font-size: 16px; font-weight: 700; color: var(--navy); }
.contact-bar-cta {
  padding: 14px 32px; background: var(--navy); color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; white-space: nowrap;
}
.contact-bar-cta:hover { background: var(--white); color: var(--navy); }

/* ===== FOOTER (CLAIR) ===== */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 70px 8% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand .logo-svg { width: 75px; margin-bottom: 16px; }
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: 2px;
}
.footer-brand .brand-name .amp { color: var(--gold); font-style: italic; }
.footer-brand .brand-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 18px; }
.footer-brand .brand-desc { font-size: 13px; color: #666; line-height: 1.8; }
.footer-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 22px; font-weight: 700; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a { font-size: 13px; color: #555; text-decoration: none; transition: color 0.3s; cursor: pointer; }
.footer-col-links a:hover { color: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--gray); }
.footer-bottom .gold-text { color: var(--gold-dark); font-weight: 700; }

/* ===== PAGES SERVICES ===== */
.page-hero {
  min-height: 55vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 100px 8% 60px;
  margin-top: 80px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(18,32,58,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 600px; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.page-hero-breadcrumb span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); opacity: 0.7; font-weight: 600; }
.page-hero-breadcrumb .sep { color: var(--gold); }
.page-hero-breadcrumb .current { color: var(--gold-dark); opacity: 1; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  color: var(--navy); margin-bottom: 16px; line-height: 1.1;
}
.page-hero-subtitle { font-size: 16px; color: #555; max-width: 560px; line-height: 1.7; }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: start;
}
.service-detail-text .section-title { text-align: left; }
.service-detail-text .section-label { text-align: left; }
.service-detail-text .section-line { margin: 20px 0 0; }
.service-detail-desc { font-size: 15px; color: #555; line-height: 1.8; margin: 25px 0 30px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.service-list li { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--navy); font-weight: 500; }
.service-list li::before { content: ''; width: 22px; height: 2px; flex-shrink: 0; background: var(--gold); }
.service-images { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 8px; 
}
.service-images .service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-images .service-img-wrap:first-child { 
  grid-column: span 2; 
  aspect-ratio: 16/9; 
}
.service-images img { 
  width: 100%; height: 100%; 
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-images .service-img-wrap:hover img {
  transform: scale(1.08);
}
.service-images .service-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,32,58,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-images .service-img-wrap:hover::after { opacity: 1; }
.service-img-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px; height: 50px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  z-index: 2;
}
.service-images .service-img-wrap:hover .service-img-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.service-img-zoom svg { width: 20px; height: 20px; color: var(--navy); }

/* Galerie inférieure photos supplémentaires */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 60px;
}
.service-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.service-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.4s;
  filter: brightness(0.95);
}
.service-gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}
.service-gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30px; height: 30px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 30px; height: 30px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-gallery-item:hover::before,
.service-gallery-item:hover::after {
  opacity: 1;
}
@media (max-width: 700px) {
  .service-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Animation Ken Burns sur images service pages */
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}
.page-hero-bg img {
  animation: kenBurns 20s ease-in-out infinite alternate;
}

/* ===== COMPTEURS (style chic foncé) ===== */
.counters-section {
  background: var(--navy);
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
}
.counters-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.counters-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.counter-item {
  text-align: center;
  position: relative;
}
.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201, 168, 76, 0.25);
}
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.counter-num .plus {
  font-size: 0.6em;
  color: var(--gold-light);
}
.counter-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 14px;
}
.counter-sub {
  font-size: 10px;
  color: rgba(201, 168, 76, 0.7);
  margin-top: 6px;
  font-style: italic;
}
@media (max-width: 700px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .counter-item:nth-child(2)::after { display: none; }
}

/* ===== VALEURS ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(18, 32, 58, 0.1);
  border-color: var(--gold);
}
.value-icon-wrap {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.4s;
}
.value-card:hover .value-icon-wrap { background: var(--gold); }
.value-icon-wrap svg { 
  width: 28px; height: 28px; 
  color: var(--gold-dark);
  transition: color 0.4s;
}
.value-card:hover .value-icon-wrap svg { color: var(--white); }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 13px; line-height: 1.7;
  color: #666;
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  padding: 6px 0;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-left: 20px;
  transition: transform 0.4s;
}
.faq-toggle svg { width: 16px; height: 16px; color: var(--navy); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 18px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* ===== LECTEUR VIDÉO PERSONNALISÉ ===== */
.service-video-section {
  margin-top: 80px;
  text-align: center;
}

/* Grille de plusieurs vidéos */
.videos-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
  grid-template-columns: 1fr;
}
.videos-grid.videos-count-1,
.videos-grid.videos-count-2,
.videos-grid.videos-count-3,
.videos-grid.videos-count-4 { 
  grid-template-columns: 1fr; 
}
.video-item {
  display: flex; flex-direction: column;
}
.video-item .service-video-wrap {
  margin: 0;
}
.video-item .video-caption {
  margin-top: 14px;
}

.service-video-wrap {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18, 32, 58, 0.25);
  cursor: pointer;
}
.service-video-wrap::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark), var(--gold));
  z-index: -1;
}
.service-video {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.service-video-poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s;
}
.service-video-poster::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,32,58,0.6) 0%, rgba(18,32,58,0.3) 100%);
}
.service-video-poster.hidden { opacity: 0; pointer-events: none; }
.video-play-btn {
  position: relative;
  z-index: 2;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.5);
}
.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}
.video-play-btn::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: pulseRing 2s ease-out 0.5s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}
.video-play-btn svg {
  width: 32px; height: 32px;
  color: var(--navy);
  margin-left: 5px;
}
.video-caption {
  margin-top: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-dark);
  letter-spacing: 1px;
}
.video-upload-hint {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 400px; }
  .why-grid, .devis-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 50px; }
  .realisations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .realisations-grid .realisation-item:first-child { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-image-badge { right: 10px; bottom: -20px; width: 110px; height: 110px; }
  .why-badge-num { font-size: 36px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .contact-bar { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 70px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 5%; }
}

/* ===== AVANT / APRÈS CARTES ===== */
.avap-category-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--gold); margin: 40px 0 20px; text-transform: uppercase; }
.avap-pairs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto 10px; }
@media (max-width: 700px) { .avap-pairs-grid { grid-template-columns: 1fr; } }
.avap-pair { display: flex; flex-direction: column; gap: 0; }
.avap-img-wrap { position: relative; overflow: hidden; }
.avap-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s; }
.avap-pair:hover .avap-img-wrap img { transform: scale(1.02); }
.avap-tag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 4px 10px; border-radius: 2px; }
.avap-tag.avant { background: rgba(18,32,58,0.82); color: #fff; }
.avap-tag.apres { background: var(--gold); color: var(--navy); }
.avap-pair-caption { font-size: 12px; color: var(--gray); text-align: center; font-style: italic; padding: 10px 8px 0; }

/* ===== CHIFFRES CLÉS ===== */
.section-navy { background: var(--navy); }
.chiffres-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1100px; margin: 0 auto; }
@media (max-width: 700px) { .chiffres-grid { grid-template-columns: 1fr 1fr; } }
.chiffre-item { text-align: center; padding: 50px 20px; border-right: 1px solid rgba(201,168,76,0.2); }
.chiffre-item:last-child { border-right: none; }
.chiffre-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; }
.chiffre-plus { font-size: 32px; color: var(--gold-light); }
.chiffre-label { color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 1px; margin-top: 12px; text-transform: uppercase; }
.chiffre-sub { color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 6px; }

/* ===== FOOTER SOCIAL & GARANTIE ===== */
.footer-garantie { margin-top: 16px; }
.garantie-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 8px 14px; border-radius: 3px; font-size: 13px; font-weight: 600; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); transition: background 0.2s, color 0.2s; }
.social-icon:hover { background: var(--gold); color: var(--navy); }

/* ===== BOUTON APPEL FLOTTANT ===== */
.fab-call { display: none; position: fixed; bottom: 24px; right: 20px; z-index: 8000; background: var(--gold); color: var(--navy); border-radius: 50px; padding: 14px 20px; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-decoration: none; align-items: center; gap: 8px; box-shadow: 0 6px 24px rgba(201,168,76,0.5); }
@media (max-width: 768px) { .fab-call { display: flex; } }

/* ===== GOOGLE BADGE CLIQUABLE ===== */
a.google-badge { text-decoration: none; cursor: pointer; }
a.google-badge:hover { opacity: 0.85; }

/* ===== AJOUTS : formulaire, accessibilité, lazy ===== */
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.form-group input.error,.form-group select.error,.form-group textarea.error{border-color:#c0392b!important;background:#fdf3f2}
.field-error{color:#c0392b;font-size:12px;margin-top:5px;display:none}
.form-group.invalid .field-error{display:block}
.form-feedback{margin-top:14px;font-size:14px;border-radius:4px;padding:0;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.form-feedback.show{padding:14px 16px;max-height:200px}
.form-feedback.ok{background:#e8f5ec;color:#1e6b3a;border:1px solid #aedcbf}
.form-feedback.ko{background:#fdecea;color:#9b2c1f;border:1px solid #f3c0b8}
img{height:auto}
a.is-disabled{pointer-events:none;opacity:.55;cursor:default}
.skip-link{position:absolute;left:-999px;top:0;z-index:10000;background:var(--navy);color:#fff;padding:10px 18px;border-radius:0 0 6px 0}
.skip-link:focus{left:0}

/* ===== Contraste : doré lisible sur fond clair (WCAG AA) ===== */
:root { --gold-text: #8a6a1e; }
.section-label, .nav-logo-text .tag, .avap-category-label, .testimonial-stars { color: var(--gold-text); }
.section-title em, .counter-num, .chiffre-num { color: var(--gold-dark); }
