*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark: #1d030a;
  --slate: #b9c4d4;
  --white: #ffffff;
  --dark2: #150208;
  --mid: #3a1020;
}
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; line-height: 1.75; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 3rem; background: linear-gradient(to bottom, rgba(29,3,10,0.98) 0%, transparent 100%); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); text-decoration: none; transition: color 0.3s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }

/* SECTION LABEL */
.section-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.section-label::before { content: ''; width: 30px; height: 0.5px; background: var(--mid); display: block; }

/* BUTTONS */
.btn-primary { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dark); background: var(--white); text-decoration: none; padding: 1rem 2.2rem; display: inline-block; transition: background 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--slate); }
.btn-primary.dark { background: var(--dark); color: var(--white); }
.btn-primary.dark:hover { background: var(--mid); }
.btn-ghost { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s; cursor: pointer; background: none; border: none; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 3rem 6rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 65% 40%, rgba(61,2,16,0.6) 0%, transparent 70%), var(--dark); }
.hero-photo { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; overflow: hidden; pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.4) brightness(0.7); mix-blend-mode: luminosity; opacity: 0.65; }
.hero-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--dark) 0%, transparent 30%, transparent 70%, var(--dark) 100%), linear-gradient(to bottom, var(--dark) 0%, transparent 20%, transparent 80%, var(--dark) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mid); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 0.5px; background: var(--mid); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(64px, 10vw, 110px); font-weight: 900; line-height: 0.9; color: var(--white); }
.hero-title span { display: block; font-style: italic; font-weight: 400; font-size: 0.55em; letter-spacing: 0.25em; color: var(--slate); margin-top: 0.3em; }
.hero-desc { margin-top: 2.5rem; font-size: 16px; font-weight: 300; color: var(--slate); max-width: 440px; line-height: 1.8; }
.hero-cta { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* ABOUT — fond blanc */
.about { padding: 8rem 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.about .section-label { color: var(--dark); }
.about .section-label::before { background: var(--dark); }
.about-title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 2rem; }
.about-title em { font-style: italic; color: var(--mid); }
.about-body { font-size: 16px; font-weight: 300; color: rgba(29,3,10,0.65); line-height: 1.9; margin-bottom: 1.5rem; }
.about-visual { position: relative; aspect-ratio: 3/4; border: 0.5px solid rgba(29,3,10,0.15); overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.5) brightness(0.85); }
.about-members { margin-top: 3rem; padding-top: 2rem; border-top: 0.5px solid rgba(29,3,10,0.1); display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; font-size: 13px; }
.member-name { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--dark); font-size: 14px; display: block; margin-bottom: 2px; }
.member-role { color: rgba(29,3,10,0.5); font-size: 12px; }

/* CONCERTS — fond ardoise */
.concerts { padding: 6rem 0; background: var(--slate); }
.concerts-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.concerts .section-label { color: var(--dark); }
.concerts .section-label::before { background: var(--dark); }
.concerts-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--dark); margin-bottom: 3rem; }
.concert-list { list-style: none; }
.concert-item { display: flex; align-items: center; gap: 2rem; padding: 1.8rem 0; border-bottom: 0.5px solid rgba(29,3,10,0.15); cursor: pointer; transition: padding 0.2s; }
.concert-item:first-child { border-top: 0.5px solid rgba(29,3,10,0.15); }
.concert-item:hover { padding-left: 0.8rem; }
.concert-date { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--dark); line-height: 1; width: 80px; flex-shrink: 0; }
.concert-date span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(29,3,10,0.5); margin-top: 4px; }
.concert-venue { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--dark); flex: 1; }
.concert-city { font-size: 13px; color: rgba(29,3,10,0.5); margin-top: 2px; }
.concerts-note { margin-top: 2rem; font-size: 13px; color: rgba(29,3,10,0.6); font-style: italic; }
.concerts-note a { color: var(--dark); }

/* EP TEASER — fond blanc */
.ep-teaser { padding: 6rem 0; background: var(--white); }
.ep-teaser-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ep-teaser .section-label { color: var(--dark); }
.ep-teaser .section-label::before { background: var(--dark); }
.ep-label-sm { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; }
.ep-title-lg { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 1rem; }
.ep-body { font-size: 15px; font-weight: 300; color: rgba(29,3,10,0.65); line-height: 1.9; margin-bottom: 2rem; }
.ep-cover-box { aspect-ratio: 1; overflow: hidden; box-shadow: 0 20px 60px rgba(29,3,10,0.15); }
.ep-cover-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-cta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.ep-cta .btn-ghost { color: rgba(29,3,10,0.6); }
.ep-cta .btn-ghost::after { content: '→'; }
.ep-cta .btn-ghost:hover { color: var(--dark); }

/* NEWSLETTER */
.newsletter { background: var(--dark); padding: 4rem 0; }
.newsletter-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.nl-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.6rem; }
.nl-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); line-height: 1.2; }
.nl-form { display: flex; }
.nl-input { flex: 1; background: transparent; border: 0.5px solid rgba(185,196,212,0.35); border-right: none; color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 15px; padding: 0.9rem 1.2rem; outline: none; }
.nl-input::placeholder { color: rgba(185,196,212,0.3); }
.nl-input:focus { border-color: var(--slate); }
.nl-btn { background: var(--slate); color: var(--dark); border: none; font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.9rem 1.8rem; cursor: pointer; transition: background 0.3s; }
.nl-btn:hover { background: var(--white); }
.nl-success { display: none; color: var(--slate); font-style: italic; font-size: 14px; margin-top: 0.8rem; }

/* FOOTER */
footer { background: var(--dark); border-top: 0.5px solid rgba(185,196,212,0.1); padding: 3rem; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.footer-socials a:hover { color: var(--white); }
.footer-copy { font-size: 11px; color: rgba(185,196,212,0.35); letter-spacing: 0.05em; }

/* ── PAGE ÉCOUTER ─────────────────────────────── */
.ep-page-hero { min-height: 40vh; display: flex; align-items: flex-end; padding: 0 4rem 4rem; position: relative; overflow: hidden; background: var(--dark); }
.ep-page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 100% at 20% 60%, rgba(58,16,32,0.9) 0%, var(--dark) 70%); }
.ep-page-hero-content { position: relative; z-index: 2; }
.ep-page-eyebrow { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--slate); margin-bottom: 1rem; }
.ep-page-title { font-family: 'Playfair Display', serif; font-size: clamp(56px, 9vw, 100px); font-weight: 900; color: var(--white); line-height: 0.88; }
.ep-page-title em { font-style: italic; font-weight: 400; color: var(--slate); }
.ep-page-sub { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(185,196,212,0.6); margin-top: 0.8rem; }

.player-grid { display: grid; grid-template-columns: 420px 1fr; min-height: 520px; }
.player-left { background: #0a0105; display: flex; flex-direction: column; }
.player-cover { aspect-ratio: 1; overflow: hidden; position: relative; }
.player-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.player-cover-bars { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,1,5,0.4); opacity: 0; transition: opacity 0.3s; }
.player-cover:hover .player-cover-bars { opacity: 1; }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 28px; }
.bars span { width: 4px; background: var(--white); border-radius: 2px; animation: barAnim 1.2s ease-in-out infinite; }
.bars span:nth-child(1) { height: 60%; animation-delay:0s; }
.bars span:nth-child(2) { height: 100%; animation-delay:0.2s; }
.bars span:nth-child(3) { height: 70%; animation-delay:0.4s; }
.bars span:nth-child(4) { height: 45%; animation-delay:0.1s; }
@keyframes barAnim { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.bars.paused span { animation-play-state: paused; }
.player-track-info { padding: 1.8rem 2rem; }
.player-track-num { font-size: 10px; letter-spacing: 0.3em; color: rgba(185,196,212,0.5); margin-bottom: 0.3rem; }
.player-track-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); }
.player-track-group { font-size: 11px; color: rgba(185,196,212,0.4); margin-top: 0.2rem; }

.player-right { background: var(--white); display: flex; flex-direction: column; justify-content: space-between; padding: 2.5rem 3rem; }
.tracklist { display: flex; flex-direction: column; }
.track-row { display: flex; align-items: center; gap: 1.2rem; padding: 1.1rem 1rem; cursor: pointer; border-bottom: 0.5px solid rgba(29,3,10,0.07); transition: all 0.2s; margin: 0 -1rem; border-radius: 3px; }
.track-row:first-child { border-top: 0.5px solid rgba(29,3,10,0.07); }
.track-row:hover { background: rgba(29,3,10,0.04); padding-left: 1.4rem; }
.track-row.is-active { background: rgba(29,3,10,0.06); padding-left: 1.4rem; }
.track-row .t-num { font-family: 'Playfair Display', serif; font-size: 12px; color: var(--slate); width: 24px; flex-shrink: 0; }
.track-row.is-active .t-num { color: var(--dark); }
.track-row .t-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--dark); flex: 1; }
.track-row.is-active .t-name { font-weight: 700; }
.track-row .t-dur { font-size: 12px; color: var(--slate); font-variant-numeric: tabular-nums; }
.track-row .t-icon { font-size: 10px; color: var(--dark); opacity: 0; transition: opacity 0.15s; width: 16px; }
.track-row:hover .t-icon, .track-row.is-active .t-icon { opacity: 1; }

.controls { border-top: 0.5px solid rgba(29,3,10,0.1); padding-top: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; }
.progress-row { display: flex; align-items: center; gap: 0.8rem; }
.ptime { font-size: 11px; color: var(--slate); min-width: 34px; font-variant-numeric: tabular-nums; }
.progress-track { flex: 1; position: relative; height: 3px; background: rgba(29,3,10,0.1); border-radius: 3px; }
.progress-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--dark); border-radius: 3px; width: 0%; pointer-events: none; }
.progress-range { position: absolute; inset: -8px 0; width: 100%; opacity: 0; cursor: pointer; }
.ctrl-btns { display: flex; align-items: center; gap: 1.5rem; }
.cbtn { background: none; border: none; cursor: pointer; color: rgba(29,3,10,0.4); display: flex; align-items: center; justify-content: center; transition: color 0.2s, transform 0.15s; padding: 0.3rem; }
.cbtn:hover { color: var(--dark); transform: scale(1.1); }
.cbtn.play-btn { width: 52px; height: 52px; background: var(--dark); color: var(--white) !important; border-radius: 50%; box-shadow: 0 4px 20px rgba(29,3,10,0.25); transition: background 0.2s, transform 0.15s; }
.cbtn.play-btn:hover { background: var(--mid); transform: scale(1.06); }

.player-footer { background: var(--dark); padding: 2.5rem 4rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.player-footer p { font-size: 13px; color: var(--slate); }
.player-footer strong { color: var(--white); }
.player-footer a { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate); text-decoration: none; }
.player-footer a:hover { color: var(--white); }

/* ── PAGE PRESSE ─────────────────────────────── */
.presse-hero { min-height: 40vh; display: flex; align-items: flex-end; padding: 0 4rem 4rem; position: relative; overflow: hidden; background: var(--dark); }
.presse-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 80% 30%, rgba(58,16,32,0.5), var(--dark)); }
.presse-hero-title { position: relative; z-index: 2; }
.presse-hero-title em { display: block; font-weight: 400; font-style: italic; font-size: 0.45em; color: var(--slate); letter-spacing: 0.15em; margin-bottom: 0.3em; }
.presse-hero-title span { font-family: 'Playfair Display', serif; font-size: clamp(52px, 8vw, 90px); font-weight: 900; color: var(--white); line-height: 0.95; }
.presse-body { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; padding: 5rem 4rem; }
.presse-col-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.presse-text { font-size: 15px; font-weight: 300; color: rgba(185,196,212,0.7); line-height: 1.9; margin-bottom: 1rem; }
.presse-infos { margin: 2rem 0; border-top: 0.5px solid rgba(185,196,212,0.12); }
.info-row { display: flex; gap: 1.5rem; padding: 0.8rem 0; border-bottom: 0.5px solid rgba(185,196,212,0.08); font-size: 13px; }
.info-lbl { color: var(--slate); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; width: 80px; flex-shrink: 0; padding-top: 2px; }
.info-val { color: var(--white); }
.presse-actions { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.tracklist-presse { list-style: none; border-top: 0.5px solid rgba(185,196,212,0.12); margin-bottom: 2.5rem; }
.tracklist-presse li { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 0; border-bottom: 0.5px solid rgba(185,196,212,0.08); }
.tp-num { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--slate); width: 24px; }
.tp-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); }
.presse-quote { border-left: 2px solid var(--mid); padding-left: 1.5rem; }
.presse-quote blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 16px; color: var(--slate); line-height: 1.7; }

/* ── PAGE CONTACT ─────────────────────────────── */
.contact-hero { min-height: 40vh; display: flex; align-items: flex-end; padding: 0 4rem 4rem; position: relative; overflow: hidden; background: var(--dark); }
.contact-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 80% 30%, rgba(58,16,32,0.5), var(--dark)); }
.contact-hero-title { position: relative; z-index: 2; }
.contact-hero-title em { display: block; font-weight: 400; font-style: italic; font-size: 0.45em; color: var(--slate); letter-spacing: 0.15em; margin-bottom: 0.3em; }
.contact-hero-title span { font-family: 'Playfair Display', serif; font-size: clamp(52px, 8vw, 90px); font-weight: 900; color: var(--white); line-height: 0.95; }
.contact-body { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; padding: 5rem 4rem; }
.contact-col-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.contact-p { font-size: 15px; font-weight: 300; color: rgba(185,196,212,0.7); line-height: 1.9; margin-bottom: 1rem; }
.contact-links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; font-size: 14px; color: var(--slate); text-decoration: none; padding-bottom: 1rem; border-bottom: 0.5px solid rgba(185,196,212,0.1); transition: color 0.25s; }
.contact-link:hover { color: var(--white); }
.contact-link-icon { width: 36px; height: 36px; border: 0.5px solid rgba(185,196,212,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.contact-link-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(185,196,212,0.5); display: block; margin-bottom: 2px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(185,196,212,0.5); margin-bottom: 0.6rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: transparent; border: none; border-bottom: 0.5px solid rgba(185,196,212,0.25); color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 300; padding: 0.7rem 0; outline: none; transition: border-color 0.3s; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color: var(--slate); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(185,196,212,0.25); }
.form-group textarea { resize: none; height: 100px; }
.form-group select option { background: var(--dark); color: var(--white); }
.form-submit { margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; }
.form-note { font-size: 12px; color: rgba(185,196,212,0.4); font-style: italic; }
.form-success { display: none; margin-top: 1.5rem; padding: 1rem 1.5rem; border-left: 2px solid var(--mid); font-size: 14px; color: var(--slate); font-style: italic; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 10px; letter-spacing: 0.1em; }
  .hero { padding: 0 1.2rem 3.5rem; }
  .hero-photo { width: 100%; opacity: 0.2; }
  .hero-title { font-size: clamp(46px, 13vw, 64px); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .about-inner { grid-template-columns: 1fr; padding: 2.5rem 1.2rem; }
  .about-visual { display: none; }
  .concerts-inner { padding: 2.5rem 1.2rem; }
  .ep-teaser-inner { grid-template-columns: 1fr; padding: 2.5rem 1.2rem; }
  .newsletter-inner { grid-template-columns: 1fr; padding: 2.5rem 1.2rem; gap: 1.5rem; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 0.5px solid rgba(185,196,212,0.35); }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.2rem; }
  .player-grid { grid-template-columns: 1fr; }
  .player-cover { max-height: 280px; }
  .player-right { padding: 1.5rem 1.2rem; }
  .ep-page-hero, .presse-hero, .contact-hero { padding: 0 1.2rem 3rem; }
  .presse-body, .contact-body { grid-template-columns: 1fr; padding: 3rem 1.2rem; gap: 3rem; }
  .player-footer { padding: 2rem 1.2rem; flex-direction: column; align-items: flex-start; }
}

/* ── SLIDESHOW ───────────────────────────────── */
.slideshow {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0105;
}
.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) brightness(0.88);
  display: block;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(29,3,10,0.55);
  color: #fff;
  border: 0.5px solid rgba(185,196,212,0.2);
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slide-btn:hover { background: rgba(29,3,10,0.85); }
.slide-prev { left: 12px; }
.slide-next { right: 12px; }
.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s;
}
.slide-dot.active { background: #fff; }

/* ── PASSWORD LOCK ───────────────────────────── */
.ep-lock {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 2rem;
}
.ep-lock-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  max-width: 900px;
  width: 100%;
  min-height: 500px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.ep-lock-img {
  overflow: hidden;
}
.ep-lock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ep-lock-form {
  background: #0f0108;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  border: 0.5px solid rgba(185,196,212,0.08);
  border-left: none;
}
.ep-lock-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
  opacity: 0.6;
}
.ep-lock-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ep-lock-sub {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(185,196,212,0.5);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.ep-lock-field {
  display: flex;
  margin-bottom: 1rem;
}
.ep-pw-input {
  flex: 1;
  background: transparent;
  border: 0.5px solid rgba(185,196,212,0.25);
  border-right: none;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  padding: 0.9rem 1.2rem;
  outline: none;
  letter-spacing: 0.1em;
  transition: border-color 0.3s;
}
.ep-pw-input:focus { border-color: var(--slate); }
.ep-pw-input::placeholder { color: rgba(185,196,212,0.25); letter-spacing: 0.05em; font-size: 14px; }
.ep-pw-btn {
  background: var(--slate);
  color: var(--dark);
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}
.ep-pw-btn:hover { background: #fff; }
.ep-lock-error {
  font-size: 13px;
  color: #c97070;
  font-style: italic;
  min-height: 20px;
  margin-bottom: 0.5rem;
}
.ep-lock-hint {
  font-size: 11px;
  color: rgba(185,196,212,0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2rem;
}
.ep-page-hero { padding-top: 90px; }

/* btn-ghost dans section ep-teaser fond blanc */
.ep-ghost { color: rgba(29,3,10,0.55); }
.ep-ghost:hover { color: var(--dark); }

@media (max-width: 768px) {
  .ep-lock-inner { grid-template-columns: 1fr; }
  .ep-lock-img { height: 240px; }
  .ep-lock-form { padding: 2rem 1.5rem; }
  .ep-page-hero { padding-top: 80px; }
  .slideshow { aspect-ratio: 1; }
}
