/* ============================================
   TRIKROMI — Styles principaux
   Reproduction de la maquette en layout fluide.
   Astuce : on raisonne en "vw" calés sur 1920px pour garder
   les proportions exactes de la maquette tout en restant fluide.
   1px maquette = (1 / 1920 * 100)vw = 0.05208vw
   ============================================ */

/* Conteneur global calé sur les marges de la maquette (43px) */
.gallery,
.intro,
.services,
.feature,
.contact {
  width: 100%;
  padding-inline: var(--page-margin);
}

/* ---------- GALERIE ---------- */
.gallery {
  padding-top: clamp(60px, 6.4vw, 123px);   /* Figma : 123px sous le bloc 01 */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 46px);            /* Figma : 46px entre images */
}

.gallery img {
  width: 100%;
  aspect-ratio: 897 / 471;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ---------- INTRO ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;                  /* astérisque centré verticalement avec le texte */
  padding-top: clamp(50px, 5vw, 90px);
  padding-bottom: 40px;
}

.intro__mark {
  display: flex;
  justify-content: center;              /* astérisque centré dans la moitié gauche (Figma x≈488) */
}

.intro__mark img {
  width: clamp(90px, 9.4vw, 180px);     /* Figma : 180px à 1920 */
  height: clamp(90px, 9.4vw, 180px);
}

.intro__text {
  max-width: 862px;                     /* Figma : 862px */
}

.intro__lead {
  font-size: var(--fs-intro);
  font-weight: 400;
  line-height: 1.108;                  /* Figma : 51/46 */
  letter-spacing: -0.03em;             /* Figma : -1.38/46 */
  color: var(--color-black);
}

.intro__sub {
  margin-top: 32px;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.385;
  letter-spacing: -0.06em;
  color: var(--color-text-grey);
}

/* ---------- SERVICES ---------- */
.services {
  padding-top: 40px;
  padding-bottom: 80px;
}

.services__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.services__title {
  font-size: var(--fs-section-title);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.services__title .slash {
  font-weight: 400;
}

.services__count {
  font-size: var(--fs-section-title);
  font-weight: 400;
  letter-spacing: -0.07em;
}

.services__list {
  margin-top: 50px;
}

.service {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.service:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.service__id {
  font-size: var(--fs-service);
  font-weight: 300;
  letter-spacing: -0.07em;
}

.service__name {
  font-size: var(--fs-service);
  font-weight: 500;
  letter-spacing: -0.07em;
}

.service__num {
  margin-left: auto;
  font-size: var(--fs-service-num);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--color-faded);
}

/* ---------- FEATURE (grande image + texte) ---------- */
.feature {
  padding-top: 40px;
  padding-bottom: 80px;
}

.feature__img {
  width: 100%;
  aspect-ratio: 1804 / 600;            /* plus court qu'avant (877 -> 600) */
  max-height: clamp(300px, 44vh, 540px);  /* plafond de hauteur sur grand écran */
  object-fit: cover;
  border-radius: var(--radius-xl);
}
/* Espace texte "feature" → image (mesure maquette) */
.feature__text--top + .feature__img { margin-top: var(--space-feature-media); }

.feature__text {
  margin-top: 60px;
  margin-left: auto;
  max-width: 948px;
  text-align: right;
  font-size: var(--fs-medium);
  font-weight: 400;
  line-height: 1.32;                   /* Figma : 45/34 */
  letter-spacing: -0.03em;             /* Figma : -1.02/34 */
}

.feature__text strong {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding-top: var(--space-before-contact);
  padding-bottom: var(--space-before-footer);
}

.contact__title {
  max-width: 1442px;
  font-size: var(--fs-contact);
  font-weight: 400;
  line-height: 1.046;
  letter-spacing: -0.07em;
}

.contact__title a {
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  background: var(--color-footer-bg);
  color: var(--color-white);
  padding: clamp(100px, 8vw, 116px) var(--page-margin) clamp(28px, 3vw, 50px);
  min-height: 100vh;
  min-height: 100dvh;          /* le footer remplit l'écran tout en bas du site */
  display: flex;
  flex-direction: column;
}

/* Ligne du haut : logo + "Top" */
.footer__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__logo { color: var(--color-white); }
.footer__logo svg { width: 161px; height: auto; }
.footer__logo img,
.footer__logo .footer__logo-img { width: 161px; height: auto; display: block; }

.footer__top {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: -1.14px;
}

/* Grand titre "Studio+ Creativ+" */
.footer__headline {
  margin-top: 90px;
  font-family: var(--font-display);
  font-size: var(--fs-hero-footer);
  font-weight: 400;
  line-height: 0.833;
  letter-spacing: -0.06em;
  color: var(--color-light-grey);
}

/* Lien Contact+ */
.footer__contact {
  margin-top: 90px;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: -1.14px;
}

/* Bas de footer */
.footer__bottom {
  margin-top: auto;
}

/* Trait blanc 228px */
.footer__divider {
  width: 228px;
  height: 1px;
  background: var(--color-white);
  margin-bottom: 20px;
}

/* Ligne légale en 3 colonnes */
.footer__legal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.footer__social,
.footer__privacy,
.footer__copyright {
  font-size: var(--fs-tiny);
  font-weight: 500;
  letter-spacing: -0.84px;
}

.footer__privacy { text-align: left; }
.footer__copyright { text-align: right; }

/* ============================================
   RESPONSIVE — adaptation tablette / mobile
   (la maquette n'a pas de version mobile :
    règles classiques pour un design éditorial)
   ============================================ */

/* Les tailles de texte sont maintenant FLUIDES (voir variables.css),
   donc plus besoin de les redéfinir par breakpoint.
   Ici on ne gère que les changements de LAYOUT. */

@media (max-width: 1440px) {
  .footer__headline { letter-spacing: -0.06em; }
  .contact__title { letter-spacing: -0.05em; }
}

@media (max-width: 900px) {
  :root {
    --page-margin: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intro {
    grid-template-columns: 1fr;     /* une seule colonne (le grid restait à 2 colonnes) */
    gap: 24px;
    padding-top: 60px;
  }
  .intro__mark { display: none; }   /* astérisque retiré sur mobile */
  .intro__text { margin-left: 0; max-width: 100%; }

  .feature__text { text-align: left; }

  .footer__legal {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__privacy,
  .footer__copyright { text-align: left; }

  /* liens du footer un peu plus grands sur mobile */
  .footer__social,
  .footer__privacy { font-size: 15px; }
  .footer__social a { font-size: 15px; }

  .site-footer { min-height: auto; }
}


/* ============================================
   HEADER STICKY + LOGO ADAPTATIF
   ============================================ */

.site-header {
  position: fixed;          /* sticky en haut, suit le scroll */
  top: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  z-index: 1000;
  display: flex;
  align-items: center;       /* centre verticalement logo / 4 points / heure */
  justify-content: space-between;
  height: 87px;
  padding: 0 var(--page-margin);   /* plus de padding-top : centrage vertical réel */
  transition: color 0.4s ease, background 0.4s ease;
  /* ---- Liquid glass : verre dépoli translucide ---- */
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 20px;             /* 20px partout */
  border: 1px solid #C2C2C2;       /* bordure un peu moins blanche */
}

/* Le voile s'adapte légèrement selon le thème pour rester lisible */
.site-header[data-theme="dark"] {
  background: rgba(17, 17, 17, 0.18);
}
.site-header[data-theme="light"] {
  background: rgba(255, 255, 255, 0.12);
}

/* Thème clair : éléments du header en noir (sur fond blanc) */
.site-header[data-theme="light"] {
  color: var(--color-black);
}
.site-header[data-theme="light"] .local-time {
  color: var(--color-black);
}

/* Thème sombre : éléments du header en blanc (sur fond noir/image) */
.site-header[data-theme="dark"] {
  color: var(--color-white);
}
.site-header[data-theme="dark"] .local-time {
  color: var(--color-white);
}

.site-header .logo svg { width: 161px; height: auto; }
.site-header .logo { color: inherit; }

/* Logo image (logo.png) : blanc sur fond sombre, noir sur fond clair */
.site-header .logo__img { height: 22px; width: auto; display: block; }
.site-header[data-theme="light"] .logo__img { filter: brightness(0); }            /* fond clair -> logo noir */
.site-header[data-theme="dark"]  .logo__img { filter: brightness(0) invert(1); }  /* fond sombre -> logo blanc */

/* Groupe logo + liens de navigation rapides */
.header__left {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 36px);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 20px);
}
.header__nav a {
  position: relative;
  font-size: 25px;                          /* taille du nav (était 30px, -5px) */
  font-weight: 700;                          /* même graisse que le logo */
  line-height: 1;                            /* centrage vertical propre vs logo */
  letter-spacing: -0.035em;                  /* interlettrage resserré comme le logo */
  text-transform: uppercase;                /* STUDIO+ / CREATIV+ */
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}
/* Soulignement qui se dessine de gauche à droite au survol */
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.header__nav a:hover::after { transform: scaleX(1); }
@media (max-width: 760px) {
  .header__nav { display: none; }   /* sur mobile : logo + menu seulement */
}

/* ---------- CTA Contact (pilule, s'adapte au thème clair/sombre) ---------- */
.header__right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 22px);
}
.header__cta {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: clamp(6px, 0.55vw, 9px) clamp(14px, 1.2vw, 22px);
  font-family: var(--font-body);
  font-size: clamp(12px, 0.8vw, 14px);
  order: -1;                 /* à gauche de l'heure */
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: inherit;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.site-header[data-theme="light"] .header__cta { border-color: #0b0b0b; color: #0b0b0b; }
.site-header[data-theme="light"] .header__cta:hover { background: #0b0b0b; color: #fff; }
.site-header[data-theme="dark"]  .header__cta { border-color: rgba(255,255,255,0.85); color: #fff; }
.site-header[data-theme="dark"]  .header__cta:hover { background: #fff; color: #0b0b0b; border-color: #fff; }
@media (max-width: 760px) {
  .header__right { gap: 10px; }
  .header__cta { padding: 6px 13px; font-size: 11px; }
}
@media (max-width: 480px) {
  .header__right .local-time { display: none; }   /* heure masquée sur mobile (rendu plus propre) */
}

.menu-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
  transition: transform 0.3s ease;
}
.menu-toggle:hover { transform: translate(-50%, -50%) rotate(45deg); }

.local-time {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;        /* l'heure ne se coupe jamais */
  flex-shrink: 0;             /* elle n'est jamais compressée à 0 */
  position: relative;
  z-index: 5;                 /* au-dessus du voile liquid glass */
  color: #000;                /* valeur de secours */
  transition: color 0.4s ease;
  /* Halo léger : garantit la lisibilité quel que soit le fond derrière */
  text-shadow:
    0 0 2px rgba(255,255,255,0.6),
    0 0 4px rgba(255,255,255,0.4);
}
/* Couleur pilotée par le thème du header */
.site-header[data-theme="light"] .local-time {
  color: #000;
  text-shadow: 0 0 3px rgba(255,255,255,0.7);
}
.site-header[data-theme="dark"] .local-time {
  color: #fff;
  text-shadow: 0 0 3px rgba(0,0,0,0.6);
}

/* On décale le contenu pour compenser le header fixe */
body { padding-top: 0; }


/* ============================================
   MÉGA-MENU — rideau noir qui descend du haut
   ============================================ */

.megamenu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  --menu-accent: #ffffff;               /* couleur de survol (blanc) */
  background: var(--color-footer-bg);   /* #111 comme la maquette */
  padding: 34px var(--page-margin);
  overflow-y: auto;
  /* État fermé : rideau remonté hors écran */
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.megamenu.is-open {
  transform: translateY(0);
}

/* Bouton fermer (4 points en croix, comme la maquette) */
.megamenu__close {
  position: absolute;
  left: 50%;
  top: 37px;
  transform: translateX(-50%);
  color: var(--color-white);
  transition: transform 0.3s ease;
}
.megamenu__close:hover { transform: translateX(-50%) rotate(90deg); }

/* Liste des liens en Almarai 126px */
.megamenu__list {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.megamenu__list a {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(30px, 6.56vw, 126px);   /* Figma : 126px @1920 */
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.06em;                  /* Figma : -7.56px */
  color: #efefef;
  text-transform: capitalize;
  /* État fermé : liens décalés + transparents */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.4s ease;
}

/* Cascade d'entrée : chaque lien apparaît avec un léger délai (--i) */
.megamenu.is-open .megamenu__list a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.25s + var(--i) * 0.06s);
}

/* Cascade de sortie : les liens repartent vers le haut, dans l'ordre inverse */
.megamenu.is-closing .megamenu__list a {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: calc((10 - var(--i)) * 0.03s);
}

/* ---- Survol des items : couleur d'accent + les autres s'estompent (focus) ---- */
.megamenu__list a:hover { color: var(--menu-accent); }
/* Quand on survole la liste, les liens non survolés s'effacent (sans délai de cascade) */
.megamenu.is-open .megamenu__list:hover a { color: rgba(239, 239, 239, 0.28); transition-delay: 0s; }
.megamenu.is-open .megamenu__list:hover a:hover { color: var(--menu-accent); transition-delay: 0s; }

@media (prefers-reduced-motion: reduce) {
  .megamenu__list a { transition: color 0.2s ease; }
}

/* Empêche le scroll de la page quand le menu est ouvert */
body.menu-open { overflow: hidden; }

/* Responsive : le clamp gère l'échelle ; on ajuste juste l'interligne */
@media (max-width: 900px) {
  .megamenu__list a { line-height: 1.16; }
}


/* ============================================
   CORRECTIONS ANTI-DÉBORDEMENT + MOBILE
   ============================================ */

/* 1. Empêche tout scroll horizontal sur tout le site */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 2. Le header ne déborde plus jamais : on borne sa largeur */
.site-header {
  max-width: calc(100% - 24px);   /* 12px de marge de chaque côté */
  box-sizing: border-box;
}

/* 3. Réglages header sur tablette / mobile */
@media (max-width: 900px) {
  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
    max-width: calc(100% - 16px);
    height: 64px;
    padding: 0 16px;
    border-radius: 16px;
  }
  .site-header .logo svg { width: 120px; }   /* logo plus petit sur mobile */
  .site-header .logo__img { height: 17px; }
  .header__nav a { font-size: 20px; }         /* nav réduit (était 23px, -3px) */
  .local-time { font-size: 11px; }            /* heure plus compacte */
  .menu-toggle svg { width: 12px; height: 12px; }
  .header__right .local-time { display: none; }   /* heure masquée sur mobile */
}

/* 4. Sur très petit écran, on peut masquer l'heure si ça serre trop */
@media (max-width: 480px) {
  .local-time { font-size: 10px; }
  .site-header .logo svg { width: 100px; }
  .site-header .logo__img { height: 15px; }
}

/* 5. Sécurité : les grosses typos ne débordent jamais horizontalement */
.contact__title,
.footer__headline,
.intro__lead,
.service__name,
.service__id {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* 6. Menu : bouton fermer aligné sur le header, et padding latéral mobile */
@media (max-width: 900px) {
  .megamenu { padding: 28px 24px; }
  .megamenu__close { top: 28px; }
  .megamenu__list { gap: 2px; }
}


/* ============================================
   ANIMATIONS — apparition au scroll
   ============================================ */

/* Élément masqué au départ, révélé quand il entre dans l'écran */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Petit délai en cascade pour les éléments groupés */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* Respecte les préférences d'accessibilité (pas d'animation si l'utilisateur le demande) */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ============================================
   CURSEUR PERSONNALISÉ — rond qui inverse sa couleur
   ============================================ */

/* On masque le curseur système uniquement sur les appareils avec souris fine */
@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none;
  }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    /* difference = inverse la couleur du fond : blanc sur noir, noir sur blanc */
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 99999;
    /* le positionnement (translate) est géré par le JS */
    transition: width 0.25s ease, height 0.25s ease, opacity 0.2s ease;
    will-change: transform;
  }

  /* État agrandi quand on survole un lien / élément cliquable */
  .cursor-dot.is-hover {
    width: 46px;
    height: 46px;
  }

  /* Quand la souris quitte la fenêtre */
  .cursor-dot.is-hidden { opacity: 0; }

  /* Pas de loupe système au survol des vignettes/galeries :
     on garde uniquement le rond custom (le clic pour agrandir fonctionne toujours) */
  html.has-custom-cursor .gallery img,
  html.has-custom-cursor .photo-wall img {
    cursor: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot { transition: opacity 0.2s ease; }
}

/* ============================================
   CARTES / IMAGES — survol global (tout le site)
   ============================================ */
.gallery img {
  cursor: zoom-in;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease,
              opacity 0.45s ease,
              filter 0.45s ease;
  will-change: transform;
}
.gallery img:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .gallery img { transition: none; }
  .gallery img:hover { transform: none; box-shadow: none; }
  .gallery:hover img:not(:hover) { opacity: 1; }
}

/* ============================================
   LIGHTBOX — clic pour agrandir une image
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 90px);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  cursor: zoom-out;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.lightbox.is-open .lightbox__img { transform: scale(1) translateY(0); opacity: 1; }
.lightbox__close {
  position: absolute;
  top: clamp(18px, 2.5vw, 40px);
  right: clamp(18px, 2.5vw, 40px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.15); transform: rotate(90deg); }
body.lightbox-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img { transition: opacity 0.2s ease, visibility 0.2s ease; }
  .lightbox__img { transform: none; }
}

/* ============================================
   SMOOTH SCROLL (Lenis) — styles requis
   ============================================ */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ============================================
   FOOTER — maquette (titre géant + effet verre + culture)
   ============================================ */
.footer__headline {
  position: relative;
  margin-top: clamp(40px, 6vw, 110px);
  font-size: clamp(54px, 12.5vw, 240px);   /* géant comme la maquette */
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  width: fit-content;
  max-width: 100%;
}
.footer__hl-line { display: block; }

/* Image footer.png à la place du titre texte */
.footer__headline-img {
  display: block;
  width: min(92%, 1040px);          /* occupe la largeur comme l'ancien titre */
  height: auto;
  filter: brightness(0) invert(1);  /* visuel noir -> rendu blanc sur le footer sombre */
}

/* "Pour la culture." barré, en bas à gauche */
.footer__culture {
  margin-top: clamp(16px, 1.6vw, 26px);
  width: fit-content;
  font-size: clamp(20px, 2.4vw, 46px);          /* agrandi pour coller à la maquette */
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: var(--color-white);
}
/* ============================================
   MOBILE (header en bas) : coins 20px partout + pas d'espace en haut
   ============================================ */
@media (max-width: 760px) {
  /* border-radius 20px sur tous les blocs media / contenu */
  .da-hero__img,
  .da-hero__inner,
  .da-band img,
  .gallery img,
  .photo-wall img,
  .feature__img,
  .cr-fullimg img,
  .cr-fullimg__video video,
  .st-services__box,
  .tarif-card,
  .vid-item video {
    border-radius: 20px !important;
  }
}

/* ---------- Menu déplié : liens beaucoup plus grands sur mobile ---------- */
@media (max-width: 600px) {
  .megamenu__list { gap: clamp(8px, 2vh, 22px); }
  .megamenu__list a {
    font-size: clamp(42px, 12.5vw, 56px);   /* liens bien plus grands (30px -> ~47-56px) */
    line-height: 1.06;
  }
}