/* Fox Clean Auto — noir & orange */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-deep: #070604;
  --bg-elevated: #12100e;
  --bg-card: rgba(255, 255, 255, 0.045);
  --bg-card-strong: rgba(255, 255, 255, 0.075);
  --text: #f4f1ec;
  --text-muted: #a1a1aa;
  --accent: #f97316;
  --accent-bright: #fb923c;
  --accent-dim: #c2410c;
  --on-accent: #140b08;
  --border: rgba(255, 255, 255, 0.1);
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --font-body: var(--font-sans);
  --font-welcome: var(--font-display);
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  --header-h: 4rem;
  --promo-h: 0px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.015rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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(920px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.splash__welcome {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-welcome);
  font-optical-sizing: auto;
  text-transform: none;
  text-align: center;
  line-height: 1.08;
  color: #fff7ed;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  animation: splash-welcome-in 0.85s ease 0.06s both;
}

.splash__welcome-line {
  display: block;
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 247, 237, 0.88);
}

.splash__welcome-brand {
  display: block;
  font-size: clamp(2.4rem, 7.5vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff7ed;
}

.splash__brand,
.splash__logo-img {
  display: none;
}

.splash__loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  animation: splash-progress-wrap 0.9s ease 0.45s both;
}

.splash__logo-text {
  margin: 0;
  font-size: clamp(1.95rem, 7vw, 2.95rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.22;
  color: var(--splash-fg);
  animation: splash-title-in 0.85s ease 0.28s both;
}

.splash .splash__logo-part {
  color: var(--splash-fg);
  text-shadow: none;
}

.splash .splash__logo-part.brand-wordmark__suffix {
  color: var(--splash-fg-soft);
}

.splash__logo-part {
  animation: none;
}

.splash__logo-text .brand-wordmark__suffix.splash__logo-part {
  animation: none;
}

.brand-wordmark__accent--splash {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--accent-bright);
  animation: none;
  filter: none;
}

@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(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splash-title-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  opacity: 0.35;
  animation: page-flash-dot-pulse 1.05s ease-in-out infinite;
}

.splash__dot:nth-child(2) {
  animation-delay: 0.18s;
}

.splash__dot:nth-child(3) {
  animation-delay: 0.36s;
}

.splash__progress {
  display: none;
}

@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: none;
}

.splash__pct-digits {
  font-family: var(--font-body);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-weight: 700;
  font-size: clamp(2.6rem, 10vw, 3.6rem);
  letter-spacing: 0.06em;
  min-width: 3.65ch;
  text-align: right;
  color: var(--accent-bright);
  text-shadow: none;
  animation: none;
}

.splash__pct-unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 4.5vw, 1.7rem);
  letter-spacing: 0.02em;
  color: rgba(253, 186, 116, 0.95);
  text-shadow: none;
  transform: translateY(-0.35em);
  padding-left: 0.02em;
  animation: none;
}

@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__loader,
  .splash__dot {
    animation: none !important;
  }

  .splash__logo-text {
    filter: none !important;
  }

  .splash__welcome {
    background: none;
    color: #fff7ed;
    -webkit-text-fill-color: currentColor;
    letter-spacing: -0.02em;
    filter: none !important;
    text-shadow: none;
    opacity: 1;
    transform: none;
  }

  .splash__welcome-line,
  .splash__welcome-brand {
    color: inherit;
  }

  .brand-wordmark__accent--splash {
    animation: none !important;
    background: none !important;
    color: var(--accent-bright);
    -webkit-text-fill-color: currentColor;
    filter: none !important;
    text-shadow: none;
  }

  .splash__loader,
  .splash__logo-text {
    opacity: 1;
    transform: none;
  }

  .splash__dot {
    opacity: 0.65 !important;
    transform: none !important;
  }
}

.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;
}

/* Page flash retiré */
.page-flash {
  display: none !important;
  pointer-events: none !important;
}

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#formules,
#avantages,
#localisation,
#entreprise,
#fidelite,
#comment-ca-marche,
#avant-apres,
#accueil {
  scroll-margin-top: 5rem;
}

/* Bande promo défilante — retirée */
.promo-ticker,
.promo-ticker__track,
.promo-ticker__group,
.promo-ticker__item,
.promo-ticker__sep {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(7, 6, 4, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header--scrolled,
.compte-body .header {
  background: rgba(7, 6, 4, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow: visible;
}

.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: flex-start;
  flex-wrap: nowrap;
  row-gap: 0.75rem;
  position: relative;
  align-items: center;
}

.header-account {
  order: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.35rem 0.7rem;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 241, 236, 0.92);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  white-space: nowrap;
  max-width: 9rem;
}

.header-account svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.header-account:hover {
  border-color: rgba(249, 115, 22, 0.45);
  color: var(--accent-bright);
}

.header-account:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.55);
  outline-offset: 2px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.4rem;
  order: 3;
  flex-shrink: 0;
}

.header__inner--brand .logo {
  text-decoration: none;
  color: inherit;
  min-width: 0;
  order: 1;
  flex: 1 1 auto;
  max-width: calc(100% - 11.5rem);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.header__inner--brand .view-toggle {
  order: initial;
  margin-left: 0;
}

.header__inner--brand .nav-drawer-check {
  order: initial;
}

.header__inner--brand .nav-drawer-btn {
  order: initial;
  margin-left: 0;
}

.header__inner--brand .nav-drawer-backdrop {
  order: 5;
}

.header__inner--brand .nav--main {
  order: 6;
  margin-left: 0.75rem;
  margin-right: 0;
  position: relative;
  z-index: 2;
}

.header__cta {
  display: none;
  flex-shrink: 0;
  order: 7;
  margin-left: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.65rem 1.05rem;
}

@media (min-width: 921px) {
  .header__cta {
    display: inline-flex;
  }

  .header__inner--brand .logo {
    flex: 0 1 auto;
    max-width: none;
  }

  .header__inner--brand .nav--main {
    margin-left: auto;
  }

  .header-account {
    display: none;
  }

  .header__actions {
    margin-left: 0.5rem;
    order: 7;
  }

  .header__cta {
    order: 8;
  }
}

.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: 0.875rem;
  font-weight: 500;
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(212, 212, 216, 0.92);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.22s ease,
    border-color 0.22s ease;
}

.nav--main .nav__link:hover {
  color: var(--accent-bright);
  opacity: 1;
}

.nav--main .nav__link[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
  border-bottom-color: var(--accent);
}

.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);
  height: 2.75rem;
  overflow: visible;
}

.logo:hover {
  opacity: 1;
}

.logo:hover .brand-wordmark__accent {
  color: var(--accent-bright);
}

.logo__wordmark {
  display: block;
  height: clamp(2.35rem, 5.5vw, 3.1rem);
  width: auto;
  max-width: 100%;
  margin-block: -0.35rem;
  object-fit: contain;
  object-position: left center;
  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;
}

.nav-drawer-check {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.nav-drawer-btn {
  display: none;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(20, 16, 12, 0.98);
  color: #f5f5f5;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: rgba(249, 115, 22, 0.4);
  touch-action: manipulation;
  position: relative;
  z-index: 10060;
  appearance: none;
  -webkit-appearance: none;
}

.nav-drawer-btn__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #f5f5f5;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-drawer-check:checked + .nav-drawer-btn .nav-drawer-btn__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-drawer-check:checked + .nav-drawer-btn .nav-drawer-btn__line:nth-child(2) {
  opacity: 0;
}

.nav-drawer-check:checked + .nav-drawer-btn .nav-drawer-btn__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer-backdrop {
  display: none;
}

.nav-drawer__title,
.nav-drawer__hint {
  display: none;
}

.swipe-edge {
  display: none;
}

/* Pastille pour vérifier que la bonne version est en ligne */
.site-build {
  position: fixed;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 12000;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.92);
  color: #140b08;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  min-width: 44px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  z-index: 11;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.view-toggle:hover {
  color: var(--text);
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.08);
}

.view-toggle__icon {
  display: none !important;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.view-toggle.view-toggle--to-desktop .view-toggle__icon--desktop,
.view-toggle.view-toggle--to-mobile .view-toggle__icon--mobile {
  display: block !important;
}

.view-toggle__label {
  line-height: 1;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  opacity: 1;
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--accent-bright);
}

.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.3rem 0.7rem;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.95);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 6px;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero__accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--accent-bright);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
}

.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: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 6px;
}

.home-formule__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-bright);
}

.home-formule__time {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(251, 146, 60, 0.9);
}

.home-formule__promo {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-bright);
}

.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;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-bright);
}

.home-formule__price-old {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}

.home-formule__price-new {
  color: inherit;
}

.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 {
  position: relative;
  z-index: 0;
  isolation: isolate;
  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: #e8e4dc;
  z-index: 0;
}

.leaflet-container {
  font-family: var(--font-body);
  background: #e8e4dc;
  z-index: 0;
}

.faq-page-main {
  scroll-margin-top: 5.5rem;
}

.page-faq {
  background: var(--bg-deep);
}

.faq-section__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-section__head {
  margin-bottom: 1.75rem;
}

.faq-section__title {
  font-size: clamp(1.55rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-section__subtitle {
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent-bright);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.45);
  outline-offset: 2px;
}

.faq-item__answer {
  padding: 0 0 1rem;
}

.faq-item__answer p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq-item__answer a {
  font-weight: 600;
  color: var(--accent-bright);
}

.faq-item__answer a:hover {
  color: #fdba74;
}

.faq-foot {
  margin-top: 2rem;
  text-align: center;
}

.faq-foot__text {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.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);
}

/* Avantages & carte de fidélité */
.loyalty-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.loyalty-board__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.loyalty-board__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.loyalty-board__text {
  margin: 0 0 1.15rem;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.loyalty-board__text strong {
  color: rgba(250, 250, 249, 0.95);
  font-weight: 600;
}

.loyalty-board__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.loyalty-board__points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.loyalty-board__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--accent);
}

.loyalty-board__points strong {
  color: var(--text);
  font-weight: 600;
}

.loyalty-card {
  padding: 1.5rem 1.45rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(249, 115, 22, 0.35);
  background:
    linear-gradient(160deg, rgba(249, 115, 22, 0.16) 0%, rgba(255, 255, 255, 0.03) 55%),
    #12100e;
}

.loyalty-card__brand {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.loyalty-card__label {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(251, 146, 60, 0.9);
}

.loyalty-card__stamps {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.loyalty-card__stamp {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(245, 245, 245, 0.55);
  font-size: 0.95rem;
  font-weight: 700;
}

.loyalty-card__stamp--reward {
  border-style: solid;
  border-color: rgba(249, 115, 22, 0.65);
  background: rgba(249, 115, 22, 0.18);
  color: #fdba74;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.loyalty-card__note {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.avantage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
}

.avantage-list__item {
  display: grid;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avantage-list__item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.avantage-list__item span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 820px) {
  .loyalty-board {
    grid-template-columns: 1fr;
  }

  .loyalty-card {
    max-width: 22rem;
  }

  .avantage-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .avantage-list__item {
    padding: 1.1rem 0;
  }
}

.home-avantages__more {
  margin: 1.75rem 0 0;
  text-align: center;
}

.reservation-hint {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.reservation-hint a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 600;
}

.reservation-hint a:hover {
  text-decoration: underline;
}


.avantages-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2.25rem 0 0;
}

.referral-board {
  margin-top: 2.5rem;
}

.referral-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 11rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 115, 22, 0.35);
  background:
    linear-gradient(165deg, rgba(40, 28, 18, 0.9) 0%, rgba(12, 10, 8, 0.95) 100%);
  text-align: center;
}

.referral-highlight__amount {
  margin: 0;
  font-family: var(--font-welcome);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 600;
  color: var(--accent-bright);
  line-height: 1;
}

.referral-highlight__label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.loyalty-board__points a {
  color: var(--accent-bright);
  text-decoration: none;
}

.loyalty-board__points a:hover {
  text-decoration: underline;
}

/* Page d’accueil — mise en page aérée et sobre */
.home-main--airy {
  position: relative;
  background: var(--bg-deep);
}

.home-main--airy .home-hero {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.5rem, 5vw, 3.25rem) clamp(5rem, 10vw, 7.5rem);
  gap: 0;
  align-items: flex-start;
}

.home-main--airy .home-hero .hero__intro {
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: min(42rem, 100%);
  margin-inline: auto;
}

.home-main--airy .hero__brand {
  margin: 0 0 1rem;
  font-family: var(--font-welcome), var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--accent-bright);
}

.home-main--airy .hero__about {
  display: none;
}

.home-main--airy .hero__eyebrow {
  display: none;
}

.home-main--airy .hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-shadow: none;
}

.home-main--airy .hero__lead {
  max-width: 36rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

.home-main--airy .hero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.home-main--airy .welcome-honesty {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto 1.5rem;
  padding: 1.35rem 1.5rem;
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.home-main--airy .welcome-honesty__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.home-main--airy .welcome-honesty__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.home-main--airy .home-hero .service-scope-notice {
  max-width: 36rem;
  width: 100%;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  line-height: 1.6;
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.home-main--airy .hero__actions {
  margin: 0 0 2rem;
  gap: 0.85rem 1rem;
  justify-content: center;
  width: 100%;
}

.home-main--airy .hero__stats {
  gap: 1.5rem 2.25rem;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.home-main--airy .hero__stats li {
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  line-height: 1.45;
  color: var(--text-muted);
}

.home-main--airy .section {
  padding: clamp(4.5rem, 10vw, 7rem) clamp(1.5rem, 4vw, 2.75rem);
}

.home-main--airy .section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.home-main--airy .section__inner {
  max-width: min(1100px, 100%);
  width: 100%;
}

.home-main--airy .section__head {
  margin-bottom: clamp(2.75rem, 5vw, 3.75rem);
}

.home-main--airy .section__title {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.home-main--airy .section__subtitle {
  max-width: 34rem;
  margin-inline: auto;
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 1.02rem;
  font-weight: 400;
}

.home-main--airy .welcome-pillars {
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.home-main--airy .welcome-pillar {
  padding: clamp(1.75rem, 4vw, 2.15rem) clamp(1.45rem, 3.5vw, 1.85rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.home-main--airy .welcome-pillar--accent {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.28);
}

.home-main--airy .welcome-pillar--accent .welcome-pillar__title {
  color: var(--text);
}

.home-main--airy .welcome-pillar__title {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.home-main--airy .welcome-pillar__text {
  font-family: var(--font-body);
  line-height: 1.7;
}

.home-main--airy .home-about {
  max-width: min(40rem, 100%);
  margin-inline: auto;
  text-align: left;
}

.home-main--airy .home-about__text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
  text-align: left;
}

.home-main--airy .home-about__text--note {
  margin-top: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.home-loc__cta {
  margin: 1.25rem 0 0;
}

.home-main--airy .home-formules {
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.home-main--airy .home-formule {
  padding: clamp(1.65rem, 4vw, 2rem) clamp(1.45rem, 3.5vw, 1.75rem);
  border-radius: var(--radius);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-main--airy .home-formule--featured {
  background: rgba(249, 115, 22, 0.07);
  border-color: rgba(249, 115, 22, 0.3);
}

.home-main--airy .home-formule__name,
.home-main--airy .home-formule__time,
.home-main--airy .home-formule__desc,
.home-main--airy .home-formule__price {
  font-family: var(--font-body);
}

.home-main--airy .home-formule__name {
  font-weight: 700;
  color: var(--text);
}

.home-main--airy .home-formule__time {
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  color: var(--text-muted);
}

.home-main--airy .home-formule__price {
  font-weight: 700;
  color: var(--accent-bright);
}

.home-main--airy .home-formule__tag {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-main--airy .home-formules__cta-wrap {
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
}

.home-main--airy .home-loc {
  gap: clamp(2rem, 4vw, 3rem);
}

.home-main--airy .nav--main .nav__link {
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  font-size: 0.875rem;
}

.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: #e8e4dc;
  z-index: 0;
}

/* 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;
}

.section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.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-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Page prestations — en-tête & cartes */
.section--prestations {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.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;
  max-width: min(1100px, 100%);
}

.prestations-intro {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.prestations-intro__brand {
  display: block;
  margin: 0 0 0.75rem;
  font-family: var(--font-welcome), var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent-bright);
}

.prestations-intro__logo {
  display: none;
}

.prestations-intro__about {
  display: none;
}

.prestations-intro__eyebrow {
  display: none;
}

.prestations-intro__title {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  background: none;
  text-shadow: none;
}

.prestations-intro__lead {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.prestations-intro__offer {
  display: inline-block;
  margin: 0 auto;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 237, 213, 0.95);
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: 8px;
}

.formule-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
}

.formule-compare__col {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0.85rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.formule-compare__col--featured {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.08);
}

.formule-compare__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.formule-compare__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.formule-compare__prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
}

.formule-compare__old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.formule-compare__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-bright);
}

.prestations-main .card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.prestations-main .card__duration {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prestations-exterior-notice {
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  max-width: 38rem;
  padding: 1.1rem 1.35rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 237, 213, 0.96);
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-radius: var(--radius);
}

.prestations-exterior-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: #fdba74;
}

.prestations-scope {
  display: none;
}

.prestations-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 700px) {
  .formule-compare {
    grid-template-columns: 1fr;
  }
}

.prestations-intro .service-scope-notice {
  display: none;
}

.cards--prestations {
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.prestations-main .cards--prestations .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transition: none;
}

.prestations-main .cards--prestations .card--featured {
  background: rgba(249, 115, 22, 0.07);
  border-color: rgba(249, 115, 22, 0.3);
}

@media (prefers-reduced-motion: no-preference) {
  .prestations-main .cards--prestations .card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }

  .prestations-main .cards--prestations .card--featured:hover {
    border-color: rgba(249, 115, 22, 0.35);
  }
}

.prestations-main .card__tier-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.prestations-main .card--tier-eco .card__tier-label {
  color: rgba(161, 161, 170, 0.95);
}

.prestations-main .card--tier-premium .card__tier-label {
  color: var(--accent-bright);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.prestations-main .card.card--featured .card__tier-label {
  padding-right: 0;
}

.prestations-main .card__title {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.prestations-main .card__desc {
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.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.6rem;
  padding-left: 1.15rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
}

.prestations-main .card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: none;
}

.prestations-main .card__price-row {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.prestations-main .card__price-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prestations-main .card__price-values {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.prestations-main .card__price-old {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}

.prestations-main .card__price-value {
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-bright);
  line-height: 1;
}

.prestations-main .card--featured .card__price-value {
  color: var(--accent-bright);
}

.prestations-main .card__promo {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-bright);
}

.prestations-extras {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding: 0;
  border: none;
  background: transparent;
  scroll-margin-top: 5.5rem;
  box-shadow: none;
}

.prestations-extras__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.prestations-extras__lead {
  margin: 0 auto 1.35rem;
  max-width: 36rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.prestations-extras__lead strong {
  color: rgba(245, 245, 245, 0.93);
  font-weight: 600;
}

.prestations-extras__faq {
  max-width: 40rem;
  margin: 0 auto;
}

.prestations-extras__list,
.prestations-extras__list > li,
.prestations-extras__item-title,
.prestations-extras__item-desc,
.prestations-extras__foot {
  display: none;
}

.prestations-cta {
  margin-top: clamp(2.75rem, 5vw, 3.5rem);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.prestations-cta__text {
  margin: 0 auto 1.35rem;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.prestations-main .card__ribbon,
.prestations-main .card--featured .card__ribbon {
  background: var(--accent);
  box-shadow: none;
}

@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) {
  html:not(.view-desktop) .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  html:not(.view-desktop) .home-hero .hero__intro {
    grid-column: 1;
    grid-row: auto;
  }

  html:not(.view-desktop) .home-formules,
  html:not(.view-desktop) .welcome-pillars,
  html:not(.view-desktop) .cards {
    grid-template-columns: 1fr;
  }

  html:not(.view-desktop) .home-loc {
    grid-template-columns: 1fr;
  }

  html:not(.view-desktop) .home-map {
    height: 300px;
  }

  html:not(.view-desktop) .section__split,
  html:not(.view-desktop) .cta {
    grid-template-columns: 1fr;
  }
}

/* Mode mobile forcé (aussi sur grand écran) */
html.view-mobile .hero {
  grid-template-columns: 1fr;
  padding-top: 3rem;
}

html.view-mobile .home-formules,
html.view-mobile .welcome-pillars,
html.view-mobile .cards {
  grid-template-columns: 1fr;
}

html.view-mobile .home-loc {
  grid-template-columns: 1fr;
}

html.view-mobile .home-map {
  height: 300px;
}

html.view-mobile .section__split,
html.view-mobile .cta {
  grid-template-columns: 1fr;
}

html.view-mobile .header .btn--small {
  display: none;
}

html.view-mobile .header__inner--brand {
  flex-wrap: nowrap;
  align-items: center;
  padding-right: 4.35rem;
}

html.view-mobile .header__inner--brand .logo {
  max-width: calc(100% - 7rem);
}

html.view-mobile .header__inner--brand .logo__wordmark {
  height: 2.85rem;
  margin-block: -0.35rem;
  max-width: 100%;
}

html.view-mobile .nav-drawer-btn {
  display: inline-flex !important;
  position: absolute !important;
  top: 50% !important;
  right: 0.65rem;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0 !important;
  z-index: 10060;
}

html.view-mobile .header__inner--brand .view-toggle {
  order: 2;
  margin-left: auto;
  margin-right: 0;
  width: 44px;
  padding: 0;
  justify-content: center;
}

html.view-mobile .view-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.view-mobile .nav-drawer-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 10040;
  margin: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

html.view-mobile .nav-drawer-check:checked ~ .nav-drawer-backdrop {
  opacity: 1 !important;
  pointer-events: auto !important;
}

html.view-mobile .header__inner--brand .nav--main,
html.view-mobile .nav--drawer {
  display: flex !important;
  flex-direction: column;
  position: absolute !important;
  top: calc(100% + 0.45rem) !important;
  right: 0.65rem;
  left: auto;
  bottom: auto;
  width: min(78vw, 270px);
  max-height: min(72vh, 420px);
  margin: 0;
  padding: 0.85rem 0.7rem;
  background:
    linear-gradient(165deg, rgba(36, 24, 16, 0.98) 0%, rgba(10, 9, 8, 0.98) 55%, rgba(8, 7, 6, 0.99) 100%);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 18px;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  z-index: 10055;
  transform: translateY(-8px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    visibility 0.22s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  order: 6;
}

html.view-mobile .nav--drawer::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 1.05rem;
  width: 12px;
  height: 12px;
  background: rgba(36, 24, 16, 0.98);
  border-top: 1px solid rgba(249, 115, 22, 0.35);
  border-right: 1px solid rgba(249, 115, 22, 0.35);
  transform: rotate(-45deg);
}

html.view-mobile .nav-drawer-check:checked ~ .nav--main,
html.view-mobile .nav-drawer-check:checked ~ .nav--drawer {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

html.view-mobile .nav-drawer-check:checked ~ .nav-drawer-backdrop {
  opacity: 1 !important;
  pointer-events: auto !important;
}

html.view-mobile .nav-drawer__title {
  display: block;
  margin: 0 0.35rem 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

html.view-mobile .nav-drawer__hint {
  display: none;
}

html.view-mobile .header__inner--brand .nav--main .nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  padding: 0;
  border: none;
  background: transparent;
}

html.view-mobile .header__inner--brand .nav--main .nav__link {
  display: block;
  padding: 0.85rem 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: 10px;
  border-bottom: none;
}

html.view-mobile .header__inner--brand .nav--main .nav__link:hover,
html.view-mobile .header__inner--brand .nav--main .nav__link[aria-current="page"] {
  background: rgba(249, 115, 22, 0.14);
  color: #fdba74;
}

html.view-mobile .swipe-edge {
  display: none;
}

html.view-mobile body.nav-open {
  overflow: hidden;
}

html.view-mobile .section {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

html.view-mobile .home-main--airy .home-hero {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
  padding-top: clamp(2.75rem, 8vw, 4rem);
}

html.view-mobile .hero__actions {
  flex-direction: column;
  align-items: stretch;
}

html.view-mobile .hero__actions .btn,
html.view-mobile .prestations-cta .btn {
  width: 100%;
}

html.view-mobile .hero__stats {
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Auto-mobile (petit écran, sauf si version ordinateur forcée) */
@media (max-width: 720px) {
  html:not(.view-desktop) .header .btn--small {
    display: none;
  }

  html:not(.view-desktop) .header__inner--brand {
    flex-wrap: nowrap;
    align-items: center;
    padding-right: 4.35rem;
  }

  html:not(.view-desktop) .header__inner--brand .logo {
    max-width: calc(100% - 7rem);
  }

  html:not(.view-desktop) .header__inner--brand .logo__wordmark {
    height: 2.85rem;
    margin-block: -0.35rem;
    max-width: 100%;
  }

  html:not(.view-desktop) .nav-drawer-btn {
    display: inline-flex !important;
    position: absolute !important;
    top: 50% !important;
    right: 0.65rem;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 10060;
  }

  html:not(.view-desktop) .header__inner--brand .view-toggle {
    order: 2;
    margin-left: auto;
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  html:not(.view-desktop) .view-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  html:not(.view-desktop) .nav-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10040;
    margin: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  html:not(.view-desktop) .nav-drawer-check:checked ~ .nav-drawer-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  html:not(.view-desktop) .header__inner--brand .nav--main,
  html:not(.view-desktop) .nav--drawer {
    display: flex !important;
    flex-direction: column;
    position: absolute !important;
    top: calc(100% + 0.45rem) !important;
    right: 0.65rem;
    left: auto;
    bottom: auto;
    width: min(78vw, 270px);
    max-height: min(72vh, 420px);
    margin: 0;
    padding: 0.85rem 0.7rem;
    background:
      linear-gradient(165deg, rgba(36, 24, 16, 0.98) 0%, rgba(10, 9, 8, 0.98) 55%, rgba(8, 7, 6, 0.99) 100%);
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 18px;
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    z-index: 10055;
    transform: translateY(-8px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease,
      visibility 0.22s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  html:not(.view-desktop) .nav-drawer-check:checked ~ .nav--main,
  html:not(.view-desktop) .nav-drawer-check:checked ~ .nav--drawer {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  html:not(.view-desktop) .nav-drawer-check:checked ~ .nav-drawer-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  html:not(.view-desktop) .nav-drawer__title {
    display: block;
    margin: 0 0.35rem 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bright);
  }

  html:not(.view-desktop) .nav-drawer__hint {
    display: none;
  }

  html:not(.view-desktop) .header__inner--brand .nav--main .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0;
    border: none;
    background: transparent;
  }

  html:not(.view-desktop) .header__inner--brand .nav--main .nav__link {
    display: block;
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    border-radius: 12px;
    border-bottom: none;
  }

  html:not(.view-desktop) .header__inner--brand .nav--main .nav__link:hover,
  html:not(.view-desktop) .header__inner--brand .nav--main .nav__link[aria-current="page"] {
    background: rgba(249, 115, 22, 0.14);
    color: #fdba74;
  }

  html:not(.view-desktop) .swipe-edge {
    display: none;
  }

  html:not(.view-desktop) body.nav-open {
    overflow: hidden;
  }

  html:not(.view-desktop) .section {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  html:not(.view-desktop) .home-main--airy .home-hero {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    padding-top: clamp(2.75rem, 8vw, 4rem);
  }

  html:not(.view-desktop) .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  html:not(.view-desktop) .hero__actions .btn,
  html:not(.view-desktop) .prestations-cta .btn {
    width: 100%;
  }

  html:not(.view-desktop) .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Mode ordinateur forcé (sur téléphone) */
html.view-desktop .nav-drawer-btn,
html.view-desktop .nav-drawer-backdrop,
html.view-desktop .swipe-edge,
html.view-desktop .nav-drawer__title,
html.view-desktop .nav-drawer__hint {
  display: none !important;
}

html.view-desktop .header__inner--brand .nav--main {
  display: block !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  flex-basis: auto !important;
  margin: 0 0 0 0.75rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: visible !important;
  order: 6;
}

html.view-desktop .header__inner--brand .nav--main .nav__list {
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.25rem;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

html.view-desktop .header__inner--brand .nav--main .nav__link {
  display: inline-block;
  padding: 0.35rem 0.15rem;
  background: none !important;
}

html.view-desktop .cards,
html.view-desktop .home-formules,
html.view-desktop .welcome-pillars {
  grid-template-columns: repeat(3, 1fr);
}

html.view-desktop .home-loc {
  grid-template-columns: minmax(0, 340px) 1fr;
}

@media (min-width: 721px) {
  html.view-mobile body {
    background: #050403;
  }

  html.view-mobile .header,
  html.view-mobile main {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  html.view-mobile .header {
    border-inline: 1px solid rgba(255, 255, 255, 0.08);
  }

  html.view-mobile main {
    border-inline: 1px solid rgba(255, 255, 255, 0.06);
    min-height: calc(100vh - 4rem);
    background: var(--bg-deep);
  }
}

/* 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: 1.15rem;
  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 {
  display: none;
}

.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;
  justify-content: center;
  gap: 0.35rem;
  letter-spacing: 0;
  text-transform: none;
}

.page-flash__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  opacity: 0.45;
  animation: page-flash-dot-pulse 1.05s ease-in-out infinite;
}

.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;
  }
}

/* Menu mobile — panneau ancré sous le bouton dans le header */
@media (max-width: 900px) {
  html:not(.view-desktop) .header,
  html:not(.view-desktop) .header__inner,
  html:not(.view-desktop) .header__inner--brand {
    overflow: visible !important;
  }

  html:not(.view-desktop) .header__inner--brand {
    position: relative !important;
  }

  html:not(.view-desktop) .nav-drawer-btn {
    display: inline-flex !important;
    position: absolute !important;
    top: 50% !important;
    right: 0.65rem !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    z-index: 10060;
    width: 48px;
    height: 48px;
    margin: 0 !important;
    border-color: rgba(249, 115, 22, 0.45);
    background: linear-gradient(160deg, rgba(40, 28, 18, 0.98), rgba(12, 10, 8, 0.98));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  }

  html:not(.view-desktop) .nav-drawer-check:checked + .nav-drawer-btn {
    border-color: rgba(249, 115, 22, 0.85);
    background: rgba(249, 115, 22, 0.18);
  }

  html:not(.view-desktop) .nav--drawer {
    display: flex !important;
    flex-direction: column;
    position: absolute !important;
    top: calc(100% + 0.45rem) !important;
    right: 0.65rem !important;
    left: auto !important;
    bottom: auto !important;
    width: min(78vw, 270px);
    max-height: min(72vh, 420px);
    z-index: 10055;
    margin: 0;
    padding: 0.85rem 0.7rem 0.85rem;
    background:
      linear-gradient(165deg, rgba(36, 24, 16, 0.98) 0%, rgba(10, 9, 8, 0.98) 55%, rgba(8, 7, 6, 0.99) 100%) !important;
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 18px;
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: translateY(-8px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease,
      visibility 0.22s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  html:not(.view-desktop) .nav--drawer::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 1.05rem;
    width: 12px;
    height: 12px;
    background: rgba(36, 24, 16, 0.98);
    border-top: 1px solid rgba(249, 115, 22, 0.35);
    border-right: 1px solid rgba(249, 115, 22, 0.35);
    transform: rotate(-45deg);
  }

  html:not(.view-desktop) #navDrawer:checked ~ .nav--drawer {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  html:not(.view-desktop) .nav-drawer-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  html:not(.view-desktop) #navDrawer:checked ~ .nav-drawer-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  html:not(.view-desktop) .nav-drawer__title {
    display: block;
    margin: 0 0.35rem 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bright);
  }

  html:not(.view-desktop) .nav-drawer__hint {
    display: none;
  }

  html:not(.view-desktop) .nav--drawer .nav__list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
  }

  html:not(.view-desktop) .nav--drawer .nav__link {
    display: block !important;
    padding: 0.85rem 0.9rem !important;
    border-radius: 10px;
    border-bottom: none !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(245, 245, 245, 0.92) !important;
    transition: background 0.18s ease, color 0.18s ease;
  }

  html:not(.view-desktop) .nav--drawer .nav__link:hover,
  html:not(.view-desktop) .nav--drawer .nav__link[aria-current="page"] {
    background: rgba(249, 115, 22, 0.14) !important;
    color: #fdba74 !important;
  }
}

/* Pied de page */
main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  padding: 1.75rem 1.5rem;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) auto auto;
  gap: 1.5rem 2rem;
  align-items: start;
}

.site-footer__brand {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.site-footer__heading {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.site-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.site-footer__contact li,
.site-footer__contact a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.45;
}

.site-footer__contact a:hover {
  color: var(--accent-bright);
}

.site-footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-footer__social-btn {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  color: rgba(245, 245, 245, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: default;
}

.site-footer__social-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-start;
}

.site-footer__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--accent-bright);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(161, 161, 170, 0.85);
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

/* Pages légales */
.legal-page-main {
  scroll-margin-top: 5.5rem;
}

.legal-content {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--accent-bright);
  font-weight: 600;
}

/* Bouton WhatsApp flottant */
.whatsapp-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 260;
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.whatsapp-fab:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.whatsapp-fab svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

@media (max-width: 520px) {
  .whatsapp-fab {
    right: max(0.9rem, env(safe-area-inset-right));
    bottom: max(0.9rem, env(safe-area-inset-bottom));
    width: 3.1rem;
    height: 3.1rem;
  }
}

/* Adaptation téléphone */
@media (max-width: 900px) {
  .promo-ticker__item {
    font-size: 0.88rem;
  }

  .splash__inner {
    width: min(100%, 92vw);
    gap: 1.75rem;
    padding-inline: 0.25rem;
  }

  .splash__welcome-line {
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
  }

  .splash__welcome-brand {
    font-size: clamp(2rem, 10.5vw, 3rem);
    max-width: 11ch;
  }

  .header__inner {
    padding: 0.55rem 1rem;
    min-height: 3.4rem;
  }

  .header__inner--brand {
    padding-right: 4.5rem;
  }

  .logo__wordmark {
    height: 2.55rem;
    max-width: min(58vw, 11.5rem);
  }

  /* Menu hamburger + panneau : ancrés dans la barre header (pas fixed viewport) */
  html:not(.view-desktop) .header,
  html:not(.view-desktop) .header__inner,
  html:not(.view-desktop) .header__inner--brand,
  html.view-mobile .header,
  html.view-mobile .header__inner,
  html.view-mobile .header__inner--brand {
    overflow: visible !important;
  }

  html:not(.view-desktop) .header__inner--brand,
  html.view-mobile .header__inner--brand {
    position: relative !important;
  }

  html:not(.view-desktop) .nav-drawer-btn,
  html.view-mobile .nav-drawer-btn {
    position: absolute !important;
    top: 50% !important;
    right: 0.65rem !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }

  html:not(.view-desktop) .nav--drawer,
  html:not(.view-desktop) .header__inner--brand .nav--main,
  html.view-mobile .nav--drawer,
  html.view-mobile .header__inner--brand .nav--main {
    position: absolute !important;
    top: calc(100% + 0.45rem) !important;
    right: 0.65rem !important;
    left: auto !important;
    bottom: auto !important;
  }

  .section {
    padding: 3rem 1.15rem;
  }

  .home-main--airy .home-hero {
    padding: 3.25rem 1.15rem 3.75rem;
  }

  .home-main--airy .hero__brand {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .home-main--airy .hero__title {
    font-size: clamp(1.7rem, 7.5vw, 2.15rem);
  }

  .home-main--airy .hero__lead {
    font-size: 0.98rem;
  }

  .home-main--airy .hero__actions {
    justify-content: center;
    width: 100%;
  }

  .home-main--airy .hero__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 9.5rem);
  }

  .home-main--airy .hero__stats {
    justify-content: center;
    gap: 0.65rem 1.15rem;
    font-size: 0.85rem;
  }

  .home-formules,
  .welcome-pillars,
  .cards--prestations,
  .avantage-list {
    grid-template-columns: 1fr;
  }

  .home-loc {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .home-map,
  .home-map-wrap {
    min-height: 260px;
    height: 280px;
  }

  .loyalty-board {
    grid-template-columns: 1fr;
  }

  .loyalty-card {
    max-width: none;
  }

  .formule-compare {
    grid-template-columns: 1fr;
  }

  .section__title {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }

  .section__subtitle {
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 1.5rem 1.15rem calc(1.5rem + 3.5rem);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .prestations-intro__title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .prestations-exterior-notice {
    font-size: 0.98rem;
    padding: 1rem 1.1rem;
  }

  .prestations-exterior-notice strong {
    font-size: 1.02rem;
  }

  .faq-section__inner,
  .contact-section__inner,
  .legal-content {
    padding-inline: 0;
  }

  .btn {
    padding: 0.8rem 1.15rem;
  }

  .page-flash__brand {
    width: min(82vw, 18rem);
    transform: translateX(-1.35rem);
  }
}

@media (max-width: 480px) {
  .promo-ticker__item {
    font-size: 0.8rem;
  }

  .splash__welcome-brand {
    font-size: clamp(1.85rem, 11vw, 2.45rem);
  }

  .home-formule--featured .home-formule__name {
    padding-right: 4.25rem;
  }
}
