/**
 * main.css — Les Lutins Zinzins
 * Charte graphique Popatex : Blanc · Vert eau · Doré
 * Généré pour le thème enfant WordPress
 *
 * Ce fichier est chargé via functions.php (wp_enqueue_style 'lz-main')
 * Emplacement : lutins-zinzins-theme/assets/css/main.css
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Palette Popatex exacte ── */
  --white:      #ffffff;
  --cream:      #f8f5ef;          /* fond page */
  --cream2:     #f0ebe2;          /* fond alterné */

  /* Vert eau / sauge — couleur principale Popatex */
  --teal:       #4a9b8e;
  --teal-d:     #357a6e;          /* hover / foncé */
  --teal-l:     #6db8ac;          /* clair */
  --teal-xl:    #e0f0ed;          /* très clair / fond badge */
  --teal-2xl:   #f0f8f7;          /* quasi blanc teinté */

  /* Doré / ocre — accent Popatex */
  --gold:       #c9964a;
  --gold-d:     #a87838;
  --gold-l:     #ddb06e;
  --gold-xl:    #faf0e0;          /* fond doré très clair */

  /* Texte */
  --dark:       #1e1e1e;
  --mid:        #4a4a4a;
  --muted:      #8a8a8a;
  --border:     rgba(74,155,142,.18);
  --border-md:  rgba(74,155,142,.3);

  --nav-h: 74px;
  --r:     10px;
  --r-lg:  16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.lz-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
.lz-nav.scrolled {
  background: rgba(248,245,239,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.lz-nav__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.lz-nav__logo img { height: 40px; width: auto; }
.lz-nav__logo-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: .03em;
  color: var(--white); line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
  transition: color .3s;
}
nav.scrolled .lz-nav__logo-txt { color: var(--dark); text-shadow: none; }
.lz-nav__logo-txt small {
  display: block; font-size: .65rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  opacity: .7;
}

.lz-nav__links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.lz-nav__links a {
  font-size: .8rem; font-weight: 500; letter-spacing: .05em;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
  transition: color .2s, text-shadow .2s;
}
nav.scrolled .lz-nav__links a { color: var(--mid); text-shadow: none; }
.lz-nav__links a:hover { color: var(--teal) !important; text-shadow: none !important; }

.lz-nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: .42rem 1.2rem; border-radius: 6px;
  text-shadow: none !important;
  transition: background .2s !important;
}
.lz-nav__cta:hover { background: var(--teal-d) !important; }

.lz-nav__hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; border: none; background: none; padding: 4px;
}
.lz-nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .3s;
}
nav.scrolled .lz-nav__hamburger span { background: var(--dark); }
.lz-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lz-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.lz-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lz-mob-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--white);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.lz-mob-menu.open { display: flex; }
.lz-mob-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; font-style: italic;
  color: var(--dark); text-decoration: none;
  transition: color .2s;
}
.lz-mob-menu a:hover { color: var(--teal); }
.lz-mob-menu__cta {
  font-style: normal !important; font-size: 1rem !important;
  font-family: 'DM Sans', sans-serif !important;
  background: var(--teal); color: var(--white) !important;
  padding: .65rem 2rem; border-radius: 6px;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════
   HERO — fond sombre pour la vidéo
═══════════════════════════════════════ */
.lz-hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.lz-hero__bg {
  position: absolute; inset: 0;
  background: #0d1f14;
  overflow: hidden;
}

/* ── Vidéo hero — plein écran obligatoire ── */
.lz-hero__bg video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Lumière de scène animée */
.lz-hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 52% 10%,  rgba(74,155,142,.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 20% 80%, rgba(201,150,74,.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 60%,  rgba(74,155,142,.1) 0%, transparent 50%);
  animation: sceneLight 9s ease-in-out infinite alternate;
}
@keyframes sceneLight {
  from { opacity: .7; transform: scale(1); }
  to   { opacity: 1;  transform: scale(1.04) translateX(1%); }
}

/* Végétation abstraite basse */
.lz-hero__bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(20,50,30,.8) 0%, transparent 100%);
}

/* Note : en production, remplacer .hero-bg par :
   <video autoplay muted loop playsinline poster="poster.jpg"
     style="position:absolute;inset:0;width:100%;height:100%;object-fit:cover;">
     <source src="spectacle.mp4" type="video/mp4">
   </video>
*/

.lz-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(13,31,20,.75) 0%, transparent 45%),
    linear-gradient(to top,    rgba(13,31,20,.92) 0%, rgba(13,31,20,.3) 45%, transparent 80%);
}

/* Ligne dorée décorative */
.lz-hero__deco-line {
  position: absolute; left: 2.5rem; bottom: 15%; top: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,150,74,.6), transparent);
}

.lz-hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1140px; margin: 0 auto;
  padding: 0 2.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: flex-end; gap: 2.5rem;
}

.lz-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 1.2rem;
}
.lz-hero__chip::before { content:''; width: 28px; height: 1px; background: var(--gold-l); }

h1.lz-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
h1.hero-title em { font-style: italic; font-weight: 700; color: #7dd4c8; }

.lz-hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,.72);
  font-weight: 300; line-height: 1.75; max-width: 520px;
  margin-bottom: 2.5rem;
}

.lz-hero__btns { display: flex; flex-wrap: wrap; gap: .75rem; }

.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  padding: .82rem 2rem; border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(74,155,142,.35);
}
.btn-teal:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,155,142,.45); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-size: .82rem; font-weight: 500;
  padding: .82rem 2rem; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline-w:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); transform: translateY(-2px); }

/* Prochaine date */
.lz-hero__date-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  text-align: center;
}
.lz-hero__date-card .label { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: #7dd4c8; margin-bottom: .5rem; font-weight: 600; }
.lz-hero__date-card .day   { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.lz-hero__date-card .month { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .08em; }
.lz-hero__date-card hr     { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: .8rem 0; }
.lz-hero__date-card .venue { font-size: .84rem; font-weight: 500; color: var(--white); }
.lz-hero__date-card .city  { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.lz-hero__date-card .cta   { display: inline-block; margin-top: .9rem; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #7dd4c8; text-decoration: none; transition: color .2s; }
.lz-hero__date-card .cta:hover { color: var(--gold-l); }

.lz-hero__scroll {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(255,255,255,.35); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{transform:translateX(-50%) translateY(0);opacity:.35}
  50%{transform:translateX(-50%) translateY(7px);opacity:.6}
}

/* ═══════════════════════════════════════
   LAYOUT COMMUN
═══════════════════════════════════════ */
.lz-container { max-width: 1100px; margin: 0 auto; }
.lz-section { padding: 5.5rem 2.5rem; }

.lz-eyebrow {
  font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); display: flex; align-items: center; gap: 10px;
  margin-bottom: .8rem;
}
.lz-eyebrow::before { content:''; width: 22px; height: 1.5px; background: var(--teal); }

.lz-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -.01em;
  color: var(--dark); margin-bottom: 1rem;
}
.lz-section-title em { font-style: italic; font-weight: 700; color: var(--teal); }
.lz-section-title .gold { font-style: italic; font-weight: 700; color: var(--gold); }

/* ═══════════════════════════════════════
   SPECTACLES — fond blanc
═══════════════════════════════════════ */
.lz-spectacles { background: var(--white); }

.lz-spec-grid {
  display: grid; grid-template-columns: 1.45fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}

.lz-spec-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer;
  transition: transform .35s, box-shadow .35s;
}
.lz-spec-card--featured { aspect-ratio: 16/10; }
.lz-spec-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(74,155,142,.2); }

/* Fond des cards — vert eau sombre pour rappel de forêt/scène */
.lz-spec-card__thumb { position: absolute; inset: 0; }
.lz-spec-card--s1 .lz-spec-card__thumb { background: linear-gradient(150deg, #1a4a42 0%, #0d2820 100%); }
.lz-spec-card--s2 .lz-spec-card__thumb { background: linear-gradient(150deg, #1f4040 0%, #0d2222 100%); }

/* Halo doré bas de scène */
.lz-spec-card__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 110%, rgba(201,150,74,.2) 0%, transparent 55%);
}

.lz-spec-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,20,.9) 0%, rgba(10,25,20,.15) 55%, transparent 100%);
}

.lz-spec-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.6rem; }
.lz-spec-card__tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .7rem; }
.lz-spec-card__tag {
  font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.lz-spec-card__tag--teal { background: var(--teal); color: var(--white); }
.lz-spec-card__tag--gold { background: transparent; border: 1.5px solid var(--gold-l); color: var(--gold-l); }

.lz-spec-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600; color: var(--white); line-height: 1.2;
  margin-bottom: .3rem;
}
.spec-card.big .lz-spec-card__title { font-size: 2.1rem; }
.lz-spec-card__sub { font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.lz-spec-card__meta {
  display: flex; gap: .9rem; margin-top: .8rem;
  font-size: .72rem; color: rgba(255,255,255,.5);
}
.lz-spec-card__meta span { display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════
   DATES — fond crème
═══════════════════════════════════════ */
.lz-dates { background: var(--cream); }

.dates-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}

.btn-teal-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--teal);
  font-size: .8rem; font-weight: 600;
  padding: .65rem 1.5rem; border-radius: 6px;
  border: 1.5px solid var(--teal);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-teal-outline:hover { background: var(--teal); color: var(--white); }

.dates-list { display: flex; flex-direction: column; gap: .7rem; }

.date-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1.5rem;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.date-item:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(74,155,142,.12);
  transform: translateX(4px);
}

.date-num { text-align: center; }
.date-num .dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; line-height: 1; color: var(--teal);
}
.date-num .mm { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

.lz-date-item__venue { font-weight: 500; font-size: .94rem; color: var(--dark); }
.lz-date-item__city  { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.lz-date-item__show  { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }

.date-cta-pill {
  font-size: .73rem; font-weight: 600; letter-spacing: .07em;
  color: var(--teal); border: 1.5px solid var(--teal-xl);
  padding: .4rem .9rem; border-radius: 50px; white-space: nowrap;
  background: var(--teal-2xl);
  transition: background .2s, border-color .2s, color .2s;
}
.date-item:hover .date-cta-pill { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ═══════════════════════════════════════
   COMPAGNIE — fond teal très clair
═══════════════════════════════════════ */
.lz-compagnie { background: var(--teal-2xl); }

.lz-compagnie__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.lz-compagnie__text p {
  font-size: .92rem; color: var(--mid); font-weight: 300;
  line-height: 1.85; margin-bottom: 1rem;
}
.lz-compagnie__quote {
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem; margin: 1.75rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; font-style: italic;
  color: var(--teal-d); line-height: 1.55;
}

.lz-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.lz-stat__n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.lz-stat__l { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.lz-compagnie__media {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 195px 195px; gap: 10px;
}
.media-tile {
  border-radius: var(--r); overflow: hidden; position: relative;
  border: 1px solid var(--border);
  background: var(--teal-xl);
}
.media-tile:first-child { grid-row: 1 / 3; }
.lz-media-tile img { position: absolute; inset: 0; }
.media-bg.m1 { background: linear-gradient(145deg, #1a4a42, #0d2820); }
.media-bg.m2 { background: linear-gradient(145deg, #2a3e32, #141e18); }
.media-bg.m3 { background: linear-gradient(145deg, #1a3042, #0d1820); }

.lz-media-tile__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lz-media-tile__ring {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.play-wrap:hover .lz-media-tile__ring {
  background: rgba(74,155,142,.45); border-color: var(--teal-l);
  transform: scale(1.08);
}
.lz-media-tile__tri {
  width: 0; height: 0; margin-left: 3px;
  border-style: solid; border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent rgba(255,255,255,.9);
}

/* ═══════════════════════════════════════
   ARTISTES — fond blanc
═══════════════════════════════════════ */
.lz-artistes { background: var(--white); }

.lz-artists-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}

.lz-artist-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem 1.25rem; text-align: center;
  transition: border-color .2s, transform .25s, box-shadow .25s;
  cursor: default;
}
.lz-artist-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(74,155,142,.12); }

.lz-artist-card__avatar {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--teal-xl);
  border: 2px solid var(--teal-l);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--teal-d);
}
.lz-artist-card__name { font-weight: 600; font-size: .9rem; color: var(--dark); margin-bottom: .25rem; }
.lz-artist-card__role { font-size: .73rem; color: var(--muted); line-height: 1.4; }

/* ═══════════════════════════════════════
   PODCAST — fond crème2
═══════════════════════════════════════ */
.lz-podcast { background: var(--cream2); }

.lz-podcast__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}

.lz-podcast-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.lz-podcast-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(74,155,142,.1); }

.lz-podcast-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--teal-xl);
  line-height: 1; margin-bottom: .3rem;
}
.pod-card:hover .lz-podcast-card__num { color: var(--teal-l); }
.lz-podcast-card__title { font-weight: 600; font-size: .9rem; color: var(--dark); margin-bottom: .2rem; }
.pod-dur { font-size: .75rem; color: var(--muted); }

.pod-wave {
  display: flex; align-items: center; gap: 2.5px;
  height: 30px; margin-top: .9rem;
}
.lz-podcast-card__wave span {
  display: block; width: 3px; border-radius: 3px;
  background: var(--teal-xl);
  animation: wv 1.1s ease-in-out infinite alternate;
}
.pod-card:hover .lz-podcast-card__wave span { background: var(--teal); }
@keyframes wv { from{transform:scaleY(.35)} to{transform:scaleY(1)} }

/* ═══════════════════════════════════════
   ESPACE PRO — fond teal principal
═══════════════════════════════════════ */
.lz-pro {
  background: var(--teal);
  padding: 5rem 2.5rem;
}
.lz-pro__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem;
}
.lz-pro__eyebrow {
  font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 10px;
  margin-bottom: .8rem;
}
.lz-pro__eyebrow::before { content:''; width: 22px; height: 1.5px; background: rgba(255,255,255,.4); }
.lz-pro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--white); margin-bottom: .75rem; line-height: 1.15;
}
.lz-pro__title em { font-style: italic; font-weight: 700; }
.lz-pro__sub { font-size: .9rem; color: rgba(255,255,255,.75); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--teal-d);
  font-size: .82rem; font-weight: 700; letter-spacing: .05em;
  padding: .82rem 2rem; border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-white:hover { background: var(--gold-xl); transform: translateY(-2px); }

.lz-pro__deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.08); line-height: 1;
  user-select: none; pointer-events: none; white-space: nowrap;
}

/* ═══════════════════════════════════════
   FOOTER — fond sombre (seul élément dark)
═══════════════════════════════════════ */
.lz-footer {
  background: #111b15;
  padding: 4rem 2.5rem;
  border-top: 3px solid var(--teal);
}
.lz-footer__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.lz-footer__brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; font-style: italic;
  color: var(--white); margin-bottom: .6rem;
}
.lz-footer__tagline { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.7; font-weight: 300; }
.footer-prod { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-top: .5rem; }

.lz-footer__socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.lz-footer__soc {
  width: 34px; height: 34px; border-radius: 6px;
  border: 1px solid rgba(74,155,142,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.4); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.lz-footer__soc:hover { border-color: var(--teal); color: var(--teal); background: rgba(74,155,142,.08); }

.lz-footer h4 {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-l); margin-bottom: 1rem; font-weight: 600;
}
.lz-footer ul { list-style: none; }
.lz-footer ul li { margin-bottom: .5rem; }
.lz-footer ul a { font-size: .83rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.lz-footer ul a:hover { color: var(--white); }

.lz-footer__bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-size: .72rem; color: rgba(255,255,255,.2);
}
.lz-footer__bottom a { color: rgba(74,155,142,.5); text-decoration: none; }
.lz-footer__bottom a:hover { color: var(--teal-l); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 920px) {
  .lz-nav__links { display: none; }
  .lz-nav__hamburger { display: flex; }

  .lz-hero__content { grid-template-columns: 1fr; }
  .lz-hero__date-card { display: none; }
  .lz-hero__deco-line { display: none; }

  .lz-spec-grid { grid-template-columns: 1fr; }
  .lz-spec-card--featured { aspect-ratio: 4/3; }

  .lz-compagnie__grid { grid-template-columns: 1fr; gap: 3rem; }
  .lz-compagnie__media { order: -1; grid-template-rows: 160px 160px; }

  .lz-artists-grid { grid-template-columns: 1fr 1fr; }

  .lz-podcast__grid { grid-template-columns: 1fr 1fr; }

  .lz-pro__inner { grid-template-columns: 1fr; }
  .lz-pro__deco { display: none; }

  .lz-footer__grid { grid-template-columns: 1fr 1fr; }
  .lz-section { padding: 4rem 1.5rem; }
}

@media (max-width: 560px) {
  h1.lz-hero__title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .lz-artists-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .lz-podcast__grid { grid-template-columns: 1fr; }
  .lz-footer__grid { grid-template-columns: 1fr; }
  .dates-head { flex-direction: column; align-items: flex-start; }
  .date-item { grid-template-columns: 50px 1fr; }
  .date-cta-pill { display: none; }
  .lz-hero__btns { flex-direction: column; }
  .btn-teal, .btn-outline-white { justify-content: center; }
}

/* =====================================================
   SCROLL REVEAL — classes ajoutées par main.js
   ===================================================== */
.lz-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.lz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   LIEN INVISIBLE sur les cards spectacles
   ===================================================== */
.lz-spec-card { position: relative; }
.lz-spec-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--r-lg);
}
.lz-spec-card__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =====================================================
   SECTION compagnie — stat items individuels
   ===================================================== */
.lz-stat { display: flex; flex-direction: column; }

/* =====================================================
   DATE ITEM — info wrapper (section dates)
   ===================================================== */
.lz-date-item__info { display: flex; flex-direction: column; }

/* =====================================================
   MEDIA TILE — fond de couleur fallback (sans image)
   ===================================================== */
.lz-media-tile { background: #1a4a42; }
.lz-media-tile:nth-child(2) { background: #2a3e32; }
.lz-media-tile:nth-child(3) { background: #1a3042; }

/* =====================================================
   RESPONSIVE — corrections media queries WP
   ===================================================== */
@media (max-width: 920px) {
  .lz-dates__head { flex-wrap: wrap; }
  .lz-spec-card--featured { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .lz-date-item { grid-template-columns: 50px 1fr; }
  .lz-date-item__cta { display: none; }
  .lz-hero__btns { flex-direction: column; }
  .btn-teal, .btn-outline-white { justify-content: center; }
}

/* =====================================================
   ACCESSIBILITÉ
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =====================================================
   PRINT
   ===================================================== */
@media print {
  .lz-nav, .lz-mob-menu, .lz-hero__scroll { display: none !important; }
  .lz-hero { height: auto; min-height: unset; }
}


/* Section équipage supprimée directement dans WordPress */

/* =====================================================
   VIDÉO HERO — corrections desktop et mobile
   ===================================================== */

/* Desktop : s'assurer que le hero prend bien 100% largeur */
.lz-hero {
  width: 100vw;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}

/* Mobile : recadrage vertical pour éviter le tronquage */
@media (max-width: 768px) {
  .lz-hero__bg video {
    object-position: center center;
    width: 100%;
    height: 100%;
  }
  .lz-hero {
    height: 100svh; /* small viewport height — évite le tronquage mobile */
    min-height: 560px;
    transform: none;
    left: auto;
  }
}

/* Très petits écrans */
@media (max-width: 480px) {
  .lz-hero__bg video {
    object-position: 60% center; /* recentre sur le sujet si la vidéo est portrait */
  }
}
