/*
Theme Name: Pun'ez Landing
Theme URI: https://punez.fr
Author: Pun'ez
Author URI: https://punez.fr
Description: Thème landing page sur-mesure pour Pun'ez — solution anti-nuisibles en Île-de-France. Inclut formulaire de devis (Formsubmit), vidéo de présentation, témoignages et section contact.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: punez-landing
Tags: landing-page, business, one-page
*/

/* Polices auto-hébergées (variables) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/inter.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("assets/fonts/manrope.woff2") format("woff2");
}

/* =========================================================================
   Pun'ez — Feuille de styles principale
   Palette :
     --background  #f8f6f3   blanc orange (fond de page)
     --surface     #f5efe7   orange clair (sections tintées, cards)
     --primary     #d8722e   orange (CTAs)
     --primary-dk  #b35d22   orange foncé (hover, accents)
     --accent      #6b5140   marron grisé (métadonnées, labels)
     --ink         #3e3e3e   gris foncé (texte principal)
   ========================================================================= */

:root {
  --background: #f8f6f3;
  --surface: #f5efe7;
  --primary: #d8722e;
  --primary-dk: #b35d22;
  --accent: #6b5140;
  --ink: #3e3e3e;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--background);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
iframe { width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.punez-body ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-grid > *, .punaise-grid > *, .experts-grid > *, .solutions-grid > *, .devis-grid > * { min-width: 0; }

.text-primary-dark { color: var(--primary-dk); }
.center-btn { display: flex; justify-content: center; margin-top: 48px; }
.center-narrow { max-width: 620px; margin: 16px auto 0; }

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(216, 114, 46, 0.1);
  color: var(--primary-dk);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.small-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary-dk); }
.badge { display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.badge-on-dark { background: rgba(216, 114, 46, 0.25); color: var(--white); }
.badge-white { display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.7); color: var(--primary-dk); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; transition: all 0.2s ease; white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dk); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--ink); border: 1px solid rgba(62, 62, 62, 0.15); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: rgba(62, 62, 62, 0.3); background: rgba(62, 62, 62, 0.05); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--accent); color: var(--white); }
.btn.small { padding: 8px 16px; font-size: 13px; }
.btn.full-width { width: 100%; }

/* Header */
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 30; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 80px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; color: rgba(62, 62, 62, 0.8); }
.main-nav a { transition: color 0.2s; }
.main-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.header-phone svg { color: var(--primary-dk); }

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--surface) 0%, rgba(216, 114, 46, 0.15) 60%, rgba(216, 114, 46, 0.35) 100%); padding: 140px 0 120px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hero::before { top: -120px; right: -120px; width: 600px; height: 600px; background: rgba(216, 114, 46, 0.1); }
.hero::after { bottom: 0; left: -100px; width: 400px; height: 400px; background: rgba(255, 255, 255, 0.3); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; padding: 6px 16px; border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px); color: rgba(62, 62, 62, 0.8); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 24px; }
.hero-title { font-size: 60px; font-weight: 800; line-height: 1.05; color: var(--ink); }
.hero-accent { display: block; margin-top: 8px; color: var(--primary-dk); }
.hero-lead { margin-top: 24px; max-width: 480px; font-size: 18px; line-height: 1.65; color: rgba(62, 62, 62, 0.8); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-rating { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.rating-avatars { display: flex; }
.rating-avatars .avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--white); background: linear-gradient(135deg, var(--accent), var(--primary)); margin-left: -8px; }
.rating-avatars .avatar:first-child { margin-left: 0; }
.stars { color: #fbbf24; font-size: 16px; letter-spacing: 1px; }
.rating-text { margin-top: 4px; font-size: 14px; color: rgba(62, 62, 62, 0.8); }
.rating-text strong { color: var(--ink); }
.hero-image-wrapper { position: relative; }
.hero-image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.hero-floating { position: absolute; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-radius: var(--radius-md); box-shadow: var(--shadow-xl); padding: 16px; display: flex; align-items: center; gap: 12px; }
.hero-floating-top { top: 40px; left: -24px; }
.hero-floating-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(216, 114, 46, 0.1); color: var(--primary-dk); flex-shrink: 0; }
.hero-floating-bottom { bottom: -20px; right: -16px; background: var(--ink); color: var(--white); display: block; }
.floating-eyebrow { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); }
.floating-eyebrow-light { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(245, 239, 231, 0.8); }
.floating-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.floating-big { font-size: 18px; font-weight: 700; margin-top: 2px; }
.hero-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; position: relative; }
.feature-card { min-height: 148px; display: flex; flex-direction: column; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(8px); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0, 0, 0, 0.05); }
.feature-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(216, 114, 46, 0.1); color: var(--primary-dk); margin-bottom: 12px; }
.feature-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); }
.feature-sub { margin-top: 4px; font-size: 14px; color: var(--accent); }

/* Sections */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-surface { background: var(--surface); }
.section-heading { max-width: 720px; margin: 0 auto; text-align: center; }
.section-title { margin-top: 20px; font-size: 36px; font-weight: 800; line-height: 1.15; color: var(--ink); }
.section-title.on-dark { color: var(--white); }
.section-lead { margin-top: 20px; font-size: 18px; color: rgba(62, 62, 62, 0.8); }
.section-sub { margin-top: 16px; color: rgba(62, 62, 62, 0.8); }
.section-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Solutions */
.solutions-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
.video-wrapper { aspect-ratio: 16 / 9; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(0, 0, 0, 0.05); }
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.autres-services { margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(62, 62, 62, 0.1); }
.autres-services-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.autres-services-title { margin-top: 8px; font-size: 24px; font-weight: 800; color: var(--ink); }
.autres-services-sub { max-width: 360px; font-size: 14px; color: rgba(62, 62, 62, 0.75); }
.autres-services-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.autres-service-card { display: flex; gap: 16px; background: var(--surface); padding: 20px; border-radius: var(--radius-md); border: 1px solid rgba(216, 114, 46, 0.1); transition: border-color 0.2s; }
.autres-service-card:hover { border-color: rgba(216, 114, 46, 0.3); }
.autres-service-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(216, 114, 46, 0.15); color: var(--primary-dk); flex-shrink: 0; }
.autres-service-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); }
.autres-service-desc { margin-top: 4px; font-size: 14px; color: rgba(62, 62, 62, 0.8); line-height: 1.55; }

/* Punaise de lit */
.punaise-section { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.punaise-section::before { content: ""; position: absolute; top: 0; left: -128px; width: 500px; height: 500px; border-radius: 50%; background: rgba(216, 114, 46, 0.1); filter: blur(80px); pointer-events: none; }
.punaise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
.punaise-image-wrapper { aspect-ratio: 4 / 5; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(255, 255, 255, 0.1); }
.punaise-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.punaise-text { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; color: rgba(255, 255, 255, 0.8); font-size: 16px; line-height: 1.65; }
.punaise-text strong { color: var(--white); font-weight: 600; }
.punaise-section .btn-primary { margin-top: 40px; }

/* Pourquoi */
.pourquoi-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pourquoi-card { background: var(--white); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid rgba(0, 0, 0, 0.05); transition: transform 0.2s, box-shadow 0.2s; }
.pourquoi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pourquoi-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(216, 114, 46, 0.1); color: var(--primary-dk); margin-bottom: 20px; transition: background 0.2s, color 0.2s; }
.pourquoi-card:hover .pourquoi-icon { background: var(--primary); color: var(--white); }
.pourquoi-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); }
.pourquoi-card p { margin-top: 8px; font-size: 14px; color: rgba(62, 62, 62, 0.8); line-height: 1.55; }

/* Processus */
.processus-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.processus-card { display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(62, 62, 62, 0.1); border-radius: var(--radius-md); transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); }
.processus-card:hover { border-color: rgba(216, 114, 46, 0.3); box-shadow: var(--shadow-lg); }
.processus-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.processus-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: rgba(216, 114, 46, 0.15); }
.processus-badge { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary); color: var(--white); font-weight: 600; box-shadow: var(--shadow-md); }
.processus-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.processus-card p { margin-top: 12px; font-size: 14px; color: rgba(62, 62, 62, 0.8); line-height: 1.55; }

/* Avis */
.section-avis { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--surface) 0%, rgba(216, 114, 46, 0.4) 50%, var(--primary) 100%); color: var(--ink); }
.section-avis::before { content: ""; position: absolute; top: 40px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); filter: blur(80px); pointer-events: none; }
.section-avis .section-heading { color: var(--ink); position: relative; }
.rating-pill { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 8px 20px; background: rgba(255, 255, 255, 0.9); border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); font-size: 14px; }
.avis-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.avis-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-lg); border: 1px solid rgba(0, 0, 0, 0.05); }
.avis-text { flex: 1; margin-top: 16px; font-size: 15px; line-height: 1.6; color: rgba(62, 62, 62, 0.8); }
.avis-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(62, 62, 62, 0.05); }
.avis-initial { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(216, 114, 46, 0.1); color: var(--primary-dk); font-family: var(--font-display); font-weight: 700; }
.avis-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.avis-city { font-size: 12px; color: var(--accent); }

/* Experts */
.experts-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.experts-text { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; font-size: 16px; line-height: 1.65; color: rgba(62, 62, 62, 0.8); }
.experts-text strong { color: var(--ink); font-weight: 600; }
.experts-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.experts-checks li { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--surface); border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--ink); }
.check-dot { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: var(--primary); color: var(--white); }
.experts-grid .btn { margin-top: 40px; }
.experts-image-wrapper { position: relative; }
.experts-image { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid rgba(0, 0, 0, 0.05); }
.experts-floating { position: absolute; bottom: -32px; left: -16px; max-width: 320px; background: var(--ink); color: var(--white); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); }
.floating-eyebrow-white { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--white); }
.floating-text { margin-top: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.75); line-height: 1.55; }
.experts-floating .btn { margin-top: 20px; }

/* Devis */
.section-devis { background: linear-gradient(to bottom, var(--surface) 0%, var(--white) 100%); }
.devis-grid { margin-top: 56px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
.devis-left, .devis-right { display: flex; flex-direction: column; gap: 24px; }
.devis-form { background: var(--white); padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid rgba(0, 0, 0, 0.05); }
.devis-form[hidden] { display: none; }

.devis-error {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 14px;
  font-weight: 500;
}
.devis-error[hidden] { display: none; }

.devis-success {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: devis-success-in 0.4s ease-out;
}
.devis-success[hidden] { display: none; }
.devis-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(216, 114, 46, 0.35);
}
.devis-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.devis-success p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(62, 62, 62, 0.8);
  max-width: 420px;
  margin: 0 auto 28px;
}

@keyframes devis-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label span { font-size: 14px; font-weight: 600; color: var(--ink); }
.form-grid label em { color: var(--primary); font-style: normal; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px 16px; background: rgba(245, 239, 231, 0.4); border: 1px solid rgba(62, 62, 62, 0.1); border-radius: 12px; font-family: inherit; font-size: 14px; color: var(--ink); transition: all 0.2s; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; background: var(--white); border-color: var(--primary); box-shadow: 0 0 0 3px rgba(216, 114, 46, 0.2); }
.form-grid textarea { resize: vertical; min-height: 100px; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; font-size: 14px; color: rgba(62, 62, 62, 0.8); }
.consent input { margin-top: 4px; accent-color: var(--primary); }
.devis-form .btn { margin-top: 32px; }
.badges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.badge-item { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--white); border-radius: var(--radius-md); border: 1px solid rgba(0, 0, 0, 0.05); font-size: 14px; font-weight: 500; color: var(--ink); }
.badge-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(216, 114, 46, 0.1); color: var(--primary-dk); flex-shrink: 0; }
.contact-card { background: var(--ink); color: var(--white); padding: 32px; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.contact-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--white); }
.contact-phone { display: block; margin-top: 16px; font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1.1; transition: color 0.2s; color: var(--white); }
.contact-phone:hover { color: var(--white); }
.btn-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 10px 20px; background: var(--primary); color: var(--white); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; transition: background 0.2s; }
.btn-pill:hover { background: var(--primary-dk); color: var(--white); }
.contact-info { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.contact-info p { margin-top: 8px; }
.contact-info p:first-child { margin-top: 0; }
.contact-info strong { color: var(--white); font-weight: 600; }
.contact-info a { text-decoration: underline; }
.contact-info a:hover { color: var(--white); }
.map-wrapper { overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid rgba(0, 0, 0, 0.05); }
.map-wrapper iframe { width: 100%; height: 280px; border: 0; }
.horaires-card { background: var(--surface); padding: 24px; border-radius: var(--radius-xl); border: 1px solid rgba(0, 0, 0, 0.05); }
.horaires { margin-top: 16px; font-size: 14px; color: var(--ink); }
.horaires div { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.horaires dt { color: var(--accent); margin: 0; }
.horaires dd { margin: 0; font-weight: 600; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta a { pointer-events: auto; }
.sticky-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-dk);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s, color 0.2s;
}
.sticky-cta-call:hover { background: var(--primary); color: var(--white); }
.sticky-cta-devis {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}
.sticky-cta-devis:hover { background: var(--primary-dk); color: var(--white); }

@media (max-width: 768px) {
  .sticky-cta { right: 16px; left: 16px; bottom: 16px; gap: 8px; }
  .sticky-cta-devis { flex: 1; justify-content: center; }
  .sticky-cta-call { width: 52px; height: 52px; }
}

/* Footer */
.site-footer { background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 64px 24px; }
.footer-brand { display: inline-flex; }
.footer-brand img { height: 80px; width: auto; }
.footer-desc { margin-top: 16px; font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.7); }
.site-footer h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(245, 239, 231, 0.8); }
.site-footer ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, 0.75); list-style: none; padding: 0; }
.site-footer a { transition: color 0.2s; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 12px; padding: 24px; font-size: 12px; color: rgba(255, 255, 255, 0.65); }

/* Neutralise certains styles WP par défaut qui pourraient casser le rendu */
body.punez-body { margin: 0 !important; padding: 0 !important; }
body.punez-body .entry-content { max-width: none; padding: 0; margin: 0; }
#wpadminbar { display: none; }
html { margin-top: 0 !important; }
