.page-heading {
  padding: 8px 0 12px;
}

.page-title {
  font-size: var(--h2-size);
  margin: 0;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  /* underline “au texte” (gère aussi les titres sur 2 lignes) */
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 6px;
  text-underline-offset: 14px;
  display: inline;
  /* évite l’effet “ligne pleine largeur” */
}

:root {
  --black: #000;
  --near-black: #0b0b0b;
  --white: #fff;
  --red: #e31b23;
  --red-dark: #b11217;

  --font-family: 'Barlow', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-size-base: 22px;
  /* Image 1 */
  --h2-size: 60px;
  /* Image 3 */
  --h3-size: 2.9em;
  /* Image 2 */

  --header-h: 120px;
  /* header desktop (logo +30%) */
}

/* Mobile: titres de catégories (H2) > titres de prestations (H3) */
@media (max-width: 960px) {
  :root {
    --font-size-base: 18px;
    /* texte plus “léger” sur mobile */
    --h2-size: clamp(44px, 9vw, 66px);
    --h3-size: clamp(26px, 5.6vw, 40px);
  }

  .page-title {
    text-decoration-thickness: 5px;
    text-underline-offset: 12px;
  }

  /* Paragraphes (home + pages) : même rendu que “Boostez votre visibilité…” */
  .parades-text,
  .feature-text,
  .showcase-text,
  .artballoon-text,
  .env-text,
  .legal-p,
  .about-copy p,
  .envp-lead,
  .envp-p,
  .credits-lead {
    font-weight: 400;
    line-height: 1.65;
  }
}

* {
  box-sizing: border-box;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--white);
  background: var(--black);
  padding-top: var(--header-h);
  /* empêche le header fixed de “manger” le contenu */
}

p {
  font-weight: 400;
}

/* Vidéo plein écran en arrière-plan global de la page */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  /* derrière tout */
  overflow: hidden;
}

.page-bg .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hidden {
  display: none;
}

/* Effet “neige” (utilisé sur la page Parade noëllissime) */
.snow-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.95;
  /* ~2x plus visible */
}

@media (max-width: 960px) {
  .snow-canvas {
    opacity: 0.88;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--black);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-logo {
  height: 83px;
  /* +30% */
  width: auto;
  display: block;
}

/* Header full-width + marges latérales + éléments “justify” */
.site-header .container.header-inner {
  max-width: none;
  padding-left: 40px;
  padding-right: 40px;
  /* légère marge aux extrêmes */
}

.header-inner {
  justify-content: space-between;
  gap: 24px;
}

.btn-contact {
  margin-left: 0;
  /* on laisse space-between gérer la répartition */
}

.main-nav {
  flex: 1;
}

.main-nav>ul {
  width: 100%;
  justify-content: space-evenly;
  /* “justify” des rubriques */
  gap: 0;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.30);
}

.main-nav>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 36px;
  /* occupe mieux l’espace horizontal */
}

.main-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  /* typo header */
  font-size: 19px;
  /* typo header */
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
}

.main-nav>ul>li:hover>a,
.main-nav>ul>li:focus-within>a {
  color: var(--red);
}

.submenu {
  position: absolute;
  top: 100%;
  /* pas de “trou” entre le parent et le dropdown */
  left: -10px;
  min-width: 300px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  display: block;
  /* important: dropdown vertical (ne pas hériter de flex) */
  background: rgba(0, 0, 0, 0.92);
  border-top: 2px solid var(--red);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(10px);
  /* espace visuel sans casser le hover */
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
  z-index: 40;
}

.submenu li {
  display: block;
}

.main-nav>ul>li:hover>.submenu,
.main-nav>ul>li:focus-within>.submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu a {
  display: block;
  padding: 12px 18px;
  font-size: 20px;
  font-weight: 700;
  text-transform: none;
  color: #fff;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.submenu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.22);
}

.submenu a.is-disabled {
  opacity: .55;
  pointer-events: none;
  text-decoration: none;
}

.chev {
  opacity: .8;
}

.btn-contact {
  margin-left: auto;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  padding: 16px 22px;
  /* bouton plus grand pour équilibrer */
  border-radius: 2px;
  transition: background .15s ease-in-out;
}

.btn-contact:hover {
  background: var(--red-dark);
}

.chev-cta {
  margin-left: 8px;
}

/* Contact */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact {
  padding-top: 0;
  /* géré globalement via body{padding-top: var(--header-h)} */
}

.contact-hero {
  padding: 18px 0 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0));
}

.contact-title {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.contact-subtitle {
  margin: 8px 0 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.contact-body {
  padding: 26px 0 90px;
}

.contact-grid {
  display: grid;
  /* Colonnes centrées dans le container (marges gauche/droite équilibrées) */
  grid-template-columns: minmax(0, 720px) minmax(0, 520px);
  justify-content: center;
  gap: 56px;
  align-items: start;
}

.contact-lead {
  margin: 0 0 26px;
  color: #e6e6e6;
  line-height: 1.6;
  font-weight: 400;
  max-width: 760px;
}

.contact-form {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  outline: none;
  padding: 16px 16px;
  color: #111;
  background: #fff;
  font-family: var(--font-family);
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-row input {
  border-top: 0;
}

.contact-row input+input {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form select {
  appearance: auto;
}

.contact-submit {
  width: 100%;
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 18px 16px;
  cursor: pointer;
}

.contact-submit:hover {
  background: var(--red-dark);
}

.contact-right {
  padding-top: 18px;
}

.contact-side-title {
  margin: 0 0 22px;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
}

.contact-side-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  user-select: none;
}

.contact-link {
  color: #fff;
  font-size: 1.6em;
  /* typo des 4 items (tel/mail/fb/insta) */
  font-weight: 400;
  /* “par défaut” */
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

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

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-row input+input {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* À propos */
.about {
  padding: 34px 0 90px;
}

.about-inner {
  max-width: 1120px;
}

.about-figure {
  margin: 0 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.about-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.about-title {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-kicker {
  margin: 10px 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

.about-rule {
  height: 2px;
  width: 520px;
  max-width: 100%;
  background: var(--red);
  margin: 12px 0 24px;
}

.about-copy p {
  margin: 0 0 22px;
  color: #e6e6e6;
  line-height: 1.7;
  font-weight: 400;
}

.about-last {
  margin-top: 6px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .about {
    padding-top: 26px;
  }

  .about-title {
    font-size: clamp(36px, 6.5vw, 48px);
  }

  .about-rule {
    width: 360px;
  }
}

/* Environnement (pas full-screen, pas collé) */
.envp {
  padding: 36px 0 100px;
}

.envp-section {
  padding: 34px 0;
}

.envp-inner {
  max-width: 1260px;
}

.envp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  /* aligne le centre du texte avec le centre de l’image */
}

.envp-split--invert {
  grid-template-columns: 1fr 1fr;
}

.envp-copy {
  padding-top: 0;
  max-width: 520px;
  /* bloc texte plus “compact” et propre */
  justify-self: center;
  /* centré horizontalement dans sa colonne */
}

.envp-title {
  margin: 0 0 18px;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.envp-lead {
  margin: 0;
  color: #e6e6e6;
  line-height: 1.6;
}

.envp-media {
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
}

.envp-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
}

.envp-list {
  margin: 0;
  padding-left: 22px;
  color: #e6e6e6;
  line-height: 1.6;
}

.envp-list li {
  margin: 0 0 18px;
}

.envp-h2 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  font-weight: 900;
}

.envp-bullets {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #e6e6e6;
  line-height: 1.6;
}

.envp-bullets li {
  margin: 0 0 12px;
}

.envp-links {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.envp-links a {
  color: #3ea6ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.envp-p {
  margin: 0 0 14px;
  color: #e6e6e6;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .envp {
    padding-top: 26px;
  }

  .envp-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .envp-media {
    padding: 12px;
  }

  .envp-title {
    font-size: clamp(36px, 7vw, 52px);
  }
}

/* Mentions légales / CGU */
.legal {
  padding: 40px 0 110px;
}

.legal-inner {
  max-width: 1120px;
}

.legal-title {
  margin: 0 0 18px;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}

.legal-h2 {
  margin: 28px 0 12px;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.legal-h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.legal-p {
  margin: 0 0 14px;
  color: #e6e6e6;
  line-height: 1.7;
}

.legal-list {
  margin: 0 0 14px 20px;
  padding: 0;
  color: #e6e6e6;
}

.legal-list li {
  margin: 0 0 10px;
}

.legal a {
  color: #3ea6ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

@media (max-width: 960px) {
  .legal {
    padding-top: 26px;
  }

  .legal-title {
    font-size: clamp(36px, 7vw, 52px);
  }
}

/* Crédits */
.credits {
  padding: 40px 0 110px;
}

.credits-inner {
  max-width: 1120px;
}

.credits-title {
  margin: 0 0 18px;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.credits-text {
  margin: 0 0 18px;
  color: #e6e6e6;
  line-height: 1.7;
}

.credits-block--spaced {
  margin-top: 70px;
}

.credits-links {
  margin-top: 34px;
  display: grid;
  justify-items: center;
  gap: 28px;
}

.credits-link {
  font-size: 41px;
  /* capture */
  font-weight: 100;
  /* Mince */
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
}

.credits-link:hover,
.credits-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
  outline: none;
}

@media (max-width: 960px) {
  .credits {
    padding-top: 26px;
  }

  .credits-link {
    font-size: clamp(26px, 6vw, 41px);
  }

  .credits-block--spaced {
    margin-top: 54px;
  }
}

/* Certificats de conformité */
.certif {
  padding: 40px 0 110px;
}

.certif-inner {
  max-width: 1120px;
}

.certif-title {
  margin: 0 0 26px;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.certif-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.certif-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 18px 18px 16px;
}

.certif-name {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 900;
}

.certif-meta {
  margin: 0 0 14px;
  opacity: .85;
}

.certif-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.certif-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 4px;
}

.certif-btn:hover {
  background: var(--red-dark);
}

.certif-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.certif-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 960px) {
  .certif {
    padding-top: 26px;
  }

  .certif-grid {
    grid-template-columns: 1fr;
  }

  .certif-title {
    font-size: clamp(36px, 7vw, 52px);
  }
}

/* Footer + bouton retour en haut */
.site-footer {
  margin-top: 70px;
  padding: 34px 0 42px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 2px solid var(--red);
}

.footer-inner {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  /* Matching copyright */
  font-size: 13px;
  /* Matching copyright */
  opacity: .5;
  /* Matching copyright */
  transition: opacity .2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: #fff;
  opacity: .5;
}

.footer-brand img {
  height: 54px;
  width: auto;
  display: block;
  opacity: .95;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  z-index: 80;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, background .16s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  background: var(--red-dark);
}

@media (max-width: 960px) {
  /* Footer styles are now global (centered column), so we don't need grid overrides here. */
  /* Keeping other media query rules if any were here? The previous block had .footer-inner grid reset. */
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
}

.hero::before {
  content: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  /* pas d’assombrissement sur le hero */
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 24px 48px;
  /* un peu moins de padding top pour remonter */
  margin-top: 0;
  /* le header est fixe et plus haut, on recentre */
}

.hero-logo {
  width: min(820px, 72vw);
  height: auto;
  display: block;
  margin: -12px auto 24px;
  /* légère remontée du logo */
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.hero-tagline {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(16px, 2.1vw, 26px);
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 960px) {
  :root {
    --header-h: 78px;
  }

  .brand-logo {
    height: 56px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-contact {
    padding: 14px 16px;
    font-size: 14px;
  }

  /* Mobile: header = logo + menu uniquement */
  .site-header .btn-contact {
    display: none;
  }
}

/* Accueil: responsive plus “mobile-first” (sans impacter les pages prestations) */
@media (max-width: 960px) {
  body.home .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Mobile: éviter la “hero” trop haute (sinon gros vide avant la section suivante) */
  body.home .hero {
    min-height: auto;
  }

  body.home .hero-content {
    padding: 46px 18px 34px;
  }

  body.home .hero-logo {
    width: min(560px, 86vw);
    margin: -6px auto 16px;
  }

  body.home .hero-tagline {
    font-size: clamp(15px, 4.2vw, 20px);
  }

  body.home .parades {
    padding: 46px 0 66px;
  }

  body.home .feature {
    padding: 46px 0;
  }

  body.home .split {
    padding: 46px 0;
  }

  body.home .showcase {
    padding: 50px 0 66px;
  }

  body.home .artballoon {
    padding: 56px 0 74px;
  }

  body.home .env {
    padding: 56px 0 74px;
  }

  /* Boutons: plus lisibles (stack) */
  body.home .parades-actions {
    flex-direction: column;
  }

  body.home .parades-actions .btn-red {
    width: 100%;
    justify-content: center;
  }

  /* Vignettes: 2 colonnes (puis 1 sur très petit) */
  body.home .parades-thumbs {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile: on garde uniquement la grande image (plus régulier) */
  body.home .parades-thumbs,
  body.home .showcase-thumbs {
    display: none;
  }

  /* Sur mobile: image puis texte (cohérent avec les pages prestations) */
  body.home .feature-media {
    order: -1;
  }

  body.home .split-media {
    order: -1;
  }

  body.home .artballoon-row--right .artballoon-media {
    order: -1;
  }

  body.home .env-media {
    order: -1;
  }
}

@media (max-width: 520px) {
  body.home .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home .parades-thumbs {
    grid-template-columns: 1fr;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
  }
}

/* Page protégée par mot de passe (Parade noëllissime) */
.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pw-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(6px);
}

.pw-card {
  position: relative;
  width: min(760px, 92vw);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--red);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border-radius: 14px;
  padding: 28px 26px 24px;
}

.pw-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.pw-sub {
  margin: 0 0 18px;
  color: #e6e6e6;
  line-height: 1.6;
  font-weight: 400;
  max-width: 62ch;
}

.pw-rule {
  height: 2px;
  width: 360px;
  max-width: 100%;
  background: var(--red);
  margin: 0 0 18px;
}

.pw-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.pw-input {
  height: 54px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  padding: 0 14px;
  outline: none;
}

.pw-input:focus {
  border-color: rgba(227, 27, 35, 0.75);
  box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.18);
}

.pw-error {
  margin: 12px 0 0;
  color: #ffb4b4;
  font-weight: 700;
  display: none;
}

body.is-locked .pw-gate {
  display: flex;
}

body.is-locked main,
body.is-locked #galleryFab {
  display: none !important;
}

body.is-locked .snow-canvas {
  display: none !important;
}

@media (max-width: 720px) {
  .pw-form {
    grid-template-columns: 1fr;
  }

  .pw-card {
    padding: 24px 18px 18px;
  }
}

/* Bandeau RGPD / cookies (site-wide, injecté via site.js) */
.rgpd-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 9000;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--red);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.rgpd-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.rgpd-text {
  margin: 0;
  color: #e6e6e6;
  line-height: 1.45;
  font-size: 16px;
}

.rgpd-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.rgpd-btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.rgpd-btn:hover {
  background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 720px) {
  .rgpd-banner {
    left: 14px;
    right: 14px;
    bottom: 12px;
    grid-template-columns: 1fr;
  }

  .rgpd-actions {
    justify-content: flex-start;
  }
}

/* Mobile nav (drawer) */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 70;
  opacity: 0;
  transition: opacity .14s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: rgba(0, 0, 0, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  z-index: 75;
  transform: translateX(16px);
  opacity: 0;
  transition: opacity .14s ease, transform .14s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-inner {
  padding: 18px 18px 28px;
  overflow: auto;
  height: 100%;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.mobile-nav-title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 12px;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-item summary::-webkit-details-marker {
  display: none;
}

.mobile-item summary::after {
  content: "▾";
  opacity: .85;
  transform: rotate(0deg);
  transition: transform .12s ease;
}

.mobile-item[open] summary::after {
  transform: rotate(-180deg);
}

.mobile-sub {
  padding: 10px 12px 14px;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sub a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 8px;
}

.mobile-sub a:hover,
.mobile-sub a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.mobile-sub a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
}

.mobile-sub a.is-disabled {
  opacity: .55;
  pointer-events: none;
}

.mobile-cta {
  margin-top: 16px;
  padding-top: 10px;
}

.mobile-contact {
  width: 100%;
  justify-content: center;
}

body.is-nav-open {
  overflow: hidden;
}

/* Espace de test pour scroller */
.spacer {
  height: 0;
}

/* Section Parades */
.parades {
  position: relative;
  padding: 64px 0 88px;
  background: transparent;
  /* pas d'assombrissement global en dehors du hero */
}

.section-title {
  font-size: var(--h2-size);
  margin: 0 0 24px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 6px;
  text-underline-offset: 14px;
  display: inline;
}

@media (max-width: 960px) {
  .section-title {
    text-decoration-thickness: 5px;
    text-underline-offset: 12px;
  }
}

.parades-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
  /* background: rgba(0, 0, 0, 0.6); Removed as requested */
  border-radius: 8px;
  overflow: hidden;
}

.parades-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.parades-copy {
  padding: 24px 24px 24px 0;
}

.parades-heading {
  font-size: var(--h3-size);
  margin: 8px 0 12px;
  font-weight: 700;
}

.parades-text {
  color: #e6e6e6;
  line-height: 1.6;
  margin: 0 0 18px;
}

.parades-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
}

.btn-red:hover {
  background: var(--red-dark);
}

.parades-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.parades-thumbs .thumb {
  border-radius: 6px;
  overflow: hidden;
}

.parades-thumbs img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .parades-card {
    grid-template-columns: 1fr;
  }

  .parades-copy {
    padding: 16px 16px 24px;
  }

  .parades-thumbs img {
    height: 140px;
  }
}

/* Sections 2 & 3 (features alternées) */
.feature {
  padding: 56px 0;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.feature--right .feature-inner {
  grid-template-columns: 1.2fr 1fr;
}

.feature-title {
  font-size: var(--h3-size);
  margin: 0 0 12px;
  font-weight: 700;
}

.feature-text {
  color: #e6e6e6;
  line-height: 1.6;
  margin: 0 0 18px;
}

.feature-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 960px) {
  .feature-inner {
    grid-template-columns: 1fr;
  }

  .feature--right .feature-inner {
    grid-template-columns: 1fr;
  }
}

/* Sections 4 & 5 (split image/texte) */
.split {
  padding: 64px 0;
}

.split .section-title.small {
  font-size: clamp(22px, 2.8vw, 40px);
  margin-bottom: 8px;
}

.split-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
}

.split--invert .split-inner {
  grid-template-columns: 1fr 1.15fr;
}

.split-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 960px) {

  .split-inner,
  .split--invert .split-inner {
    grid-template-columns: 1fr;
  }
}

/* Section 7 (Spectacles & Animation) */
.showcase {
  position: relative;
  padding: 64px 0 84px;
}

/* fond courbé très léger (comme sur la capture) */
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 520px at 72% 48%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(0, 0, 0, 0) 70%);
  opacity: 1;
}

.showcase .container {
  position: relative;
  z-index: 1;
}

.showcase-top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: center;
  margin-top: 10px;
}

.showcase-title {
  font-size: var(--h3-size);
  margin: 0 0 16px;
  font-weight: 700;
}

.showcase-text {
  color: #e6e6e6;
  line-height: 1.6;
  /* aligné avec .feature-text */
  margin: 0 0 18px;
  /* aligné avec .feature-text */
  max-width: 520px;
  /* garde la largeur de lecture */
  font-weight: 400;
  /* aligné avec .feature-text */
}

.showcase-btn {
  margin-top: 10px;
  padding: 14px 20px;
}

.showcase-hero {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.showcase-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-thumbs {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.showcase-thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.showcase-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .showcase-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .showcase-text {
    max-width: none;
  }

  .showcase-thumbs {
    grid-template-columns: 1fr;
  }

  .showcase-thumb img {
    height: 180px;
  }
}

/* Section 8: variante sans vignettes (mêmes proportions que la capture) */
.showcase--single {
  padding-top: 24px;
}

.showcase--single .showcase-top {
  margin-top: 0;
}

.showcase--single .showcase-title {
  font-size: var(--h3-size);
}

.showcase--single .showcase-text {
  max-width: 560px;
}

.showcase--single .showcase-hero {
  border-radius: 14px;
}

/* Sections 9-11: Art du ballon */
.artballoon {
  position: relative;
  padding: 72px 0 92px;
}

.artballoon::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1400px 560px at 72% 38%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0) 74%);
}

.artballoon .container {
  position: relative;
  z-index: 1;
}

.artballoon-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 54px 0;
}

.artballoon-row--right {
  grid-template-columns: 1fr 1.35fr;
}

.artballoon-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
}

.artballoon-media img {
  width: 100%;
  height: auto;
  display: block;
}

.artballoon-title {
  font-size: var(--h3-size);
  margin: 0 0 12px;
  font-weight: 700;
}

.artballoon-text {
  color: #e6e6e6;
  line-height: 1.6;
  /* aligné avec .feature-text */
  margin: 0 0 18px;
  max-width: 560px;
  font-weight: 400;
  /* aligné avec .feature-text */
}

.artballoon-btn {
  padding: 14px 20px;
}

@media (max-width: 960px) {

  .artballoon-row,
  .artballoon-row--right {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 0;
  }

  .artballoon-text {
    max-width: none;
  }
}

/* Section 12: Ballons & Environnement */
.env {
  position: relative;
  padding: 72px 0 110px;
}

.env::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 520px at 75% 55%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0) 74%);
}

.env .container {
  position: relative;
  z-index: 1;
}

.env-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 8px;
  padding: 42px 0 0;
}

.env-title {
  font-size: var(--h3-size);
  margin: 0 0 14px;
  font-weight: 700;
}

.env-text {
  color: #e6e6e6;
  line-height: 1.6;
  /* aligné avec .feature-text */
  margin: 0 0 18px;
  /* aligné avec .feature-text */
  max-width: 620px;
  font-weight: 400;
  /* aligné avec .feature-text */
}

.env-btn {
  padding: 14px 24px;
}

.env-media {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.env-media img {
  width: min(520px, 100%);
  height: auto;
  border-radius: 10px;
  display: block;
}

@media (max-width: 960px) {
  .env-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 22px;
  }

  .env-media {
    justify-content: flex-start;
  }
}