    :root {
      --pad-x: clamp(20px, 3vw, 42px);
      --pad-y: clamp(18px, 2.5vw, 34px);
      --text: #ffffff;
      --muted: rgba(255,255,255,0.82);
      --line: rgba(255,255,255,0.14);
      --shadow: 0 8px 30px rgba(0,0,0,0.28);
      --bg: #040404;
    }
    * { box-sizing: border-box; }
    html, body {
      margin: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: var(--bg);
      color: var(--text);
    }
    body {
      font-family: 'Lato', Arial, sans-serif;
    }
    .page {
      position: relative;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.02), rgba(0,0,0,0.52));
    }
    .video-bg,
    .video-overlay,
    .content {
      position: absolute;
      inset: 0;
    }
    .video-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      z-index: 0;
      filter: saturate(1.02) contrast(1.02);
      background: #000;
    }
    .video-overlay {
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(circle at center, rgba(0,0,0,0.08), rgba(0,0,0,0.48) 72%, rgba(0,0,0,0.72)),
        linear-gradient(to bottom, rgba(0,0,0,0.22), rgba(0,0,0,0.30));
    }
    .content {
      z-index: 2;
      padding: var(--pad-y) var(--pad-x);
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
    }
    .top-left,
    .top-right,
    .bottom-left,
    .bottom-right,
    .center-message {
      position: absolute;
    }
    .top-left {
      top: var(--pad-y);
      left: var(--pad-x);
      z-index: 3;
    }
    .top-right {
      top: var(--pad-y);
      right: var(--pad-x);
      text-align: right;
      z-index: 3;
    }
    .bottom-left {
      left: var(--pad-x);
      bottom: calc(var(--pad-y) + 18px);
      max-width: min(52vw, 720px);
      z-index: 3;
    }
    .bottom-right {
      right: var(--pad-x);
      bottom: calc(var(--pad-y) + 18px);
      z-index: 3;
    }
    .logo {
      display: block;
      max-width: clamp(150px, 15vw, 250px);
      width: 100%;
      height: auto;
      filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
    }
    .phone-label {
      font-size: clamp(14px, 1.25vw, 18px);
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.2;
      text-shadow: var(--shadow);
    }
    .phone-link {
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease, opacity 0.2s ease;
    }
    .phone-link:hover {
      border-color: rgba(255,255,255,0.7);
      opacity: 0.92;
    }
    .address {
      margin: 0;
      font-size: clamp(12px, 0.92vw, 15px);
      line-height: 2.45;
      font-weight: 700;
      color: var(--muted);
      text-shadow: var(--shadow);
      padding-bottom: 2px;
    }
    .address span {
      opacity: 0.95;
    }
    .socials {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 2px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .socials li {
      margin: 0;
      padding: 0;
    }
    .socials a {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      /*border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.45);*/
      background: transparent;
      text-decoration: none;
      overflow: hidden;
      transition: border-color 0.28s ease, transform 0.2s ease;
    }
    .socials a::before {
      content: "";
      position: absolute;
      inset: 5px;
      border-radius: 50%;
      background: #ffffff;
      transform: scale(0);
      transform-origin: center;
      transition: transform 0.32s ease;
      z-index: 1;
    }
    .socials a:hover::before,
    .socials a:focus-visible::before {
      transform: scale(1);
    }
    .socials a:hover,
    .socials a:focus-visible {
      border-color: #ffffff;
    }
    .socials img {
      position: relative;
      z-index: 2;
      width: 30px;
      height: 30px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter 0.32s ease, transform 0.22s ease;
    }
    .socials a:hover img,
    .socials a:focus-visible img {
      filter: brightness(0) invert(0);
      transform: scale(1.02);
    }
    .center-wrap {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      pointer-events: none;
      padding: 110px 32px 110px;
    }
    .center-message {
      position: relative;
      left: 0;
      top: 0;
      transform: translate3d(0, 0, 0);
      text-align: center;
      will-change: transform;
      transition: transform 0.18s ease-out;
      max-width: min(92vw, 980px);
      z-index: 3;
    }
    .center-message h1 {
      margin: 0;
      font-family: 'Bebas Neue', sans-serif;
      font-weight: 400;
      font-size: clamp(42px, 5.2vw, 92px);
      letter-spacing: 0.03em;
      line-height: 0.92;
      color: #fff;
      text-transform: uppercase;
      text-shadow:
        0 2px 0 rgba(0,0,0,0.18),
        0 10px 28px rgba(0,0,0,0.46),
        0 0 18px rgba(255,255,255,0.08);
    }
    .center-message p {
      margin: 14px 0 0;
      font-size: clamp(12px, 1.2vw, 35px);
      font-weight: 400;
      color: rgba(255,255,255,0.78);
      /*letter-spacing: 0.06em;*/
      text-transform: uppercase;
      text-shadow: var(--shadow);
    }
    .corner-fade {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      background:
        linear-gradient(to right, rgba(0,0,0,0.18), transparent 18%, transparent 82%, rgba(0,0,0,0.18)),
        linear-gradient(to bottom, rgba(0,0,0,0.16), transparent 18%, transparent 82%, rgba(0,0,0,0.16));
      mix-blend-mode: normal;
    }
    .mobile-break {
      display: none;
    }
    @media (max-width: 900px) {
      html, body {
        overflow: auto;
      }
      .page {
        min-height: 100svh;
        height: auto;
      }
      .content {
        min-height: 100svh;
      }
      .top-left,
      .top-right,
      .bottom-left,
      .bottom-right {
        position: static;
      }
      .content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;
      }
      .top-bar,
      .bottom-bar {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        z-index: 2;
      }
      .bottom-bar {
        align-items: center;
        text-align: center;
        gap: 12px;
      }
      .top-right,
      .bottom-right {
        text-align: right;
      }
      .bottom-right {
        width: 100%;
        display: flex;
        justify-content: center;
      }
      .center-wrap {
        position: relative;
        min-height: 44svh;
        padding: 48px 12px;
      }
      .center-message h1 {
        font-size: clamp(38px, 11vw, 72px);
      }
      .center-message p {
        font-size: clamp(12px, 3.5vw, 35px);
      }
      .bottom-left {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
        max-width: none;
      }
      .address {
          text-align: center;
          line-height: 1.45;
          max-width: 260px; /* 🔥 clé du centrage visuel */
          margin: 0 auto;
        }
      .socials {
        justify-content: center;
      }
      .mobile-break {
          display: block;
        }
        .sep {
          display: none;
        }
    }
    @media (max-width: 640px) {
      .top-bar,
      .bottom-bar {
        flex-direction: column;
        align-items: flex-start;
      }
      .top-right,
      .bottom-right {
        text-align: left;
      }
      .socials {
        justify-content: flex-start;
        flex-wrap: wrap;
      }
    }