/* Fox Clean Auto — noir & orange */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-deep: #070604;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --text-muted: #a1a1aa;
  --accent: #f97316;
  --accent-bright: #fb923c;
  --accent-dim: #c2410c;
  --on-accent: #140b08;
  --border: rgba(255, 255, 255, 0.12);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.splash-active {
  overflow: hidden;
}

/* Écran d’accueil — texture photo plein cadre */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  --splash-fg: var(--text);
  --splash-fg-soft: rgba(245, 245, 245, 0.82);
  color: var(--splash-fg);
  background-color: #030303;
  background-image:
    radial-gradient(ellipse 85% 65% at 50% 38%, rgba(38, 38, 38, 0.65) 0%, transparent 62%),
    url("splash-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.splash--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__inner {
  position: relative;
  z-index: 1;
  width: min(520px, 94vw);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}



  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  background: linear-gradient(
    96deg,
    #9a3412 0%,
    #ea580c 14%,
    #fb923c 28%,
    #fff7ed 40%,
    #ffedd5 50%,
    #fb923c 62%,
    #f97316 76%,
    #fed7aa 88%,
    #c2410c 100%
  );
  background-size: 320% 140%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation:
    splash-welcome-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both,
    splash-welcome-shimmer 8s ease-in-out infinite alternate,
    splash-welcome-atmosphere 5.5s ease-in-out infinite;
}

.splash__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  font-family: var(--font-display);
}

.splash__logo-text {
  margin: 0;
  font-size: clamp(1.95rem, 7vw, 2.95rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.22;
  color: var(--splash-fg);
  animation: splash-title-in 1.18s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.splash .splash__logo-part {
  color: var(--splash-fg);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.75),
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(0, 0, 0, 0.35);
}

.splash .splash__logo-part.brand-wordmark__suffix {
  color: var(--splash-fg-soft);
}

.splash__logo-part {
  animation: splash-wort-glow 3.8s ease-in-out infinite;
}

.splash__logo-text .brand-wordmark__suffix.splash__logo-part {
  animation-delay: -1.45s;
}

.brand-wordmark__accent--splash {
  background: linear-gradient(
    108deg,
    #ffedd5 0%,
    var(--accent-bright) 22%,
    var(--accent) 40%,
    #fde047 54%,
    var(--accent) 72%,
    var(--accent-dim) 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    splash-accent-flow 5.5s ease-in-out infinite,
    splash-accent-luminous 3.6s ease-in-out infinite;
}

@keyframes splash-welcome-shimmer {
  0% {
    background-position: 18% 50%;
  }
  100% {
    background-position: 82% 50%;
  }
}

@keyframes splash-welcome-atmosphere {
  0%,
  100% {
    filter:
      drop-shadow(0 1px 1px rgba(0, 0, 0, 0.95))
      drop-shadow(0 4px 14px rgba(0, 0, 0, 0.75))
      drop-shadow(0 12px 40px rgba(0, 0, 0, 0.42))
      drop-shadow(0 0 36px rgba(251, 146, 60, 0.35))
      drop-shadow(0 0 72px rgba(249, 115, 22, 0.22));
  }
  50% {
    filter:
      drop-shadow(0 3px 4px rgba(0, 0, 0, 1))
      drop-shadow(0 8px 24px rgba(0, 0, 0, 0.82))
      drop-shadow(0 18px 54px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 52px rgba(253, 186, 116, 0.42))
      drop-shadow(0 0 100px rgba(234, 88, 12, 0.32));
  }
}

@keyframes splash-welcome-in {
  from {
    opacity: 0;
    transform: translateY(-26px) scale(0.94);
    letter-spacing: 0.38em;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 0.2em;
  }
}

@keyframes splash-title-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  58% {
    opacity: 1;
    transform: translateY(-7px) scale(1.045);
  }
  82% {
    transform: translateY(2px) scale(0.995);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splash-accent-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes splash-wort-glow {
  0%,
  100% {
    opacity: 0.94;
    text-shadow:
      0 1px 0 rgba(0, 0, 0, 0.75),
      0 3px 10px rgba(0, 0, 0, 0.88),
      0 10px 32px rgba(0, 0, 0, 0.5),
      0 0 2px rgba(255, 255, 255, 0.04);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 1px 0 rgba(0, 0, 0, 0.8),
      0 5px 16px rgba(0, 0, 0, 0.92),
      0 14px 44px rgba(0, 0, 0, 0.58),
      0 0 24px rgba(249, 115, 22, 0.12),
      0 0 1px rgba(255, 248, 240, 0.14);
  }
}

@keyframes splash-accent-luminous {
  0%,
  100% {
    filter:
      brightness(1)
      saturate(1.06)
      drop-shadow(0 2px 3px rgba(0, 0, 0, 0.95))
      drop-shadow(0 5px 16px rgba(0, 0, 0, 0.75))
      drop-shadow(0 0 26px rgba(249, 115, 22, 0.32));
  }
  50% {
    filter:
      brightness(1.15)
      saturate(1.22)
      drop-shadow(0 4px 6px rgba(0, 0, 0, 1))
      drop-shadow(0 10px 28px rgba(0, 0, 0, 0.82))
      drop-shadow(0 0 40px rgba(251, 146, 60, 0.45));
  }
}

.splash__progress {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  animation: splash-progress-wrap 1s cubic-bezier(0.22, 0.9, 0.32, 1) 0.55s both;
}

@keyframes splash-progress-wrap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash__track {
  height: 12px;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.55);
}

.splash__bar.splash__bar--fill {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  background: linear-gradient(
    90deg,
    #ffb04a 0%,
    var(--accent-bright) 22%,
    var(--accent) 55%,
    var(--accent-dim) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 20px rgba(249, 115, 22, 0.45);
}

.splash__pct {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.12em;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: inherit;
  text-align: center;
  text-shadow: none;
  line-height: 1;
  animation: splash-pct-breathe 2.75s ease-in-out infinite;
}

.splash__pct-digits {
  font-family: var(--font-body);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-weight: 800;
  font-size: clamp(2.85rem, 11vw, 4.1rem);
  letter-spacing: 0.12em;
  min-width: 3.65ch;
  text-align: right;
  color: var(--accent-bright);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(249, 115, 22, 0.55),
    0 0 80px rgba(249, 115, 22, 0.15);
  animation: splash-pct-digits-wave 3s ease-in-out infinite;
}

.splash__pct-unit {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 4.8vw, 1.85rem);
  letter-spacing: 0.02em;
  color: rgba(253, 186, 116, 0.95);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.88),
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(249, 115, 22, 0.2);
  transform: translateY(-0.35em);
  padding-left: 0.02em;
  animation: splash-pct-unit-pulse 3s ease-in-out infinite;
  animation-delay: -1.35s;
}

@keyframes splash-pct-breathe {
  0%,
  100% {
    letter-spacing: 0;
  }
  50% {
    letter-spacing: 0.02em;
  }
}

@keyframes splash-pct-digits-wave {
  0%,
  100% {
    filter: brightness(1);
    transform: translateY(0);
  }
  50% {
    filter: brightness(1.12);
    transform: translateY(-1px);
  }
}

@keyframes splash-pct-unit-pulse {
  0%,
  100% {
    opacity: 0.9;
    color: rgba(253, 186, 116, 0.92);
  }
  50% {
    opacity: 1;
    color: rgba(254, 215, 170, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash {
    transition-duration: 0.2s;
  }

  .splash__welcome,
  .splash__logo-text,
  .splash__logo-part,
  .splash__progress,
  .splash__pct,
  .splash__pct-digits,
  .splash__pct-unit {
    animation: none !important;
    letter-spacing: inherit;
  }

  .splash__pct-digits,
  .splash__logo-text {
    filter: none !important;
  }

  .splash__welcome {
    background: none;
    color: #fdba74;
    -webkit-text-fill-color: currentColor;
    letter-spacing: 0.2em;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) drop-shadow(0 8px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 36px rgba(249, 115, 22, 0.38)) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  }

  .brand-wordmark__accent--splash {
    animation: none !important;
    background: none !important;
    color: var(--accent);
    -webkit-text-fill-color: currentColor;
    filter: none !important;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.95),
      0 6px 22px rgba(0, 0, 0, 0.6),
      0 0 28px rgba(249, 115, 22, 0.35);
  }

  .splash__welcome,
  .splash__logo-text,
  .splash__progress {
    opacity: 1;
    transform: none;
  }

  .splash__pct-digits {
    transform: none;
  }

  .splash__pct-unit {
    transform: translateY(-0.35em);
  }
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-wordmark__accent {
  color: var(--accent);
}

.brand-wordmark__suffix {
  font-weight: 600;
  color: rgba(245, 245, 245, 0.85);
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.15s ease;
}

a:hover {
  opacity: 0.85;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__inner--centered {
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.75rem;
}

.header__inner--centered .nav {
  margin-left: 0;
}

.header__inner--brand {
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.header__inner--brand .logo {
  text-decoration: none;
  color: inherit;
}

.header__inner--brand .nav {
  margin-left: auto;
}

@media (max-width: 640px) {
  .header__inner--brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header__inner--brand .nav {
    margin-left: 0;
  }
}

.nav--main .nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav--main .nav__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.85vw, 0.8125rem);
  font-weight: 600;
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(212, 212, 216, 0.92);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    letter-spacing 0.28s ease;
}

.nav--main .nav__link:hover {
  color: var(--accent-bright);
  letter-spacing: 0.1em;
  opacity: 1;
}

.nav--main .nav__link[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
  border-bottom-color: var(--accent);
  letter-spacing: 0.09em;
}

.page-anchor {
  min-height: 1px;
  scroll-margin-top: 5.5rem;
}

main#accueil {
  scroll-margin-top: 5.5rem;
}

main#prestations {
  scroll-margin-top: 5.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
}

.logo:hover {
  opacity: 1;
}

.logo:hover .brand-wordmark__accent {
  color: var(--accent-bright);
}

.logo__wordmark {
  display: block;
  height: clamp(3.6rem, 9vw, 4.85rem);
  width: auto;
  max-width: min(72vw, 21rem);
  object-fit: contain;
  background: transparent;
}

.logo__img {
  display: block;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: transparent;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent-bright);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
}

.menu-toggle::before {
  content: "☰";
  font-size: 1.25rem;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 45%, var(--accent-dim) 100%);
  color: var(--on-accent);
  box-shadow: 0 14px 40px rgba(234, 88, 12, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(249, 115, 22, 0.55);
  color: var(--accent-bright);
}

.btn--full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 80%;
  background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(249, 115, 22, 0.2), transparent 55%);
  pointer-events: none;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 237, 213, 0.96);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.42);
  border-radius: 999px;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__accent {
  background: linear-gradient(92deg, #fdba74 0%, var(--accent) 42%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero__stats strong {
  color: var(--text);
}

.hero__visual {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 380px;
}

.hero__card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-card-strong), var(--bg-card));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(251, 146, 60, 0.95);
  font-weight: 600;
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.hero__card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.hero__card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Page d’accueil */
.home-hero {
  grid-template-columns: 1fr;
}

.home-hero .hero__intro {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .header__inner {
  max-width: min(1380px, 100%);
  padding-left: clamp(1.25rem, 4vw, 2.75rem);
  padding-right: clamp(1.25rem, 4vw, 2.75rem);
}

.home-main {
  padding-top: 0;
}

.hero__lead strong {
  color: rgba(245, 245, 245, 0.95);
  font-weight: 600;
}

#parcours,
#entreprise,
#formules-apercu,
#localisation {
  scroll-margin-top: 5.5rem;
}

.home-about {
  max-width: 42rem;
  margin: 0 auto;
}

.home-main--airy .home-about {
  max-width: min(52rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.home-about__text {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-about__text:last-child {
  margin-bottom: 0;
}

.home-about__text a {
  font-weight: 600;
}

.home-formules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.home-formule {
  position: relative;
  padding: 1.5rem 1.6rem;
  padding-top: 1.65rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.home-formule--featured {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.12), var(--bg-card));
  border-color: rgba(249, 115, 22, 0.42);
}

.home-formule__tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dim));
  color: var(--on-accent);
  border-radius: 6px;
}

.home-formule__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-bright);
}

.home-formule__time {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(251, 146, 60, 0.9);
}

.home-formule__desc {
  margin: 0 0 1rem;
  flex: 1 1 auto;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.53;
}

.home-formule__price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-bright);
}

.home-formule--featured .home-formule__name {
  padding-right: 5rem;
}

.home-formule--featured .home-formule__price {
  color: #fdba74;
}

.home-formules__cta-wrap {
  margin-top: 2rem;
  text-align: center;
}

.home-loc {
  display: grid;
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 2rem;
  align-items: stretch;
}

.home-loc__info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.home-loc__address {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}

.home-loc__address strong {
  color: var(--text);
}

.home-loc__radius {
  margin: 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(249, 115, 22, 0.28);
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.home-loc__radius-badge {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.32rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.home-loc__maplink {
  margin: 0;
  font-size: 0.9rem;
}

.home-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.home-map {
  width: 100%;
  height: 380px;
  min-height: 280px;
  background: #1a1816;
}

.faq-page-main {
  scroll-margin-top: 5.5rem;
}

.page-faq {
  background: var(--bg-deep);
}

.faq-section {
  position: relative;
}

.faq-section__bg {
  display: none;
}

.faq-section__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-section__head {
  margin-bottom: clamp(1.85rem, 4vw, 2.65rem);
}

.faq-section__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 146, 60, 0.95);
}

.faq-section__title {
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.faq-title-accent {
  color: var(--accent-bright);
}

.faq-section__subtitle {
  max-width: 38rem;
  font-size: 1.045rem;
  line-height: 1.72;
}

.faq-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.35rem);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: rgba(249, 115, 22, 0.08);
}

.faq-intro-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(254, 252, 250, 0.98);
  background: var(--accent);
}

.faq-intro-card__text {
  margin: 0;
  font-size: 0.965rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.faq-intro-card__text strong {
  color: rgba(250, 250, 249, 0.92);
}

.faq-intro-card__text a {
  font-weight: 600;
  color: var(--accent-bright);
}

.faq-intro-card__text a:hover {
  color: #fdba74;
}

.faq-panel {
  padding: clamp(0.85rem, 2.5vw, 1.15rem);
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: faq-num;
}

.faq-item {
  position: relative;
  counter-increment: faq-num;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.faq-item[open] {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.07);
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
  opacity: 0;
}

.faq-item[open]::before {
  opacity: 1;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.95rem;
  padding: 1.08rem 1.2rem 1.08rem 1.05rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--text);
  list-style: none;
}

.faq-item summary::before {
  content: counter(faq-num, decimal-leading-zero);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.4rem;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(251, 191, 36, 0.98);
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.38);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.52rem;
  height: 0.52rem;
  margin-left: auto;
  border-right: 2px solid var(--accent-bright);
  border-bottom: 2px solid var(--accent-bright);
  transform: rotate(45deg);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.35rem;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.45);
  outline-offset: 2px;
  border-radius: calc(var(--radius-lg) - 4px);
}

.faq-item__answer {
  padding: 0 1.35rem 1.25rem 4.08rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item__answer p {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-muted);
}

.faq-item__answer p:first-child {
  margin-top: 0.8rem;
}

.faq-item__answer a {
  font-weight: 600;
  color: var(--accent-bright);
}

.faq-item__answer a:hover {
  color: #fdba74;
}

.faq-foot {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  padding: clamp(1.65rem, 4vw, 2.25rem) 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(249, 115, 22, 0.07);
}

.faq-foot__text {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(250, 250, 249, 0.94);
}

.faq-foot__btn {
  min-width: min(100%, 16rem);
}

@media (max-width: 520px) {
  .faq-item summary {
    align-items: flex-start;
    padding: 1rem 0.95rem;
    gap: 0.65rem;
  }

  .faq-item summary::before {
    min-width: 1.75rem;
    height: 1.75rem;
    font-size: 0.68rem;
  }

  .faq-item__answer {
    padding-left: 1.15rem;
  }

  .faq-intro-card {
    flex-direction: column;
    gap: 0.85rem;
  }
}

.contact-page-main {
  scroll-margin-top: 5.5rem;
}

.service-scope-notice {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.07);
  font-size: 0.92rem;
  line-height: 1.52;
  color: var(--text-muted);
}

.service-scope-notice strong {
  color: rgba(245, 245, 245, 0.94);
  font-weight: 600;
}

.service-scope-notice--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 42rem;
}

.contact-scope-notice {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
}

.home-hero .service-scope-notice {
  max-width: 32rem;
}

.welcome-honesty {
  margin: 0 0 1.35rem;
  max-width: 32rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(253, 230, 138, 0.28);
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.welcome-honesty__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 230, 138, 0.98);
}

.welcome-honesty__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.welcome-honesty__text strong {
  color: rgba(245, 245, 245, 0.95);
  font-weight: 600;
}

.welcome-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.welcome-pillar {
  padding: 1.5rem 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.welcome-pillar--accent {
  background: linear-gradient(150deg, rgba(249, 115, 22, 0.12), var(--bg-card));
  border-color: rgba(249, 115, 22, 0.38);
}

.welcome-pillar__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
}

.welcome-pillar__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.welcome-pillar--accent .welcome-pillar__title {
  color: rgba(255, 237, 213, 0.98);
}

/* Page d’accueil — mise en page plus aérée */
.home-main--airy {
  position: relative;
  background:
    radial-gradient(ellipse 120% 80% at 50% -15%, rgba(249, 115, 22, 0.09), transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 35%, rgba(251, 191, 36, 0.05), transparent 45%),
    var(--bg-deep);
}

.home-main--airy .home-hero {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 3.25rem) clamp(4.5rem, 9vw, 6.75rem);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: flex-start;
}

.home-main--airy .home-hero .hero__intro {
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: min(1380px, 100%);
  margin-inline: auto;
}

.home-main--airy .home-hero .hero__bg {
  inset: -45% -25% auto -25%;
  height: 115%;
  background:
    radial-gradient(ellipse 50% 42% at 92% 18%, rgba(251, 191, 36, 0.07), transparent 58%),
    radial-gradient(ellipse 72% 58% at 48% -8%, rgba(249, 115, 22, 0.16), transparent 56%);
  opacity: 1;
}

.home-main--airy .hero__badge {
  margin-bottom: 1.5rem;
  padding: 0.42rem 1rem;
}

.home-main--airy .hero__title {
  margin-bottom: clamp(1.15rem, 3vw, 1.65rem);
  line-height: 1.06;
}

.home-main--airy .hero__lead {
  max-width: min(48rem, 100%);
  width: 100%;
  font-size: 1.08rem;
  line-height: 1.76;
  margin-bottom: 1.05rem;
  margin-inline: auto;
}

.home-main--airy .hero__lead--continue {
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  opacity: 0.96;
}

.home-main--airy .welcome-honesty {
  max-width: min(48rem, 100%);
  width: 100%;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  margin-inline: auto;
  padding: clamp(1.35rem, 3.5vw, 1.75rem) clamp(1.35rem, 3vw, 1.65rem);
  text-align: left;
}

.home-main--airy .welcome-honesty__text {
  font-size: 0.96rem;
  line-height: 1.72;
}

.home-main--airy .home-hero .service-scope-notice {
  max-width: min(48rem, 100%);
  width: 100%;
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
  margin-inline: auto;
  padding: 1.05rem 1.35rem;
  line-height: 1.58;
  text-align: left;
}

.home-main--airy .hero__actions {
  margin-top: 0.25rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  gap: 0.85rem 1rem;
  justify-content: center;
  width: 100%;
}

.home-main--airy .hero__stats {
  gap: 0.65rem 0.85rem;
  justify-content: center;
  width: 100%;
}

.home-main--airy .hero__stats li {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.45;
}

.home-main--airy .section {
  padding: clamp(4rem, 9vw, 6.25rem) clamp(1.5rem, 4vw, 2.75rem);
}

.home-main--airy .section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, transparent 42%, rgba(255, 255, 255, 0.012) 100%);
  border-color: rgba(255, 255, 255, 0.07);
}

.home-main--airy .section__inner {
  max-width: min(1380px, 100%);
  width: 100%;
}

.home-main--airy .section__head {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.home-main--airy .section__title {
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}

.home-main--airy .section__subtitle {
  max-width: min(44rem, 100%);
  line-height: 1.72;
  font-size: 1.07rem;
}

.home-main--airy .welcome-pillars {
  gap: clamp(1.25rem, 3vw, 2rem);
}

.home-main--airy .welcome-pillar {
  padding: clamp(1.65rem, 4vw, 2.1rem) clamp(1.45rem, 3.5vw, 1.85rem);
  border-radius: calc(var(--radius-lg) + 2px);
}

.home-main--airy .welcome-pillar__text {
  line-height: 1.72;
}

.home-main--airy .home-about__text {
  font-size: 1.045rem;
  line-height: 1.76;
  margin-bottom: 1.45rem;
}

.home-main--airy .home-formules {
  gap: clamp(1.35rem, 3vw, 1.9rem);
}

.home-main--airy .home-formule {
  padding: clamp(1.65rem, 4vw, 2rem) clamp(1.55rem, 3.5vw, 1.9rem);
}

.home-main--airy .home-formules__cta-wrap {
  margin-top: clamp(2.25rem, 5vw, 3rem);
}

.home-main--airy .home-loc {
  gap: clamp(2rem, 4vw, 3rem);
}



.nos-prestations-main {
  scroll-margin-top: 5.5rem;
}

.preset-gallery {
  max-width: 52rem;
  margin: 0 auto;
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(249, 115, 22, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), var(--bg-card));
}

.preset-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: clamp(2.5rem, 8vw, 4rem) 1.5rem;
  text-align: center;
}

.preset-gallery__placeholder-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(251, 146, 60, 0.98);
}

.preset-gallery__placeholder-text {
  margin: 0;
  max-width: 28rem;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.preset-gallery__after {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.preset-gallery__after a {
  font-weight: 600;
}

.leaflet-container {
  font-family: var(--font-body);
  background: #1c1917;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__head {
  text-align: center;
  margin-bottom: 2.75rem;
}



  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-section {
  scroll-margin-top: 5.5rem;
}

.contact-section__inner {
  max-width: 40rem;
}

.contact-intro {
  margin: 0 auto;
  max-width: 38rem;
  text-align: left;
}

.contact-intro > p {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-intro > p strong {
  color: rgba(245, 245, 245, 0.95);
  font-weight: 600;
}

.contact-intro__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-intro__list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-intro__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-intro__link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-bright);
  text-decoration: none;
  word-break: break-all;
}

.contact-intro__link:hover {
  color: var(--accent);
  text-decoration: underline;
  opacity: 1;
}

.section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.card__desc {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card__price {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.card__list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.card__list li {
  margin-bottom: 0.45rem;
}

.card__list li:last-child {
  margin-bottom: 0;
}

.card__strong {
  color: var(--text);
  font-weight: 600;
}

.prestations__note {
  margin: 2rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Page prestations — en-tête & cartes */
.section--prestations {
  position: relative;
  overflow: hidden;
}

.prestations-page-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(249, 115, 22, 0.16), transparent 52%),
    radial-gradient(ellipse 60% 40% at 100% 40%, rgba(234, 88, 12, 0.08), transparent 45%),
    radial-gradient(ellipse 50% 35% at 0% 60%, rgba(251, 146, 60, 0.06), transparent 40%);
}

.section__inner--prestations {
  position: relative;
  z-index: 1;
}

.prestations-intro {
  margin-bottom: 3rem;
}

.prestations-intro__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.prestations-intro__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 24px rgba(249, 115, 22, 0.35));
}

.prestations-intro__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 146, 60, 0.95);
}

.prestations-intro__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.prestations-intro__title-accent {
  background: linear-gradient(92deg, #fdba74 0%, var(--accent) 45%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.prestations-intro__lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.cards--prestations {
  gap: 1.5rem;
}

.prestations-main .cards--prestations .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .prestations-main .cards--prestations .card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow:
      0 22px 56px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(249, 115, 22, 0.12);
  }

  .prestations-main .cards--prestations .card--featured:hover {
    border-color: rgba(249, 115, 22, 0.55);
  }
}

.prestations-main .card__tier-label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.prestations-main .card--tier-eco .card__tier-label {
  color: rgba(161, 161, 170, 0.95);
}

.prestations-main .card--tier-premium .card__tier-label {
  background: linear-gradient(90deg, #fdba74, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.prestations-main .card.card--featured .card__tier-label {
  padding-right: 5.5rem;
}

.prestations-main .card__title {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 700;
  line-height: 1.28;
}

.prestations-main .card__desc {
  margin-bottom: 1.1rem;
}

.prestations-main .card__list {
  flex: 1;
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.prestations-main .card__list li {
  position: relative;
  margin-bottom: 0.55rem;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.prestations-main .card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dim));
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.35);
}

.prestations-main .card__price-row {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.prestations-main .card__price-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prestations-main .card__price-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-bright);
  line-height: 1;
}

.prestations-main .card--featured .card__price-value {
  color: #fdba74;
}

.prestations-extras {
  margin-top: 2.75rem;
  padding: 1.85rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), var(--bg-card));
  border: 1px solid var(--border);
  scroll-margin-top: 5.5rem;
}

.prestations-extras__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.4vw, 1.48rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.prestations-extras__lead {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.prestations-extras__lead strong {
  color: rgba(245, 245, 245, 0.93);
  font-weight: 600;
}

.prestations-extras__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.prestations-extras__list > li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
}

.prestations-extras__item-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.prestations-extras__item-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.prestations-extras__foot {
  margin: 1.4rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.prestations-extras__foot strong {
  color: var(--accent-bright);
  font-weight: 600;
}

.prestations-cta {
  margin-top: 3rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.1), var(--bg-card));
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow: var(--shadow);
}

.prestations-cta__text {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  margin-inline: auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .prestations-main .cards--prestations .card {
    transition: none;
  }

  .prestations-main .cards--prestations .card:hover {
    transform: none;
  }
}

.card--featured {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.12), var(--bg-card));
  border-color: rgba(249, 115, 22, 0.42);
}

.card__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dim));
  color: var(--on-accent);
  border-radius: 6px;
}

/* Features & quote */
.features {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.features li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.features__icon {
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 700;
}

.quote {
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-style: normal;
}

.quote p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
}

.quote footer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA */
.section--cta {
  padding-bottom: 5rem;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.cta__text p {
  margin: 0;
  color: var(--text-muted);
  max-width: 28rem;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cta__form input:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.cta__form textarea {
  resize: vertical;
  min-height: 120px;
}

.cta__note {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

button.btn {
  border: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.footer__logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer__tagline {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__meta a {
  color: var(--text-muted);
}

.footer__meta a:hover {
  color: var(--accent-bright);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .home-hero .hero__intro {
    grid-column: 1;
    grid-row: auto;
  }

  .home-formules {
    grid-template-columns: 1fr;
  }

  .welcome-pillars {
    grid-template-columns: 1fr;
  }

  .home-loc {
    grid-template-columns: 1fr;
  }

  .home-map {
    height: 300px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section__split {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header .btn--small {
    display: none;
  }

  .header__inner--centered .nav--main {
    display: block;
  }

  .header__inner--centered .nav--main .nav__list {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .header__inner:not(.header__inner--centered) .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav--open {
    display: flex;
  }

  .header__inner:not(.header__inner--centered) .nav {
    margin-left: 0;
  }
}

/* Transition entre pages — fondu uniquement (sans halo orange) */
.page-flash {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 6, 5, 0.96);
  backdrop-filter: blur(12px);
}

.page-flash--visible {
  display: flex;
}

.page-flash__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  max-width: min(94vw, 28rem);
  opacity: 0;
}

.page-flash--leave .page-flash__inner {
  animation: page-flash-fade-in 0.68s ease forwards;
}

@keyframes page-flash-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.page-flash__status {
  margin: 0;
  width: 100%;
  min-height: 1.1em;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2.4vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-shadow: 0 0 24px rgba(249, 115, 22, 0.35);
}

.page-flash__brand {
  display: block;
  width: min(88vw, 26rem);
  height: auto;
  margin: 0;
  object-fit: contain;
  background: transparent;
  filter: none;
  transform: translateX(-2.65rem);
}

.page-flash__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  letter-spacing: 0;
  text-transform: none;
}

.page-flash__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  opacity: 0.45;
  animation: page-flash-dot-pulse 1.05s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.45);
}

.page-flash__dot:nth-child(2) {
  animation-delay: 0.18s;
}

.page-flash__dot:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes page-flash-dot-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-flash__inner {
    animation: none !important;
    opacity: 1 !important;
  }

  .page-flash__dot {
    animation: none !important;
    opacity: 0.65 !important;
    transform: none !important;
  }
}
