/* ============================================
   MENUISERIE SERVICES FRANCE — DESIGN 2026
   Pure · Natural · Elegant · Futuriste
   ============================================ */

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* VARIABLES */
:root {
  --forest:      #1a472a;
  --forest-dark: #0d2b1a;
  --forest-mid:  #2d6a4f;
  --gold:        #C9A84C;
  --gold-light:  #F4D03F;
  --gold-pale:   #fdf6e3;
  --wood:        #8B5E3C;
  --wood-dark:   #5C3317;
  --cream:       #FAFAF7;
  --white:       #FFFFFF;
  --off-white:   #F5F5F0;
  --light:       #E8E8E0;
  --mid:         #6E6E60;
  --dark:        #1a1a14;
  --red-urg:     #E53935;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold);
}

/* CURSEUR CUSTOM */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.1s, height 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}

/* MASCOTTE */
.mascot-container {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 1000;
  cursor: pointer;
  animation: mascotFloat 3s ease-in-out infinite;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.mascot-character {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
  transition: transform var(--transition);
}
.mascot-container:hover .mascot-character {
  transform: scale(1.1) rotate(-5deg);
}
.mascot-bubble {
  position: absolute;
  bottom: 110px; right: 0;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 16px 16px 0 16px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: all var(--transition);
  pointer-events: none;
  max-width: 260px;
  white-space: normal;
  text-align: center;
}
.mascot-container:hover .mascot-bubble,
.mascot-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mascot-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px; right: 20px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-top: 10px solid var(--gold);
}

/* MASCOT WALKING ANIMATION */
.mascot-walking { animation: mascotWalk 0.4s steps(2) infinite; }
@keyframes mascotWalk {
  0% { transform: scaleX(1); }
  50% { transform: scaleX(-1); }
}

/* TOPBAR */
.topbar {
  background: var(--dark);
  padding: 9px 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  flex-wrap: wrap;
}
.topbar-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.8rem;
}
.topbar-cta:hover { background: var(--gold-light); transform: scale(1.05); }
.pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulseAnim 1.5s infinite;
}
@keyframes pulseAnim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { display: flex; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-top {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--dark);
  background: rgba(201,168,76,0.1);
}
.nav-link.active { color: var(--forest); font-weight: 600; }
.btn-devis {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  flex-shrink: 0;
  display: inline-block;
}
.btn-devis:hover {
  background: var(--gold);
  color: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
/* HERO SECTION */
.hero-section {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 80px 32px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.wood-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
}
.ring-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.ring-2 { width: 400px; height: 400px; top: -100px; right: 0px; border-color: rgba(201,168,76,0.1); }
.ring-3 { width: 200px; height: 200px; top: 50px; right: 150px; border-color: rgba(201,168,76,0.2); }

.sawdust-particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 6s ease-in-out infinite;
}
.p1 { top: 20%; left: 10%; animation-delay: 0s; }
.p2 { top: 60%; left: 5%; animation-delay: 1s; }
.p3 { top: 80%; left: 20%; animation-delay: 2s; width: 4px; height: 4px; }
.p4 { top: 30%; left: 80%; animation-delay: 0.5s; }
.p5 { top: 70%; left: 70%; animation-delay: 1.5s; width: 4px; height: 4px; }
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.hero-content {
  flex: 1;
  max-width: 580px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,71,42,0.08);
  border: 1px solid rgba(26,71,42,0.2);
  color: var(--forest);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-title em {
  display: block;
  font-size: 1.05em;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--white) !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark) !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid var(--light);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--forest) !important;
  background: rgba(201,168,76,0.05);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
}
.trust-item span {
  font-size: 0.75rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--light);
}

.hero-visual {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-img-inner {
  background: linear-gradient(135deg, var(--off-white), var(--gold-pale));
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: center;
}
.hero-svg {
  width: 100%;
  height: auto;
  max-height: 480px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}
.hero-img-tag {
  position: absolute;
  bottom: -16px; left: 24px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

/* STATS */
.stats-section {
  background: var(--dark);
  padding: 60px 32px;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number-text {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* SECTIONS COMMUNES */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
}

/* SERVICES GRID */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  border-color: var(--forest);
  color: var(--white);
}
.service-card.featured::before { background: var(--gold); transform: scaleX(1); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .card-link { color: var(--gold); }
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(26,71,42,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  transition: var(--transition);
}
.service-card.featured .service-icon-wrap {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}
.service-card.urgence-card .service-icon-wrap {
  background: rgba(229,57,53,0.1);
  color: var(--red-urg);
}
.service-card:hover .service-icon-wrap {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mid);
  flex: 1;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  transition: var(--transition);
}
.service-card:hover .card-link { color: var(--gold); }
.service-card.urgence-card {
  border: 2px solid rgba(229,57,53,0.3);
  background: linear-gradient(135deg, #fff5f5, #fff);
}
.urgence-pulse-ring {
  position: absolute;
  top: 20px; right: 20px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red-urg);
  animation: urgPulse 1.5s infinite;
}
@keyframes urgPulse {
  0% { box-shadow: 0 0 0 0 rgba(229,57,53,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(229,57,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,57,53,0); }
}
/* WHY SECTION */
.why-section { background: var(--off-white); }
.why-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.why-text { flex: 1; }
.why-text .section-title { text-align: left; }
.why-text .section-tag { text-align: left; }
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(26,71,42,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-list strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-list span {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--mid);
}
.why-visual {
  flex: 1;
  max-width: 360px;
}
.workshop-illustration {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.2);
}
.workshop-illustration svg {
  width: 100%; height: auto;
}

/* URGENCE SECTION */
.urgence-section {
  background: linear-gradient(135deg, #1a0a0a, #2d1010);
  padding: 60px 32px;
}
.urgence-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.urgence-icon-big { font-size: 3.5rem; flex-shrink: 0; }
.urgence-text { flex: 1; }
.urgence-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.urgence-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.urgence-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-urgence {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-urg);
  color: white !important;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
}
.btn-urgence:hover {
  background: #c62828;
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(229,57,53,0.4);
}
.btn-pulse-dot {
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
  animation: pulseAnim 1.5s infinite;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white !important;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* CTA SECTION */
.cta-section { background: var(--cream); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-text { flex: 1; }
.cta-text p {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.6;
  margin-top: 12px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary.big, .btn-secondary.big {
  padding: 18px 36px;
  font-size: 1rem;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1.2;
  min-width: 260px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-phone {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-phone:hover { color: var(--gold-light) !important; }
.footer-links {
  display: flex;
  gap: 48px;
  flex: 2;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-col a, .footer-col span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* PAGE HEADERS */
.page-header {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, var(--forest-mid) 100%);
  padding: 100px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header-content { position: relative; z-index: 1; }
.page-header .section-tag { color: rgba(201,168,76,0.8); }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CONTACT / DEVIS FORM */
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 32px;
}
.devis-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group label span { color: var(--red-urg); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,71,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 32px;
  text-align: center;
}
.btn-submit {
  background: var(--forest);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.3);
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-success p { color: var(--mid); }

/* REALISATIONS GRID */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.realisation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light);
  transition: var(--transition);
}
.realisation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.realisation-img {
  height: 200px;
  background: linear-gradient(135deg, var(--forest-dark), var(--wood));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.realisation-info { padding: 24px; }
.realisation-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.realisation-info p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}
.realisation-tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(26,71,42,0.08);
  color: var(--forest);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 16px 32px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light);
  font-size: 0.82rem;
  color: var(--mid);
}
.breadcrumb a { color: var(--forest); }
.breadcrumb a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-section { flex-direction: column; padding: 60px 24px; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { flex-direction: column; }
  .why-visual { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--light); flex-direction: column; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-wrap { padding: 0 20px; position: relative; }
  .hero-title { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .devis-form { padding: 32px 24px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .section-container { padding: 60px 20px; }
  .urgence-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-section { padding: 40px 16px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; gap: 8px; }
  .mascot-container { bottom: 16px; right: 16px; }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* À PROPOS */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--light);
}
.value-item .icon { font-size: 1.6rem; margin-bottom: 8px; }
.value-item h4 { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.value-item p { font-size: 0.8rem; color: var(--mid); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; }
}