
/* ============ RESET & TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --granite: #1a1d21;
  --granite-2: #24282e;
  --cream: #f5ede1;
  --cream-2: #ebe0cc;
  --rust: #0757a0;
  --rust-hover: #084880;
  --accent-warm: #c2410c;
  --sea: #0f4c5c;
  --sea-light: #1e6b7d;
  --lichen: #7a8450;
  --line: rgba(26, 29, 33, 0.12);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max: 1280px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--granite);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ UTILS ============ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.eyebrow {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rust); font-weight: 500;
}

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 237, 225, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo {
  font-family: var(--serif); font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem; letter-spacing: -0.02em;
}
.logo img { height: 48px; width: auto; display: block; }
.logo .logo-light { display: none; }
/* Sur fond sombre (header transparent au-dessus du hero blueprint, footer) */
.footer .logo .logo-dark { display: none; }
.footer .logo .logo-light { display: block; }
.logo-mark {
  width: 36px; height: 36px; background: var(--rust); color: var(--cream);
  display: grid; place-items: center; border-radius: 8px;
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rust); }
.nav-phone {
  font-family: var(--mono); font-size: 0.9rem; font-weight: 500;
  padding: 0.6rem 1rem; background: var(--rust); color: var(--cream);
  border-radius: 999px; transition: background 0.2s;
}
.nav-phone:hover { background: var(--rust-hover); }

/* ============ MENU BURGER MOBILE (CSS pur via checkbox) ============ */
.burger-checkbox { display: none; }
.burger {
  display: none;
  width: 44px; height: 44px;
  cursor: pointer;
  background: transparent; border: none;
  position: relative;
  z-index: 200;
}
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  position: absolute;
  width: 24px; height: 2px;
  background: var(--granite);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease, background 0.2s;
  left: 50%;
  margin-left: -12px;
}
.burger span { top: 50%; margin-top: -1px; }
.burger span::before { content: ''; top: -8px; left: 0; margin-left: 0; }
.burger span::after { content: ''; top: 8px; left: 0; margin-left: 0; }

/* Quand checkbox cochée : transformation en croix */
.burger-checkbox:checked ~ .nav .burger span { background: transparent; }
.burger-checkbox:checked ~ .nav .burger span::before {
  top: 0; transform: rotate(45deg); background: var(--cream);
}
.burger-checkbox:checked ~ .nav .burger span::after {
  top: 0; transform: rotate(-45deg); background: var(--cream);
}

@media (max-width: 900px) {
  .burger { display: block; }

  /* Cache le tel "principal" en haut, on le remet dans le menu */
  .nav .nav-phone { display: none; }

  /* Menu = panneau plein écran */
  .nav-links {
    position: fixed; inset: 0;
    background: var(--granite);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.75rem 2rem;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
  }
  .burger-checkbox:checked ~ .nav .nav-links {
    transform: translateX(0);
  }

  /* Verrouille le scroll du body quand menu ouvert */
  .burger-checkbox:checked ~ .nav::before {
    content: ''; position: fixed; inset: 0;
    background: rgba(0,0,0,0.4); z-index: 140;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(245,237,225,0.1);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li > a {
    display: block;
    padding: 1rem 0;
    font-size: 1.15rem;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.01em;
  }
  .nav-links li > a:hover { color: #93c5fd; }

  /* Dropdowns sur mobile : toujours visibles, en retrait */
  .nav-links li.has-dropdown > a::after {
    content: '↓'; opacity: 0.5; font-size: 0.85em; margin-left: 0.5rem;
  }
  .dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent;
    border: none; box-shadow: none;
    padding: 0 0 1rem 1rem;
    min-width: 0;
  }
  .dropdown::before { display: none; }
  .dropdown a {
    color: rgba(245,237,225,0.75) !important;
    background: transparent !important;
    padding: 0.5rem 0;
    font-size: 0.95rem; font-family: var(--sans);
    font-weight: 400;
  }
  .dropdown a:hover {
    color: var(--cream) !important;
    background: transparent !important;
  }
  .dropdown-label .km { color: rgba(245,237,225,0.4) !important; }
  .dropdown-separator { display: none; }
  .dropdown-all {
    color: #93c5fd !important;
    font-family: var(--mono) !important;
    font-size: 0.78rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Bouton téléphone bien visible en haut du menu mobile */
  .nav-links::before {
    content: '☎ 06 20 95 50 71';
    display: block;
    background: var(--rust); color: var(--cream);
    padding: 1rem 1.25rem;
    border-radius: 999px;
    font-family: var(--mono); font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative; padding: clamp(1.25rem, 3vw, 2.25rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(147,197,253,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,197,253,0.18) 1px, transparent 1px),
    linear-gradient(rgba(147,197,253,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,197,253,0.08) 1px, transparent 1px),
    radial-gradient(ellipse at 75% 50%, #1e5ca0, #0f2847);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px, 100% 100%;
  color: var(--cream);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(15,40,71,0.55) 0%, rgba(15,40,71,0.1) 45%, transparent 75%);
  pointer-events: none;
}
.hero-photo {
  position: relative; z-index: 10;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(147,197,253,0.2);
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
}
.hero-photo:hover { transform: rotate(0deg) scale(1.02); }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(7, 87, 160, 0.15) 100%);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute; bottom: -16px; left: -16px; z-index: 11;
  background: var(--cream); color: var(--granite);
  padding: 0.85rem 1.15rem; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.05em; transform: rotate(2deg);
}
.hero-photo-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-photo-badge strong { font-family: var(--serif); font-size: 0.95rem; font-weight: 700; }
.hero-photo-wrap { position: relative; }
@media (max-width: 900px) {
  .hero-photo { transform: none; max-width: 480px; margin: 0 auto; }
  .hero-photo:hover { transform: scale(1.02); }
}

.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: center; position: relative; z-index: 10; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; max-width: 42rem; } }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.5rem 1rem;
  background: rgba(245,237,225,0.12); border: 1px solid rgba(147,197,253,0.25);
  border-radius: 999px; margin-bottom: 1.75rem;
  color: var(--cream); backdrop-filter: blur(8px);
}
.hero-tag .dot { width: 8px; height: 8px; background: #7cc47c; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px #7cc47c; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.02;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
  color: var(--cream);
}
.hero h1 em {
  font-style: italic; font-weight: 600; color: #93c5fd;
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: rgba(245,237,225,0.8);
  max-width: 32rem; margin-bottom: 2.25rem; line-height: 1.5;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.75rem; font-weight: 600; font-size: 0.95rem;
  border-radius: 999px; transition: all 0.25s ease;
}
.btn-primary {
  background: var(--granite); color: var(--cream);
}
.btn-primary:hover { background: var(--rust); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--granite);
  border: 1.5px solid var(--granite);
}
.btn-ghost:hover { background: var(--granite); color: var(--cream); }

/* Boutons sur fond sombre (hero blueprint) */
.hero .btn-primary {
  background: #0757a0; color: var(--cream);
}
.hero .btn-primary:hover { background: #93c5fd; color: var(--granite); transform: translateY(-2px); }
.hero .btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(245,237,225,0.4);
}
.hero .btn-ghost:hover { background: var(--cream); color: var(--granite); border-color: var(--cream); }

.hero-visual {
  position: relative; aspect-ratio: 4 / 5; max-width: 480px; justify-self: end;
}
.hero-card {
  position: absolute; background: var(--granite); color: var(--cream);
  border-radius: 20px; padding: 2rem; width: 100%; height: 100%;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.3);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.4) 0%, transparent 70%);
}
.hero-spec { position: relative; z-index: 2; }
.hero-spec-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; }
.hero-spec-value { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-top: 0.3rem; }
.hero-card-bottom { position: relative; z-index: 2; }
.hero-card-bottom .num { font-family: var(--serif); font-size: 5rem; font-weight: 800; line-height: 1; color: var(--rust); }
.hero-card-bottom .lbl { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; margin-top: 0.5rem; }

.hero-badge {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--cream); padding: 1rem 1.25rem;
  border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--line);
}
.hero-badge .stars { color: var(--rust); font-size: 0.9rem; letter-spacing: 2px; }
.hero-badge strong { font-family: var(--serif); font-size: 1.1rem; display: block; }
.hero-badge small { font-size: 0.75rem; color: var(--granite-2); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; max-width: 340px; margin-top: 1rem; }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--granite); color: var(--cream); padding: 1rem 0;
  font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: slide 40s linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 3rem; }
.ticker-track span::after { content: '◆'; color: var(--rust); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 42rem; }
.section-head h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.05;
  letter-spacing: -0.025em; margin-top: 0.75rem;
}
.section-head h2 em { font-style: italic; color: var(--rust); font-weight: 600; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; color: var(--granite-2); }

/* ============ SERVICES ============ */
.services { background: var(--cream-2); position: relative; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service {
  background: var(--cream); padding: 2rem; border-radius: 16px;
  border: 1px solid var(--line); transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15); border-color: var(--rust); }
.service-icon {
  width: 56px; height: 56px; background: var(--granite); color: var(--cream);
  border-radius: 12px; display: grid; place-items: center; margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service:hover .service-icon { background: var(--rust); }
.service-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.service h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.service p { font-size: 0.95rem; color: var(--granite-2); line-height: 1.55; }
.service-price {
  display: inline-block; margin-top: 1.25rem; font-family: var(--mono);
  font-size: 0.8rem; padding: 0.3rem 0.7rem; background: var(--cream-2);
  border-radius: 6px; font-weight: 500;
}

/* ============ PROCESS ============ */
.process { background: var(--granite); color: var(--cream); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(7, 87, 160, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.process .wrap { position: relative; }
.process .section-head h2 { color: var(--cream); }
.process .section-head h2 em { color: #93c5fd; }
.process .eyebrow { color: #93c5fd; }
.process .section-head p { color: rgba(245,237,225,0.75); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; }
.step { padding: 2rem 1.5rem 2rem 0; border-left: 1px solid rgba(245,237,225,0.15); padding-left: 1.5rem; position: relative; }
.step:first-child { padding-left: 0; border-left: none; }
.step-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 800;
  color: #93c5fd; line-height: 1; letter-spacing: -0.04em;
  font-style: italic;
}
.step h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin: 1rem 0 0.5rem; color: var(--cream); }
.step p { font-size: 0.9rem; color: rgba(245,237,225,0.7); }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } .step { border-left: none; border-top: 1px solid rgba(245,237,225,0.15); padding: 1.5rem 0; } .step:first-child { border-top: none; } }

/* ============ AREAS ============ */
.areas { background: var(--granite); color: var(--cream); position: relative; overflow: hidden; }
.areas::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(194, 65, 12, 0.15) 0%, transparent 60%);
}
.areas .section-head { position: relative; }
.areas .section-head h2 em { color: #93c5fd; }
.areas .eyebrow { color: #93c5fd; }
.areas .section-head p { color: rgba(245, 237, 225, 0.75); }
.area-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem; position: relative;
}
.area-item {
  padding: 1.25rem 1.5rem; border: 1px solid rgba(245, 237, 225, 0.15);
  border-radius: 10px; font-family: var(--serif); font-size: 1.15rem;
  font-weight: 600; display: flex; justify-content: space-between;
  align-items: center; transition: all 0.25s;
}
.area-item:hover { border-color: var(--rust); background: rgba(194, 65, 12, 0.1); transform: translateX(4px); }
.area-item .km { font-family: var(--mono); font-size: 0.75rem; opacity: 0.6; font-weight: 400; }

/* ============ STATS ============ */
.stats { background: var(--cream-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: left; }
.stat-num {
  font-family: var(--serif); font-weight: 800; font-style: italic;
  font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1;
  color: var(--granite); letter-spacing: -0.03em;
}
.stat-num .unit { color: var(--rust); }
.stat-lbl { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.75rem; color: var(--granite-2); }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* ============ TESTIMONIALS ============ */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review {
  background: var(--cream-2); padding: 2rem; border-radius: 16px;
  position: relative;
}
.review-stars { color: var(--rust); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 1rem; }
.review-text {
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.5;
  font-style: italic; margin-bottom: 1.5rem; font-weight: 500;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--granite);
  color: var(--cream); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700;
}
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-meta { font-size: 0.8rem; color: var(--granite-2); font-family: var(--mono); }

/* ============ FAQ ============ */
.faq { background: var(--cream-2); }
.faq-list { max-width: 800px; margin: 0 auto; }
details.faq-item {
  border-top: 1px solid var(--line); padding: 1.5rem 0;
}
details.faq-item:last-child { border-bottom: 1px solid var(--line); }
details.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; font-family: var(--serif); font-size: 1.25rem;
  font-weight: 600; letter-spacing: -0.01em;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; font-size: 1.75rem; font-weight: 300;
  color: var(--rust); transition: transform 0.25s; font-family: var(--sans);
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p { margin-top: 1rem; color: var(--granite-2); line-height: 1.65; }

/* ============ CONTACT ============ */
.contact { background: var(--granite); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact .section-head h2 em { color: #93c5fd; }
.contact .eyebrow { color: #93c5fd; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(245,237,225,0.1);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.contact-item-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; margin-bottom: 0.25rem; }
.contact-item-value { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.contact-item-value a:hover { color: #93c5fd; }

.hours-card {
  background: rgba(245,237,225,0.05); border: 1px solid rgba(245,237,225,0.1);
  border-radius: 16px; padding: 2rem;
}
.hours-card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 1.25rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(245,237,225,0.08); font-size: 0.95rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time { font-family: var(--mono); opacity: 0.8; }
.hours-row.closed .time { color: #93c5fd; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============ FOOTER ============ */
.footer {
  background: #0f1114; color: var(--cream); padding: 3rem 0 2rem;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { opacity: 0.6; max-width: 20rem; }
.footer h5 {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: #93c5fd; margin-bottom: 1rem; font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul a { opacity: 0.7; transition: opacity 0.2s; }
.footer ul a:hover { opacity: 1; color: #93c5fd; }
.footer-bottom {
  border-top: 1px solid rgba(245,237,225,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 0.75rem; opacity: 0.5;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; } }

/* ============ A11Y ============ */
:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============ INTERNAL PAGE STYLES ============ */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(194, 65, 12, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.breadcrumb {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem; color: var(--granite-2);
}
.breadcrumb a { color: var(--granite-2); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rust); }
.breadcrumb span[aria-hidden] { margin: 0 0.5rem; color: var(--rust); }
.page-hero h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05;
  letter-spacing: -0.025em; max-width: 26ch;
  font-variation-settings: "opsz" 144;
}
.page-hero h1 em { font-style: italic; color: var(--rust); font-weight: 600; }
.page-hero-sub {
  font-size: 1.1rem; color: var(--granite-2); max-width: 40rem;
  margin-top: 1.25rem; line-height: 1.55;
}
.page-hero .hero-cta { margin-top: 2rem; }

.content { padding: clamp(3rem, 6vw, 5rem) 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.prose { font-size: 1.05rem; line-height: 1.7; color: var(--granite-2); }
.prose h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--granite); letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem; line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--rust); }
.prose h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--granite); margin: 1.75rem 0 0.5rem;
}
.prose p { margin-bottom: 1.1rem; }
.prose ul { padding-left: 0; list-style: none; margin: 1rem 0 1.5rem; }
.prose ul li {
  position: relative; padding-left: 1.75rem; margin-bottom: 0.6rem;
}
.prose ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--rust); font-weight: 600;
}
.prose strong { color: var(--granite); font-weight: 600; }
.prose a { color: var(--rust); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--rust-hover); }

.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--granite); color: var(--cream);
  padding: 2rem; border-radius: 16px; margin-bottom: 1.25rem;
  position: relative; overflow: hidden;
}
.sidebar-card::before {
  content: ''; position: absolute; top: -20%; right: -20%; width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.4) 0%, transparent 70%);
}
.sidebar-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.75rem; position: relative;
}
.sidebar-card p { font-size: 0.92rem; opacity: 0.8; margin-bottom: 1.25rem; position: relative; }
.sidebar-card .btn { width: 100%; justify-content: center; background: var(--rust); color: var(--cream); position: relative; }
.sidebar-card .btn:hover { background: var(--cream); color: var(--granite); }

.sidebar-info {
  background: var(--cream-2); padding: 1.5rem; border-radius: 14px;
  border: 1px solid var(--line);
}
.sidebar-info h4 {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rust); font-weight: 500; margin-bottom: 1rem;
}
.sidebar-info dl { display: grid; gap: 0.75rem; font-size: 0.9rem; }
.sidebar-info dt { font-weight: 600; color: var(--granite); }
.sidebar-info dd { color: var(--granite-2); margin-top: 0.1rem; }

.mid-cta {
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  border-radius: 20px; margin: 2.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(147,197,253,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,197,253,0.18) 1px, transparent 1px),
    linear-gradient(rgba(147,197,253,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,197,253,0.08) 1px, transparent 1px),
    radial-gradient(ellipse at 75% 50%, #1e5ca0, #0f2847);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px, 100% 100%;
}
.mid-cta::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(15,40,71,0.55) 0%, rgba(15,40,71,0.15) 50%, transparent 80%);
  pointer-events: none;
}
.mid-cta::after {
  content: ''; position: absolute; top: 50%; right: 8%;
  width: 180px; height: 180px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, transparent 38px, rgba(147,197,253,0.5) 39px, rgba(147,197,253,0.5) 40px, transparent 41px),
    radial-gradient(circle, transparent 58px, rgba(147,197,253,0.35) 59px, rgba(147,197,253,0.35) 60px, transparent 61px),
    radial-gradient(circle, transparent 88px, rgba(147,197,253,0.2) 89px, rgba(147,197,253,0.2) 90px, transparent 91px);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 2;
}
.mid-cta > * { position: relative; z-index: 5; }
.mid-cta h3 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em; max-width: 24ch;
  color: var(--cream);
}
.mid-cta h3 em { font-style: italic; color: #93c5fd; }
.mid-cta .btn { background: var(--accent-warm); color: var(--cream); white-space: nowrap; }
.mid-cta .btn:hover { background: var(--cream); color: var(--granite); transform: translateY(-2px); }
@media (max-width: 700px) {
  .mid-cta::after { display: none; }
}

.related {
  background: var(--cream-2); padding: clamp(3rem, 6vw, 5rem) 0;
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.related-card {
  background: var(--cream); padding: 1.5rem; border-radius: 12px;
  border: 1px solid var(--line); transition: all 0.25s;
}
.related-card:hover { transform: translateY(-3px); border-color: var(--rust); }
.related-card h4 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.35rem;
}
.related-card p { font-size: 0.88rem; color: var(--granite-2); }
.related-card span {
  display: inline-block; margin-top: 0.75rem; font-family: var(--mono);
  font-size: 0.75rem; color: var(--rust);
}

/* ============ LIGHTBOX (CSS pure, via :target) ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6, 16, 24, 0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox:target {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.lightbox-img {
  max-width: 100%; max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
  transform: scale(0.92); transition: transform 0.35s ease;
}
.lightbox:target .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(245,237,225,0.1);
  border: 1px solid rgba(245,237,225,0.3);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream); font-size: 1.5rem; line-height: 1;
  text-decoration: none; transition: all 0.2s;
  font-family: var(--sans);
}
.lightbox-close:hover { background: var(--cream); color: var(--granite); transform: rotate(90deg); }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.8rem;
  color: rgba(245,237,225,0.7); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lightbox-backdrop {
  position: absolute; inset: 0; z-index: -1;
}

/* La photo cliquable affiche un curseur loupe */
.hero-photo a {
  display: block; cursor: zoom-in; position: relative;
}
.hero-photo a::after {
  content: '⤢';
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(6,16,24,0.7);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  opacity: 0; transition: opacity 0.25s;
  backdrop-filter: blur(4px);
}
.hero-photo:hover a::after { opacity: 1; }

/* ============ SECTION GALERIE ATELIER ============ */
.atelier { background: var(--cream); }
.atelier-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.atelier-card {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: 16px; overflow: hidden;
  cursor: zoom-in; display: block;
  box-shadow: 0 15px 40px -15px rgba(0,0,0,0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.atelier-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px -15px rgba(0,0,0,0.28); }
.atelier-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.atelier-card:hover img { transform: scale(1.04); }
.atelier-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(6,16,24,0.85), transparent);
  color: var(--cream);
}
.atelier-card-label h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  margin-bottom: 0.2rem; letter-spacing: -0.01em;
}
.atelier-card-label p { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.atelier-card::after {
  content: '⤢'; position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  background: rgba(245,237,225,0.9); color: var(--granite);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1rem; opacity: 0; transition: opacity 0.25s;
}
.atelier-card:hover::after { opacity: 1; }
@media (max-width: 700px) { .atelier-grid { grid-template-columns: 1fr; } }

/* ============ PAGE TARIFS ============ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin: 2rem 0;
}
.price-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 16px; padding: 2rem;
  transition: all 0.3s; position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15); border-color: var(--rust); }
.price-card.featured { border-color: var(--rust); border-width: 2px; box-shadow: 0 15px 40px -15px rgba(7,87,160,0.25); }
.price-card.featured::before {
  content: 'Le plus demandé';
  position: absolute; top: -12px; left: 1.5rem;
  background: var(--rust); color: var(--cream);
  padding: 0.3rem 0.75rem; border-radius: 999px;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.price-card-icon {
  width: 48px; height: 48px; background: var(--cream-2); color: var(--rust);
  border-radius: 12px; display: grid; place-items: center; margin-bottom: 1.25rem;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
}
.price-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.price-card-tagline { font-size: 0.88rem; color: var(--granite-2); margin-bottom: 1.25rem; line-height: 1.5; }
.price-card-amount {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 800;
  color: var(--granite); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.price-card-amount .from { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--granite-2); font-weight: 500; display: block; margin-bottom: 0.25rem; }
.price-card-amount .euro { color: var(--rust); }
.price-card-includes {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
}
.price-card-includes h4 {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--granite-2); margin-bottom: 0.75rem; font-weight: 500;
}
.price-card-includes ul { list-style: none; padding: 0; }
.price-card-includes li {
  padding: 0.35rem 0 0.35rem 1.5rem; position: relative;
  font-size: 0.92rem; color: var(--granite);
}
.price-card-includes li::before {
  content: '✓'; position: absolute; left: 0; color: var(--rust); font-weight: 700;
}

.pricing-note {
  background: var(--cream-2); border-left: 4px solid var(--rust);
  padding: 1.5rem 1.75rem; border-radius: 0 12px 12px 0;
  margin: 2.5rem 0;
}
.pricing-note strong { color: var(--rust); }

.pricing-table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  font-size: 0.95rem;
}
.pricing-table th, .pricing-table td {
  text-align: left; padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}
.pricing-table th {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--granite-2); font-weight: 500;
  background: var(--cream-2);
}
.pricing-table td:last-child {
  font-family: var(--serif); font-weight: 700; color: var(--rust);
  white-space: nowrap; text-align: right;
}
.pricing-table tr:hover td { background: rgba(7,87,160,0.04); }

/* ============ MENU DÉROULANT ============ */
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-links li.has-dropdown > a::after {
  content: '▾'; font-size: 0.65em; opacity: 0.6;
  transition: transform 0.2s;
}
.nav-links li.has-dropdown:hover > a::after,
.nav-links li.has-dropdown:focus-within > a::after {
  transform: rotate(180deg); opacity: 1;
}
.dropdown {
  position: absolute; top: calc(100% + 0.5rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.25), 0 0 0 1px rgba(7,87,160,0.08);
  padding: 0.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  list-style: none;
  z-index: 50;
}
.dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--cream);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.nav-links li.has-dropdown:hover .dropdown,
.nav-links li.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block; padding: 0.6rem 0.9rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--granite);
  transition: all 0.15s ease;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--rust); color: var(--cream);
}
.dropdown-label {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.dropdown-label .km {
  font-family: var(--mono); font-size: 0.7rem;
  opacity: 0.55; font-weight: 400;
}
.dropdown a:hover .km { opacity: 0.85; color: var(--cream); }
.dropdown-separator {
  height: 1px; background: var(--line); margin: 0.4rem 0;
}
.dropdown-all {
  font-family: var(--mono); font-size: 0.72rem !important;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rust) !important; font-weight: 500 !important;
}
.dropdown-all:hover { background: var(--cream-2) !important; color: var(--rust) !important; }

/* Dropdown mobile : cache sur petit écran (le menu se replie déjà) */
@media (max-width: 860px) {
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
  .dropdown::before { display: none; }
}

/* ============ RESPONSIVE GLOBAL — AMÉLIORATIONS MOBILE ============ */
@media (max-width: 700px) {
  /* Hero plus compact */
  .hero { padding: 2rem 0 3rem; }
  .hero-grid { gap: 2rem; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; text-align: center; }
  .hero-photo { aspect-ratio: 4 / 3; transform: none; }
  .hero-photo:hover { transform: scale(1.01); }
  .hero-photo-badge { left: 8px; bottom: -12px; padding: 0.6rem 0.85rem; font-size: 0.7rem; }
  .hero-photo-badge svg { width: 14px; height: 14px; }
  .hero-photo-badge strong { font-size: 0.85rem; }

  /* Sections */
  section { padding: 3rem 0; }
  .section-head h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-head p { font-size: 0.95rem; }

  /* Atelier galerie */
  .atelier-grid { gap: 0.75rem; }
  .atelier-card-label { padding: 1rem; }
  .atelier-card-label h3 { font-size: 1.05rem; }

  /* Stats : 2 colonnes */
  .stats-grid { gap: 1.25rem; }
  .stat-num { font-size: clamp(2.4rem, 9vw, 3rem); }

  /* Reviews */
  .review-text { font-size: 1rem; }

  /* FAQ */
  details.faq-item summary { font-size: 1.05rem; }

  /* Contact */
  .contact-grid { gap: 1.5rem; }
  .hours-card { padding: 1.5rem; }

  /* Pages internes (services, zones, contact, tarifs) */
  .page-hero { padding: 2rem 0 1rem; }
  .page-hero h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .page-hero-sub { font-size: 0.95rem; }
  .content { padding: 2rem 0 3rem; }
  .prose { font-size: 1rem; }
  .prose h2 { font-size: clamp(1.4rem, 5vw, 1.75rem); margin-top: 2rem; }
  .prose h3 { font-size: 1.1rem; }

  /* Sidebar : devient horizontale en bas */
  .sidebar { position: static; }

  /* Mid-CTA empilé */
  .mid-cta {
    flex-direction: column; text-align: center;
    padding: 2rem 1.5rem;
  }
  .mid-cta h3 { max-width: none; }

  /* Tarifs : tableaux scrollables */
  .pricing-table { font-size: 0.85rem; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table th, .pricing-table td { padding: 0.7rem 0.6rem; }
  .price-card { padding: 1.5rem; }
  .price-card-amount { font-size: 2rem; }

  /* Footer */
  .footer-grid { gap: 1.5rem; }
  .footer-brand p { max-width: none; }

  /* Ticker plus discret */
  .ticker { font-size: 0.72rem; padding: 0.75rem 0; }

  /* Boutons : plus grands au tap */
  .btn { padding: 0.85rem 1.4rem; font-size: 0.92rem; }

  /* Header logo plus petit */
  .logo img { height: 36px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 1rem; }
  .hero h1 { font-size: 1.7rem; }
  .section-head h2 { font-size: 1.55rem; }
  .stat-num { font-size: 2.2rem; }
  .atelier-card-label { padding: 0.8rem; }
  .atelier-card-label h3 { font-size: 0.95rem; }
}

/* Empêche le scroll horizontal global */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Lightbox sur mobile : plus de marge */
@media (max-width: 600px) {
  .lightbox { padding: 1rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-caption { font-size: 0.7rem; bottom: 0.75rem; }
}

/* ============ FORMULAIRE DE CONTACT ============ */
.contact-form {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 16px; padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-form-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.contact-form-header .icon {
  width: 40px; height: 40px; background: var(--rust); color: var(--cream);
  border-radius: 10px; display: grid; place-items: center;
}
.contact-form-header .icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.contact-form-header h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.contact-form-header p { font-size: 0.88rem; color: var(--granite-2); margin-top: 0.15rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500; color: var(--granite-2);
}
.form-field label .req { color: var(--rust); margin-left: 0.2rem; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans); font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-radius: 10px;
  color: var(--granite);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  resize: vertical;
}
.form-field textarea { min-height: 120px; line-height: 1.5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--cream);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(26, 29, 33, 0.4);
}
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--granite-2);
  cursor: pointer; line-height: 1.45;
}
.form-checkbox input { margin-top: 0.15rem; accent-color: var(--rust); flex-shrink: 0; }
.form-checkbox a { color: var(--rust); text-decoration: underline; text-underline-offset: 2px; }
.form-submit {
  background: var(--rust); color: var(--cream);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  padding: 0.95rem 1.75rem;
  border: none; border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  align-self: flex-start;
}
.form-submit:hover { background: var(--rust-hover); transform: translateY(-2px); }
.form-submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.form-help {
  font-size: 0.8rem; color: var(--granite-2);
  padding: 0.75rem 1rem;
  background: var(--cream-2);
  border-radius: 8px;
  border-left: 3px solid var(--rust);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ============ BANDEAU RECONDITIONNÉS (mise en avant accueil) ============ */
.recond-banner { background: var(--cream-2); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.recond-card {
  background: linear-gradient(135deg, #1a3829 0%, #0f2419 100%);
  color: var(--cream);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem;
  align-items: center;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.recond-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 90% 50%, rgba(122, 164, 80, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(7, 87, 160, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.recond-card > * { position: relative; z-index: 5; }

.recond-content .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(154, 200, 110, 0.18);
  padding: 0.4rem 0.85rem; border-radius: 999px;
  color: #b9e090; border: 1px solid rgba(185, 224, 144, 0.3);
  margin-bottom: 1.25rem;
}
.recond-content h2 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--cream); margin-bottom: 1rem;
}
.recond-content h2 em { font-style: italic; color: #b9e090; font-weight: 600; }
.recond-content p {
  color: rgba(245, 237, 225, 0.85); font-size: 1.05rem;
  line-height: 1.55; margin-bottom: 1.75rem; max-width: 32rem;
}
.recond-features {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.recond-feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #b9e090;
}
.recond-feature::before { content: '✓'; font-weight: 700; }
.recond-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.recond-cta .btn-primary {
  background: #6fa844; color: var(--cream);
}
.recond-cta .btn-primary:hover { background: #5a8a36; }
.recond-cta .btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(245,237,225,0.4);
}
.recond-cta .btn-ghost:hover { background: var(--cream); color: var(--granite); border-color: var(--cream); }

.recond-price {
  background: var(--cream); color: var(--granite);
  border-radius: 16px; padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
  transform: rotate(2deg);
  position: relative;
}
.recond-price::before {
  content: '★ Économique';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #6fa844; color: var(--cream);
  padding: 0.3rem 0.85rem; border-radius: 999px;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap;
}
.recond-price-from {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--granite-2); margin-bottom: 0.4rem;
}
.recond-price-amount {
  font-family: var(--serif); font-weight: 800;
  font-size: 4rem; line-height: 1; letter-spacing: -0.04em;
  color: var(--granite);
}
.recond-price-amount .euro { color: #6fa844; }
.recond-price-detail {
  font-size: 0.85rem; color: var(--granite-2);
  margin-top: 0.85rem; line-height: 1.4;
}
.recond-price-warranty {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px dashed var(--line);
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.05em; color: #6fa844; font-weight: 600;
}

@media (max-width: 860px) {
  .recond-card { grid-template-columns: 1fr; gap: 2rem; }
  .recond-price { transform: rotate(0deg); max-width: 280px; margin: 0 auto; }
}

/* ============ HERO SLIDER 4 slides ============ */
.hero-slider {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;  /* supprime espaces invisibles entre blocs inline */
}
.hero-slider > * { line-height: normal; }
.slide-radio { display: none !important; }

.hero-slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  width: 400%;
}
.hero-slide {
  flex: 0 0 25%;
  min-width: 25%;
  position: relative;
}
#slide-1:checked ~ .hero-slides { transform: translateX(0); }
#slide-2:checked ~ .hero-slides { transform: translateX(-25%); }
#slide-3:checked ~ .hero-slides { transform: translateX(-50%); }
#slide-4:checked ~ .hero-slides { transform: translateX(-75%); }

/* ===== FONDS BLUEPRINT ===== */
/* Slide 1 : bleu (identique au hero actuel, défini déjà dans .hero par défaut) */
.hero-slide--repair {
  /* Le fond blueprint bleu est hérité de la règle .hero de base */
}

/* Slide 2 : blueprint vert sombre */
.hero-slide--recond {
  background:
    linear-gradient(rgba(185,224,144,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,224,144,0.06) 1px, transparent 1px),
    linear-gradient(rgba(185,224,144,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,224,144,0.12) 1px, transparent 1px),
    radial-gradient(ellipse at 75% 40%, #1a3829 0%, #0a1a11 65%);
  background-size: 16px 16px, 16px 16px, 80px 80px, 80px 80px, 100% 100%;
  color: var(--cream);
}
.hero-slide--recond::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(111,168,68,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.hero-slide--recond .wrap { position: relative; z-index: 5; }
.hero-slide--recond h1 { color: var(--cream); }
.hero-slide--recond h1 em { color: #b9e090; font-style: italic; }
.hero-slide--recond .hero-sub { color: rgba(245,237,225,0.78); }

/* Slide 3 : blueprint jaune/ambre sombre */
.hero-slide--gaming {
  background:
    linear-gradient(rgba(251,191,36,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,0.06) 1px, transparent 1px),
    linear-gradient(rgba(251,191,36,0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,0.13) 1px, transparent 1px),
    radial-gradient(ellipse at 75% 40%, #3a2a10 0%, #1a120a 65%);
  background-size: 16px 16px, 16px 16px, 80px 80px, 80px 80px, 100% 100%;
  color: var(--cream);
}
.hero-slide--gaming::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(245,176,65,0.3) 0%, transparent 55%);
  pointer-events: none;
}
.hero-slide--gaming .wrap { position: relative; z-index: 5; }
.hero-slide--gaming h1 { color: var(--cream); }
.hero-slide--gaming h1 em { color: #fbbf24; font-style: italic; }
.hero-slide--gaming .hero-sub { color: rgba(245,237,225,0.78); }

/* Slide 4 : blueprint rouge sombre */
.hero-slide--web {
  background:
    linear-gradient(rgba(252,165,165,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,165,165,0.06) 1px, transparent 1px),
    linear-gradient(rgba(252,165,165,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,165,165,0.12) 1px, transparent 1px),
    radial-gradient(ellipse at 75% 40%, #3a1818 0%, #1a0a0a 65%);
  background-size: 16px 16px, 16px 16px, 80px 80px, 80px 80px, 100% 100%;
  color: var(--cream);
}
.hero-slide--web::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(225,29,72,0.28) 0%, transparent 55%);
  pointer-events: none;
}
.hero-slide--web .wrap { position: relative; z-index: 5; }
.hero-slide--web h1 { color: var(--cream); }
.hero-slide--web h1 em { color: #fca5a5; font-style: italic; }
.hero-slide--web .hero-sub { color: rgba(245,237,225,0.78); }

/* ===== TAGS colorés ===== */
.hero-tag--green {
  background: rgba(154,200,110,0.15) !important;
  color: #b9e090 !important;
  border-color: rgba(185,224,144,0.3) !important;
}
.hero-tag--green .dot { background: #6fa844 !important; }

.hero-tag--amber {
  background: rgba(251,191,36,0.15) !important;
  color: #fcd34d !important;
  border-color: rgba(251,191,36,0.3) !important;
}
.hero-tag--amber .dot { background: #f5b041 !important; }

.hero-tag--red {
  background: rgba(225,29,72,0.15) !important;
  color: #fca5a5 !important;
  border-color: rgba(252,165,165,0.3) !important;
}
.hero-tag--red .dot { background: #e11d48 !important; }

/* ===== BOUTONS colorés ===== */
.btn-green { background: #6fa844 !important; }
.btn-green:hover { background: #5a8a36 !important; }
.btn-amber { background: #f5b041 !important; color: var(--granite) !important; }
.btn-amber:hover { background: #fbbf24 !important; color: var(--granite) !important; }
.btn-red { background: #e11d48 !important; }
.btn-red:hover { background: #be123c !important; }

/* Pour tous les slides sombres : ghost button en couleurs cream */
.hero-slide--recond .btn-ghost,
.hero-slide--gaming .btn-ghost,
.hero-slide--web .btn-ghost {
  color: var(--cream) !important;
  border-color: rgba(245,237,225,0.4) !important;
}
.hero-slide--recond .btn-ghost:hover,
.hero-slide--gaming .btn-ghost:hover,
.hero-slide--web .btn-ghost:hover {
  background: var(--cream) !important; color: var(--granite) !important; border-color: var(--cream) !important;
}

/* ===== VISUELS (illustrations SVG + étiquette prix) ===== */
.hero-laptop,
.hero-gaming-tower,
.hero-browser {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

.hero-price-tag {
  position: absolute;
  bottom: -10px;
  right: 0;
  background: var(--cream);
  color: var(--granite);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
  text-align: center;
  min-width: 140px;
  z-index: 10;
}
.hero-price-tag-from {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--granite-2); margin-bottom: 0.1rem;
}
.hero-price-tag-amount {
  font-family: var(--serif); font-weight: 800;
  font-size: 2.75rem; line-height: 1; letter-spacing: -0.03em;
  color: var(--granite);
}
.hero-price-tag-amount span { margin-left: 0.05em; }
.hero-price-tag-warranty {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.05em; font-weight: 600;
  margin-top: 0.5rem; padding-top: 0.5rem;
  border-top: 1px dashed var(--line);
}
.hero-price-tag--green .hero-price-tag-amount span { color: #6fa844; }
.hero-price-tag--green .hero-price-tag-warranty { color: #4a7a2c; }
.hero-price-tag--amber .hero-price-tag-amount span { color: #d97706; }
.hero-price-tag--amber .hero-price-tag-warranty { color: #b45309; }
.hero-price-tag--red .hero-price-tag-amount span { color: #e11d48; }
.hero-price-tag--red .hero-price-tag-warranty { color: #9f1239; }

/* ===== PAGINATION ===== */
.hero-pagination {
  position: absolute; bottom: 0.85rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.55rem;
  z-index: 20;
}
.hero-dot {
  display: block; width: 42px; height: 5px;
  background: rgba(245,237,225,0.25);
  border-radius: 3px; cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.hero-dot span {
  display: block; position: absolute;
  top: 0; left: 0; height: 100%; width: 0;
  border-radius: 3px;
  transition: width 0.3s ease;
  background: var(--cream);
}
/* Dot actif : barre se remplit */
#slide-1:checked ~ .hero-pagination .hero-dot[data-slide="1"] span,
#slide-2:checked ~ .hero-pagination .hero-dot[data-slide="2"] span,
#slide-3:checked ~ .hero-pagination .hero-dot[data-slide="3"] span,
#slide-4:checked ~ .hero-pagination .hero-dot[data-slide="4"] span {
  width: 100%;
}
/* Couleurs de la barre active selon le slide */
#slide-1:checked ~ .hero-pagination .hero-dot[data-slide="1"] span { background: #0757a0; }
#slide-2:checked ~ .hero-pagination .hero-dot[data-slide="2"] span { background: #6fa844; }
#slide-3:checked ~ .hero-pagination .hero-dot[data-slide="3"] span { background: #f5b041; }
#slide-4:checked ~ .hero-pagination .hero-dot[data-slide="4"] span { background: #e11d48; }
/* Sur slide 1 (fond clair), les dots de fond sont plus sombres */
#slide-1:checked ~ .hero-pagination .hero-dot { background: rgba(26,29,33,0.18); }

/* ===== FLÈCHES ===== */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--granite);
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.35);
  z-index: 15;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}
.hero-arrow:hover { background: var(--granite); color: var(--cream); transform: translateY(-50%) scale(1.08); }
.hero-arrow svg { width: 18px; height: 18px; }
.hero-arrow--prev { left: 1.25rem; }
.hero-arrow--next { right: 1.25rem; }

/* Afficher les bonnes flèches selon la slide active */
#slide-1:checked ~ .hero-arrow--from-1 { opacity: 1; pointer-events: auto; }
#slide-2:checked ~ .hero-arrow--from-2 { opacity: 1; pointer-events: auto; }
#slide-3:checked ~ .hero-arrow--from-3 { opacity: 1; pointer-events: auto; }
#slide-4:checked ~ .hero-arrow--from-4 { opacity: 1; pointer-events: auto; }

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 700px) {
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow svg { width: 15px; height: 15px; }
  .hero-arrow--prev { left: 0.5rem; }
  .hero-arrow--next { right: 0.5rem; }
  .hero-pagination { bottom: 1rem; gap: 0.4rem; }
  .hero-dot { width: 28px; height: 3px; }
  .hero-price-tag {
    position: relative; bottom: auto; right: auto;
    transform: rotate(0);
    margin: -1rem auto 0;
    max-width: 180px;
  }
  .hero-laptop, .hero-gaming-tower, .hero-browser {
    max-width: 320px;
  }
}
