﻿  :root {
    --navy: #333333;
    --navy-deep: #333333;
    --blue-mid: #333333;
    --cyan: #ffffff;
    --pink: #F9AF19;
    --white: #f0f0f5;
    --gray: #babadd;
    --glow: rgba(255,255,255,0.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy-deep);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

.container {
  padding: 0 0vw;
}    
    
  /* â”€â”€â”€ HEADER en flux (pas fixed) : logo centrÃ© sur la largeur de la page, nav Ã  droite â”€â”€â”€ */
  .site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: transparent;
    border-bottom: none;
    box-sizing: border-box;
  }

  .site-header-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 72px;
    padding: 10px 5vw 0;
    box-sizing: border-box;
    width: 100%;
  }

  .site-header .header-brand-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header .header-logo-img {
    display: block;
    width: clamp(50px, 13vw, 100px);
    max-width: min(100px, 23vw);
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: none;
    animation: none;
    transition: none;
  }

  .site-header nav {
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 2;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
  }

  /* VidÃ©o = fond fixe pour toute la page (au-dessus du fond body, sous le contenu z-index â‰¥ 1) */
  .site-video-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .site-video-bg .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .site-video-bg .hero-video-overlay-left,
  .site-video-bg .hero-video-overlay-bottom {
    position: absolute;
    inset: 0;
  }

  .hero-left {
    min-width: 0; /* Ã©vite que le contenu force la grille et masque .hero-right (overflow du .hero) */
  }

  /* Bloc titre : mÃªme largeur max que .hero-headline */
  .hero-heading-stack {
    max-width: 820px;
    width: 100%;
  }

.logo-svg {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
  transition: transform 0.3s ease;
  display: block;
}
img.logo-svg {
  height: 100%;
  width: auto;
  max-width: min(280px, 55vw);
  object-fit: contain;
  object-position: center center;
}
    
.logo-main .logo-svg {
  opacity: 0;
  transform: translateY(10px);
  animation: logoFade 1s ease forwards;
}

/* survol logo footer uniquement (le hero neutralise ci-dessus) */
footer .logo-wrap:hover .logo-svg {
  transform: translateY(-1px) scale(1.02);
}
    
.logo-animated {
  position: relative;
  height: 66.24px;
  width: 220.8px;
  display: inline-block;
}

.logo-animated.logo-footer {
  height: 60.72px;
  width: 193.2px;
}

.logo-animated {
  animation: flicker 6s infinite;
}

@keyframes flicker {
  0%, 97%, 100% { opacity: 1; }
  98% { opacity: 0.85; }
  99% { opacity: 1; }
}    
    
.logo-layer {
  position: absolute;
  inset: 0;
}

.logo-layer svg,
.logo-layer img {
  height: 100%;
  display: block;
}

.logo-main {
  z-index: 2;
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-red {
  opacity: 0.6;
  mix-blend-mode: screen;
  filter: hue-rotate(-20deg) saturate(6) brightness(1.3);
  animation: glitchRed 2.5s infinite;
}

.logo-cyan {
  opacity: 0.6;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(1.6);
  animation: glitchCyan 2.5s infinite;
}   
    
@keyframes glitchRed {
  0%, 90%, 100% { transform: translate(0); opacity: 0.6; }
  92% { transform: translate(-2px, 1px); opacity: 0.9; }
  94% { transform: translate(2px, -1px); }
  96% { transform: translate(-1px, 0); }
}

@keyframes glitchCyan {
  0%, 90%, 100% { transform: translate(0); opacity: 0.6; }
  91% { transform: translate(2px, -1px); opacity: 0.9; }
  93% { transform: translate(-2px, 1px); }
  95% { transform: translate(1px, 0); }
}    
    
.logo-scanlines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: overlay;
  animation: scanMove 6s linear infinite;
}

@keyframes scanMove {
  from { transform: translateY(0); }
  to { transform: translateY(6px); }
}
    
footer .logo-animated:hover .logo-red {
  animation: glitchRed 0.4s infinite;
  opacity: 1;
}

footer .logo-animated:hover .logo-cyan {
  animation: glitchCyan 0.4s infinite;
  opacity: 1;
}

footer .logo-animated:hover {
  transform: scale(1.03);
}    

  nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  nav a {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    position: relative;
    transition: color 0.25s;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--cyan);
    transition: width 0.3s;
  }

  nav a:hover { color: var(--white); }
  nav a:hover::after { width: 100%; }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--pink);
    color: var(--pink) !important;
    padding: 7px 18px;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--pink); color: var(--white) !important; }

  /* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  /* Grid unit = 30px. Major lines every 120px (4 units).
     All spacing snaps to multiples of 30px.
     Left padding = 8 units = 240px â†’ aligns to a major line
     Top/bottom  = 4 units = 120px                          */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto;
    align-content: start;
    align-items: start;
    /* header plus fixe : pas besoin dâ€™Ã©norme marge haute pour Â« passer sous Â» la nav */
    padding: calc(20px + clamp(32px, 5vh, 56px)) 8vw 120px 8vw;
    position: relative;
    z-index: 1;
    overflow: hidden;
    row-gap: 0; /* vertical rhythm managed per-element below */
  }
  @media (max-width: 1100px) {

  }
  @media (max-width: 700px) {
    .hero { padding: calc(20px + clamp(24px, 4vh, 40px)) 30px 90px 30px; }
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 70% 50%, #333333 0%, #333333 70%);
    z-index: 1;
    opacity: 0.09;
  }

  /* Grid lines â€” 30px base unit, 120px major */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px),
      linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px, 30px 30px, 30px 30px;
    background-position: left top;
    mask-image: radial-gradient(ellipse 110% 110% at 50% 50%, black 50%, transparent 100%);
  }

  /* Glowing orb */
  .hero-bg::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    top: 50%; right: 12%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateY(-50%) scale(1.15); opacity: 1; }
  }

  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 30px; /* 1Ã—30px grid unit */
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--cyan);
  }

.hero-headline-wrap {
  position: relative;
  width: 100%;
}    
    
  .hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2.8rem, 6.5vw, 6rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    max-width: 820px;
    position: relative; z-index: 1;
    animation: fadeUp 0.9s 0.15s ease both;
    /* snap to grid: padding-top aligns top edge to a major gridline */
    padding-top: 0;
    margin-bottom: 0;
  }

  .hero-headline strong {
    font-weight: 900;
    font-family: inherit;
    font-style: inherit;
    color: inherit;
  }

  .hero-headline .accent-pink {
    color: var(--pink);
    font-style: italic;
  }

  .hero-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 480px; /* 4 major cols */
    margin-top: 30px; /* 1 grid unit */
    position: relative; z-index: 1;
    font-weight: 300;
    animation: fadeUp 1s 0.3s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 60px; /* 2 grid units */
    position: relative; z-index: 1;
    animation: fadeUp 1s 0.45s ease both;
  }

  /* MÃªme traitement que .nav-cta (bordure rose, fond transparent, survol plein) */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--pink);
    color: var(--pink) !important;
    padding: 7px 18px;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, color 0.25s !important;
  }

  .btn-primary:hover {
    background: var(--pink);
    color: var(--white) !important;
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(240,240,245,0.25);
    padding: 14px 32px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* â”€â”€â”€ SECTION SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  section {
    padding: 100px 8vw;
    position: relative;
    z-index: 1;
  }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--cyan);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1rem;
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--cyan);
    opacity: 0.5;
  }

  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 3.5rem;
  }

  /* â”€â”€â”€ SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  #services {
    background: rgba(51, 51, 51, 0.82);
    position: relative;
  }
    
 #services::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 30px 30px, 30px 30px;
  background-position: left top;
  mask-image: radial-gradient(ellipse 110% 110% at 50% 50%, black 50%, transparent 100%);
  z-index: 0;
  opacity: 0.6;
}

#services > * {
  position: relative;
  z-index: 1;
}
    
  #services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.2;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* Row 1: 2 featured cards each take half the width */
  .service-card-featured {
    grid-column: span 2;
  }

  .service-card-featured .service-name {
    font-size: 1.45rem;
  }

  .service-card-featured .service-icon {
    font-size: 2.6rem;
  }

  .service-card-featured .service-desc {
    font-size: 0.92rem;
    max-width: 480px;
  }

  /* Row 2: 4 standard cards each take 1 col */
  .service-card-standard {
    grid-column: span 1;
  }

  @media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card-featured { grid-column: span 2; }
    .service-card-standard { grid-column: span 1; }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card-featured,
    .service-card-standard { grid-column: span 1; }
  }

  .service-card {
    background: rgba(51, 51, 51, 0.78);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .service-card:hover { background: rgba(51,51,51,0.9); }
  .service-card:hover::before { opacity: 1; }

  .service-card:hover .service-icon { transform: scale(1.1); color: var(--cyan); }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
    transition: transform 0.3s, color 0.3s;
    color: var(--gray);
  }

  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--white);
    display: inline-block;
    max-width: 100%;
    border-bottom: 2px solid #F9AF19;
    padding-bottom: 0.35rem;
  }

  .service-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    font-weight: 300;
  }

  /* â”€â”€â”€ FREEBIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  #freebies {
    background: transparent;
    position: relative;
    overflow: hidden;
  }

  #freebies::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(
      90deg,
      rgba(7, 11, 10, 0.88) 0%,
      rgba(7, 11, 10, 0.65) 35%,
      rgba(7, 11, 10, 0.35) 65%,
      rgba(7, 11, 10, 0.15) 100%
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #freebies::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
  }

  /* Ensure freebies content sits above the grid */
  #freebies > * { position: relative; z-index: 1; }

  .freebies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .freebie-card {
    display: flex;
    flex-direction: column;
    background: rgba(51,51,51,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }

  .freebie-card:hover {
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-4px);
  }

  .freebie-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
  }
  .freebie-card:hover::after { transform: scaleX(1); }

  .freebie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
  }

  .freebie-desc {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .freebie-dl {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F9AF19;
    text-decoration: none;
    transition: gap 0.2s;
  }
  .freebie-dl:hover { gap: 14px; }

  /* â”€â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  #contact {
    background: transparent;
    position: relative;
    overflow: hidden;
  }

  #contact > * { position: relative; z-index: 1; }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;
    row-gap: 1rem;
    align-items: start;
    margin-top: 0;
  }

  .contact-layout > .section-label {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    align-items: flex-start; /* trait ::after alignÃ© en haut avec le texte â‰ˆ haut de lâ€™encadrÃ© Ã  droite */
  }

  .contact-layout > .section-title {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }

  .contact-layout > .contact-info {
    grid-column: 1;
    grid-row: 3;
  }

  /* Haut du panneau = mÃªme ligne que le libellÃ© + trait Â« 03 â€” Contact Â» */
  .contact-layout > .contact-form-panel {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: start;
  }

  @media (max-width: 860px) {
    .contact-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .contact-layout > .section-label,
    .contact-layout > .section-title,
    .contact-layout > .contact-info,
    .contact-layout > .contact-form-panel {
      grid-column: 1;
      grid-row: auto;
    }
  }

  /* Left col â€” info */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .contact-info-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cyan);
  }

  .contact-info-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 300;
  }

  .contact-info-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-info-value a:hover { color: var(--cyan); }

  /* Panneau formulaire : mÃªme fond / bordure / barre du bas que .freebie-card */
  .contact-form-panel {
    background: rgba(51, 51, 51, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .contact-form-panel:hover {
    border-color: rgba(255, 255, 255, 0.35);
  }

  .contact-form-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
    pointer-events: none;
  }

  .contact-form-panel:hover::after,
  .contact-form-panel:focus-within::after {
    transform: scaleX(1);
  }

  /* Right col â€” form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .form-row:has(> .form-field:only-child) {
    grid-template-columns: 1fr;
  }

  @media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-field label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    appearance: none;
    border-radius: 0;
    width: 100%;
  }

  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23babadd' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
  }

  .form-field select option {
    background: var(--navy-deep);
    color: var(--white);
  }

  .form-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--cyan);
    background: rgba(255,255,255,0.04);
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: rgba(136,136,170,0.5);
  }

  /* Contact : libellÃ©s blancs, champs moins transparents */
  #contact .form-field label {
    color: var(--white);
  }

  #contact .form-field input,
  #contact .form-field textarea {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  #contact .form-field select {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0f0f5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
  }

  #contact .form-field input:focus,
  #contact .form-field textarea:focus {
    background: rgba(255, 255, 255, 0.17);
    border-color: var(--cyan);
  }

  #contact .form-field select:focus {
    background-color: rgba(255, 255, 255, 0.17);
    border-color: var(--cyan);
  }

  .form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .form-note {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 300;
    opacity: 0.7;
  }

  .btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--pink);
    color: var(--pink);
    padding: 7px 18px;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .btn-send:hover {
    background: var(--pink);
    color: var(--white);
  }

  .btn-send:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
  }

  .btn-send:disabled {
    opacity: 0.55;
    cursor: wait;
    pointer-events: none;
  }

  .form-error {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.45;
    color: #ff8a8a;
    max-width: 100%;
  }

  .form-error[hidden] {
    display: none !important;
  }

  /* Success state */
  .form-success {
    display: none;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    text-align: center;
  }

  .form-success.visible { display: block; }

  .form-success-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .form-success p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.85;
  }

  /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  footer {
    padding: 40px 5vw;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: transparent;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem 2rem;
  }

  footer > .footer-copy {
    justify-self: start;
    grid-column: 1;
  }

  footer > .footer-logo-cell {
    justify-self: center;
    grid-column: 2;
  }

  footer > .footer-logo-cell > .container {
    display: flex;
    justify-content: center;
  }

  footer > .footer-links {
    justify-self: end;
    grid-column: 3;
  }

  @media (max-width: 900px) {
    footer {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }
    footer > .footer-copy {
      grid-column: 1;
      justify-self: center;
      text-align: center;
    }
    footer > .footer-logo-cell {
      grid-column: 1;
    }
    footer > .footer-links {
      grid-column: 1;
      justify-self: center;
      justify-content: center;
    }
  }
    
.logo-footer .logo-red,
.logo-footer .logo-cyan {
  opacity: 0.4;
  animation-duration: 4s; /* plus lent */
}
    
.logo-footer {
  animation: flickerFooter 8s infinite;
}

@keyframes flickerFooter {
  0%, 98%, 100% { opacity: 1; }
  99% { opacity: 0.92; }
}
    
.logo-footer .logo-scanlines {
  opacity: 0.5;
}    
    
.logo-footer:hover .logo-red,
.logo-footer:hover .logo-cyan {
  opacity: 0.7;
}
    
footer .logo-animated {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

  /* Centrer le glyphe dans la boÃ®te fixe (sinon lâ€™img block reste Ã  gauche) */
  footer .logo-layer {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Logo footer : rendu net (pas de halo drop-shadow ni calques type Â« flou Â») */
  footer .logo-animated.logo-footer .logo-svg {
    filter: none;
  }

  footer .logo-animated.logo-footer .logo-red,
  footer .logo-animated.logo-footer .logo-cyan,
  footer .logo-animated.logo-footer .logo-scanlines {
    display: none;
  }

  .footer-brand {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
  }

  .footer-copy {
    font-size: 0.78rem;
    color: var(--gray);
    font-family: 'Space Mono', monospace;
    text-align: left;
    margin: 0;
  }

  .footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cyan); }

  /* â”€â”€â”€ DIVIDER LINE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .section-divider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(249,175,25,0.3) 40%, rgba(255,255,255,0.3) 60%, transparent 100%);
  }

  /* â”€â”€ ON AIR widget â”€â”€ */
  .hero-onair {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto; /* colle Ã  droite proprement */
  aspect-ratio: 16 / 9;
}
/* pas de drop-shadow : avec floatOnAir Ã§a dessinait un contour / halo rectangulaire animÃ© */
.hero-onair {
  filter: none;
}
    
  @media (max-width: 1000px) { .hero-onair { display: none; } }

  .onair-scanline {
    position: absolute; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.06), transparent);
    z-index: 3; pointer-events: none;
    animation: onair-scan 5s linear infinite;
  }
  @keyframes onair-scan { from { top: -80px; } to { top: 100%; } }

  .onair-img-stack {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.72;
    isolation: isolate; /* mÃ©lange contenu du stack sans Â« fuiter Â» sur tout le hero */
  }
  .onair-img-layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
  /* plus de screen : le blend sur toute la boÃ®te 16:9 dessinait un fond / contour autour du PNG */
  .onair-main { z-index: 1; mix-blend-mode: normal; }
  .onair-red  { z-index: 0; mix-blend-mode: normal; opacity: 0; filter: hue-rotate(0deg) saturate(3); }
  .onair-cyan { z-index: 0; mix-blend-mode: normal; opacity: 0; filter: grayscale(1) brightness(1.5); }
  .onair-bar  { position: absolute; left: 0; right: 0; background: rgba(255,255,255,0.15); height: 0; z-index: 4; pointer-events: none; }
  .onair-status {
    position: absolute; bottom: -24px; right: 0;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(240,240,245,0.3); z-index: 5;
  }
  .onair-status span { color: var(--pink); }
    
/* Glow dÃ©sactivÃ© : le blur + dÃ©passement (inset nÃ©gatif) formait un cadre visible au mouvement */
.onair-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}

/* Scanlines : masque = silhouette du PNG (comme object-fit: contain) â†’ pas de rectangle en overlay */
.onair-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 5;
  -webkit-mask-image: url('../assets/images/onair.png');
  mask-image: url('../assets/images/onair.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Grain : mÃªme masque que le visuel ON AIR (Ã©vite un voile rectangulaire) */
.onair-noise {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/noise.svg');
  opacity: 0.1;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 6;
  -webkit-mask-image: url('../assets/images/onair.png');
  mask-image: url('../assets/images/onair.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* RGB layers boost */
.onair-red {
  filter: hue-rotate(-10deg) saturate(5) brightness(1.3);
}

.onair-cyan {
  filter: grayscale(1) brightness(1.6);
}

/* V2 ON AIR = flottement vivant (filtre lÃ©ger : Ã©vite un relief Â« bord de boÃ®te Â») */
.hero-onair.cinematic {
  animation: floatOnAir 6s ease-in-out infinite;
  filter: contrast(1.04) brightness(1.03);
}

@keyframes floatOnAir {
  0%   { transform: translateY(0px) translateX(0px); }
  25%  { transform: translateY(-6px) translateX(2px); }
  50%  { transform: translateY(-10px) translateX(-2px); }
  75%  { transform: translateY(-4px) translateX(1px); }
  100% { transform: translateY(0px) translateX(0px); }
}
    
.site-video-bg .hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: contrast(1.06) brightness(0.96);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.site-video-bg .hero-video-overlay-left {
  background: linear-gradient(
    to right,
    rgba(7, 11, 10, 0.28) 0%,
    rgba(7,11,10,0.26) 22%,
    rgba(7,11,10,0.08) 50%,
    transparent 78%
  );
  z-index: 1;
}

.site-video-bg .hero-video-overlay-bottom {
  background: linear-gradient(
    to top,
    rgba(7, 11, 10, 0.22) 0%,
    rgba(7,11,10,0.24) 18%,
    rgba(7,11,10,0.06) 40%,
    transparent 72%
  );
  z-index: 1;
}

.hero > *:not(.hero-bg) {
  position: relative;
  z-index: 2;
}
    
.hero-content {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 40px; /* un peu rÃ©duit */  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-right {
  min-width: 0;
}
    
    @media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none; /* comme avant */
  }
}

  /* â”€â”€â”€ Retour en haut (charte : gris / bordure rose, Space Mono) â”€â”€â”€ */
  .back-to-top {
    position: fixed;
    right: max(16px, 4vw);
    bottom: max(20px, 4vh);
    z-index: 90;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 51, 51, 0.9);
    border: 1px solid rgba(249, 175, 25, 0.4);
    color: var(--pink);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s,
      border-color 0.25s,
      background 0.25s,
      color 0.25s;
    padding: 0;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .back-to-top:hover,
  .back-to-top:focus-visible {
    border-color: var(--pink);
    background: rgba(249, 175, 25, 0.12);
    color: var(--white);
  }

  .back-to-top:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
  }

  .back-to-top svg {
    display: block;
    flex-shrink: 0;
  }

