/* ============ POLICES LOCALES ============ */
/* Bricolage Grotesque */
@font-face { font-family: 'Bricolage Grotesque'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/bricolage-grotesque-v9-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Bricolage Grotesque'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/bricolage-grotesque-v9-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Bricolage Grotesque'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/bricolage-grotesque-v9-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Bricolage Grotesque'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/bricolage-grotesque-v9-latin-800.woff2') format('woff2'); }

/* Outfit */
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/outfit-v15-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/outfit-v15-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/outfit-v15-latin-500.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2'); }

/* Special Elite */
@font-face { font-family: 'Special Elite'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/special-elite-v20-latin-regular.woff2') format('woff2'); }

  :root {
    --blue: #0606B4;
    --blue-deep: #04047d;
    --red: #DD0B0C;
    --red-deep: #b00808;
    --white: #ffffff;
    --paper: #f7f7fb;
    --ink: #14142a;
    --ink-soft: #4a4a63;
    --line: #e6e6f0;
    --font-special: 'Special Elite', cursive;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, .display {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 26px; }

  a { text-decoration: none; color: inherit; }

  /* ============ NAV ============ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 26px;
    background: rgba(255,255,255,0);
    transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 24px rgba(6,6,180,0.07);
    padding: 10px 26px;
  }
  nav .logo-link { display: block; transition: height .35s ease; }
  nav .logo-img { height: 80px; display: block; transition: height .35s ease; }
  nav.scrolled .logo-img { height: 65px; }
  nav .nav-links { display: flex; gap: 30px; align-items: center; }
  nav .nav-links a {
    font-size: 14px; font-weight: 500; color: var(--ink);
    position: relative; padding: 4px 0;
  }
  nav .nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--red);
    transition: width .25s ease;
  }
  nav .nav-links a:hover::after { width: 100%; }
  nav .nav-cta {
    background: var(--blue); color: #fff !important;
    padding: 12px 34px; border-radius: 100px;
    font-weight: 600; font-size: 14px;
    transition: transform .2s ease, background .2s ease;
  }
  nav .nav-cta:hover { background: var(--red); transform: translateY(-2px); }
  nav .nav-cta::after { display: none; }
  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
  .burger span { width: 26px; height: 3px; background: var(--blue); border-radius: 3px; transition: .3s; }

  /* ============ HERO ============ */
  .hero {
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute; top: -180px; right: -180px;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(6,6,180,0.07), transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  .hero-inner { position: relative; z-index: 1; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(221,11,12,0.08);
    color: var(--red);
    font-family: var(--font-special);
    font-size: 14px; font-weight: 400;
    padding: 7px 15px; border-radius: 100px;
    letter-spacing: 0.02em;
    margin-bottom: 26px;
  }
  .eyebrow .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }

  .hero h1 {
    font-size: clamp(2.9rem, 7vw, 5.6rem);
    color: var(--blue);
    max-width: 14ch;
  }
  .hero h1 .accent { color: var(--red); }
  .hero h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2.5px var(--blue);
  }
  .hero p.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.32rem);
    color: var(--ink-soft);
    max-width: 46ch;
    margin: 24px 0 34px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

  /* ---- hero : disposition texte + vidéo ---- */
  .hero-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: stretch;
  }
  .hero-text { display: flex; flex-direction: column; justify-content: center; }
  .hero-video-wrap {
    width: 280px;            /* même largeur qu'un carré du bento */
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(6,6,180,0.12);
    align-self: stretch;     /* prend toute la hauteur du bloc texte */
  }
  .hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-video-badge {
    position: absolute; top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(20,20,42,0.55);
    backdrop-filter: blur(6px);
    color: #fff; font-size: 11px; font-weight: 600;
    padding: 6px 11px; border-radius: 100px;
    letter-spacing: .04em;
  }
  .hero-video-badge .live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red);
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 15px;
    padding: 15px 28px; border-radius: 100px;
    cursor: pointer; border: 2px solid transparent;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  }
  .btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(221,11,12,0.28); }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(221,11,12,0.36); }
  .btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(6,6,180,0.26); }
  .btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(6,6,180,0.34); }
  .btn-ghost { background: #fff; color: var(--blue); border-color: var(--blue); }
  .btn-ghost:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
  .btn svg { width: 18px; height: 18px; }

  /* ---- mosaïque hero ---- */
  .hero-mosaic {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
    aspect-ratio: 4 / 2;
  }
  .tile {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
  }
  .tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
  .tile:hover img { transform: scale(1.07); }
  /* bento 4x2 : grand carré 2x2 + 2 badges + 2 photos 1x1 */
  .tile.t1 { grid-column: 1 / 3; grid-row: 1 / 3; }           /* grand carré 2x2 */
  .tile.badge-tile-1 { grid-column: 3 / 4; grid-row: 1 / 2; } /* badge 1x1 */
  .tile.t3 { grid-column: 4 / 5; grid-row: 1 / 2; }           /* carré 1x1 */
  .tile.badge-tile-2 { grid-column: 3 / 4; grid-row: 2 / 3; } /* badge 1x1 */
  .tile.t4 { grid-column: 4 / 5; grid-row: 2 / 3; }           /* carré 1x1 */
  .tile.badge-tile-1,
  .tile.badge-tile-2 {
    background: var(--blue);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: #fff; text-align: center; padding: 16px;
    border: none;
  }
  .tile.badge-tile-1 .big,
  .tile.badge-tile-2 .big { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 4rem; line-height: 1; }
  .tile.badge-tile-1 .small,
  .tile.badge-tile-2 .small { font-size: 16px; opacity: .85; margin-top: 8px; letter-spacing: .03em; line-height: 1.35; }

  /* ============ SECTIONS GÉNÉRIQUES ============ */
  .section { padding: 100px 0; }
  .section-head { max-width: 620px; margin-bottom: 56px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .kicker {
    font-family: var(--font-special);
    font-size: 15px; font-weight: 400; letter-spacing: 0.04em;
    color: var(--red);
    margin-bottom: 14px;
  }
  .section-head h2 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    color: var(--blue);
  }
  .section-head p {
    margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem;
  }

  /* ============ CONCEPT ============ */
  .concept { background: var(--paper); }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px 28px;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .step:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(6,6,180,0.1); }
  .step .num {
    font-family: 'Bricolage Grotesque'; font-weight: 800;
    font-size: 1rem; color: #fff;
    background: var(--red);
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .step .ico {
    width: 52px; height: 52px; margin-bottom: 16px;
    color: var(--blue);
  }
  .step .ico svg { width: 100%; height: 100%; }
  .step h3 { font-size: 1.3rem; color: var(--blue); margin-bottom: 8px; }
  .step p { color: var(--ink-soft); font-size: 0.98rem; }

  .concept-highlight {
    margin-top: 40px;
    background: var(--blue);
    color: #fff;
    border-radius: 24px;
    padding: 40px 44px;
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
  }
  .concept-highlight .ch-ico {
    width: 64px; height: 64px; flex-shrink: 0;
    background: rgba(255,255,255,0.14);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
  }
  .concept-highlight .ch-ico svg { width: 34px; height: 34px; color: #fff; }
  .concept-highlight .ch-text { flex: 1; min-width: 260px; }
  .concept-highlight h3 { font-size: 1.5rem; margin-bottom: 6px; }
  .concept-highlight p { opacity: .9; font-size: 1rem; }

  /* ============ FORMULES ============ */
  .formules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .formule {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .formule:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(6,6,180,0.13); }
  .formule .f-img { height: 230px; overflow: hidden; position: relative; }
  .formule .f-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .formule:hover .f-img img { transform: scale(1.06); }
  .formule .f-tag {
    position: absolute; top: 18px; left: 18px;
    color: #fff; font-weight: 600; font-size: 12px;
    padding: 7px 14px; border-radius: 100px;
    letter-spacing: .04em; text-transform: uppercase;
  }
  .f-tag.blue { background: var(--blue); }
  .f-tag.red { background: var(--red); }
  .formule .f-body { padding: 32px 30px 34px; display: flex; flex-direction: column; flex: 1; }
  .formule .f-body h3 { font-size: 1.7rem; color: var(--blue); }
  .formule .f-sub { font-family: var(--font-special); color: var(--ink-soft); font-size: 0.92rem; margin: 6px 0 18px; }
  .formule .f-list { list-style: none; margin-bottom: 26px; }
  .formule .f-list li {
    display: flex; gap: 11px; align-items: flex-start;
    padding: 8px 0; font-size: 0.97rem; color: var(--ink);
    border-bottom: 1px dashed var(--line);
  }
  .formule .f-list li:last-child { border-bottom: none; }
  .formule .f-list li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
  .formule .f-cta { margin-top: auto; }
  .formule .f-cta .btn { width: 100%; justify-content: center; }
  .check-blue { color: var(--blue); }
  .check-red { color: var(--red); }

  /* ============ GALERIE ============ */
  /* ============ BENTO SLIDER ============ */
  .bento-wrap {
    position: relative;
    padding: 0 54px;
    max-width: 1180px;
    margin: 0 auto;
  }
  .bento-viewport { overflow: hidden; border-radius: 18px; }
  .bento-track {
    display: flex;
    gap: 14px;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    cursor: grab;
    will-change: transform;
  }
  .bento-track.dragging { transition: none; cursor: grabbing; }

  /* Une colonne du bento — 2 rangées de hauteur */
  .bento-col {
    display: grid;
    gap: 14px;
    grid-template-rows: 200px 200px;
    flex-shrink: 0;
  }
  /* Pattern 1 : Bloc 2x2 — un grand carré */
  .bento-col.col-2x2 { grid-template-columns: 414px; }
  .bento-col.col-2x2 .cell { grid-column: 1; grid-row: 1 / 3; }

  /* Pattern 2 : Wide + Small */
  .bento-col.col-wide-small { grid-template-columns: 414px; }
  .bento-col.col-wide-small .cell-wide  { grid-column: 1; grid-row: 1; }
  .bento-col.col-wide-small .cell-small { grid-column: 1; grid-row: 2; }

  /* Pattern 3 : Small + Small (colonne étroite) */
  .bento-col.col-small-small { grid-template-columns: 200px; }
  .bento-col.col-small-small .cell:nth-child(1) { grid-column: 1; grid-row: 1; }
  .bento-col.col-small-small .cell:nth-child(2) { grid-column: 1; grid-row: 2; }

  /* Pattern 4 : Small + 2 Smalls */
  .bento-col.col-small-2small { grid-template-columns: repeat(2, 200px); }
  .bento-col.col-small-2small .cell-top { grid-column: 1 / 3; grid-row: 1; }
  .bento-col.col-small-2small .cell-bl  { grid-column: 1; grid-row: 2; }
  .bento-col.col-small-2small .cell-br  { grid-column: 2; grid-row: 2; }

  .bento-col .cell {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--paper);
  }
  .bento-col .cell img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s ease;
  }
  .bento-col .cell:hover img { transform: scale(1.06); }
  .bento-col .cell::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(6,6,180,0.16);
    opacity: 0;
    transition: opacity .3s ease;
  }
  .bento-col .cell:hover::after { opacity: 1; }
  .bento-col .cell .cell-zoom {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0.7);
    width: 42px; height: 42px; border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; z-index: 2;
    transition: opacity .3s ease, transform .3s ease;
  }
  .bento-col .cell .cell-zoom svg { width: 19px; height: 19px; color: var(--blue); }
  .bento-col .cell:hover .cell-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }

  /* Flèches — sans cercle */
  .bento-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    background: none; border: none; box-shadow: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--blue); z-index: 10;
    transition: transform .2s ease, opacity .2s ease, color .2s ease;
  }
  .bento-btn svg { width: 30px; height: 30px; }
  .bento-btn:hover { color: var(--red); transform: translateY(-50%) scale(1.15); }
  .bento-btn:disabled { opacity: .25; pointer-events: none; }
  .bento-prev { left: 0; }
  .bento-next { right: 0; }

  @media (max-width: 760px) {
    .bento-wrap { padding: 0 40px; }
    .bento-track { grid-template-rows: repeat(2, 140px); }
    .bento-col { grid-template-columns: repeat(2, 140px); grid-template-rows: repeat(2, 140px); }
    .bento-col.col-2x2 { grid-template-columns: 294px; }
    .bento-col.col-wide-small { grid-template-columns: 294px; }
    .bento-col.col-small-small { grid-template-columns: 140px; }
    .bento-col.col-small-2small { grid-template-columns: repeat(2, 140px); }
  }

  /* ============ LIGHTBOX ============ */
  .lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(10, 10, 20, 0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .lightbox.open { opacity: 1; pointer-events: auto; }

  .lb-img-wrap {
    position: relative;
    max-width: 90vw; max-height: 88vh;
    display: flex; align-items: center; justify-content: center;
  }
  .lb-img-wrap img {
    max-width: 90vw; max-height: 88vh;
    border-radius: 14px;
    object-fit: contain;
    transform: scale(0.92);
    transition: transform .3s cubic-bezier(.5,1.4,.5,1);
    display: block;
  }
  .lightbox.open .lb-img-wrap img { transform: scale(1); }

  .lb-btn {
    position: fixed;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; cursor: pointer;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .2s ease;
    backdrop-filter: blur(8px);
  }
  .lb-btn:hover { background: rgba(255,255,255,0.22); transform: scale(1.08); }
  .lb-btn svg { width: 22px; height: 22px; }
  .lb-close { top: 22px; right: 22px; }
  .lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
  .lb-prev:hover  { transform: translateY(-50%) scale(1.08); }
  .lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
  .lb-next:hover  { transform: translateY(-50%) scale(1.08); }

  .lb-counter {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 13px; font-weight: 500;
    background: rgba(0,0,0,0.4);
    padding: 6px 14px; border-radius: 100px;
    backdrop-filter: blur(6px);
  }

  @media (max-width: 760px) {
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
  }

  /* ============ MAISON AZOUL ============ */
  .azoul { background: var(--paper); }
  .azoul-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px; align-items: center;
  }
  .azoul-img {
    border-radius: 24px; overflow: hidden;
    aspect-ratio: 4/3.4;
    position: relative;
  }
  .azoul-img img { width: 100%; height: 100%; object-fit: cover; }
  .azoul-img .stamp {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--red); color: #fff;
    font-family: 'Bricolage Grotesque'; font-weight: 800;
    padding: 12px 18px; border-radius: 14px;
    font-size: 0.95rem; line-height: 1.2;
  }
  .azoul-text h2 { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--blue); margin-bottom: 18px; }
  .azoul-text p { color: var(--ink-soft); margin-bottom: 14px; }
  .azoul-points { display: flex; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
  .azoul-points .pt .n {
    font-family: 'Bricolage Grotesque'; font-weight: 800;
    font-size: 2.1rem; color: var(--red);
  }
  .azoul-points .pt .l { font-size: 0.88rem; color: var(--ink-soft); }

  /* ============ ZONE ============ */
  .zone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: center;
  }
  .zone-text h2 { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--blue); margin-bottom: 16px; }
  .zone-text p { color: var(--ink-soft); margin-bottom: 24px; }
  .dept-list { display: flex; flex-direction: column; gap: 12px; }
  .dept {
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px; padding: 16px 20px;
    transition: transform .25s ease, border-color .25s ease;
  }
  .dept:hover { transform: translateX(6px); border-color: var(--blue); }
  .dept .badge {
    background: var(--blue); color: #fff;
    font-family: 'Bricolage Grotesque'; font-weight: 800;
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .dept .d-name { font-weight: 600; }
  .dept .d-cities { font-size: 0.85rem; color: var(--ink-soft); }
  .zone-map {
    border-radius: 24px; overflow: hidden;
    background: var(--blue);
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .zone-map svg { width: 88%; height: 88%; }

  /* ============ CONTACT ============ */
  .contact { background: var(--blue); color: #fff; }
  .contact .section-head h2 { color: #fff; }
  .contact .section-head p { color: rgba(255,255,255,0.78); }
  .contact .kicker { color: var(--red); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
  .form-card {
    background: #fff; border-radius: 24px;
    padding: 34px 32px;
  }
  .form-card .fc-title { font-family: 'Bricolage Grotesque'; font-weight: 800; color: var(--blue); font-size: 1.3rem; margin-bottom: 6px; }
  .form-card .fc-sub { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 22px; }
  .field-group { margin-bottom: 16px; }
  .field-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
  .field-group input, .field-group select, .field-group textarea {
    width: 100%; font-family: 'Outfit', sans-serif; font-size: 0.95rem;
    padding: 12px 14px; border: 1.5px solid var(--line);
    border-radius: 12px; color: var(--ink);
    background: var(--paper);
    transition: border-color .2s ease;
  }
  .field-group input:focus, .field-group select:focus, .field-group textarea:focus {
    outline: none; border-color: var(--blue);
  }
  .field-group textarea { resize: vertical; min-height: 90px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
  .form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

  .direct-contact { display: flex; flex-direction: column; gap: 16px; }
  .dc-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 22px 24px;
    display: flex; align-items: center; gap: 18px;
    transition: background .25s ease, transform .25s ease;
  }
  .dc-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
  .dc-card .dc-ico {
    width: 50px; height: 50px; border-radius: 13px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .dc-card .dc-ico svg { width: 26px; height: 26px; }
  .dc-card .dc-label { font-size: 0.8rem; opacity: .75; }
  .dc-card .dc-value { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.15rem; }
  .dc-whatsapp .dc-ico svg { color: #25D366; }
  .dc-phone .dc-ico svg { color: var(--blue); }
  .dc-insta .dc-ico svg { color: var(--red); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 30px;
  }
  .footer-top {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 40px; flex-wrap: wrap;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .footer-logo-box {
    display: inline-block;
    margin-bottom: 16px;
  }
  .footer-logo-box img { height: 140px; display: block; }
  .footer-brand p { font-size: 0.9rem; max-width: 34ch; }
  .footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-family: 'Bricolage Grotesque'; font-weight: 700; }
  .footer-col a, .footer-col span { display: block; font-size: 0.9rem; margin-bottom: 9px; transition: color .2s ease; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    padding-top: 24px; padding-right: 100px; display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
  }

  /* ============ ANIMATIONS ============ */
  .reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 940px) {
    .azoul-grid, .zone-grid, .contact-grid { grid-template-columns: 1fr; }
    .azoul-img { aspect-ratio: 16/10; }
    .zone-map { aspect-ratio: 16/10; }
    .hero-top { grid-template-columns: 1fr; gap: 30px; }
    .hero-video-wrap {
      width: 100%;
      max-width: 340px;
      aspect-ratio: 9 / 13;
      align-self: flex-start;
    }
  }
  @media (max-width: 760px) {
    nav .nav-links { display: none; }
    .burger { display: flex; }
    .section { padding: 70px 0; }
    .hero { padding: 120px 0 60px; }
    .steps { grid-template-columns: 1fr; }
    .formules-grid { grid-template-columns: 1fr; }
    .hero-mosaic {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: none;
      grid-auto-rows: 140px;
      aspect-ratio: auto;
    }
    .tile.t1 { grid-column: 1 / 3; grid-row: span 2; }
    .tile.t2 { grid-column: 1 / 3; grid-row: auto; }
    .tile.t3, .tile.t4 { grid-column: auto; }
    .tile.badge-tile-1, .tile.badge-tile-2 { grid-column: auto; }
    .field-row { grid-template-columns: 1fr; }
    .hero-video-wrap { max-width: 100%; aspect-ratio: 16 / 12; }
    .concept-highlight { padding: 30px 26px; }
  }

  /* menu mobile */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 199;
    background: var(--white);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.7,0,.2,1);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.6rem; color: var(--blue); }
  .mobile-menu a.red { color: var(--red); }

  /* ============ WIDGET CONTACT FLOTTANT ============ */
  .contact-widget {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 300;
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 14px;
  }

  /* bouton rond */
  .cw-btn {
    display: flex; align-items: center;
    background: var(--red);
    color: #fff;
    border: none; cursor: pointer;
    height: 60px;
    border-radius: 100px;
    box-shadow: 0 8px 26px rgba(221,11,12,0.4);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    padding: 0;
  }
  .cw-btn:hover { background: var(--red-deep); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(221,11,12,0.5); }
  .cw-btn .cw-icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cw-btn .cw-icon svg { width: 26px; height: 26px; }
  .cw-btn .cw-label {
    max-width: 0;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 15px;
    overflow: hidden;
    transition: max-width .35s ease, padding .35s ease;
  }
  .cw-btn:hover .cw-label { max-width: 200px; padding-right: 22px; }
  /* pulsation discrète au repos */
  .cw-btn::after {
    content: ""; position: absolute;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--red);
    opacity: 0; z-index: -1;
  }
  @keyframes cwpulse {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.7); opacity: 0; }
  }
  .cw-btn.pulse::after { animation: cwpulse 2s ease-out infinite; }

  /* pop-up */
  .cw-popup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(20,20,42,0.25);
    width: 290px;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0.6) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.5,1.4,.5,1), opacity .25s ease;
  }
  .cw-popup.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .cw-popup-head {
    background: var(--blue);
    color: #fff;
    padding: 18px 20px;
    position: relative;
  }
  .cw-popup-head h4 {
    font-family: var(--font-special);
    font-weight: 400;
    font-size: 1.15rem; margin-bottom: 2px;
  }
  .cw-popup-head p { font-size: .82rem; opacity: .85; }
  .cw-close {
    position: absolute; top: 14px; right: 14px;
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.18);
    border: none; border-radius: 50%;
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease;
  }
  .cw-close:hover { background: rgba(255,255,255,0.32); }
  .cw-close svg { width: 14px; height: 14px; }
  .cw-popup-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
  .cw-action {
    display: flex; align-items: center; gap: 13px;
    padding: 13px 14px;
    border-radius: 13px;
    text-decoration: none;
    border: 1px solid var(--line);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .cw-action:hover { transform: translateX(3px); border-color: var(--blue); background: var(--paper); }
  .cw-action .cwa-ico {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cw-action .cwa-ico svg { width: 21px; height: 21px; }
  .cwa-phone .cwa-ico { background: rgba(6,6,180,0.1); }
  .cwa-phone .cwa-ico svg { color: var(--blue); }
  .cwa-wa .cwa-ico { background: rgba(37,211,102,0.12); }
  .cwa-wa .cwa-ico svg { color: #25D366; }
  .cwa-devis .cwa-ico { background: rgba(221,11,12,0.1); }
  .cwa-devis .cwa-ico svg { color: var(--red); }
  .cw-action .cwa-txt strong {
    display: block; font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: .95rem; color: var(--ink);
  }
  .cw-action .cwa-txt span { font-size: .78rem; color: var(--ink-soft); }

  @media (max-width: 600px) {
    .contact-widget { bottom: 16px; right: 16px; }
    .cw-popup { width: 270px; }
  }

  /* note illustrations provisoires */
  .placeholder-note {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(221,11,12,0.07);
    border: 1px dashed rgba(221,11,12,0.4);
    color: var(--red-deep);
    font-size: 0.82rem; font-weight: 500;
    padding: 8px 16px; border-radius: 100px;
    margin-top: 22px;
  }
  .placeholder-note svg { width: 15px; height: 15px; }
