/* ============================================================
   ISELA-VIERA.CSS — Page projet Isela Viera
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 840px;
  margin-top: 99px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  scale: 1;
  transition: scale 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: scale, translate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,12,0.1) 0%,
    rgba(13,13,12,0.0) 40%,
    rgba(13,13,12,0.7) 85%,
    rgba(13,13,12,1) 100%
  );
}
#hero.loaded .hero-bg img { scale: 1.08; }
.hero-content {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px var(--content-pad) 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
}
/* Première ligne : ISELA + étoile côte à côte */
.hero-line1 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-name span,
.hero-line1 > span {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(52px, 5.2vw, 75px);
  color: var(--white);
  letter-spacing: 0.01em;
  display: block;
  overflow: hidden;
}
.hero-name span em,
.hero-line1 > span em {
  display: block;
  font-style: normal;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#hero.loaded .hero-name span em,
#hero.loaded .hero-line1 > span em { transform: translateY(0); }
#hero.loaded .hero-name > span:nth-child(2) em {
  transition-delay: 0.12s;
}
/* Étoile inline après ISELA */
.hero-spark {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  padding-top: 0;
  flex-shrink: 0;
  opacity: 0;
  animation: sparkPulse 2.8s ease-in-out infinite;
  transition: opacity 0.6s var(--transition) 0.2s;
}
#hero.loaded .hero-spark { opacity: 0.85; }
@keyframes sparkPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.38) rotate(12deg); }
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--transition) 0.4s, transform 0.6s var(--transition) 0.4s;
  margin-top: 4px;
}
#hero.loaded .hero-subtitle { opacity: 1; transform: translateY(0); }
.hero-desc {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.75;
  max-width: 420px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--transition) 0.55s, transform 0.6s var(--transition) 0.55s;
}
#hero.loaded .hero-desc { opacity: 1; transform: translateY(0); }
/* 2e paragraphe de description */
.hero-desc + .hero-desc {
  margin-top: 10px;
  transition: opacity 0.6s var(--transition) 0.65s, transform 0.6s var(--transition) 0.65s;
}

/* ── SECTION 01 — LE PROJET ─────────────────────────────────── */
#le-projet .section-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 64px;
}
#le-projet .section-label    { grid-column: 1; grid-row: 1; }
#le-projet .section-title    { grid-column: 1; grid-row: 2; align-self: start; }
#le-projet .section-desc     {
  grid-column: 1; grid-row: 3;
  align-self: start;
  padding-top: 8px;
}
.projet-cards {
  grid-column: 2;
  grid-row: 1 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-self: stretch;
}
.projet-card {
  background: #111110;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.projet-card:hover {
  border-color: rgba(216, 255, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.projet-card-icon {
  color: var(--accent);
  margin-bottom: 4px;
}
.projet-card-icon svg { width: 44px; height: 44px; }
.projet-card-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.projet-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.projet-card-desc {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.65;
}

/* ── SECTION 02 — STORIES INSTAGRAM ────────────────────────── */
.stories-header {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 48px;
}
.stories-header .section-title { flex-shrink: 0; margin-bottom: 0; }
.stories-header .section-desc  { flex: 1; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.story-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  aspect-ratio: 180 / 301;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.story-card:hover .story-ring {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(216, 255, 0, 0.2);
}
.story-oval {
  width: 70%;
  aspect-ratio: 124.5 / 245.5;
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.story-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.story-card:hover .story-oval img { transform: scale(1.05); }
.story-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  aspect-ratio: 124.5 / 245.5;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(216, 255, 0, 0.5);
  pointer-events: none;
  z-index: 2;
  transition: border-color var(--transition), box-shadow var(--transition);
}
/* Bouton "VIEW" — niché DANS l'ovale (pas en dessous), avec de la marge
   tout autour. Position en % (relative à l'ovale, pas à la carte) pour
   rester dans la zone plate de la pilule, sous l'arrondi du bas, quelle
   que soit la taille de l'écran. Visible d'office (pas seulement au survol),
   même style que QR Nation : fond sombre + flou + bordure accent + icône. */
.story-cta {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(13, 13, 12, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.story-cta svg { width: 12px; height: 12px; flex-shrink: 0; }
.story-card:hover .story-cta {
  background: var(--accent);
  color: var(--bg);
  transform: translateX(-50%) translateY(-2px);
}

/* ── STORY VIEWER ───────────────────────────────────────────── */
#story-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--transition);
}
#story-viewer.is-open {
  opacity: 1;
  pointer-events: all;
}
.story-viewer-frame {
  width: 360px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#story-viewer.is-open .story-viewer-frame { transform: scale(1); }
.story-viewer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-viewer-img.is-hidden { opacity: 0; }
.story-progress-bars {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
  z-index: 10;
}
.story-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.story-progress-fill {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width linear;
}
.story-progress-bar.done .story-progress-fill { width: 100%; transition: none; }
.story-progress-bar.active .story-progress-fill { width: 0%; }
.story-viewer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 11;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  cursor: none;
  transition: background var(--transition);
}
.story-viewer-close:hover { background: rgba(0,0,0,0.7); }
.story-viewer-close svg { width: 14px; height: 14px; }
.story-viewer-tap-left,
.story-viewer-tap-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  z-index: 9;
}
.story-viewer-tap-left  { left: 0; }
.story-viewer-tap-right { right: 0; }
.story-nav-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 120px);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
}
.story-nav-btn {
  width: 48px;
  height: 48px;
  background: rgba(13,13,12,0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.story-nav-btn:hover {
  background: var(--bg);
  border-color: var(--accent);
  transform: scale(1.08);
}
.story-nav-btn svg { width: 16px; height: 16px; }

/* ── SECTION 03 — SHOOTINGS ─────────────────────────────────── */
#shootings { padding-bottom: 48px; }
#shootings .section-header {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 48px;
}
#shootings .section-header .section-title { flex-shrink: 0; margin-bottom: 0; }
#shootings .section-header .section-desc  { flex: 1; }
/* Grille fixe : 20 photos, 5 colonnes desktop = 4 lignes de 5 (même design
   que les illustrations de La Feuille Posée : outline permanent + zoom au survol) */
.shootings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.shooting-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: none;
  position: relative;
  border: 2px solid var(--border);
  transition: border-color 0.18s ease;
}
.shooting-photo:hover { border-color: var(--accent); }
.shooting-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.shooting-photo:hover img { transform: scale(1.06); }
.shooting-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(216,255,0,0.0);
  transition: background 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shooting-photo:hover .shooting-photo-overlay {
  background: rgba(0,0,0,0.42);
}
.shooting-zoom-icon {
  opacity: 0;
  color: var(--white);
  transform: scale(0.7);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.shooting-zoom-icon svg { width: 24px; height: 24px; }
.shooting-photo:hover .shooting-zoom-icon {
  opacity: 1;
  transform: scale(1);
}
/* ── LIGHTBOX ───────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--transition);
}
#lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 480px;
  max-height: 90vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#lightbox.is-open .lightbox-img-wrap { transform: scale(1); }
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.lightbox-close:hover { background: var(--border); border-color: var(--white); }
.lightbox-close svg { width: 16px; height: 16px; }
.lightbox-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.06em;
}
.lightbox-nav {
  position: fixed;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  pointer-events: none;
}
.lightbox-nav-btn {
  width: 52px;
  height: 52px;
  background: rgba(13,13,12,0.8);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: none;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.lightbox-nav-btn:hover { background: var(--bg); border-color: var(--accent); color: var(--accent); }
.lightbox-nav-btn svg { width: 18px; height: 18px; }

/* ── SECTION 04 — PERSONNALITÉ ──────────────────────────────── */
#personnalite .section-inner {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 0 56px;
  align-items: stretch;
}
#personnalite .personnalite-left { display: flex; flex-direction: column; gap: 0; }
#personnalite .section-label { margin-bottom: 12px; }
#personnalite .section-title { margin-bottom: 28px; }
.personnalite-portrait {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.personnalite-portrait:hover { transform: scale(1.02); }
.personnalite-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.personnalite-bio {
  font-size: 15.8px;
  color: var(--gray);
  line-height: 1.7;
}
.personnalite-bio p + p { margin-top: 18px; }
.personnalite-right { display: flex; flex-direction: column; gap: 12px; }
.personnalite-row {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition);
}
.personnalite-row:hover { transform: translateX(4px); }
.personnalite-key {
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 13px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  min-width: 130px;
  display: flex;
  align-items: center;
}
.personnalite-val {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 13px 18px;
  font-size: 15.8px;
  font-weight: 500;
  color: var(--gray);
  flex: 1;
  display: flex;
  align-items: center;
}

/* ── SECTION 05 — MÉTHODE ───────────────────────────────────── */
/* Desktop : texte à droite du titre, sur 2 lignes, centré en hauteur au titre */
.methode-header {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 48px;
}
.methode-header .section-title { flex-shrink: 0; margin-bottom: 0; }
.methode-header .section-desc  { flex: 1; margin-bottom: 0; }
.methode-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.methode-card {
  background: #111110;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  min-height: 413px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.methode-card:hover {
  border-color: rgba(216, 255, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.methode-card-num {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}
.methode-card-title {
  font-size: 22.5px;
  font-weight: 700;
  color: var(--white);
}
.methode-card-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.6;
  min-height: 3.2em;
  margin-bottom: 8px;
}
.methode-graphic {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  width: 100%;
}
.methode-graphic svg { width: 100%; max-width: 200px; height: auto; overflow: visible; }
.methode-graphic img { width: 100%; max-width: 200px; height: auto; display: block; }

/* ── SECTION 06 — MACRO (separator visuel) ──────────────────── */
#macro {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad) 0;
}
.macro-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.macro-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: none;
}
.macro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 0.5s var(--transition), filter 0.4s var(--transition);
}
.macro-photo:hover img {
  transform: scale(1.07);
  filter: brightness(1.1);
}

/* ── SECTION 07 — VIDÉOS ────────────────────────────────────── */
#videos { padding-top: 80px; }
.videos-header {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 48px;
}
.videos-header .section-title { flex-shrink: 0; margin-bottom: 0; }
.videos-header .section-desc  { flex: 1; }
/* Retour à la ligne desktop uniquement (masqué ≤1024px où le header s'empile) */
.vid-desk-br { display: inline; }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.video-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: none;
  position: relative;
  aspect-ratio: 217 / 386;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
  border-color: rgba(216,255,0,0.25);
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.video-card:hover .video-thumb { transform: scale(1.04); }
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.video-card:hover .video-overlay { background: rgba(0,0,0,0.4); }
.video-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(216, 255, 0, 0.15);
  border: 2px solid rgba(216, 255, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: normal;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.video-card:hover .video-play-btn {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.12);
}
.video-play-btn svg { width: 20px; height: 20px; color: var(--white); }
.video-card:hover .video-play-btn svg { color: var(--bg); }

/* ── VIDEO MODAL ────────────────────────────────────────────── */
#video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--transition);
}
#video-modal.is-open { opacity: 1; pointer-events: all; }
.video-modal-inner {
  width: 360px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#video-modal.is-open .video-modal-inner { transform: scale(1); }
.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.video-modal-close:hover { background: var(--border); }
.video-modal-close svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLETTE (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Projet */
  #le-projet .section-inner { gap: 0 48px; }

  /* Stories */
  .stories-grid { grid-template-columns: repeat(3, 1fr); }

  /* Shootings */
  .shootings-grid { grid-template-columns: repeat(3, 1fr); }

  /* Shootings / Stories / Videos / Méthode headers */
  #shootings .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stories-header             { flex-direction: column; align-items: flex-start; gap: 16px; }
  .videos-header              { flex-direction: column; align-items: flex-start; gap: 16px; }
  .methode-header              { flex-direction: column; align-items: flex-start; gap: 16px; }
  #shootings .section-header .section-desc,
  .stories-header .section-desc,
  .videos-header .section-desc,
  .methode-header .section-desc { max-width: 100%; }
  .methode-header .section-desc br { display: none; }
  .vid-desk-br { display: none; }

  /* Personnalité */
  #personnalite .section-inner {
    grid-template-columns: 1fr 200px 1fr;
    gap: 0 40px;
    align-items: stretch;
  }

  /* Méthode */
  .methode-cards { grid-template-columns: repeat(2, 1fr); }

  /* Macro */
  .macro-strip { grid-template-columns: repeat(5, 1fr); }

  /* Vidéos */
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── HERO ── */
  #hero { max-height: 100svh; margin-top: 72px; }
  .hero-content { padding: 40px var(--content-pad) 0; gap: 10px; }
  .hero-name span,
  .hero-line1 > span { font-size: clamp(40px, 11vw, 56px); }
  .hero-subtitle { font-size: 12px; letter-spacing: 0.08em; }
  .hero-desc { font-size: 13px; max-width: 260px; }
  .hero-spark { padding-top: 0; }
  .hero-spark svg { width: 22px; height: 22px; }
  /* Image décalée + dégradé renforcé en haut pour lisibilité du texte */
  .hero-bg img { object-position: 60% 20%; }
  .hero-bg::after {
    background: linear-gradient(to right, rgba(13,13,12,0.88) 0%, rgba(13,13,12,0.55) 45%, transparent 75%);
  }

  /* ── SECTION 01 — LE PROJET ── */
  #le-projet .section-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #le-projet .section-desc { padding-top: 0; margin-bottom: 32px; }
  .projet-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .projet-card { padding: 20px 16px 22px; gap: 10px; }
  .projet-card-icon svg { width: 32px; height: 32px; }
  .projet-card-title { font-size: 13px; }
  .projet-card-desc  { font-size: 11.5px; }

  /* ── SECTION 02 — STORIES ── */
  .stories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  /* Bouton un peu plus compact sur mobile */
  .story-cta { padding: 4px 7px; font-size: 7.5px; gap: 3px; letter-spacing: 0.04em; }
  .story-cta svg { width: 8px; height: 8px; }

  /* ── SECTION 03 — SHOOTINGS ── */
  #shootings .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .shootings-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .shootings-grid .shooting-photo:nth-child(14) { display: none; }

  /* ── SECTION 04 — PERSONNALITÉ ── */
  #personnalite .section-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .personnalite-portrait { width: 100%; aspect-ratio: 3/4; }
  .personnalite-right { gap: 10px; }
  .personnalite-key { min-width: 110px; font-size: 14px; padding: 11px 14px; }
  .personnalite-val { font-size: 14px; padding: 11px 14px; }
  .personnalite-bio { font-size: 14px; }

  /* ── SECTION 05 — MÉTHODE ── */
  .methode-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .methode-card  { min-height: 320px; padding: 20px 16px; }
  .methode-card-title { font-size: 18px; }

  /* ── MACRO ── */
  .macro-strip { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .macro-photo:nth-child(4),
  .macro-photo:nth-child(5) { display: none; }

  /* ── SECTION 06 — VIDÉOS ── */
  #videos { padding-top: 64px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ── STORY VIEWER ── */
  .story-viewer-frame { width: min(340px, 92vw); }
  .story-nav-arrows { width: calc(100% + 0px); }
  .story-nav-btn { display: none; }

  /* ── LIGHTBOX ── */
  .lightbox-img-wrap { max-width: 92vw; }
  .lightbox-nav { padding: 0 12px; }
  .lightbox-nav-btn { width: 40px; height: 40px; }
  .lightbox-close { top: 16px; right: 16px; }

  /* ── VIDEO MODAL ── */
  .video-modal-inner { width: min(340px, 92vw); }
  .video-modal-close { top: 16px; right: 16px; }
}
