/* ===== A.G.I.R - styles spécifiques ACCUEIL ===== */

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden; background: var(--noir);
}

/* ── Slider ── */
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: all; }
.hero-slide-empty { background: var(--noir); opacity: 1; }
.hero-slide-vid {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* ── Bullets ── */
.hero-bullets {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.hero-bullet {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-bullet.active {
  background: var(--blanc);
  transform: scale(1.3);
}

/* ── Flèches ── */
.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanc); cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }
/* hero-bg retiré - poster vidéo utilisé comme fallback */
.hero-overlay { display: none; }
/* hero-video-wrap remplacé par hero-slider */
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5rem 6rem;
  max-width: 1000px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--rouge); }
.hero-eyebrow span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900; line-height: 1.0;
  color: var(--blanc);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--rouge); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; max-width: 560px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rouge); color: var(--blanc);
  padding: 0.9rem 2rem; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #c42820; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
  padding: 0.9rem 2rem; font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--blanc); color: var(--blanc); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 4rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }
.hero-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; }
.hero-bar .agir-bar { height: 3px; }


/* ══════════════════════════════════════════
   ÉDITO
══════════════════════════════════════════ */
#edito {
  padding: 9rem 5rem;
  background: var(--creme);
  position: relative; overflow: hidden;
}
.edito-bg-shapes {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
#edito .section-inner { position: relative; z-index: 1; }
.edito-grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 4.5rem; align-items: center;
}
.edito-left .section-title { margin-bottom: 2rem; }
.edito-left .section-title em { font-style: italic; color: var(--bleu); }
.edito-text p {
  font-size: 1rem; line-height: 1.85; color: #444;
  margin-bottom: 1.2rem; font-weight: 300;
}
.edito-text strong { font-weight: 600; color: var(--texte); }
.edito-atouts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 4rem; padding-top: 2.8rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.edito-atout { display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
.ea-ico { width: 50px; height: 50px; }
.ea-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; line-height: 1; color: var(--texte); }
.ea-num-sm { font-size: 1.15rem; line-height: 1.2; }
.ea-lab { font-size: 0.8rem; color: var(--gris); line-height: 1.4; }
.ea-lab strong { display: block; color: var(--texte); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.1rem; }
@media (max-width: 900px){ .edito-atouts { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.5rem; } }
.edito-right { position: relative; }
.edito-media { position: relative; }
.edito-media::before {
  content: ''; position: absolute; top: -14px; right: -14px;
  width: 120px; height: 120px; border: 2px solid var(--rouge);
  border-radius: 16px; z-index: 0;
}
.edito-media-frame {
  position: relative; z-index: 1; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden; background: #000;
  box-shadow: 0 26px 60px -26px rgba(60,40,15,0.35);
}
.edito-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.edito-media-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 14px;
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(150deg, #f3ead9 0%, #e7d8bd 100%);
  color: #9a7b3c; font-family: var(--font-display); font-size: 1rem; letter-spacing: .02em;
}
.edito-media-play {
  width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--rouge);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(120,80,20,0.25);
}
.edito-media-caption {
  font-size: 0.8rem; color: var(--gris); font-style: italic; line-height: 1.5; margin-top: 1.1rem;
}

/* Bouton son (hero + video ADN) */
.video-sound {
  position: absolute; z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(8,8,8,0.5); color: #fff; border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.video-sound:hover { background: rgba(8,8,8,0.78); transform: scale(1.06); }
.video-sound .ico-on { display: none; }
.video-sound.is-on .ico-off { display: none; }
.video-sound.is-on .ico-on { display: block; }
.hero-sound { right: 2rem; top: 88px; bottom: auto; }
.edito-media-frame .video-sound { right: 14px; top: 14px; bottom: auto; }


/* ══════════════════════════════════════════
   SHÉHÉRAZADE
══════════════════════════════════════════ */
#sheherazade {
  min-height: 100vh;
  min-height: 100svh;
  background-image: url('/images/sheherazade-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.shed-inner {
  margin: 0 0 4rem 5rem;
  max-width: 500px;
  background: rgba(13, 43, 107, 0.9);
  padding: 2.4rem 2.6rem 2.6rem;
  border-radius: 16px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media (max-width: 768px){
  .shed-inner { margin: 0 1.2rem 3rem; padding: 1.8rem 1.6rem 2rem; max-width: none; }
}
.shed-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.35rem 1rem; margin-bottom: 1.8rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.shed-badge span { width: 6px; height: 6px; border-radius: 50%; background: #c9a227; flex-shrink: 0; }
.shed-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900; color: #ffffff;
  line-height: 0.95; margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.shed-sub {
  font-family: var(--font-display);
  font-size: 1.2rem; font-style: italic;
  color: #c9a227; font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.shed-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.9);
  line-height: 1.8; margin-bottom: 1.8rem;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.shed-infos {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.shed-info {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.9rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.shed-info svg { opacity: 0.7; flex-shrink: 0; stroke: #fff; }

/* ── Slider expériences (multi-slides) ── */
.exp-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #0D2B6B;
}
.exp-section .exp-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.exp-section .exp-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.exp-section .exp-slide.leaving {
  opacity: 1;
  z-index: 1;
  transition: none;
}
.exp-bullets {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.6rem;
  z-index: 10;
}
.exp-bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.exp-bullet.active {
  background: #c9a227;
  transform: scale(1.3);
}
.exp-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(8,8,8,0.35);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.exp-arrow:hover { background: rgba(8,8,8,0.6); }
.exp-arrow-prev { left: 1.5rem; }
.exp-arrow-next { right: 1.5rem; }
@media (max-width: 768px) {
  .exp-arrow { width: 40px; height: 40px; }
  .exp-arrow-prev { left: 0.5rem; }
  .exp-arrow-next { right: 0.5rem; }
}



/* ══════════════════════════════════════════
   CATALOGUE
══════════════════════════════════════════ */
#catalogue { padding: 9rem 5rem; background: var(--blanc); position: relative; overflow: hidden; }
.cat-bg-shapes { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
#catalogue .section-inner { position: relative; z-index: 1; }

/* Intro */
.cat-head { max-width: 720px; }
.cat-head .section-title { margin: 0.4rem 0 1.4rem; }
.cat-intro { font-size: 1.02rem; line-height: 1.8; color: #555; font-weight: 300; }
.cat-intro strong { font-weight: 600; color: var(--texte); }

/* 3 formules */
.cat-formules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 1.4rem; align-items: stretch; max-width: 860px; margin-left: auto; margin-right: auto; }
.formule { background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 18px; padding: 2.3rem 2rem 2.4rem; display: flex; flex-direction: column; position: relative; }
.formule-featured { background: linear-gradient(165deg, #14284f 0%, #0c1a38 62%, #081026 100%); border-color: rgba(255,255,255,0.10); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 46px 92px -34px rgba(8,16,40,0.82); padding-top: 2.6rem; }
.formule-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #e0c46b, var(--or)); color: #0D2B6B; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 17px; border-radius: 100px; white-space: nowrap; box-shadow: 0 8px 20px -6px rgba(201,162,39,0.7); }
.formule-num { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--gris); }
.formule-featured .formule-num { color: rgba(255,255,255,0.55); }
.formule-name { font-family: var(--font-display); font-weight: 900; font-size: 1.55rem; line-height: 1.08; margin: 0.35rem 0 0.25rem; }
.formule-tag { font-size: 0.82rem; color: var(--gris); line-height: 1.4; margin-bottom: 1.5rem; min-height: 2.3em; }
.formule-featured .formule-tag { color: rgba(255,255,255,0.72); }
.formule-price { display: flex; align-items: baseline; gap: 0.4rem; }
.formule-price b { font-family: var(--font-display); font-weight: 900; font-size: 2.5rem; line-height: 1; color: var(--texte); }
.formule-featured .formule-price b { color: #fff; }
.formule-price span { font-size: 0.8rem; color: var(--gris); font-weight: 500; }
.formule-featured .formule-price span { color: rgba(255,255,255,0.72); }
.formule-sub { font-size: 0.74rem; color: var(--gris); margin-top: 0.35rem; min-height: 1.1em; }
.formule-featured .formule-sub { color: rgba(255,255,255,0.6); }
.formule ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 1.5rem 0 1.8rem; }
.formule li { font-size: 0.85rem; line-height: 1.4; display: flex; gap: 0.55rem; align-items: flex-start; color: #3a3a42; }
.formule-featured li { color: rgba(255,255,255,0.9); }
.formule li svg { flex-shrink: 0; margin-top: 3px; stroke: var(--vert); }
.formule-featured li svg { stroke: var(--or); }
.formule-cta { margin-top: auto; }
.formule-cta a { display: block; text-align: center; padding: 0.85rem 1rem; border-radius: 100px; font-weight: 600; font-size: 0.9rem; border: 1.5px solid rgba(0,0,0,0.16); color: var(--texte); transition: 0.2s; }
.formule-cta a:hover { border-color: var(--texte); }
.formule-featured .formule-cta a { background: var(--or); border-color: var(--or); color: #0D2B6B; }
.formule-featured .formule-cta a:hover { background: #fff; border-color: #fff; }


/* Contenu complementaire (rythme + comms) */

.cat-comms-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rouge); display: block; margin-bottom: 0.8rem; }
.cat-comms p, .cat-rythme p { font-size: 0.88rem; line-height: 1.7; color: #555; font-weight: 300; }
.cat-comms p strong, .cat-rythme p strong { font-weight: 600; color: var(--texte); }
.cat-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.cat-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border: 1px solid currentColor; opacity: 0.8; }
.cat-cycle { display: flex; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap; }
.cat-cycle-item { display: flex; align-items: center; gap: 0.7rem; flex: 1; min-width: 180px; padding: 0.9rem 1rem; background: var(--creme); border-radius: 8px; }
.cat-cycle-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cat-cycle-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--texte); }
.cat-cycle-item small { font-size: 0.75rem; color: #777; }

@media (max-width: 900px){
  .cat-formules { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   CIBLES
══════════════════════════════════════════ */
#cibles { padding: 9rem 5rem; background: var(--bleu); }
.cibles-intro { max-width: 700px; margin-bottom: 5rem; }
.cibles-intro .section-title { color: var(--blanc); margin-bottom: 1.2rem; }
.cibles-intro p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; font-weight: 300; }
.cibles-intro p strong { color: var(--blanc); font-weight: 600; }
.cibles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.12); }
.cible-item {
  background: var(--bleu); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.cible-item:hover { background: #1560aa; }
#cibles .section-label { color: var(--jaune); }
.cible-icon { margin-bottom: 1rem; }
.cible-icon svg { stroke: var(--jaune); }
.cible-title {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blanc); margin-bottom: 0.7rem;
}
.cible-desc { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.7; font-weight: 300; }
.cible-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  transform: scaleX(0); transition: transform 0.3s;
}
.cible-item:hover::after { transform: scaleX(1); }
.cible-item:nth-child(1)::after { background: var(--rouge); }
.cible-item:nth-child(2)::after { background: var(--jaune); }
.cible-item:nth-child(3)::after { background: var(--blanc); }
.cible-item:nth-child(4)::after { background: var(--vert); }


/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
#team { padding: 9rem 5rem; background: var(--bleu); }
.team-intro { margin-bottom: 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.team-member {}
.team-photo-wrap {
  aspect-ratio: 3/4; overflow: hidden;
  margin-bottom: 1.5rem; position: relative;
  background: #ddd;
}
.team-photo {
  width: 100%; height: 100%; object-fit: cover;
  background: center/cover no-repeat;
  transition: transform 0.6s ease, filter 0.4s ease;
  transform: scale(1.02) translateZ(0);
  filter: blur(0.4px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.team-member:hover .team-photo { transform: scale(1.06) translateZ(0); filter: blur(0); }
.team-photo-bar { position: absolute; bottom: 0; left: 0; right: 0; }
.team-photo-bar .agir-bar { height: 3px; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: var(--texte);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rouge); margin-bottom: 0.8rem;
}
.team-bio { font-size: 0.82rem; color: #666; line-height: 1.7; font-weight: 300; }


/* ══════════════════════════════════════════
   RÉALISATIONS
══════════════════════════════════════════ */
#realisations { padding: 9rem 5rem; background: var(--blanc); }
.real-intro { margin-bottom: 4rem; }
.real-intro p { font-size: 0.95rem; color: #666; margin-top: 0.8rem; font-weight: 300; }
.real-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.real-card {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: #111;
  cursor: pointer; border-radius: 16px;
  box-shadow: 0 22px 46px -26px rgba(0,0,0,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.real-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -26px rgba(0,0,0,0.5); }
.real-card:first-child { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.real-card-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transition: transform 0.7s ease;
}
.real-card:hover .real-card-bg { transform: scale(1.05); }
.real-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.25) 72%, rgba(0,0,0,0.05) 100%);
}
.real-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 2rem 2.2rem;
}
.real-card-title {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 900;
  color: var(--blanc); line-height: 1.05;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.real-card-client {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 0.6rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.real-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.95); line-height: 1.65; margin-bottom: 0.7rem; font-weight: 300; text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
.real-card-tag {
  display: inline-block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff; padding: 0.2rem 0.7rem;
  background: rgba(0,0,0,0.28); backdrop-filter: blur(2px);
}
.real-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; z-index: 3;
}
.real-card:nth-child(1)::after { background: var(--rouge); }
.real-card:nth-child(2)::after { background: var(--jaune); }
.real-card:nth-child(3)::after { background: var(--bleu); }
.real-card:nth-child(4)::after { background: var(--vert); }
.real-card:nth-child(5)::after { background: var(--or); }
@media (max-width: 768px){ .real-card:first-child { aspect-ratio: 16/9; } }


/* ══════════════════════════════════════════
   TÉMOIGNAGES
══════════════════════════════════════════ */
#temoignages { padding: 9rem 5rem; background: var(--creme); }
.temo-intro { margin-bottom: 4rem; }
.temo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.temo-card {
  background: var(--blanc); padding: 2.5rem;
  position: relative;
  border-top: 3px solid transparent;
  transition: box-shadow 0.3s;
}
.temo-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.temo-card:nth-child(1) { border-top-color: var(--rouge); }
.temo-card:nth-child(2) { border-top-color: var(--jaune); }
.temo-card:nth-child(3) { border-top-color: var(--bleu); }
.temo-card:nth-child(4) { border-top-color: var(--vert); }
.temo-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 0.5; color: rgba(0,0,0,0.06);
  margin-bottom: 1.2rem; display: block;
}
.temo-text {
  font-size: 0.88rem; color: #444; line-height: 1.85;
  font-style: italic; margin-bottom: 1.5rem; font-weight: 300;
}
.temo-author { display: flex; flex-direction: column; gap: 0.2rem; }
.temo-name { font-size: 0.82rem; font-weight: 600; color: var(--texte); }
.temo-role { font-size: 0.7rem; color: var(--gris); text-transform: uppercase; letter-spacing: 0.1em; }
.temo-logo { height: 28px; margin-bottom: 1.5rem; opacity: 0.7; }


/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact { padding: 9rem 5rem; background: var(--noir); position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,51,41,0.06) 0%, transparent 70%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-left .section-title.white { margin-bottom: 1.5rem; }
.contact-tagline {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,0.96); line-height: 1.3; margin-bottom: 2rem;
}
.contact-tagline em { color: var(--rouge); font-style: normal; }
.contact-sub { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.contact-coords { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.contact-coord {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.88);
}
.contact-coord svg { stroke: var(--rouge); flex-shrink: 0; }
.contact-coord a:hover { color: var(--blanc); }
.btn-brochure {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.9);
  padding: 0.8rem 1.6rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.05em; transition: all 0.2s;
}
.btn-brochure:hover { border-color: var(--blanc); color: var(--blanc); }

/* FORMULAIRE */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--blanc); padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.88rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.3); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #111; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-rgpd { display: flex; align-items: flex-start; gap: 0.7rem; }
.form-rgpd input { margin-top: 2px; accent-color: var(--rouge); cursor: pointer; flex-shrink: 0; }
.form-rgpd label { font-size: 0.78rem; color: rgba(255,255,255,0.72); line-height: 1.5; cursor: pointer; }
.btn-submit {
  background: var(--rouge); color: var(--blanc);
  border: none; padding: 1rem 2.5rem;
  font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: #c42820; transform: translateY(-2px); }


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .edito-grid, .cat-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  #sheherazade { grid-template-columns: 1fr; }
  .shed-right { min-height: 50vh; }
  .cibles-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .temo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero, #sheherazade { min-height: 100svh; }
  .hero-content, .shed-content { padding: 0 1.5rem 4rem; }
  #edito, #catalogue, #cibles, #team, #realisations, #temoignages, #contact { padding: 6rem 1.5rem; }
  .hero-title { font-size: 2.8rem; }
  .shed-title { font-size: 3.5rem; }
  .real-grid { grid-template-columns: 1fr; }
  .cibles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}

/* ===== Catalogue : cartes plus vivantes ===== */
.formule { transition: transform .25s ease, box-shadow .25s ease; }
.formule:not(.formule-featured) { box-shadow: 0 14px 34px -24px rgba(0,0,0,0.22); }
.formule:hover { transform: translateY(-5px); }
.formule:not(.formule-featured):hover { box-shadow: 0 26px 52px -26px rgba(0,0,0,0.30); }
.cat-formules .formule:nth-child(1) { border-top: 3px solid var(--bleu); }
.cat-formules .formule.formule-featured { border-top: 3px solid var(--or); }
.cat-formules .formule-price b { font-size: 3.1rem; letter-spacing: -0.01em; }
.cat-formules .formule:nth-child(1) .formule-price b { color: var(--bleu); }
.formule-featured .formule-price b { color: #e3c775; }
@media (prefers-reduced-motion: reduce){ .formule:hover { transform: none; } }

/* ===== Réalisations : teaser vidéo ===== */
.real-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 4; width: 66px; height: 66px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: #111; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35); transition: transform 0.2s, background 0.2s;
}
.real-play:hover { transform: translate(-50%,-50%) scale(1.09); background: #fff; }
.real-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 1.1rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.01em; color: #fff;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.5);
  padding: 0.55rem 1.1rem; border-radius: 100px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.real-link:hover { background: #fff; color: #111; transform: translateY(-1px); }
.real-link svg { stroke: currentColor; }

/* Video inline dans la carte realisation */
.real-play { transition: transform 0.2s, background 0.2s, opacity 0.25s; }
.real-card.playing .real-play { opacity: 0; pointer-events: none; }
.real-card-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; z-index: 3; opacity: 0; pointer-events: none; transition: opacity 0.3s; background: #000; }
.real-card.playing .real-card-video { opacity: 1; pointer-events: auto; }
.real-sound { top: 14px; right: 14px; opacity: 0; pointer-events: none; }
.real-card.playing .real-sound { opacity: 1; pointer-events: auto; }

/* Barre de chargement de la video */
.real-card.loading .real-play { opacity: 0; pointer-events: none; }
.real-loader { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 5; width: min(70%, 300px); text-align: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.real-card.loading .real-loader { opacity: 1; }
.real-loader-txt { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; }
.real-loader-track { height: 4px; border-radius: 100px; background: rgba(255,255,255,0.28); overflow: hidden; }
.real-loader-bar { height: 100%; width: 0; background: var(--jaune); border-radius: 100px; transition: width 0.3s ease; }

/* Featured mise en relief (au centre) */
@media (min-width: 901px){
  .cat-formules { align-items: center; }
  .cat-formules .formule-featured { transform: scale(1.05); z-index: 2; }
  .cat-formules .formule-featured:hover { transform: scale(1.05) translateY(-5px); }
}

/* Team sur fond bleu charte */
#team .section-label { color: var(--jaune); }
#team .section-title { color: #fff; }
#team .team-name { color: #fff; }
#team .team-role { color: var(--jaune); }
#team .team-bio { color: rgba(255,255,255,0.82); }
#team .team-photo-wrap { background: rgba(255,255,255,0.10); }

/* Contact : honeypot + message de confirmation */
.form-success { color: #fff; font-size: 1rem; line-height: 1.7; padding: 1rem 0; }
.form-success strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--jaune); margin-bottom: 0.5rem; }


/* ===== Cercle vertueux (clair) ===== */
.cat-vertueux {
  margin-top: 0; border-radius: 22px; padding: 3.4rem 2.5rem 2.6rem;
  background: #fff; border: 1px solid var(--trait, #e7e1d6);
  box-shadow: 0 26px 60px -34px rgba(80,54,24,0.28);
}
.cv-head { text-align: center; max-width: 780px; margin: 0 auto 1rem; }
.cv-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rouge); }
.cv-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.12; margin: 0.6rem 0 1rem; color: var(--texte); }
.cv-title em { font-style: italic; color: var(--bleu); }
.cv-lead { font-size: 1rem; line-height: 1.75; color: #555; font-weight: 300; }
.cv-lead strong { color: var(--texte); font-weight: 700; }
.cv-figure { max-width: 700px; margin: 0.5rem auto 0; }
.cv-svg { width: 100%; height: auto; display: block; overflow: visible; }
.cv-pnum { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 17px; }
.cv-pin { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.cv-plabel { font-family: var(--font-display); font-weight: 700; font-size: 18px; fill: var(--texte); }
.cv-ptext { font-family: var(--font-body); font-weight: 300; font-size: 13px; fill: #6b6b74; }
.cv-foot { text-align: center; margin-top: 1.6rem; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--bleu); }
@media (max-width: 700px){
  .cat-vertueux { padding: 2.4rem 1.4rem 2rem; }
  .cv-plabel { font-size: 21px; }
  .cv-ptext { font-size: 15px; }
  .cv-pin { font-size: 14px; }
}

/* ===== Bas du catalogue : cercle (gauche) + encarts (droite) ===== */
.cat-bottom { display: grid; grid-template-columns: 1.45fr 1fr; gap: 1.8rem; margin-top: 3.2rem; align-items: start; }
.cat-side { display: flex; flex-direction: column; gap: 1.4rem; }
.cat-side > div {
  background: #fff; border: 1px solid var(--trait, #e7e1d6); border-radius: 18px;
  padding: 1.8rem 1.7rem; box-shadow: 0 18px 44px -30px rgba(80,54,24,0.25);
}
.cat-bottom .cv-lead { font-size: 0.95rem; }
.cat-bottom .cv-title { font-size: clamp(1.5rem, 2.3vw, 2rem); }
@media (max-width: 1000px){
  .cat-bottom { grid-template-columns: 1fr; }
}

/* ===== Étapes du catalogue ===== */
.cat-step { display: block; text-align: center; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gris); margin-top: 4.2rem; margin-bottom: 0.2rem; }
.cat-acces .cat-step { margin-top: 2.4rem; }

/* ===== Bloc Partenaire du studio ===== */
.cat-partenaire { margin-top: 0; }
.part-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.6rem; align-items: center;
  margin-top: 1.4rem; background: #fff; border: 1px solid var(--trait, #e7e1d6);
  border-top: 3px solid var(--or); border-radius: 22px; padding: 2.8rem 2.6rem;
  box-shadow: 0 26px 60px -34px rgba(80,54,24,0.3);
}
.part-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or); }
.part-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.12; margin: 0.6rem 0 1rem; color: var(--texte); }
.part-title em { font-style: italic; color: var(--or); }
.part-lead { font-size: 0.98rem; line-height: 1.75; color: #555; font-weight: 300; margin-bottom: 1.4rem; }
.part-lead strong { color: var(--texte); font-weight: 600; }
.part-avantages { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.part-avantages li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.6rem; color: #3a3a42; line-height: 1.5; }
.part-avantages li svg { flex-shrink: 0; margin-top: 3px; stroke: var(--or); }
.part-avantages strong { font-weight: 700; color: var(--texte); }

.part-grid-title { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; letter-spacing: 0; text-transform: none; color: var(--texte); margin-bottom: 1.6rem; }
.part-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.part-table th { text-align: left; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris); padding: 0 0.6rem 0.6rem; border-bottom: 1px solid var(--trait, #e7e1d6); }
.part-table td { padding: 0.85rem 0.6rem; border-bottom: 1px solid #f0ebe1; color: #444; font-family: 'DM Mono', var(--font-body), monospace; }
.part-table td strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: var(--texte); }
.part-table td small { color: var(--vert); font-weight: 700; font-size: 0.72rem; font-family: var(--font-body); }
.part-table tr:last-child td { border-bottom: none; }
.part-best td { background: #fdf8ec; }
.part-best td:first-child { border-radius: 8px 0 0 8px; }
.part-best td:last-child { border-radius: 0 8px 8px 0; }
.part-note { font-size: 0.76rem; color: var(--gris); line-height: 1.5; margin-top: 0.9rem; }
.part-cta { background: var(--or); border-color: var(--or) !important; color: #fff !important; margin-top: 1.2rem; }
.part-cta:hover { background: #a87f28; }

@media (max-width: 900px){
  .cat-formules { grid-template-columns: 1fr; }
  .part-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
}

/* Partenaire : precisions (annuel, acquis, report) */
.part-infos { margin-top: 1.1rem; border-top: 1px solid #f0ebe1; padding-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.part-infos p { font-size: 0.82rem; line-height: 1.6; color: #5c5c66; font-weight: 300; }
.part-infos strong { color: var(--texte); font-weight: 600; }

/* Corriger le rendu des puces (le texte reste un seul bloc) */
.part-avantages li > span, .formule li > span { flex: 1; min-width: 0; }
.part-avantages li > span strong, .formule li > span strong { display: inline; }

/* ══════════════════════════════════════════
   RESPONSIVE - blocs 2026 (catalogue, partenaire, cercle, ADN)
══════════════════════════════════════════ */

/* Tablette */
@media (max-width: 1000px){
  .cat-bottom { grid-template-columns: 1fr; gap: 1.6rem; }
  .part-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Mobile */
@media (max-width: 768px){
  /* Catalogue : intro + étapes */
  .cat-intro { font-size: 0.95rem; }
  .cat-step { margin-top: 3rem; font-size: 0.62rem; letter-spacing: 0.16em; }

  /* Formules */
  .cat-formules { grid-template-columns: 1fr; gap: 1.2rem; }
  .cat-formules .formule-featured { transform: none; }
  .cat-formules .formule-featured:hover { transform: none; }
  .formule { padding: 2.2rem 1.5rem 2rem; }
  .cat-formules .formule-price b { font-size: 2.6rem; }

  /* Bloc partenaire */
  .part-inner { padding: 2rem 1.3rem; border-radius: 18px; }
  .part-title { font-size: 1.6rem; }
  .part-lead, .part-avantages li { font-size: 0.92rem; }
  .part-grid-title { font-size: 1.05rem; margin-bottom: 1.1rem; }

  /* Tableau de participation -> cartes empilées */
  .part-table, .part-table tbody, .part-table tr, .part-table td { display: block; width: 100%; }
  .part-table thead { display: none; }
  .part-table tr { border: 1px solid var(--trait, #e7e1d6); border-radius: 12px; padding: 0.9rem 1rem; margin-bottom: 0.8rem; }
  .part-table tr.part-best { background: #fdf8ec; border-color: var(--or); }
  .part-table td { border: none !important; padding: 0.25rem 0; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: 0.9rem; }
  .part-table td::before { content: attr(data-label); font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris); }
  .part-table td strong { font-size: 1.25rem; }
  .part-best td:first-child, .part-best td:last-child { border-radius: 0; }
  .part-infos p { font-size: 0.85rem; }

  /* Cercle vertueux */
  .cat-vertueux { padding: 2rem 1.2rem 1.8rem; border-radius: 18px; }
  .cv-title { font-size: 1.6rem; }
  .cv-lead { font-size: 0.92rem; }
  .cv-foot { font-size: 0.98rem; }

  /* Encarts latéraux */
  .cat-side > div { padding: 1.5rem 1.3rem; }
  .cat-cycle-item { min-width: 0; }

  /* Bloc ADN */
  .edito-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .edito-atouts { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; margin-top: 2.6rem; padding-top: 2rem; }
  .hero-sound { right: 1.2rem; top: 78px; }

  /* Témoignages : une colonne */
  .temo-grid { grid-template-columns: 1fr; }
  .temo-card { padding: 1.8rem 1.4rem; }

  /* Réalisations */
  .real-play { width: 54px; height: 54px; }
  .real-card-content { padding: 1.4rem; }
}

/* Petit mobile */
@media (max-width: 420px){
  .edito-atouts { grid-template-columns: 1fr; }
  .cat-formules .formule-price b { font-size: 2.2rem; }
  .part-title, .cv-title { font-size: 1.4rem; }
}

/* Bouton secondaire clair (sur visuel sombre) */
/* Paire de boutons du slider (harmonisés) */
.shed-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.shed-cta > a {
  flex: 1 1 auto; min-width: 0; text-align: center;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 1.5rem; height: 48px; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; white-space: nowrap;
  border: 1px solid transparent; transition: all 0.25s ease;
}
.shed-cta .btn-primary { background: var(--rouge); color: #fff; border-color: var(--rouge); }
.shed-cta .btn-primary:hover { background: #c42820; border-color: #c42820; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
@media (max-width: 520px){
  .shed-cta > a { flex: 1 1 100%; font-size: 0.78rem; }
}

/* ══════════════════════════════════════════════════════
   PASSE RESPONSIVE COMPLÈTE
   ══════════════════════════════════════════════════════ */

/* --- Confort tactile : toute cible cliquable >= 44px --- */
@media (hover: none) and (pointer: coarse){
  .btn-primary, .btn-ghost-light, .formule-cta a, .part-cta,
  .exp-btn-primary, .exp-btn-ghost, .real-link { min-height: 46px; }
  .exp-bullet { width: 12px; height: 12px; }
  .video-sound, .real-sound { width: 46px; height: 46px; }
  .nav-exclu-menu a, .mobile-exclu a { padding-top: 12px; padding-bottom: 12px; }
}

/* --- Tablette : 1024px --- */
@media (max-width: 1024px){
  #catalogue, #cibles, #team, #realisations, #temoignages, #contact,
  #edito, #sheherazade { padding-left: 2.5rem; padding-right: 2.5rem; }
  .contact-grid { gap: 3.5rem; }
}

/* --- Mobile : 768px (compléments) --- */
@media (max-width: 768px){
  /* Sections : padding homogène */
  #catalogue, #cibles, #team, #realisations, #temoignages, #contact,
  #edito, #sheherazade { padding-left: 1.3rem; padding-right: 1.3rem; }

  /* Titres : éviter les débordements de mots longs */
  .section-title, .cv-title, .part-title, .exp-h2 { hyphens: auto; overflow-wrap: break-word; }

  /* Contact */
  .contact-grid { gap: 2.5rem; }
  #contact { padding-top: 5rem; padding-bottom: 5rem; }

  /* Slider expériences */
  .exp-arrow { display: none; }
  .shed-infos { gap: 0.4rem; }
  .shed-info { font-size: 0.68rem; }

  /* Réalisations : la carte héros redevient normale */
  .real-card:first-child { grid-column: auto; aspect-ratio: 4/3; }
  .real-card-title { font-size: 1.35rem; }
  .real-card-desc { font-size: 0.8rem; }

  /* Équipe */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

/* --- Petit mobile : 480px --- */
@media (max-width: 480px){
  #catalogue, #cibles, #team, #realisations, #temoignages, #contact,
  #edito, #sheherazade { padding-left: 1.1rem; padding-right: 1.1rem; }
  .team-grid { grid-template-columns: 1fr; }
  .real-card:first-child { aspect-ratio: 3/2; }
  .shed-inner { padding: 1.5rem 1.2rem 1.6rem; }
  .formule-badge { font-size: 0.6rem; padding: 5px 12px; }
  .cat-intro { font-size: 0.9rem; }
  .footer-links { flex-wrap: wrap; gap: 0.8rem; }
}

/* Anglais : les libellés s'allongent, on assouplit */
html[lang="en"] .shed-cta > a { white-space: normal; line-height: 1.2; padding: 0 1.1rem; }
html[lang="en"] .formule-badge { letter-spacing: 0.1em; padding: 6px 13px; }
html[lang="en"] .formule-tag { min-height: 3.2em; }
html[lang="en"] .cat-step { letter-spacing: 0.14em; }
html[lang="en"] .part-table td::before { font-size: 0.62rem; letter-spacing: 0.05em; }
html[lang="en"] .ea-lab { font-size: 0.86rem; }
