/* ============================================
   ESPACE FAÇADE PEINTURE — Design System
   Amatic SC (Display) + Cabin (Body)
   8px grid • Provence palette • Mobile-first
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Cabin:wght@400;500;600;700&display=swap');

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --stone-deep: #2D3B2D;
  --slate-mid: #3D5229;
  --sky-work: #5B7A3D;
  --canvas-light: #F5F7F2;
  --ink-black: #1A2E1A;
  --terracotta: #E8813A;
  --plaster-cream: #FFF8F0;
  --vert-provence: #6B8E23;
  --iron-grey: #5A6B52;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08);
  --shadow-md: 0 4px 16px rgba(15,23,42,.1);
  --shadow-lg: 0 8px 32px rgba(15,23,42,.12);
  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px;
  --sp-12: 96px; --sp-16: 128px;
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cabin', sans-serif;
  color: var(--ink-black);
  background: var(--canvas-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-work); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--terracotta); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-3); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: 'Amatic SC', cursive; font-weight: 700; color: var(--stone-deep); }
h4, h5, h6 { font-family: 'Cabin', sans-serif; font-weight: 600; color: var(--stone-deep); }

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: var(--sp-3); }
h3 { font-size: 2rem; line-height: 1.3; }
h4 { font-size: 1.5rem; line-height: 1.4; }

@media (min-width: 768px) {
  h1 { font-size: 4.5rem; }
  h2 { font-size: 3.5rem; }
  h3 { font-size: 2.5rem; }
}
@media (min-width: 1440px) {
  h1 { font-size: 5rem; }
  h2 { font-size: 4rem; }
}

.body-large { font-size: 1.125rem; line-height: 1.6; }
@media (min-width: 768px) { .body-large { font-size: 1.25rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  font-family: 'Cabin', sans-serif; font-size: 1rem; font-weight: 600;
  line-height: 1.5; padding: 14px 32px;
  border: 2px solid transparent; border-radius: var(--radius-md);
  cursor: pointer; transition: all .25s var(--ease);
  text-align: center; white-space: nowrap;
}
.btn-primary {
  background: var(--sky-work); color: var(--white); border-color: var(--sky-work);
}
.btn-primary:hover { background: #025a8c; border-color: #025a8c; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: var(--terracotta); color: var(--white); border-color: var(--terracotta);
}
.btn-secondary:hover { background: #b45309; border-color: #b45309; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--stone-deep); border-color: var(--slate-mid);
}
.btn-ghost:hover { background: var(--stone-deep); color: var(--white); }

.btn-white {
  background: var(--white); color: var(--sky-work); border-color: var(--white);
}
.btn-white:hover { background: var(--canvas-light); color: var(--sky-work); transform: translateY(-2px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--stone-deep); color: var(--white);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-top {
  display: none; background: rgba(255,255,255,.05);
  padding: var(--sp-1) 0; font-size: .875rem; color: var(--iron-grey);
}
@media (min-width: 768px) { .header-top { display: block; } }

.header-top .container {
  display: flex; justify-content: space-between; align-items: center;
}
.header-top a { color: var(--iron-grey); }
.header-top a:hover { color: var(--white); }

.header-main .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--sp-2); padding-bottom: var(--sp-2);
}

.logo { font-family: 'Amatic SC', cursive; font-size: 1.75rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo span { color: var(--terracotta); }

.nav-desktop { display: none; list-style: none; gap: var(--sp-4); align-items: center; }
@media (min-width: 992px) { .nav-desktop { display: flex; } }
.nav-desktop a { color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem; position: relative; padding: var(--sp-1) 0; }
.nav-desktop a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--terracotta); transition: width .25s var(--ease); }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--white); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.header-cta { display: none; }
@media (min-width: 992px) { .header-cta { display: flex; align-items: center; gap: var(--sp-2); } }
.header-phone { color: var(--white); font-weight: 600; font-size: .95rem; }
.header-phone:hover { color: var(--terracotta); }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: var(--sp-1); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 992px) { .hamburger { display: none; } }

/* Mobile Nav */
.nav-mobile {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh;
  background: var(--stone-deep); z-index: 999; padding: var(--sp-10) var(--sp-4) var(--sp-4);
  transition: right .35s var(--ease); overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: all; }
.nav-mobile ul { list-style: none; }
.nav-mobile li { border-bottom: 1px solid rgba(255,255,255,.1); }
.nav-mobile a { display: block; padding: var(--sp-2) 0; color: rgba(255,255,255,.85); font-size: 1.125rem; font-weight: 500; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--terracotta); }
.nav-mobile .mobile-phone {
  display: flex; align-items: center; gap: var(--sp-1);
  margin-top: var(--sp-4); padding: var(--sp-2) var(--sp-3);
  background: var(--sky-work); color: var(--white); border-radius: var(--radius-md);
  font-weight: 600; justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
  margin-top: 60px;
}
@media (min-width: 768px) { .hero { margin-top: 90px; min-height: 90vh; } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.65) 50%, rgba(15,23,42,.4) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; color: var(--white); }
.hero-content h1 { color: var(--white); margin-bottom: var(--sp-3); text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4); }
.hero-content .body-large { color: rgba(255,255,255,.95); margin-bottom: var(--sp-4); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }

/* ---------- Trust Badge Row ---------- */
.trust-row {
  background: var(--white); border-bottom: 1px solid rgba(100,116,139,.12);
  padding: var(--sp-3) 0;
}
.trust-row .container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4);
  text-align: center;
}
.trust-item {
  display: flex; align-items: center; gap: var(--sp-1);
  font-size: .875rem; font-weight: 600; color: var(--slate-mid);
}
.trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; flex-shrink: 0;
}
.trust-icon.blue { background: rgba(3,105,161,.1); color: var(--sky-work); }
.trust-icon.green { background: rgba(5,150,105,.1); color: var(--vert-provence); }
.trust-icon.orange { background: rgba(217,119,6,.1); color: var(--terracotta); }

/* ---------- Section Layout ---------- */
.section { padding: var(--sp-10) 0; }
@media (min-width: 768px) { .section { padding: var(--sp-16) 0; } }

.section-alt { background: var(--white); }
.section-dark { background: var(--stone-deep); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-cream { background: var(--plaster-cream); }

.section-header { max-width: 720px; margin-bottom: var(--sp-6); }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { color: var(--slate-mid); margin-top: var(--sp-2); }
.section-dark .section-header p { color: rgba(255,255,255,.75); }

/* Diagonal clip-path divider */
.diagonal-top { clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%); padding-top: calc(var(--sp-10) + 40px); }
.diagonal-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%); padding-bottom: calc(var(--sp-10) + 40px); }
@media (min-width: 768px) {
  .diagonal-top { clip-path: polygon(0 64px, 100% 0, 100% 100%, 0 100%); padding-top: calc(var(--sp-16) + 64px); }
  .diagonal-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%); padding-bottom: calc(var(--sp-16) + 64px); }
}

/* ---------- Editorial Layout ---------- */
.editorial { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 768px) { .editorial { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
.editorial-reverse .editorial-text { order: 2; }
@media (min-width: 768px) { .editorial-reverse .editorial-text { order: -1; } }

.editorial-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.editorial-img img { width: 100%; height: 400px; object-fit: cover; }
@media (min-width: 768px) { .editorial-img img { height: 500px; } }

/* ---------- Feature List ---------- */
.feature-list { list-style: none; display: grid; gap: var(--sp-3); }
.feature-item {
  display: flex; gap: var(--sp-2); align-items: flex-start;
  padding: var(--sp-2); border-radius: var(--radius-md);
  transition: background .2s var(--ease);
}
.feature-item:hover { background: rgba(3,105,161,.04); }
.feature-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(5,150,105,.1); color: var(--vert-provence);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem;
}
.feature-text strong { display: block; color: var(--stone-deep); margin-bottom: 2px; }
.feature-text span { font-size: .9rem; color: var(--slate-mid); }

/* ---------- Services Grid ---------- */
.services-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .3s var(--ease);
  border: 1px solid rgba(100,116,139,.08);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: var(--sp-3); }
.service-card-body h3 { font-size: 1.75rem; margin-bottom: var(--sp-1); }
.service-card-body p { color: var(--slate-mid); margin-bottom: var(--sp-2); font-size: .95rem; }
.service-link { font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.service-link::after { content: '\2192'; transition: transform .2s var(--ease); }
.service-link:hover::after { transform: translateX(4px); }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white); padding: var(--sp-4); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--terracotta);
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: 'Amatic SC', cursive;
  font-size: 4rem; color: rgba(217,119,6,.15); position: absolute;
  top: var(--sp-1); left: var(--sp-2); line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--slate-mid); margin-bottom: var(--sp-2); padding-top: var(--sp-3); line-height: 1.7; }
.testimonial-author { font-weight: 600; color: var(--stone-deep); }
.testimonial-location { font-size: .875rem; color: var(--iron-grey); }
.testimonial-stars { color: var(--terracotta); margin-bottom: var(--sp-1); letter-spacing: 2px; }

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4);
  text-align: center;
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-number { font-family: 'Amatic SC', cursive; font-size: 3.5rem; font-weight: 700; color: var(--sky-work); line-height: 1; }
.section-dark .stat-number { color: var(--terracotta); }
.stat-label { font-size: .9rem; color: var(--slate-mid); margin-top: var(--sp-1); }
.section-dark .stat-label { color: rgba(255,255,255,.75); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: var(--sp-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,23,42,.85));
  padding: var(--sp-3) var(--sp-2) var(--sp-2);
  color: var(--white); font-size: .8rem; font-weight: 500;
  transform: translateY(100%); transition: transform .3s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ---------- Process / Timeline ---------- */
.process-steps { display: grid; gap: var(--sp-4); counter-reset: step; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  position: relative; padding: var(--sp-4) var(--sp-3);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); counter-increment: step;
  border-top: 3px solid var(--sky-work);
}
.process-step::before {
  content: counter(step); font-family: 'Amatic SC', cursive;
  font-size: 2.5rem; font-weight: 700; color: var(--sky-work);
  line-height: 1; margin-bottom: var(--sp-1); display: block;
}
.process-step h4 { margin-bottom: var(--sp-1); }
.process-step p { font-size: .9rem; color: var(--slate-mid); }

/* ---------- Aides / Price Anchoring ---------- */
.aide-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--sp-4); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(100,116,139,.08);
}
.aide-card h3 { color: var(--sky-work); margin-bottom: var(--sp-2); }
.price-anchor { display: flex; align-items: baseline; gap: var(--sp-2); margin: var(--sp-3) 0; flex-wrap: wrap; }
.price-before { font-size: 1.25rem; color: var(--iron-grey); text-decoration: line-through; }
.price-after { font-family: 'Amatic SC', cursive; font-size: 3rem; font-weight: 700; color: var(--vert-provence); }
.price-label { font-size: .875rem; color: var(--slate-mid); }

.aide-list { list-style: none; }
.aide-list li { padding: var(--sp-2) 0; border-bottom: 1px solid rgba(100,116,139,.08); display: flex; gap: var(--sp-2); align-items: flex-start; }
.aide-list li:last-child { border-bottom: none; }

.aides-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .aides-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Contact Form ---------- */
.contact-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: var(--sp-3); }
.form-group label { display: block; font-weight: 600; margin-bottom: var(--sp-1); font-size: .9rem; color: var(--stone-deep); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px var(--sp-2);
  border: 1.5px solid rgba(100,116,139,.25); border-radius: var(--radius-md);
  font-family: 'Cabin', sans-serif; font-size: 1rem;
  background: var(--white); transition: border-color .2s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sky-work);
  box-shadow: 0 0 0 3px rgba(3,105,161,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-step { display: none; }
.form-step.active { display: block; }
.form-progress { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-progress-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(100,116,139,.2); transition: background .3s var(--ease);
}
.form-progress-dot.active { background: var(--sky-work); }
.form-guarantee { display: flex; align-items: center; gap: var(--sp-1); font-size: .85rem; color: var(--iron-grey); margin-top: var(--sp-2); }

.contact-info-card {
  background: var(--stone-deep); color: var(--white); border-radius: var(--radius-lg);
  padding: var(--sp-4); height: fit-content;
}
.contact-info-card h3 { color: var(--white); margin-bottom: var(--sp-3); }
.contact-info-item { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-3); align-items: flex-start; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-text a { color: var(--white); }
.contact-info-text a:hover { color: var(--terracotta); }
.contact-info-text small { color: var(--iron-grey); display: block; margin-top: 2px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--sky-work); color: var(--white);
  padding: var(--sp-8) 0; text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 600px; margin: var(--sp-2) auto var(--sp-4); }
.cta-banner .btn { margin: 0 var(--sp-1); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--stone-deep); color: rgba(255,255,255,.7);
  padding: var(--sp-10) 0 var(--sp-4);
}
.footer-grid { display: grid; gap: var(--sp-6); margin-bottom: var(--sp-8); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo { font-size: 2rem; margin-bottom: var(--sp-2); display: inline-block; }
.footer-brand p { font-size: .9rem; max-width: 300px; }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: var(--sp-2); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--sp-1); }
.footer-col a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-3); display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: var(--sp-2);
  font-size: .8rem; color: var(--iron-grey);
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-mobile-cta {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 900;
  background: var(--stone-deep); padding: var(--sp-2) var(--sp-3);
  display: flex; gap: var(--sp-2); justify-content: center; align-items: center;
  transform: translateY(100%); transition: transform .35s var(--ease);
  box-shadow: 0 -4px 16px rgba(15,23,42,.15);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta .btn { flex: 1; padding: 12px var(--sp-2); font-size: .9rem; text-align: center; justify-content: center; }
@media (min-width: 992px) { .sticky-mobile-cta { display: none; } }

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .15s; }
.stagger > *:nth-child(4) { transition-delay: .2s; }
.stagger > *:nth-child(5) { transition-delay: .25s; }
.stagger > *:nth-child(6) { transition-delay: .3s; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: var(--sp-2) 0; font-size: .85rem; color: var(--iron-grey); }
.breadcrumbs a { color: var(--iron-grey); }
.breadcrumbs a:hover { color: var(--sky-work); }
.breadcrumbs span { margin: 0 var(--sp-1); }

/* ---------- Map ---------- */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 350px; border: 0; }
@media (min-width: 768px) { .map-container iframe { height: 450px; } }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(100,116,139,.12); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: var(--sp-3) 0; font-family: 'Cabin', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--stone-deep);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: var(--sp-2);
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--sky-work); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '\2212'; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer-inner { padding: 0 0 var(--sp-3); color: var(--slate-mid); line-height: 1.7; }

/* ---------- Avant/Apres ---------- */
.avant-apres { display: grid; gap: var(--sp-4); }
@media (min-width: 768px) { .avant-apres { grid-template-columns: 1fr 1fr; } }
.avant-apres-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.avant-apres-item img { width: 100%; height: 300px; object-fit: cover; }
.avant-apres-label {
  position: absolute; top: var(--sp-2); left: var(--sp-2);
  background: var(--stone-deep); color: var(--white);
  padding: 4px 12px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }

/* ---------- Skip to Content ---------- */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--sky-work);
  color: var(--white); padding: var(--sp-1) var(--sp-2);
  z-index: 10000; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* OVERRIDE: make all content visible immediately (animation is progressive enhancement) */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 1 !important;
  transform: none !important;
}
