

/* ============================================
   GBTP DES ARTISANS — Redesign V2
   Blanc / Noir / Doré — Luxe & Lisibilité
   Mobile-first · 90% mobile traffic
   ============================================ */

:root {
  --black: #0B0B0B;
  --black-soft: #1A1A1A;
  --black-card: #111111;
  --white: #FFFFFF;
  --white-off: #F9F9F7;
  --white-warm: #FAF8F5;
  --gold: #C8A64C;
  --gold-light: #D9BE6E;
  --gold-dark: #7A6520;
  --gold-text: #947725;
  --gold-bg: #F7F3EA;
  --gold-border: rgba(200,166,76,0.2);
  --gray-50: #FAFAFA;
  --gray-100: #F3F3F3;
  --gray-200: #E5E5E5;
  --gray-300: #D0D0D0;
  --gray-400: #767676;
  --gray-500: #6B6B6B;
  --gray-600: #4A4A4A;
  --gray-700: #333333;
  --green: #1B7A2E;
  --green-bg: #E8F5EC;
  --red: #C42B2B;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --header-h: 70px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 24px rgba(200,166,76,0.12);
  --transition: opacity 0.3s ease, box-shadow 0.3s ease;
  --transition-fast: opacity 0.15s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700; line-height: 1.2;
  color: var(--black); letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
.gold { color: var(--gold-dark); }
.text-gold { color: var(--gold-dark); }
.text-center { text-align: center; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-warm { background: var(--white-warm); }
.section-gold { background: var(--gold-bg); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .overline {
  display: inline-block; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold-dark); margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-500); max-width: 560px; margin: 0 auto; font-size: 1.02rem; line-height: 1.7; }
.gold-line { width: 48px; height: 3px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  text-decoration: none;  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black { transition: transform 0.3s ease; }
.btn-black:hover { background: var(--black-soft); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-outline-gold { background: transparent; color: var(--gold-dark); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white { transition: transform 0.3s ease; }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--black); flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--black); letter-spacing: 0.02em; }
.logo-text .gold { color: var(--gold-dark); }
.main-nav { display: none; gap: 4px; align-items: center; }
.main-nav a {
  color: var(--gray-600); font-size: 0.88rem; font-weight: 400;
  padding: 8px 14px; border-radius: var(--radius-sm); 
}
.main-nav a:hover { color: var(--black); background: var(--gray-100); }
.main-nav a.active { color: var(--gold-dark); font-weight: 600; }
.header-phone {
  display: none; align-items: center; gap: 8px;
  color: var(--white); background: var(--black); font-weight: 600; font-size: 0.88rem;
  padding: 10px 20px; border-radius: 8px; 
}
.header-phone:hover { background: var(--gold); color: var(--black); }
@media (max-width: 1023px) { .header-phone { display: none !important; } }
.burger {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--black); border: none; cursor: pointer;
  padding: 12px; border-radius: var(--radius-sm);
  width: 48px; height: 48px; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.burger:hover { background: var(--gold-dark); }
.burger span { width: 22px; height: 2.5px; background: var(--white); border-radius: 2px; display: block; transition: all 0.3s ease; }
.burger.open { background: var(--gold); }
.burger.open span { background: var(--black); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 1024px) {
  .burger { display: none; }
  .main-nav { display: flex; }
  .header-phone { display: flex; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  display: flex; flex-direction: column;
  overflow-y: auto; transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { padding: 8px 0; flex: 1; }
.mobile-menu-section { margin-bottom: 4px; }
.mobile-menu-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold-dark); padding: 16px 24px 6px;
}
.mobile-menu a {
  display: flex; align-items: center; gap: 14px;
  color: var(--black); font-size: 1rem; font-weight: 400;
  padding: 13px 24px;
}
.mobile-menu a:hover, .mobile-menu a:active { background: var(--gold-bg); color: var(--gold-dark); }
.mobile-menu a .menu-icon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); border-radius: var(--radius-sm); font-size: 1.1rem; flex-shrink: 0;
}
.mobile-menu .menu-divider { height: 1px; background: var(--gray-200); margin: 8px 24px; }
.mobile-menu .menu-cta {
  padding: 16px 20px; border-top: 1px solid var(--gray-200); background: var(--gray-50);
}
.mobile-menu .menu-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--black); font-weight: 700;
  padding: 16px; border-radius: 8px; font-size: 1.05rem;
}
.mobile-menu .menu-cta a:hover { background: var(--gold-dark); color: var(--white); }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* HERO */
.hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: var(--white); position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg); border: 1px solid rgba(27,122,46,0.15);
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  color: var(--green); margin-bottom: 20px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { color: var(--black); margin-bottom: 20px; line-height: 1.15; }
.hero-subtitle { font-size: 1.1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; min-height: 54px; margin-bottom: 32px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  padding: 20px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
}
.hero-stat { text-align: center; padding: 8px; }
.hero-stat .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--gold-dark); }
.hero-stat .label { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.hero-right { display: none; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; max-height: 520px;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  padding: 14px 18px; border-radius: var(--radius); display: flex; align-items: center; gap: 12px;
}
.hero-img-badge .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.hero-img-badge .badge-text { font-size: 0.85rem; font-weight: 600; color: var(--black); }
@media (min-width: 768px) {
  .hero { padding: calc(var(--header-h) + 72px) 0 72px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 0; background: transparent; border: none; padding: 24px 0; border-top: 1px solid var(--gray-200); }
  .hero-stat { border-right: 1px solid var(--gray-200); }
  .hero-stat:last-child { border-right: none; }
  .hero-right { display: block; }
}
.hero-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
}
.hero-card-icon { width: 44px; height: 44px; background: var(--gold-bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.hero-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.hero-card p { font-size: 0.82rem; color: var(--gray-500); margin: 0; }

/* TRUST BAR */
.trust-bar { background: var(--black); color: var(--white); padding: 14px 0; overflow: hidden; }
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; font-weight: 400; }
.trust-bar-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-bar-item .trust-icon { color: var(--gold); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
   display: flex; flex-direction: row;
  text-decoration: none; color: var(--black);
}
.service-card { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card-img {
  width: 110px; min-height: 110px; flex-shrink: 0;
  background-size: cover; background-position: center; position: relative;
}
.service-card-img .service-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.service-card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.service-card-body h3 { margin-bottom: 4px; font-size: 1.05rem; }
.service-card-body p { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 8px; line-height: 1.6; }
.service-card-body .card-link { font-weight: 600; font-size: 0.82rem; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 4px; }
.service-card-body .card-link::after { content: '\2192'; transition: transform 0.2s; }
.service-card:hover .card-link::after { transform: translateX(4px); }
.service-card .icon { display: none; }
@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { flex-direction: column; }
  .service-card-img { width: 100%; min-height: 160px; height: 160px; }
  .service-card-body { padding: 20px; }
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } .service-card-img { height: 180px; } }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step-card { text-align: center; padding: 28px 20px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.step-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--gold-text); line-height: 1; margin-bottom: 14px; }
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
@media (min-width: 480px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

/* PROMISES */
.promise-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.promise-card { padding: 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.promise-card:hover { border-color: var(--gold); }
.promise-card .icon { width: 44px; height: 44px; background: var(--gold-bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.promise-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.promise-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
@media (min-width: 480px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .promise-grid { grid-template-columns: repeat(3, 1fr); } }

/* COMPARE TABLE */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -20px; padding: 0 20px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 500px; }
.compare-table th, .compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); text-align: center; }
.compare-table th { background: var(--gray-50); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-table thead th:first-child { text-align: left; }
.compare-table td:first-child { text-align: left; font-weight: 400; }
.compare-table .us-col { background: var(--gold-bg); }
.compare-table thead .us-col { background: var(--gold); color: var(--black); font-weight: 700; }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--red); }

/* TARIFS */
.tarifs-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 400px; }
.tarifs-table th { background: var(--black); color: var(--white); padding: 14px 16px; font-weight: 600; text-align: left; font-size: 0.82rem; }
.tarifs-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); }
.tarifs-table tr:nth-child(even) { background: var(--gray-50); }
.tarifs-table .price { font-weight: 700; color: var(--gold-dark); white-space: nowrap; }
.tarifs-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 12px; font-style: italic; }

/* ZONES */
.zones-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.zone-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; text-align: center; display: block; color: var(--black); }
.zone-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.zone-card .dept { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--gold-text); }
.zone-card .zone-name { font-weight: 600; margin-top: 4px; font-size: 0.9rem; }
.zone-card .zone-desc { font-size: 0.78rem; color: var(--gray-500); margin-top: 4px; }
@media (min-width: 480px) { .zones-grid { grid-template-columns: repeat(4, 1fr); } }

/* REVIEWS */
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track { display: flex; gap: 16px; transition: transform 0.5s ease; }
.review-card { flex: 0 0 calc(100% - 16px); background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; min-width: 280px; }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-meta { font-size: 0.78rem; color: var(--gray-400); font-weight: 400; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;  min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; position: relative; background: transparent; }
.carousel-dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); transition: opacity 0.2s ease; }
.carousel-dot.active::after { background: var(--gold); width: 24px; border-radius: 5px; }
@media (min-width: 640px) { .review-card { flex: 0 0 calc(50% - 8px); } }
@media (min-width: 961px) { .review-card { flex: 0 0 calc(33.33% - 11px); } }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem; background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body); color: var(--black); gap: 16px; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; width: 28px; text-align: center; }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--gray-600); font-size: 0.92rem; line-height: 1.75; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden;  display: block; color: var(--black); }
.blog-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.blog-card-img { height: 180px; background-size: cover; background-position: center; }
.blog-card-body { padding: 20px; }
.blog-card .tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); background: var(--gold-bg); padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 12px; }
.blog-card .read-more { font-weight: 600; font-size: 0.85rem; color: var(--gold-dark); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* CTA BAND */
.cta-band { background: var(--black); color: var(--white); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50%; left: 50%; width: 120%; height: 200%; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(200,166,76,0.06) 0%, transparent 60%); }
.cta-band h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1.02rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; position: relative; }

/* FOOTER */
.site-footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-brand p { margin-bottom: 8px; font-size: 0.88rem; }
.footer-brand a { color: var(--gold); }
.footer-brand .logo-footer { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand .logo-footer .gold { color: var(--gold-dark); }
.footer-col .footer-heading, .footer-col .footer-heading strong { color: var(--gold); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.footer-col p.footer-heading { margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; padding: 4px 0;  }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.78rem; text-align: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* FLOATING CTA */
.floating-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--gold); color: var(--black); font-weight: 700; font-size: 1rem; padding: 16px 20px; text-align: center; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
.floating-cta:hover { background: var(--gold-dark); color: var(--white); }
@media (max-width: 768px) { .floating-cta { display: flex; align-items: center; justify-content: center; gap: 8px; } body { padding-bottom: 54px; } }

/* BREADCRUMB */
.breadcrumb { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb span { color: var(--gray-400); margin: 0 4px; }

/* PAGE HEADER */
.page-header { padding: calc(var(--header-h) + 40px) 0 40px; background: var(--black); color: var(--white); border-bottom: 1px solid var(--gold-border); }
.page-header h1 { color: var(--white); font-size: clamp(1.4rem, 4vw, 2rem); }
.page-header .breadcrumb a { color: var(--gold); }
.page-header .breadcrumb { color: rgba(255,255,255,0.4); }

/* PROSE */
.prose { max-width: var(--max-w-narrow); }
.prose h2 { margin: 40px 0 16px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.prose h2:first-child { border-top: none; padding-top: 0; }
.prose h3 { margin: 24px 0 12px; color: var(--gold-dark); }
.prose p { color: var(--gray-600); }
.prose strong { color: var(--black); }

/* INTERNAL LINKS */
.internal-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.internal-links a { font-size: 0.82rem; font-weight: 400; color: var(--gray-600); background: var(--gray-100); padding: 8px 14px; border-radius: 50px;  border: 1px solid var(--gray-200); }
.internal-links a:hover { background: var(--gold-bg); color: var(--gold-dark); border-color: var(--gold); }

/* TRUST BLOCK */
.trust-block { background: var(--gold-bg); border-left: 4px solid var(--gold); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; }
.trust-block p { margin: 0; font-size: 0.9rem; font-weight: 400; }

/* TREATMENT STEPS */
.treatment-steps { display: grid; gap: 16px; margin: 24px 0; }
.treatment-step { display: flex; gap: 16px; padding: 16px; background: var(--gray-50); border-radius: var(--radius); }
.treatment-step .step-number { width: 36px; height: 36px; background: var(--gold); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.treatment-step h3 { font-size: 0.95rem; margin-bottom: 4px; }
.treatment-step p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* LEGACY */
.nav-dropdown { position: relative; }
.nav-dropdown > a { color: var(--gray-600); font-size: 0.88rem; padding: 8px 14px; }
.nav-dropdown-menu { display: none; }
.top-banner { display: none; }

/* COOKIE */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001; background: var(--white); color: var(--black); padding: 16px 20px; border-top: 1px solid var(--gray-200); font-size: 0.85rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.cookie-banner.show { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cookie-banner p { flex: 1; min-width: 250px; margin: 0; }
.cookie-accept { background: var(--black); color: var(--white); font-weight: 600; border: none; padding: 10px 24px; border-radius: 8px; cursor: pointer; font-size: 0.85rem; }

/* UTILS */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.bg-gray { background: var(--gray-50); }
.section-subtitle { max-width: 700px; color: var(--gray-500); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-title { text-align: center; font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 8px; }
.article-meta { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; }

@media print {
  .site-header, .floating-cta, .cookie-banner, .mobile-menu, .cta-band { display: none !important; }
  body { color: #000; }
  .hero { min-height: auto; padding: 20px 0; }
}

/* CLS Prevention */
.hero { min-height: calc(var(--header-h) + 420px); }
.hero-badge { min-height: 38px; }
.hero h1 { min-height: 2.4em; }
.hero-subtitle { min-height: 3.5em; }
.hero-actions { min-height: 54px; }
.hero-stats { min-height: 80px; }
.floating-cta { min-height: 52px; }
@media (min-width: 768px) {
  .hero { min-height: calc(var(--header-h) + 500px); }
  .hero-stats { min-height: 72px; }
}

/* Compositor-friendly transitions only */
.btn { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.zone-card { transition: box-shadow 0.2s ease; }
.blog-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.floating-cta { transition: transform 0.2s ease, opacity 0.2s ease; }
.carousel-dot::after { transition: opacity 0.2s ease; }

/* Language Switcher */
/* Language switcher — minimal */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; margin-left: 16px; flex-shrink: 0; }
.lang-opt { font-size: 0.82rem; font-weight: 700; color: var(--gray-500); cursor: pointer; user-select: none; letter-spacing: 0.03em; padding: 2px 0; border-bottom: 2px solid transparent; }
.lang-opt.active { color: var(--black); border-bottom-color: var(--gold); }
.lang-opt:not(.active):hover { color: var(--black); }
.lang-sep { color: var(--gray-200); font-size: 0.75rem; font-weight: 300; pointer-events: none; }
@media (max-width: 767px) {
  .header-inner .lang-switch { order: 2; margin-left: auto; margin-right: 0; }
  .header-inner .burger { order: 3; margin-left: 10px; }
}
.mobile-menu .lang-switch-mobile { display: flex; justify-content: center; gap: 10px; margin: 16px 20px 8px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.mobile-menu .lang-switch-mobile .lang-opt { font-size: 0.95rem; padding: 4px 0; }
.mobile-menu .lang-switch-mobile .lang-sep { font-size: 0.85rem; }


/* Hide empty icon containers */
.service-icon:empty, .icon:empty, .trust-icon:empty { display: none; }




/* Touch targets 48px - mobile safe */
@media (pointer: coarse) {
  .mobile-menu a { min-height: 48px; padding: 14px 16px; }
  .burger { min-height: 48px; min-width: 48px; padding: 12px; }
  footer .footer-col a { padding: 8px 0; min-height: 44px; line-height: 44px; }
  .dept-links a { padding: 8px 12px; min-height: 44px; }
}

/* Devis nav button */
.nav-devis { background: var(--gold) !important; color: var(--black) !important; font-weight: 700 !important; border-radius: 8px !important; padding: 8px 18px !important; font-size: 0.85rem !important; }
.nav-devis:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* Devis mobile menu button */
.menu-devis-btn { background: var(--gold) !important; color: var(--black) !important; font-weight: 700 !important; text-align: center; border-radius: 8px; }
.menu-devis-btn:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* Devis Modal Overlay */
.devis-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 2000; backdrop-filter: blur(4px); }
.devis-overlay.show { display: block; }

/* Devis Modal */
.devis-modal { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--white); border-radius: 16px; padding: 32px 28px; width: 90%; max-width: 440px; max-height: 90vh; overflow-y: auto; z-index: 2001; box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
.devis-modal.show { display: block; }
.devis-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--gray-500); line-height: 1; padding: 8px; }
.devis-close:hover { color: var(--black); }
.devis-modal h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.devis-sub { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; }
.devis-field { margin-bottom: 12px; }
.devis-field input, .devis-field select, .devis-field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: 10px; font-size: 0.95rem; font-family: var(--font-body); background: var(--gray-50); transition: border-color 0.2s; }
.devis-field input:focus, .devis-field select:focus, .devis-field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.devis-field textarea { resize: vertical; }
.devis-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--black); font-weight: 700; font-size: 1rem; border: none; border-radius: 10px; cursor: pointer; margin-top: 4px; transition: background 0.2s; }
.devis-submit:hover { background: var(--gold-dark); color: var(--white); }
.devis-disclaimer { font-size: 0.78rem; color: var(--gray-500); text-align: center; margin-top: 10px; }
.devis-success { display: none; text-align: center; padding: 20px 0; }
.devis-success.show { display: block; }
.devis-success-icon { width: 56px; height: 56px; background: var(--green-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--green); margin: 0 auto 16px; line-height: 56px; }
.devis-success h4 { font-size: 1.2rem; margin-bottom: 8px; }
.devis-success p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 16px; }

/* Trust badge icons - clean text style */
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; font-size: 0.82rem; color: var(--white); gap: 6px; flex: 1; }
.badge-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; font-family: var(--font-display); }
.trust-bar .trust-bar-inner { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.page-header .trust-bar { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

/* Contact page */
.contact-hero { padding: calc(var(--header-h) + 48px) 0 48px; background: var(--black); color: var(--white); text-align: center; }
.contact-hero h1 { color: var(--white); margin-bottom: 12px; }
.contact-hero-sub { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; margin: 0 auto 32px; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 800px; margin: 0 auto; }
.contact-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; color: var(--white); display: block; transition: border-color 0.2s; }
.contact-card:hover { border-color: var(--gold); }
.contact-card-icon { width: 48px; height: 48px; background: var(--gold); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 12px; }
.contact-card-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-card-value { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.contact-card-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
@media (max-width: 767px) { .contact-info-grid { grid-template-columns: 1fr; } }
.info-block { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.info-block h3 { margin-bottom: 16px; font-size: 1.1rem; }
.info-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.info-item:last-child { border-bottom: none; }
.info-label { font-weight: 600; min-width: 100px; font-size: 0.88rem; }
.info-value { color: var(--gray-600); font-size: 0.88rem; }
.info-note { background: var(--gold-bg); border-left: 4px solid var(--gold); padding: 14px 18px; border-radius: 0 8px 8px 0; font-size: 0.9rem; font-weight: 500; margin-top: 16px; }
.contact-form-panel { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.contact-form-panel h3 { margin-bottom: 4px; }
.form-sub { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; }
.urgency-select { display: flex; gap: 12px; margin-bottom: 20px; }
.urgency-opt { flex: 1; padding: 14px; border: 2px solid var(--gray-200); border-radius: 10px; text-align: center; cursor: pointer; font-size: 0.88rem; font-weight: 600; transition: all 0.2s; }
.urgency-opt.selected { border-color: var(--gold); background: var(--gold-bg); }
.urgency-opt small { display: block; font-weight: 400; color: var(--gray-500); font-size: 0.78rem; margin-top: 2px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 10px; font-size: 0.92rem; font-family: var(--font-body); background: var(--gray-50); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.btn-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--black); font-weight: 700; font-size: 1rem; border: none; border-radius: 10px; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--gold-dark); color: var(--white); }
.form-disclaimer { font-size: 0.78rem; color: var(--gray-500); margin-top: 12px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-500); margin-bottom: 16px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.contact-map iframe { width: 100%; height: 300px; border: 0; }

/* Avis page */
.avis-hero { padding: calc(var(--header-h) + 48px) 0 48px; background: var(--black); color: var(--white); text-align: center; }
.avis-hero h1 { color: var(--white); margin-bottom: 12px; }
.avis-hero-sub { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 0; }
.avis-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 32px 0; }
@media (max-width: 640px) { .avis-summary { grid-template-columns: 1fr; } }
.avis-score { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.avis-score .big-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--gold-dark); }
.avis-breakdown { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.bar-label { min-width: 50px; font-size: 0.85rem; font-weight: 600; }
.bar-track { flex: 1; height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.bar-pct { min-width: 40px; font-size: 0.82rem; color: var(--gray-500); text-align: right; }
.reviews-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn { padding: 8px 16px; border: 1px solid var(--gray-200); border-radius: 50px; background: var(--white); font-size: 0.82rem; cursor: pointer; font-weight: 500; }
.filter-btn.active { background: var(--gold-bg); border-color: var(--gold); color: var(--gold-dark); font-weight: 700; }
#reviews-grid { display: grid; gap: 16px; }
