@font-face {
  font-family: "Bobby Condensed";
  src: url("assets/fonts/bobby-jones-condensed.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Bobby Soft";
  src: url("assets/fonts/bobby-jones-soft-regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Bristol";
  src: url("assets/fonts/bristol-regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Fredoka SSF";
  src: url("assets/fonts/fredoka-light.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka SSF";
  src: url("assets/fonts/fredoka-light.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka Light";
  src: url("assets/fonts/fredoka-light.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Fredoka SSF";
  src: url("assets/fonts/fredoka-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bordeaux: #5C0C01;
  --red: #CC2C14;
  --orange: #E78605;
  --orange-dark: #D67800;
  --cream: #FDF9EE;
  --blue: #94BEC5;
  --ink-soft: rgba(92, 12, 1, 0.76);
  --line: rgba(92, 12, 1, 0.16);
  --shadow: 0 18px 46px rgba(46, 24, 15, 0.14);
  --font-body: "Fredoka SSF", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Bobby Condensed", "Fredoka SSF", sans-serif;
  --font-soft: "Bobby Soft", "Fredoka SSF", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #FDF9EE;
}

body {
  margin: 0;
  background: var(--cream);
  background-color: #FDF9EE;
  color: var(--bordeaux);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page {
  position: relative;
  overflow-x: clip;
  background: var(--cream);
}

.page::before {
  content: "";
  position: fixed;
  inset: auto -80px 8vh auto;
  z-index: 0;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  background: url("assets/img/motif-3.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.page > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 72px 0;
}

.section-blue {
  background: rgba(148, 190, 197, 0.18);
}

.section-soft {
  background: linear-gradient(180deg, rgba(148, 190, 197, 0.18), rgba(253, 249, 238, 0));
}

.section-soft::after,
.section-blue::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - 1160px) / 2));
  top: 32px;
  width: 94px;
  height: 94px;
  background: url("assets/img/soleil.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--blue);
}

h1,
.h1,
h2,
.h2 {
  margin: 0;
  color: var(--bordeaux);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: clamp(56px, 12vw, 124px);
}

h2,
.h2 {
  font-size: clamp(46px, 8vw, 88px);
}

h3,
.h3 {
  margin: 0;
  color: var(--bordeaux);
  font-family: var(--font-soft);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.48;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 15px 34px rgba(231, 134, 5, 0.24);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(253, 249, 238, 0.88);
  color: var(--bordeaux);
  box-shadow: none;
}

.btn.line {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.line.light {
  color: var(--cream);
  border-color: rgba(253, 249, 238, 0.56);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: #FDF9EE;
  border-bottom: 1px solid rgba(92, 12, 1, 0.10);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 64px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--bordeaux);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a {
  text-decoration: none;
}

.nav-links .btn {
  min-height: 50px;
  padding: 0 24px;
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--cream);
  background: #28140f;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 12, 8, 0.30), rgba(23, 12, 8, 0.30) 38%, rgba(23, 12, 8, 0.76));
}

.hero-content {
  padding: 92px 0 78px;
}

.hero-logotype {
  width: min(310px, 70vw);
  margin: 0 0 22px;
  filter: drop-shadow(0 12px 24px rgba(46, 24, 15, 0.26));
}

.hero h1,
.hero .lead,
.hero .kicker {
  color: var(--cream);
}

.hero .lead {
  max-width: 680px;
  color: rgba(253, 249, 238, 0.92);
  font-size: clamp(19px, 2.5vw, 25px);
  font-weight: 600;
}

.hero-note {
  margin-top: 18px;
  color: rgba(253, 249, 238, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.hero-panel {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(253, 249, 238, 0.24);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.93);
  color: var(--bordeaux);
  box-shadow: var(--shadow);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-family: var(--font-soft);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-panel span {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.hero-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.proof-strip {
  padding: 22px 0;
  background: rgba(148, 190, 197, 0.22);
}

.urgency-section {
  padding: 18px 0;
  background: rgba(253, 249, 238, 0.96);
  border-bottom: 1px solid rgba(92, 12, 1, 0.10);
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.urgency-card {
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.80);
}

.urgency-card strong,
.urgency-card span {
  display: block;
}

.urgency-card strong {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.urgency-card span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.urgency-card.done {
  opacity: 0.72;
}

.urgency-card.done span {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.urgency-card.current {
  background: rgba(148, 190, 197, 0.20);
  box-shadow: 0 12px 28px rgba(46, 24, 15, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.proof-item {
  padding: 16px 12px;
  border: 1px solid rgba(92, 12, 1, 0.10);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.72);
  text-align: center;
}

.proof-item strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.78);
  overflow: hidden;
}

.text-card {
  padding: 22px;
}

.text-card h3 {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
}

.text-card p {
  margin: 0;
  color: rgba(92, 12, 1, 0.86);
  font-weight: 600;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.day-card {
  min-height: 350px;
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(92, 12, 1, 0.18);
  background: center / cover no-repeat;
  box-shadow: 0 12px 28px rgba(46, 24, 15, 0.10);
}

.day-card:nth-child(4) {
  grid-column: span 2;
}

.day-card:nth-child(5) {
  grid-column: span 4;
}

.day-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.12), rgba(20, 10, 5, 0.16) 36%, rgba(253, 249, 238, 0.96));
}

.day-card.j1 { background-image: url("https://i.imgur.com/F3G95iy.png"); }
.day-card.j2 { background-image: url("https://i.imgur.com/KaxLiiU.png"); }
.day-card.j3 { background-image: url("https://i.imgur.com/4ZHQMEm.png"); }
.day-card.j4 { background-image: url("https://i.imgur.com/cjyFU6U.png"); background-position: center 16%; }
.day-card.j5 { background-image: url("https://i.imgur.com/DIv8iF7.png"); }

.day-content {
  position: relative;
  z-index: 1;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.day-date {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(46, 24, 15, 0.24);
}

.day-date small {
  display: block;
  margin-top: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

.day-copy h3 {
  margin-bottom: 7px;
  font-size: 30px;
}

.day-copy p {
  margin: 0;
  color: rgba(92, 12, 1, 0.82);
  font-weight: 600;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.artist-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(92, 12, 1, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(253, 249, 238, 0.82);
  box-shadow: 0 10px 26px rgba(46, 24, 15, 0.08);
}

.artist-media {
  height: 330px;
  position: relative;
  overflow: hidden;
  background: rgba(148, 190, 197, 0.20);
}

.artist-media img,
.artist-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.artist-media.contain img {
  object-fit: cover;
  object-position: center top;
}

.artist-media::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(180deg, rgba(253, 249, 238, 0), rgba(253, 249, 238, 0.96));
}

.artist-info {
  padding: 18px;
  text-align: center;
}

.artist-info h3 {
  font-size: 25px;
}

.artist-info p {
  margin: 8px 0 0;
  color: rgba(92, 12, 1, 0.66);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-box,
.embed-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.82);
  box-shadow: 0 12px 30px rgba(46, 24, 15, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 20px;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(92, 12, 1, 0.20);
  border-radius: 8px;
  background: var(--cream);
  color: var(--bordeaux);
  font: inherit;
  font-weight: 600;
}

.small {
  margin-top: 10px;
  color: rgba(92, 12, 1, 0.64);
  font-size: 13px;
  font-weight: 500;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.photo-card {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(92, 12, 1, 0.12);
  border-radius: 8px;
  background: rgba(148, 190, 197, 0.18);
}

.photo-card.wide {
  grid-column: span 2;
  min-height: 300px;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, rgba(15, 8, 5, 0), rgba(15, 8, 5, 0.62));
}

.caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--cream);
  font-weight: 700;
  text-transform: uppercase;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.pass-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.82);
}

.pass-card.featured {
  background: rgba(148, 190, 197, 0.24);
}

.price {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 0.9;
}

.pass-card ul,
.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  color: rgba(92, 12, 1, 0.84);
  font-weight: 600;
}

.availability {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(204, 44, 20, 0.22);
  border-radius: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.pass-card li::before,
.check-list li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.74);
}

.timeline-item.sold-out {
  opacity: 0.72;
}

.timeline-item strong {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.78);
  overflow: hidden;
}

details[open] {
  background: rgba(148, 190, 197, 0.14);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 20px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(92, 12, 1, 0.82);
  font-weight: 500;
}

.site-footer {
  padding: 46px 0;
  background: rgba(148, 190, 197, 0.20);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(92, 12, 1, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a {
  text-decoration: none;
}

.legal-page {
  max-width: 860px;
}

.legal-page h2 {
  margin-top: 38px;
  font-size: 38px;
}

.legal-page p,
.legal-page li {
  color: rgba(92, 12, 1, 0.82);
  font-weight: 500;
}

/* ============================================================
   Bandeaux immersifs full-bleed (effet « waouh »)
   ============================================================ */
.band {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.band-immersive {
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background: #1c0f08 center / cover no-repeat;
  background-attachment: fixed;
}

.band-immersive::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.62), rgba(20, 10, 5, 0.5) 45%, rgba(20, 10, 5, 0.78));
}

.band-immersive .container {
  padding: 96px 0;
}

.band-immersive .kicker,
.band-immersive .script-accent,
.band-immersive h2,
.band-immersive .lead,
.band-immersive p {
  color: var(--cream);
}

.band-immersive .kicker::before {
  background: var(--orange);
}

.band-statement {
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(46, 24, 15, 0.4);
}

.band-statement .em {
  color: var(--orange);
}

.band-immersive .lead {
  max-width: 660px;
  color: rgba(253, 249, 238, 0.92);
}

/* Bandeau expérience : photo + chiffres */
.band-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1160px, calc(100% - 36px));
  margin: 40px auto 0;
}

.band-figure {
  padding: 22px;
  border: 1px solid rgba(253, 249, 238, 0.28);
  border-radius: 14px;
  background: rgba(253, 249, 238, 0.08);
  backdrop-filter: blur(3px);
}

.band-figure strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.9;
  color: var(--cream);
}

.band-figure span {
  display: block;
  margin-top: 10px;
  color: rgba(253, 249, 238, 0.86);
  font-weight: 600;
}

/* ============================================================
   Hero — badge urgence + raffinement
   ============================================================ */
.hero::after {
  background: linear-gradient(180deg, rgba(23, 12, 8, 0.34), rgba(23, 12, 8, 0.42) 42%, rgba(23, 12, 8, 0.82));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(231, 134, 5, 0.6);
  border-radius: 999px;
  background: rgba(231, 134, 5, 0.16);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(3px);
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(231, 134, 5, 0.7);
  animation: pulse 2s infinite;
}

.hero-badge b {
  color: #ffd9a1;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(231, 134, 5, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(231, 134, 5, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 134, 5, 0); }
}

/* ============================================================
   Mosaïque « Ce que tu viens vivre » — image-led
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.exp-card {
  position: relative;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 38px rgba(46, 24, 15, 0.14);
}

.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s ease;
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.05) 35%, rgba(20, 10, 5, 0.4) 60%, rgba(20, 10, 5, 0.86));
}

.exp-card:hover img {
  transform: scale(1.06);
}

.exp-body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--cream);
}

.exp-num {
  font-family: "Bristol", var(--font-soft);
  font-size: 22px;
  color: #ffd9a1;
}

.exp-body h3 {
  margin: 4px 0 6px;
  color: var(--cream);
  font-family: var(--font-soft);
  font-size: 26px;
  text-transform: uppercase;
}

.exp-body p {
  margin: 0;
  color: rgba(253, 249, 238, 0.9);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.exp-card.tall { min-height: 380px; }

@media (max-width: 960px) {
  .exp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { min-height: 64vw; }
}

/* Échelle de prix relocalisée (peps) */
.priceladder {
  margin-top: 8px;
}

/* ============================================================
   Section « Une journée type » — timeline concrète
   ============================================================ */
.daytype {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
}

.daytype-step {
  position: relative;
  padding: 30px 12px 8px;
  text-align: center;
}

.daytype-step::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(231, 134, 5, 0.4);
}

.daytype-step:first-child::before { left: 50%; }
.daytype-step:last-child::before { right: 50%; }

.daytype-step::after {
  content: "";
  position: absolute;
  top: 7px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(231, 134, 5, 0.18);
}

.daytype-time {
  display: block;
  color: var(--red);
  font-family: var(--font-soft);
  font-size: 19px;
  text-transform: uppercase;
}

.daytype-label {
  display: block;
  margin-top: 6px;
  color: var(--bordeaux);
  font-weight: 700;
  font-size: 14px;
}

.daytype-desc {
  display: block;
  margin-top: 4px;
  color: rgba(92, 12, 1, 0.66);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.daytype-note {
  margin-top: 26px;
  text-align: center;
}

/* ============================================================
   CTA de clôture
   ============================================================ */
.cta-final .container {
  text-align: center;
}

.cta-final .band-statement {
  margin: 0 auto;
}

.cta-final .lead {
  margin-left: auto;
  margin-right: auto;
}

.cta-final .actions {
  justify-content: center;
}

/* Indice de scroll dans le hero */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(253, 249, 238, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(253, 249, 238, 0.8);
  border-bottom: 2px solid rgba(253, 249, 238, 0.8);
  transform: rotate(45deg);
  animation: cueBounce 1.8s ease-in-out infinite;
}

@keyframes cueBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

@media (max-width: 860px) {
  .daytype {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .daytype-step {
    padding: 6px 0 18px 30px;
    text-align: left;
  }
  .daytype-step::before {
    top: 0;
    bottom: 0;
    left: 7px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .daytype-step:first-child::before { top: 14px; left: 7px; }
  .daytype-step:last-child::before { bottom: 50%; right: auto; }
  .daytype-step::after {
    top: 8px;
    left: 1px;
  }
}

/* ============================================================
   Étoile filante + motifs animés (charte : soleil / étoile)
   ============================================================ */
.sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.shooting-star {
  position: absolute;
  top: -8%;
  left: -10%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, rgba(253, 249, 238, 0), rgba(253, 249, 238, 0.95));
  border-radius: 2px;
  filter: drop-shadow(0 0 6px rgba(253, 249, 238, 0.8));
  opacity: 0;
  transform: rotate(28deg);
  animation: shoot 7s ease-in infinite;
}

.shooting-star::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 10px 2px rgba(253, 249, 238, 0.9);
}

.shooting-star.s2 { top: 12%; animation-delay: 3.2s; animation-duration: 8s; width: 120px; }
.shooting-star.s3 { top: 30%; animation-delay: 5.5s; animation-duration: 9s; width: 200px; }

@keyframes shoot {
  0% { opacity: 0; transform: translate(0, 0) rotate(28deg); }
  6% { opacity: 1; }
  26% { opacity: 1; }
  40% { opacity: 0; transform: translate(120vw, 64vh) rotate(28deg); }
  100% { opacity: 0; transform: translate(120vw, 64vh) rotate(28deg); }
}

.spin-soleil {
  position: absolute;
  width: 220px;
  height: 220px;
  background: url("assets/img/soleil.png") center / contain no-repeat;
  opacity: 0.10;
  animation: spin 60s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .band-immersive {
    background-attachment: scroll;
    min-height: 64vh;
  }
  .band-figures {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Polish — transitions douces (rendu plus fluide)
   ============================================================ */
.card,
.day-card,
.pass-card,
.photo-card,
.timeline-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.text-card:hover,
.day-card:hover,
.photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(46, 24, 15, 0.16);
}

.artist-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(46, 24, 15, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Bristol script accent (eyebrow décoratif, charte DA)
   ============================================================ */
.script-accent {
  font-family: "Bristol", var(--font-soft);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  color: var(--orange);
  margin: 0 0 10px;
}

.hero .script-accent {
  color: var(--cream);
}

.narrow-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.actions-center {
  justify-content: center;
}

/* ============================================================
   Page Pass — décision courte, visuelle et orientée conversion
   ============================================================ */
.pass-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  background: #22110b;
}

.pass-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("https://i.imgur.com/xYxTeWr.png") center / cover no-repeat;
  transform: scale(1.03);
}

.pass-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 11, 5, 0.64), rgba(25, 11, 5, 0.38) 48%, rgba(25, 11, 5, 0.54)),
    linear-gradient(180deg, rgba(25, 11, 5, 0.10), rgba(25, 11, 5, 0.60));
}

.pass-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
  gap: 42px;
  align-items: end;
  padding: 104px 0 72px;
}

.pass-hero h1,
.pass-hero .lead,
.pass-hero .kicker,
.pass-hero .script-accent {
  color: var(--cream);
}

.pass-hero h1 {
  max-width: 780px;
}

.pass-hero .lead {
  max-width: 680px;
  color: rgba(253, 249, 238, 0.92);
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 600;
}

.pass-hero .kicker::before {
  background: var(--orange);
}

.pass-ticket {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(253, 249, 238, 0.38);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.94);
  color: var(--bordeaux);
  box-shadow: 0 24px 58px rgba(46, 24, 15, 0.24);
}

.pass-ticket::after {
  content: "";
  position: absolute;
  top: -56px;
  right: -48px;
  width: 170px;
  height: 170px;
  background: url("assets/img/soleil.png") center / contain no-repeat;
  opacity: 0.08;
}

.ticket-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(204, 44, 20, 0.24);
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.pass-ticket strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 20px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(84px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.82;
}

.pass-ticket p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(92, 12, 1, 0.78);
  font-weight: 700;
}

.ticket-mini {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.ticket-mini span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(92, 12, 1, 0.58);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pass-choice {
  background: linear-gradient(180deg, var(--cream), rgba(148, 190, 197, 0.16));
}

.sexy-prices {
  align-items: stretch;
}

.sexy-prices .pass-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: 0 16px 42px rgba(46, 24, 15, 0.11);
}

.sexy-prices .pass-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  background: url("assets/img/soleil.png") center / contain no-repeat;
  opacity: 0.055;
}

.sexy-prices .pass-card h3 {
  margin-top: 20px;
  font-size: clamp(34px, 4vw, 54px);
}

.sexy-prices .pass-card .actions {
  margin-top: 30px;
}

.sexy-prices .price {
  font-size: clamp(86px, 8vw, 118px);
}

.duo-card {
  background: rgba(253, 249, 238, 0.92);
}

.option-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.option-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  isolation: isolate;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(92, 12, 1, 0.12);
  background: center / cover no-repeat;
  color: var(--cream);
  box-shadow: 0 16px 38px rgba(46, 24, 15, 0.13);
}

.option-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 8, 4, 0.08), rgba(18, 8, 4, 0.38) 45%, rgba(18, 8, 4, 0.86));
}

.option-visual span {
  font-family: var(--font-soft);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.option-visual p {
  max-width: 310px;
  margin: 9px 0 0;
  color: rgba(253, 249, 238, 0.9);
  font-weight: 700;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.micro-faq {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.micro-faq details {
  background: rgba(253, 249, 238, 0.70);
}

.booking-box {
  background: var(--cream);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 24px 70px rgba(46, 24, 15, 0.10);
}

.booking-box iframe {
  display: block;
  width: 100%;
  min-height: 750px;
  border: none;
  border-radius: 10px;
}

.booking-box h3 {
  margin-bottom: 10px;
}

.booking-box p {
  max-width: 360px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ============================================================
   Page artistes — vitrine
   ============================================================ */
.artists-hero h1 {
  font-size: clamp(52px, 9vw, 104px);
}

.artists-section {
  padding-top: 8px;
}

.artists-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.artist-card-v2 {
  position: relative;
  display: block;
  min-height: 420px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(148, 190, 197, 0.18);
  box-shadow: 0 14px 34px rgba(46, 24, 15, 0.12);
  text-align: left;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artist-card-v2.is-feature {
  grid-column: span 3;
  min-height: 460px;
}

.artist-card-v2:hover,
.artist-card-v2:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(46, 24, 15, 0.2);
  outline: none;
}

.art-card-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 18%;
  transition: transform 0.6s ease;
}

.artist-card-v2.is-feature .art-card-photo {
  background-position: center 30%;
}

.artist-card-v2:hover .art-card-photo {
  transform: scale(1.05);
}

.art-card-grad {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 10, 5, 0) 30%, rgba(20, 10, 5, 0.32) 56%, rgba(20, 10, 5, 0.86));
}

.art-card-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--cream);
}

.art-card-flag {
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.art-card-name {
  font-family: var(--font-soft);
  font-size: 27px;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(46, 24, 15, 0.34);
}

.artist-card-v2.is-feature .art-card-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
}

.art-card-role {
  font-size: 13px;
  font-weight: 600;
  color: rgba(253, 249, 238, 0.9);
}

.art-card-arrow {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.artist-card-v2:hover .art-card-arrow,
.artist-card-v2:focus-visible .art-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Modale artiste plein écran
   ============================================================ */
.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.artist-modal.is-open {
  display: flex;
}

.artist-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 12, 6, 0.66);
  backdrop-filter: blur(6px);
}

.artist-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 40px 90px rgba(46, 24, 15, 0.4);
  animation: artModalIn 0.28s ease;
}

@keyframes artModalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.artist-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(253, 249, 238, 0.92);
  color: var(--bordeaux);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(46, 24, 15, 0.18);
}

.artist-modal-close:hover {
  background: var(--orange);
  color: var(--cream);
}

.artist-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.artist-modal-media {
  position: relative;
  padding: 20px;
  background: rgba(148, 190, 197, 0.16);
}

.artist-modal-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background-size: cover;
  background-position: center 22%;
  overflow: hidden;
}

.artist-modal-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.art-thumb {
  width: 56px;
  height: 56px;
  border: 2px solid transparent;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.art-thumb.is-active,
.art-thumb:hover {
  opacity: 1;
  border-color: var(--orange);
}

.artist-modal-body {
  padding: 36px 38px 30px;
}

.artist-modal-name {
  margin-top: 2px;
  font-size: clamp(30px, 4vw, 44px);
}

.artist-modal-role {
  margin: 8px 0 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.artist-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.art-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(148, 190, 197, 0.32);
  color: var(--bordeaux);
  font-size: 12px;
  font-weight: 700;
}

.artist-modal-bio {
  margin-top: 20px;
}

.artist-modal-bio p {
  margin: 0 0 12px;
  color: rgba(92, 12, 1, 0.86);
  font-weight: 500;
  line-height: 1.55;
}

.art-ateliers-title {
  margin: 24px 0 12px;
  color: var(--bordeaux);
  font-family: var(--font-soft);
  font-size: 21px;
  text-transform: uppercase;
}

.art-atelier {
  padding: 15px 16px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  background: rgba(253, 249, 238, 0.7);
}

.art-atelier-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.art-atelier-head strong {
  color: var(--bordeaux);
  font-size: 16px;
}

.art-atelier-meta {
  color: var(--blue);
  filter: brightness(0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.art-atelier p {
  margin: 6px 0 0;
  color: rgba(92, 12, 1, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.artist-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.artist-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: rgba(148, 190, 197, 0.12);
  position: sticky;
  bottom: 0;
}

.artist-nav-btn {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--bordeaux);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease;
}

.artist-nav-btn:hover {
  background: rgba(148, 190, 197, 0.28);
}

@media (max-width: 900px) {
  .artists-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .artist-card-v2.is-feature {
    grid-column: span 2;
  }
  .artist-modal-grid {
    grid-template-columns: 1fr;
  }
  .artist-modal-media {
    padding: 16px 16px 4px;
  }
  .artist-modal-photo {
    aspect-ratio: 16 / 11;
    background-position: center 18%;
  }
  .artist-modal-body {
    padding: 24px 22px 26px;
  }
}

@media (max-width: 980px) {
  .pass-hero-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .pass-hero-grid {
    padding: 86px 0 54px;
  }

  .pass-ticket {
    max-width: 520px;
  }

  .option-visual-grid {
    grid-template-columns: 1fr;
  }

  .option-visual {
    min-height: 320px;
  }

  .booking-box {
    min-height: 380px;
  }
}

@media (max-width: 980px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .urgency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .urgency-card.current {
    grid-column: 1 / -1;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .proof-item:last-child {
    grid-column: auto;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .programme-grid {
    grid-template-columns: 1fr;
  }

  .day-card,
  .day-card:nth-child(4),
  .day-card:nth-child(5) {
    grid-column: auto;
  }

  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 34px);
  }

  .section {
    padding: 58px 0;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 50px;
  }

  .nav-links .btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    padding: 62px 0 42px;
  }

  .hero-logotype {
    width: min(230px, 68vw);
    margin-bottom: 16px;
  }

  h1,
  .h1 {
    font-size: 46px;
    line-height: 0.98;
  }

  h2,
  .h2 {
    font-size: 42px;
    line-height: 0.98;
  }

  .lead {
    font-size: 18px;
    line-height: 1.45;
  }

  .hero .lead {
    font-size: 19px;
  }

  .pass-hero {
    min-height: calc(100svh - 68px);
  }

  .pass-hero-media {
    background-position: center top;
  }

  .pass-hero-grid {
    padding: 58px 0 40px;
    gap: 26px;
  }

  .pass-ticket {
    padding: 22px;
  }

  .pass-ticket strong {
    font-size: 82px;
  }

  .sexy-prices .pass-card {
    min-height: auto;
  }

  .option-visual {
    min-height: 78vw;
    padding: 22px;
  }

  .hero-panel {
    padding: 15px;
  }

  .hero-panel strong {
    font-size: 22px;
  }

  .hero-panel form {
    grid-template-columns: 1fr;
  }

  .hero-panel .btn,
  .hero-panel input {
    min-height: 56px;
  }

  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .urgency-card.current {
    grid-column: auto;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item:last-child {
    grid-column: auto;
  }

  .day-card,
  .day-content {
    min-height: 390px;
  }

  .artist-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .artist-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

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

  .artist-card-v2,
  .artist-card-v2.is-feature {
    grid-column: auto;
    min-height: 78vw;
  }

  .artist-modal {
    padding: 0;
  }

  .artist-modal-dialog {
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
  }

  .artist-media {
    height: 390px;
  }

  .artist-media img,
  .artist-media video {
    object-position: center top;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .photo-card,
  .photo-card.wide {
    flex: 0 0 82vw;
    min-height: 300px;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   V4 Home — rythme éditorial, DA plus vivante, conversion email
   ============================================================ */

.hero {
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(231, 134, 5, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(23, 12, 8, 0.84), rgba(23, 12, 8, 0.44) 55%, rgba(23, 12, 8, 0.78));
}

.hero::after {
  background: linear-gradient(180deg, rgba(23, 12, 8, 0.22), rgba(23, 12, 8, 0.34) 44%, rgba(23, 12, 8, 0.76));
}

.hero-content {
  max-width: 1080px;
  padding: 78px 0 58px;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(64px, 10vw, 132px);
}

.hero .lead {
  max-width: 760px;
}

.hero-panel {
  margin-top: 34px;
  border-color: rgba(253, 249, 238, 0.36);
  box-shadow: 0 24px 64px rgba(46, 24, 15, 0.28);
}

.hero-panel .btn {
  min-width: 210px;
}

.proof-strip {
  background:
    linear-gradient(90deg, rgba(148, 190, 197, 0.20), rgba(253, 249, 238, 0.96)),
    url("assets/img/motif-2.png") center / cover;
}

.proof-item {
  box-shadow: 0 10px 26px rgba(46, 24, 15, 0.05);
}

.manifesto-strip {
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(253, 249, 238, 0.98), rgba(253, 249, 238, 0.72)),
    url("assets/img/motif-3.png") center / cover;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.5fr);
  gap: 36px;
  align-items: end;
}

.manifesto-grid .script-accent {
  grid-column: 1 / -1;
}

.manifesto-grid h2 {
  max-width: 720px;
  font-size: clamp(52px, 7vw, 102px);
}

.manifesto-grid .lead {
  margin-top: 0;
  max-width: 460px;
  font-size: clamp(18px, 2vw, 24px);
}

.experience-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 20px;
  margin-top: 40px;
}

.exp-card-large {
  min-height: 620px;
  border-radius: 8px;
}

.exp-card-large .exp-body {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.exp-card-large .exp-body h3 {
  font-size: clamp(34px, 5vw, 62px);
}

.exp-card-large .exp-body p {
  max-width: 520px;
  font-size: 17px;
}

.experience-list {
  display: grid;
  gap: 14px;
}

.experience-list article {
  position: relative;
  min-height: 190px;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(253, 249, 238, 0.88), rgba(148, 190, 197, 0.14)),
    var(--cream);
  overflow: hidden;
}

.experience-list article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 138px;
  height: 138px;
  background: url("assets/img/etoile.png") center / contain no-repeat;
  opacity: 0.07;
}

.experience-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 700;
}

.experience-list h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.experience-list p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(253, 249, 238, 0.70);
}

.rhythm-grid article {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(253, 249, 238, 0.86), rgba(148, 190, 197, 0.12));
}

.rhythm-grid article:last-child {
  border-right: 0;
}

.rhythm-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.rhythm-grid h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.rhythm-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.decision-strip {
  background:
    linear-gradient(180deg, rgba(148, 190, 197, 0.18), rgba(253, 249, 238, 0.96)),
    url("assets/img/motif-2.png") center / cover;
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.decision-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-steps article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.82);
}

.decision-steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-weight: 700;
}

.decision-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 700;
}

.home-pass-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.84);
  box-shadow: 0 18px 46px rgba(46, 24, 15, 0.10);
}

.home-pass-card h3 {
  font-size: 28px;
}

.home-pass-card .check-list {
  margin-top: 14px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(92, 12, 1, 0.12);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.94);
  box-shadow: 0 14px 34px rgba(46, 24, 15, 0.18);
  backdrop-filter: blur(10px);
}

.mobile-sticky-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(148, 190, 197, 0.20);
  color: var(--bordeaux);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-sticky-cta a:last-child {
  background: var(--orange);
  color: var(--cream);
}

@media (max-width: 980px) {
  .manifesto-grid,
  .experience-editorial,
  .decision-grid,
  .home-pass-card {
    grid-template-columns: 1fr;
  }

  .rhythm-grid,
  .decision-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rhythm-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rhythm-grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .rhythm-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-pass-card .actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .hero-content {
    padding: 54px 0 36px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero .lead {
    font-size: 18px;
  }

  .hero-panel {
    margin-top: 24px;
  }

  .hero-badge {
    align-items: flex-start;
    border-radius: 8px;
    line-height: 1.25;
  }

  .manifesto-strip {
    padding: 62px 0;
  }

  .manifesto-grid h2 {
    font-size: 48px;
  }

  .exp-card-large {
    min-height: 460px;
  }

  .experience-list article {
    min-height: auto;
  }

  .rhythm-grid,
  .decision-steps {
    grid-template-columns: 1fr;
  }

  .rhythm-grid article,
  .rhythm-grid article:nth-child(odd),
  .rhythm-grid article:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rhythm-grid article:last-child {
    border-bottom: 0;
  }

  .decision-steps article {
    min-height: auto;
  }

  .home-pass-card {
    padding: 20px;
  }
}

/* ============================================================
   V5 Home — retour à la charte Fidji : plus yin, plus image,
   moins de bordeaux massif, moins de titres géants.
   ============================================================ */

.home-page {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.96), rgba(253, 249, 238, 0.98)),
    url("assets/brand/motif-1.jpg") center top / 900px auto repeat;
}

.home-page .page {
  background: transparent;
}

.home-page h1,
.home-page h2 {
  color: rgba(92, 12, 1, 0.92);
}

.home-page h2 {
  max-width: 980px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1;
}

.home-page h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.home-page .lead {
  color: rgba(92, 12, 1, 0.68);
  font-weight: 500;
}

.home-page .section {
  padding: clamp(68px, 8vw, 112px) 0;
}

.home-page .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background:
    radial-gradient(circle at 88% 18%, rgba(148, 190, 197, 0.18), transparent 24%),
    radial-gradient(circle at 14% 88%, rgba(231, 134, 5, 0.10), transparent 20%);
}

.home-page .section > .container {
  position: relative;
  z-index: 1;
}

.home-page .site-header {
  background: rgba(253, 249, 238, 0.86);
}

.home-page .hero {
  min-height: calc(100svh - 76px);
}

.home-page .hero::before {
  background:
    linear-gradient(90deg, rgba(22, 12, 8, 0.74), rgba(22, 12, 8, 0.36) 58%, rgba(22, 12, 8, 0.66)),
    radial-gradient(circle at 18% 20%, rgba(148, 190, 197, 0.20), transparent 28%);
}

.home-page .hero::after {
  background: linear-gradient(180deg, rgba(23, 12, 8, 0.10), rgba(23, 12, 8, 0.18) 42%, rgba(23, 12, 8, 0.58));
}

.home-page .hero-content {
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(42px, 5vw, 64px);
}

.home-page .hero h1 {
  max-width: 780px;
  font-size: clamp(58px, 7.2vw, 104px);
  line-height: 0.98;
  color: var(--cream);
}

.home-page .hero .lead {
  max-width: 650px;
  color: rgba(253, 249, 238, 0.88);
  font-size: clamp(18px, 1.8vw, 23px);
}

.home-page .hero-panel {
  max-width: 980px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(253, 249, 238, 0.95), rgba(253, 249, 238, 0.88)),
    url("assets/brand/motif-1.jpg") center / cover;
  box-shadow: 0 18px 48px rgba(20, 10, 6, 0.20);
}

.home-page .hero-panel strong {
  font-size: clamp(22px, 2.1vw, 30px);
}

.home-page .hero-badge {
  background: rgba(253, 249, 238, 0.10);
  border-color: rgba(253, 249, 238, 0.34);
}

.home-page .proof-strip {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.98), rgba(148, 190, 197, 0.20)),
    url("assets/brand/motif-2.png") center / cover;
}

.home-page .proof-grid {
  gap: 0;
  border: 1px solid rgba(92, 12, 1, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.home-page .proof-item {
  border: 0;
  border-right: 1px solid rgba(92, 12, 1, 0.08);
  border-radius: 0;
  background: rgba(253, 249, 238, 0.48);
  box-shadow: none;
}

.home-page .proof-item:last-child {
  border-right: 0;
}

.home-page .manifesto-strip {
  background:
    linear-gradient(90deg, rgba(253, 249, 238, 0.98), rgba(253, 249, 238, 0.78)),
    url("assets/brand/motif-4.png") center / cover;
}

.home-page .manifesto-strip::after {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 34px;
  width: min(22vw, 210px);
  aspect-ratio: 1;
  background: url("assets/brand/oeil.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.home-page .manifesto-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.home-page .manifesto-grid h2 {
  max-width: 660px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.home-page .manifesto-grid .lead {
  max-width: 560px;
  padding: clamp(22px, 3vw, 34px);
  border-left: 2px solid rgba(148, 190, 197, 0.80);
  background: rgba(253, 249, 238, 0.35);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.45;
}

.home-page #experience {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.96), rgba(253, 249, 238, 0.82)),
    url("assets/brand/motif-3.png") center / cover;
}

.home-page #experience h2 {
  max-width: 700px;
}

.home-page .experience-editorial {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  gap: clamp(18px, 3vw, 36px);
}

.home-page .exp-card-large {
  min-height: min(62vw, 640px);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(46, 24, 15, 0.12);
}

.home-page .exp-card::after {
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.02) 32%, rgba(20, 10, 5, 0.24) 62%, rgba(20, 10, 5, 0.72));
}

.home-page .exp-card-large .exp-body h3 {
  max-width: 520px;
  font-size: clamp(30px, 4.2vw, 54px);
}

.home-page .experience-list {
  gap: 0;
  align-self: center;
  border-top: 1px solid rgba(92, 12, 1, 0.12);
}

.home-page .experience-list article {
  min-height: 0;
  padding: clamp(24px, 3vw, 34px) 0;
  border: 0;
  border-bottom: 1px solid rgba(92, 12, 1, 0.12);
  border-radius: 0;
  background: transparent;
}

.home-page .experience-list article::after {
  width: 76px;
  height: 76px;
  right: 0;
  bottom: 18px;
  opacity: 0.055;
}

.home-page .experience-list span {
  color: rgba(204, 44, 20, 0.78);
}

.home-page .experience-list h3 {
  font-family: var(--font-soft);
  font-size: clamp(30px, 3.4vw, 46px);
  text-transform: none;
}

.home-page .experience-list p {
  max-width: 500px;
  color: rgba(92, 12, 1, 0.68);
  font-size: 18px;
  font-weight: 500;
}

.home-page #journee {
  background:
    linear-gradient(180deg, rgba(148, 190, 197, 0.24), rgba(253, 249, 238, 0.94)),
    url("assets/brand/motif-2.png") center / cover;
}

.home-page .rhythm-grid {
  border: 0;
  background: transparent;
  gap: 12px;
}

.home-page .rhythm-grid article {
  border: 1px solid rgba(92, 12, 1, 0.10);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.56);
}

.home-page .rhythm-grid h3 {
  text-transform: none;
}

.home-page #programme {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.98), rgba(253, 249, 238, 0.92)),
    url("assets/brand/motif-1.jpg") center / 760px auto repeat;
}

.home-page #programme .programme-grid {
  margin-top: 44px;
}

.home-page .day-card {
  box-shadow: 0 14px 34px rgba(46, 24, 15, 0.10);
}

.home-page .section-blue {
  background:
    linear-gradient(180deg, rgba(148, 190, 197, 0.22), rgba(253, 249, 238, 0.92)),
    url("assets/brand/motif-2.png") center / cover;
}

.home-page #artistes .artist-grid {
  margin-top: 42px;
}

.home-page .artist-card {
  background: rgba(253, 249, 238, 0.72);
}

.home-page #pour-qui {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.98), rgba(253, 249, 238, 0.86)),
    url("assets/brand/motif-4.png") center / cover;
}

.home-page #pour-qui .text-card {
  background: rgba(253, 249, 238, 0.42);
  box-shadow: none;
}

.home-page .decision-strip {
  background:
    linear-gradient(90deg, rgba(148, 190, 197, 0.26), rgba(253, 249, 238, 0.92)),
    url("assets/brand/motif-2.png") center / cover;
}

.home-page .decision-strip::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - 1160px) / 2));
  bottom: 24px;
  width: min(20vw, 190px);
  aspect-ratio: 1;
  background: url("assets/brand/serpent.png") center / contain no-repeat;
  opacity: 0.08;
}

.home-page #lieu {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.92), rgba(148, 190, 197, 0.18)),
    url("assets/brand/motif-1.jpg") center / 900px auto repeat;
}

.home-page #pass {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.98), rgba(148, 190, 197, 0.20)),
    url("assets/brand/motif-3.png") center / cover;
}

.home-page .home-pass-card {
  background: rgba(253, 249, 238, 0.62);
  box-shadow: 0 16px 42px rgba(46, 24, 15, 0.08);
}

.home-page .band-immersive .band-statement {
  font-size: clamp(38px, 5.2vw, 76px);
}

.home-page .band-immersive .lead {
  font-weight: 500;
}

@media (max-width: 980px) {
  .home-page .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(92, 12, 1, 0.08);
  }

  .home-page .proof-item:last-child {
    border-bottom: 0;
  }

  .home-page .manifesto-grid,
  .home-page .experience-editorial {
    grid-template-columns: 1fr;
  }

  .home-page .manifesto-grid .lead {
    padding: 0 0 0 18px;
    background: transparent;
  }

  .home-page .exp-card-large {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .home-page h1,
  .home-page h2 {
    letter-spacing: 0;
  }

  .home-page h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .home-page .hero h1 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .home-page .hero-panel {
    padding: 16px;
  }

  .home-page .manifesto-grid h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .home-page .manifesto-grid .lead {
    font-size: 19px;
  }

  .home-page .exp-card-large {
    min-height: 430px;
  }

  .home-page .exp-card-large .exp-body h3,
  .home-page .experience-list h3 {
    font-size: 32px;
  }

  .home-page .experience-list p {
    font-size: 17px;
  }
}

/* =========================================================
   V6 — RYTHME EDITORIAL IMMERSIF
   Objectif : garder la structure et le copy, mais casser la
   répétition "fond beige + grille + cartes" tous les 2 écrans.
   ========================================================= */

body.v6-immersive {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.96), rgba(253, 249, 238, 0.90)),
    url("assets/brand/motif-1.jpg") center / 920px auto repeat;
}

body.v6-immersive .page {
  background: transparent;
}

body.v6-immersive .container {
  width: min(1280px, calc(100% - 44px));
}

body.v6-immersive .section {
  padding: clamp(78px, 9vw, 148px) 0;
}

body.v6-immersive .section > .container {
  position: relative;
}

body.v6-immersive h1,
body.v6-immersive h2 {
  color: rgba(92, 12, 1, 0.90);
}

body.v6-immersive h2 {
  max-width: 960px;
  font-size: clamp(48px, 7vw, 82px);
}

body.v6-immersive .script-accent {
  color: var(--orange);
  opacity: 1;
  font-family: "Bristol", var(--font-soft);
  font-size: clamp(30px, 4vw, 48px);
}

body.v6-immersive .kicker {
  color: var(--red);
}

body.v6-immersive .btn {
  border-radius: 6px;
}

/* 1. Hero : immersion, moins "box SaaS" */
body.v6-immersive .site-header {
  background: #FDF9EE;
  backdrop-filter: blur(18px);
}

body.v6-immersive .hero {
  min-height: 96vh;
  padding: clamp(112px, 13vh, 170px) 0 68px;
  background: #1e140f;
}

body.v6-immersive .hero-video {
  transform: scale(1.02);
  filter: saturate(0.86) contrast(1.04);
}

body.v6-immersive .hero::before {
  opacity: 0.02;
}

body.v6-immersive .hero::after {
  background:
    linear-gradient(90deg, rgba(19, 11, 7, 0.56) 0%, rgba(19, 11, 7, 0.32) 42%, rgba(19, 11, 7, 0.14) 100%),
    linear-gradient(180deg, rgba(19, 11, 7, 0.08) 0%, rgba(19, 11, 7, 0.30) 100%);
}

body.v6-immersive .hero-content {
  max-width: 1040px;
  margin-left: max(22px, calc((100vw - 1280px) / 2));
  margin-right: auto;
}

body.v6-immersive .hero h1 {
  max-width: 900px;
  font-size: clamp(62px, 9vw, 118px);
  line-height: 0.92;
}

body.v6-immersive .hero .lead {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.44;
}

body.v6-immersive .hero-panel {
  width: min(100%, 980px);
  margin-top: clamp(30px, 5vh, 54px);
  border: 1px solid rgba(253, 249, 238, 0.56);
  background:
    linear-gradient(135deg, rgba(253, 249, 238, 0.94), rgba(253, 249, 238, 0.78)),
    url("assets/brand/motif-1.jpg") center / 680px auto repeat;
  box-shadow: 0 28px 80px rgba(17, 10, 6, 0.24);
}

body.v6-immersive .hero-panel strong {
  font-size: clamp(28px, 3vw, 42px);
}

body.v6-immersive .hero-badge {
  background: rgba(17, 10, 6, 0.32);
  border-color: rgba(231, 134, 5, 0.62);
}

body.v6-immersive .scroll-cue {
  opacity: 0.82;
}

/* 2. Bande chiffres : ticket fin, pas une grille de cartes */
body.v6-immersive .proof-strip {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.98), rgba(253, 249, 238, 0.92)),
    url("assets/brand/motif-1.jpg") center / 760px auto repeat;
  border-top: 1px solid rgba(148, 190, 197, 0.22);
  border-bottom: 1px solid rgba(148, 190, 197, 0.22);
}

body.v6-immersive .proof-grid {
  width: min(1400px, 100%);
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

body.v6-immersive .proof-item {
  min-height: 104px;
  padding: 20px 22px;
  border: 0;
  border-right: 1px solid rgba(148, 190, 197, 0.38);
  background: transparent;
  box-shadow: none;
}

body.v6-immersive .proof-item strong {
  color: var(--blue);
  font-size: clamp(28px, 3vw, 42px);
}

body.v6-immersive .proof-item span {
  color: var(--bordeaux);
}

/* 3. Pause intime : grande respiration avec motif */
body.v6-immersive .manifesto-strip {
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(148, 190, 197, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(253, 249, 238, 0.98), rgba(253, 249, 238, 0.90)),
    url("assets/brand/motif-4.png") center / cover;
}

body.v6-immersive .manifesto-strip::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -62px;
  width: min(32vw, 420px);
  aspect-ratio: 1;
  background: url("assets/brand/oeil.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

body.v6-immersive .manifesto-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 118px);
}

body.v6-immersive .manifesto-grid h2 {
  font-size: clamp(54px, 7vw, 92px);
}

body.v6-immersive .manifesto-grid .lead {
  padding: clamp(26px, 4vw, 42px) 0 clamp(26px, 4vw, 42px) clamp(24px, 3vw, 42px);
  border-left: 3px solid var(--blue);
  background: transparent;
  font-size: clamp(22px, 2.4vw, 32px);
}

/* 4. Experience : cassure image + éditorial, plus catalogue */
body.v6-immersive #experience {
  padding-top: 0;
  padding-bottom: 0;
  background:
    linear-gradient(90deg, rgba(148, 190, 197, 0.34) 0%, rgba(148, 190, 197, 0.34) 43%, rgba(253, 249, 238, 0.96) 43%, rgba(253, 249, 238, 0.96) 100%),
    url("assets/brand/motif-2.png") center / cover;
}

body.v6-immersive #experience .container {
  width: min(1500px, calc(100% - 44px));
  padding: clamp(78px, 9vw, 138px) 0;
}

body.v6-immersive #experience h2 {
  margin-bottom: clamp(34px, 5vw, 68px);
}

body.v6-immersive .experience-editorial {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 5vw, 86px);
  align-items: center;
}

body.v6-immersive .experience-editorial.solo-list {
  grid-template-columns: 1fr;
  max-width: 1040px;
  margin: 0 auto;
}

.experience-editorial.solo-list {
  grid-template-columns: 1fr;
}

body.v6-immersive .exp-card-large {
  min-height: min(72vw, 760px);
  border-radius: 0;
  transform: translateX(clamp(-26px, -2vw, -10px));
}

body.v6-immersive .exp-card-large img {
  object-position: center;
}

body.v6-immersive .exp-card::after {
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.02) 18%, rgba(20, 10, 5, 0.30) 56%, rgba(20, 10, 5, 0.82));
}

body.v6-immersive .exp-card-large .exp-body {
  padding: clamp(24px, 4vw, 52px);
}

body.v6-immersive .experience-list {
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.74), rgba(253, 249, 238, 0.50)),
    url("assets/brand/motif-1.jpg") center / 720px auto repeat;
  padding: clamp(18px, 3vw, 42px);
  box-shadow: 0 24px 70px rgba(46, 24, 15, 0.08);
}

body.v6-immersive .experience-list article {
  border-bottom: 1px solid rgba(148, 190, 197, 0.76);
}

body.v6-immersive .experience-list article:last-child {
  border-bottom: 0;
}

body.v6-immersive .experience-list h3 {
  max-width: 500px;
  font-size: clamp(34px, 3.5vw, 52px);
}

/* 5. Journée : grand aplat bleu doux + ligne de temps */
body.v6-immersive #journee {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(253, 249, 238, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(148, 190, 197, 0.70), rgba(148, 190, 197, 0.42)),
    url("assets/brand/motif-2.png") center / cover;
}

body.v6-immersive #journee::before {
  content: "";
  position: absolute;
  right: max(22px, calc((100vw - 1280px) / 2));
  top: 42px;
  width: min(18vw, 230px);
  aspect-ratio: 1;
  background: url("assets/brand/soleil.png") center / contain no-repeat;
  opacity: 0.10;
  pointer-events: none;
}

body.v6-immersive #journee .lead {
  max-width: 760px;
}

body.v6-immersive .rhythm-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(44px, 6vw, 84px);
}

body.v6-immersive .rhythm-grid::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 24px;
  height: 2px;
  background: rgba(231, 134, 5, 0.42);
}

body.v6-immersive .rhythm-grid article {
  position: relative;
  padding: 58px 24px 20px;
  border: 0;
  background: transparent;
  text-align: center;
}

body.v6-immersive .rhythm-grid article::before {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(253, 249, 238, 0.40);
}

body.v6-immersive .rhythm-grid h3 {
  font-size: clamp(28px, 2.8vw, 42px);
}

/* 6. Programme : affiches asymétriques, pas cinq carrés */
body.v6-immersive #programme {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.94), rgba(253, 249, 238, 0.98)),
    url("assets/brand/motif-1.jpg") center / 780px auto repeat;
}

body.v6-immersive #programme .programme-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  grid-auto-rows: minmax(370px, 42vw);
  gap: clamp(16px, 2vw, 26px);
}

body.v6-immersive .day-card {
  min-height: 0;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(46, 24, 15, 0.11);
}

body.v6-immersive .day-card.j4 {
  grid-column: span 1;
  grid-row: span 2;
}

body.v6-immersive .day-card.j5 {
  grid-column: span 2;
}

body.v6-immersive .day-content {
  justify-content: space-between;
  padding: clamp(22px, 3vw, 42px);
  background:
    linear-gradient(180deg, rgba(13, 10, 8, 0.18) 0%, rgba(13, 10, 8, 0.04) 34%, rgba(253, 249, 238, 0.86) 70%, rgba(253, 249, 238, 0.98) 100%);
}

body.v6-immersive .day-copy {
  width: min(100%, 720px);
  margin-top: auto;
  padding-top: clamp(92px, 14vw, 180px);
}

body.v6-immersive .day-copy h3 {
  font-size: clamp(32px, 3.4vw, 54px);
  color: var(--bordeaux);
  text-shadow: none;
}

body.v6-immersive .day-copy p {
  color: var(--bordeaux);
  text-shadow: none;
}

body.v6-immersive .day-date {
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(13, 10, 8, 0.45);
}

/* 7. Artistes : mosaïque, pas annuaire */
body.v6-immersive #artistes {
  padding-top: clamp(88px, 10vw, 150px);
  background:
    linear-gradient(180deg, rgba(148, 190, 197, 0.52), rgba(253, 249, 238, 0.84)),
    url("assets/brand/motif-2.png") center / cover;
}

body.v6-immersive #artistes .artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: clamp(14px, 2vw, 24px);
}

body.v6-immersive .artist-card {
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(253, 249, 238, 0.66);
}

body.v6-immersive .artist-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

body.v6-immersive .artist-card:nth-child(7) {
  grid-column: span 2;
}

body.v6-immersive .artist-media {
  height: 100%;
}

body.v6-immersive .artist-media img,
body.v6-immersive .artist-media video {
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

body.v6-immersive .artist-info {
  min-height: auto;
  padding: 22px;
  background: linear-gradient(180deg, rgba(253, 249, 238, 0.02), rgba(253, 249, 238, 0.94) 70%);
}

body.v6-immersive .artist-info h3 {
  font-size: clamp(25px, 2.8vw, 38px);
}

/* 8. Bandes immersives : vrais moments de rupture */
body.v6-immersive .band-immersive {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: clamp(82px, 9vw, 150px) 0;
}

body.v6-immersive .band-immersive::after {
  background:
    linear-gradient(90deg, rgba(13, 10, 8, 0.70), rgba(13, 10, 8, 0.30)),
    linear-gradient(180deg, rgba(13, 10, 8, 0.18), rgba(13, 10, 8, 0.60));
}

body.v6-immersive .band-immersive .container {
  margin-left: max(22px, calc((100vw - 1280px) / 2));
}

body.v6-immersive .band-immersive .band-statement {
  max-width: 1000px;
  font-size: clamp(44px, 6vw, 92px);
  color: var(--cream);
}

body.v6-immersive .band-immersive .band-statement .em,
body.v6-immersive .band-immersive .script-accent {
  color: var(--cream);
}

body.v6-immersive .band-immersive .lead {
  color: var(--cream);
  opacity: 0.92;
}

/* 9. Pour qui : preuve simple, espace, pas catalogue */
body.v6-immersive #pour-qui {
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 134, 5, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(253, 249, 238, 0.98), rgba(253, 249, 238, 0.92)),
    url("assets/brand/motif-4.png") center / cover;
}

body.v6-immersive #pour-qui .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(148, 190, 197, 0.70);
  border-bottom: 1px solid rgba(148, 190, 197, 0.70);
}

body.v6-immersive #pour-qui .text-card {
  min-height: 240px;
  padding: clamp(24px, 3vw, 34px);
  border: 0;
  border-right: 1px solid rgba(148, 190, 197, 0.70);
  border-radius: 0;
  background: transparent;
}

body.v6-immersive #pour-qui .text-card:last-child {
  border-right: 0;
}

/* 10. Décision : aplat bleu, plus signal que carte */
body.v6-immersive .decision-strip {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(148, 190, 197, 0.78), rgba(148, 190, 197, 0.36)),
    url("assets/brand/motif-2.png") center / cover;
}

body.v6-immersive .decision-strip::after {
  opacity: 0.10;
}

body.v6-immersive .decision-grid {
  gap: clamp(32px, 6vw, 96px);
}

body.v6-immersive .decision-steps {
  background: rgba(253, 249, 238, 0.38);
  border: 1px solid rgba(253, 249, 238, 0.48);
  border-radius: 8px;
  padding: clamp(14px, 2vw, 24px);
}

body.v6-immersive .decision-steps article {
  background: rgba(253, 249, 238, 0.44);
}

/* 11. Lieu : image first, respiration large */
body.v6-immersive #lieu {
  background:
    linear-gradient(180deg, rgba(253, 249, 238, 0.96), rgba(253, 249, 238, 0.82)),
    url("assets/brand/motif-1.jpg") center / 920px auto repeat;
}

body.v6-immersive #lieu .grid-2 {
  width: min(1460px, calc(100% - 44px));
  grid-template-columns: minmax(360px, 0.68fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

body.v6-immersive #lieu h2 {
  font-size: clamp(54px, 7vw, 90px);
}

body.v6-immersive .timeline {
  margin-top: 36px;
}

body.v6-immersive .photo-grid {
  gap: clamp(12px, 1.6vw, 20px);
}

body.v6-immersive .photo-card {
  border-radius: 8px;
}

body.v6-immersive .photo-card.wide {
  min-height: 390px;
}

body.v6-immersive .photo-card:not(.wide) {
  min-height: 245px;
}

/* 12. Pass : moment clair de conversion, pas décoratif */
body.v6-immersive #pass {
  background:
    radial-gradient(circle at 86% 12%, rgba(231, 134, 5, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(253, 249, 238, 0.92), rgba(148, 190, 197, 0.28));
}

body.v6-immersive #pass .urgency-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body.v6-immersive #pass .urgency-card {
  border-radius: 6px;
  background: rgba(253, 249, 238, 0.58);
}

body.v6-immersive #pass .urgency-card.current {
  background: rgba(148, 190, 197, 0.42);
  box-shadow: 0 18px 46px rgba(46, 24, 15, 0.08);
}

body.v6-immersive .home-pass-card {
  margin-top: 28px;
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.74);
}

/* 13. FAQ : respiration bleue après l'offre */
body.v6-immersive #faq {
  background:
    linear-gradient(180deg, rgba(148, 190, 197, 0.52), rgba(148, 190, 197, 0.34)),
    url("assets/brand/motif-2.png") center / cover;
}

body.v6-immersive .faq-list details {
  border-radius: 6px;
  background: rgba(253, 249, 238, 0.56);
}

body.v6-immersive .cta-final {
  min-height: 82vh;
}

body.v6-immersive .cta-final .lead {
  color: var(--cream);
  opacity: 0.94;
}

/* Motion : léger, éditorial, pas gadget */
body.v6-immersive .artist-card,
body.v6-immersive .day-card,
body.v6-immersive .photo-card,
body.v6-immersive .exp-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.v6-immersive .artist-card:hover,
body.v6-immersive .day-card:hover,
body.v6-immersive .photo-card:hover,
body.v6-immersive .exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(46, 24, 15, 0.16);
}

@media (max-width: 1080px) {
  body.v6-immersive #programme .programme-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(330px, 52vw);
  }

  body.v6-immersive .day-card.j4,
  body.v6-immersive .day-card.j5 {
    grid-column: span 1;
    grid-row: span 1;
  }

  body.v6-immersive #artistes .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }

  body.v6-immersive .artist-card:nth-child(1),
  body.v6-immersive .artist-card:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }

  body.v6-immersive #lieu .grid-2,
  body.v6-immersive .experience-editorial {
    grid-template-columns: 1fr;
  }

  body.v6-immersive .exp-card-large {
    transform: none;
  }
}

@media (max-width: 760px) {
  body.v6-immersive .container,
  body.v6-immersive #experience .container,
  body.v6-immersive #lieu .grid-2 {
    width: min(100% - 28px, 560px);
  }

  body.v6-immersive .section {
    padding: 64px 0;
  }

  body.v6-immersive .hero {
    min-height: 100svh;
    padding-top: 104px;
  }

  body.v6-immersive .hero-content {
    margin-left: auto;
  }

  body.v6-immersive .hero h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  body.v6-immersive .hero-panel {
    display: block;
  }

  body.v6-immersive .hero-panel form {
    margin-top: 16px;
  }

  body.v6-immersive .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.v6-immersive .proof-item {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(253, 249, 238, 0.46);
  }

  body.v6-immersive .proof-item:last-child {
    grid-column: auto;
  }

  body.v6-immersive .manifesto-strip {
    min-height: auto;
  }

  body.v6-immersive .manifesto-grid {
    grid-template-columns: 1fr;
  }

  body.v6-immersive .manifesto-grid h2,
  body.v6-immersive #lieu h2,
  body.v6-immersive h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  body.v6-immersive .manifesto-grid .lead {
    padding-left: 18px;
    font-size: 20px;
  }

  body.v6-immersive #experience {
    background:
      linear-gradient(180deg, rgba(148, 190, 197, 0.28), rgba(253, 249, 238, 0.96)),
      url("assets/brand/motif-2.png") center / cover;
  }

  body.v6-immersive .exp-card-large {
    min-height: 520px;
  }

  body.v6-immersive .experience-list {
    padding: 4px 18px;
  }

  body.v6-immersive .rhythm-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
  }

  body.v6-immersive .rhythm-grid::before {
    left: 18px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  body.v6-immersive .rhythm-grid article {
    padding: 18px 0 24px 52px;
    text-align: left;
  }

  body.v6-immersive .rhythm-grid article::before {
    left: 7px;
    top: 24px;
  }

  body.v6-immersive #programme .programme-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(380px, 72vh);
  }

  body.v6-immersive .day-content {
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(13, 10, 8, 0.16) 0%, rgba(13, 10, 8, 0.03) 30%, rgba(253, 249, 238, 0.88) 64%, rgba(253, 249, 238, 0.98) 100%);
  }

  body.v6-immersive .day-copy {
    padding-top: 150px;
  }

  body.v6-immersive #artistes .artist-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 420px;
  }

  body.v6-immersive .artist-card:nth-child(1),
  body.v6-immersive .artist-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  body.v6-immersive .artist-media img,
  body.v6-immersive .artist-media video {
    object-position: center top;
  }

  body.v6-immersive #pour-qui .grid-4 {
    grid-template-columns: 1fr;
  }

  body.v6-immersive #pour-qui .text-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(148, 190, 197, 0.70);
  }

  body.v6-immersive #pour-qui .text-card:last-child {
    border-bottom: 0;
  }

  body.v6-immersive .decision-steps,
  body.v6-immersive #pass .urgency-grid {
    grid-template-columns: 1fr;
  }

  body.v6-immersive .photo-card.wide,
  body.v6-immersive .photo-card:not(.wide) {
    min-height: 280px;
  }

  body.v6-immersive .band-immersive {
    min-height: 70vh;
  }
}

/* ============================================================
   Correctif 15 juin — Programme compact editorial + bandeau plus lumineux
   ============================================================ */
body.v6-immersive .day-card.j1 { --day-image: url("https://i.imgur.com/F3G95iy.png"); }
body.v6-immersive .day-card.j2 { --day-image: url("https://i.imgur.com/KaxLiiU.png"); }
body.v6-immersive .day-card.j3 { --day-image: url("https://i.imgur.com/4ZHQMEm.png"); }
body.v6-immersive .day-card.j4 { --day-image: url("https://i.imgur.com/cjyFU6U.png"); }
body.v6-immersive .day-card.j5 { --day-image: url("https://i.imgur.com/DIv8iF7.png"); }

body.v6-immersive #programme .programme-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
}

body.v6-immersive .day-card,
body.v6-immersive .day-card.j4,
body.v6-immersive .day-card.j5 {
  grid-column: auto;
  grid-row: auto;
}

body.v6-immersive .day-card {
  min-height: 430px;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  background: rgba(253, 249, 238, 0.90);
  background-image: none;
  border: 1px solid rgba(92, 12, 1, 0.16);
  box-shadow: 0 16px 40px rgba(46, 24, 15, 0.10);
}

body.v6-immersive .day-card::before {
  content: "";
  position: relative;
  inset: auto;
  flex: 0 0 clamp(175px, 15vw, 215px);
  width: 100%;
  background:
    linear-gradient(180deg, rgba(13, 10, 8, 0.18), rgba(13, 10, 8, 0.02) 58%, rgba(253, 249, 238, 0.12)),
    var(--day-image) center / cover no-repeat;
}

body.v6-immersive .day-card.j4::before {
  background:
    linear-gradient(180deg, rgba(13, 10, 8, 0.18), rgba(13, 10, 8, 0.02) 58%, rgba(253, 249, 238, 0.12)),
    var(--day-image) center 18% / cover no-repeat;
}

body.v6-immersive .day-content {
  min-height: 0;
  flex: 1;
  padding: 24px;
  background: transparent;
}

body.v6-immersive .day-date {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: var(--cream);
  font-size: clamp(33px, 3vw, 44px);
  text-shadow: 0 2px 16px rgba(13, 10, 8, 0.44);
}

body.v6-immersive .day-copy {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.v6-immersive .day-copy h3 {
  font-size: clamp(29px, 2.6vw, 38px);
  line-height: 0.96;
  margin: 0 0 12px;
}

body.v6-immersive .day-copy p {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(92, 12, 1, 0.80);
}

body.v6-immersive .day-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(92, 12, 1, 0.16);
  border-radius: 999px;
  color: var(--bordeaux);
  background: rgba(253, 249, 238, 0.82);
  font-family: var(--font-soft);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

body.v6-immersive .day-link:hover {
  color: var(--cream);
  background: var(--orange);
  border-color: var(--orange);
}

body.v6-immersive .band-immersive:not(.cta-final)::after {
  background:
    linear-gradient(90deg, rgba(13, 10, 8, 0.40), rgba(13, 10, 8, 0.14)),
    linear-gradient(180deg, rgba(13, 10, 8, 0.08), rgba(13, 10, 8, 0.30));
}

@media (max-width: 1080px) {
  body.v6-immersive #programme .programme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.v6-immersive #programme .programme-grid {
    grid-template-columns: 1fr;
  }

  body.v6-immersive .day-card {
    min-height: 390px;
    max-height: none;
  }

  body.v6-immersive .day-card::before {
    flex-basis: 180px;
  }

  body.v6-immersive .day-content {
    padding: 22px;
  }
}

/* ============================================================
   Correctif 15 juin — demandes annotations V6
   ============================================================ */
body.v6-immersive .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
}

body.v6-immersive .nav-links,
body.v6-immersive .btn,
body.v6-immersive .day-link,
body.v6-immersive .artist-nav-btn,
body.v6-immersive button {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0;
}

body.v6-immersive .hero h1 {
  max-width: 1120px;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 0.94;
}

body.v6-immersive .hero .script-accent {
  color: var(--orange);
}

body.v6-immersive .proof-item {
  color: var(--bordeaux);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

body.v6-immersive a.proof-item:hover {
  background: rgba(253, 249, 238, 0.76);
  transform: translateY(-1px);
}

body.v6-immersive .day-card {
  position: relative;
  min-height: 430px;
  max-height: 500px;
}

body.v6-immersive .day-content {
  position: static;
}

body.v6-immersive .day-date {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 3;
  pointer-events: none;
}

body.v6-immersive .day-copy {
  position: relative;
  z-index: 2;
}

body.v6-immersive .day-copy h3,
body.v6-immersive .day-copy p {
  color: var(--bordeaux);
  text-shadow: none;
}

body.v6-immersive .band-immersive:not(.cta-final)::after {
  background:
    linear-gradient(90deg, rgba(13, 10, 8, 0.26), rgba(13, 10, 8, 0.08)),
    linear-gradient(180deg, rgba(13, 10, 8, 0.04), rgba(13, 10, 8, 0.18));
}

body.v6-immersive .band-immersive .band-statement,
body.v6-immersive .band-immersive .band-statement .em,
body.v6-immersive .band-immersive .lead,
body.v6-immersive .cta-final .lead {
  color: var(--cream);
}

body.v6-immersive .band-immersive .lead,
body.v6-immersive .cta-final .lead {
  opacity: 0.96;
}

@media (max-width: 720px) {
  body.v6-immersive .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }
}

/* ============================================================
   Consolidation finale — Programme lisible, compact, sans chevauchement
   ============================================================ */
body.v6-immersive #programme .programme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

body.v6-immersive #programme .day-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  max-height: 500px;
  overflow: hidden;
  background: rgba(253, 249, 238, 0.94);
  background-image: none;
  border: 1px solid rgba(92, 12, 1, 0.14);
  border-radius: 8px;
}

body.v6-immersive #programme .day-card::before {
  content: "";
  display: block;
  flex: 0 0 clamp(172px, 15vw, 212px);
  width: 100%;
  background:
    linear-gradient(180deg, rgba(13, 10, 8, 0.22), rgba(13, 10, 8, 0.02) 66%),
    var(--day-image) center / cover no-repeat;
}

body.v6-immersive #programme .day-card.j4::before {
  background:
    linear-gradient(180deg, rgba(13, 10, 8, 0.22), rgba(13, 10, 8, 0.02) 66%),
    var(--day-image) center 18% / cover no-repeat;
}

body.v6-immersive #programme .day-content {
  position: static;
  display: flex;
  flex: 1;
  min-height: 0;
  padding: 24px;
  background: transparent;
}

body.v6-immersive #programme .day-date {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 3;
  margin: 0;
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(13, 10, 8, 0.52);
  pointer-events: none;
}

body.v6-immersive #programme .day-copy {
  position: static;
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

body.v6-immersive #programme .day-copy h3 {
  margin: 0 0 12px;
  color: var(--bordeaux);
  text-shadow: none;
}

body.v6-immersive #programme .day-copy p {
  margin: 0;
  color: rgba(92, 12, 1, 0.82);
  text-shadow: none;
}

body.v6-immersive #programme .day-link {
  margin-top: auto;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  body.v6-immersive #programme .programme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.v6-immersive #programme .programme-grid {
    grid-template-columns: 1fr;
  }

  body.v6-immersive #programme .day-card {
    min-height: 392px;
    max-height: none;
  }

  body.v6-immersive #programme .day-card::before {
    flex-basis: 178px;
  }
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 2)
   ============================================================ */

/* Hero : la date devient l'accroche principale */
body.v6-immersive .hero .lead.hero-date {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Bande repères : survol bleu sur les blocs cliquables */
.proof-item {
  border-radius: 10px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
a.proof-item:hover,
a.proof-item:focus-visible {
  color: var(--blue);
  transform: translateY(-2px);
}
a.proof-item:hover strong,
a.proof-item:hover span,
a.proof-item:focus-visible strong,
a.proof-item:focus-visible span {
  color: var(--blue);
}

/* Formulaire programme : fond orange, bouton bleu, texte beige */
.hero-panel.panel-cta,
body.v6-immersive .hero-panel.panel-cta {
  background: var(--orange);
  border: 1px solid rgba(253, 249, 238, 0.45);
}
.hero-panel.panel-cta strong,
.hero-panel.panel-cta span {
  color: var(--cream);
}
.hero-panel.panel-cta span {
  opacity: 0.95;
  font-size: 16px;
}
.btn.btn-blue {
  background: var(--blue);
  color: var(--bordeaux);
  box-shadow: 0 15px 34px rgba(148, 190, 197, 0.30);
}
.btn.btn-blue:hover {
  background: #7FB0B8;
}
.btn.btn-cream {
  background: var(--cream);
  color: var(--bordeaux);
  box-shadow: 0 15px 34px rgba(46, 24, 15, 0.18);
}
.btn.btn-cream:hover {
  background: #F3ECDA;
}

/* Bloc expérience : photo seule (sans texte superposé) */
.exp-card.exp-photo-only .exp-body { display: none; }
body.v6-immersive .exp-card.exp-photo-only::after {
  background: linear-gradient(180deg, rgba(20, 10, 5, 0) 55%, rgba(20, 10, 5, 0.30));
}

/* Bloc "Tu peux venir comme tu es" : bande immersive + cartes translucides */
body.v6-immersive #pour-qui.pour-qui-band {
  background-color: #1c0f08;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 980px) {
  body.v6-immersive #pour-qui.pour-qui-band { background-attachment: scroll; }
}
body.v6-immersive #pour-qui.pour-qui-band .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  border: 0;
}
body.v6-immersive #pour-qui.pour-qui-band .card {
  min-height: 0;
  background: rgba(253, 249, 238, 0.92);
  border: 1px solid rgba(92, 12, 1, 0.12);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 16px 40px rgba(20, 12, 8, 0.18);
}
body.v6-immersive #pour-qui.pour-qui-band .card h3 { color: var(--red); }
body.v6-immersive #pour-qui.pour-qui-band .card p {
  color: var(--bordeaux);
  margin-top: 8px;
}
@media (max-width: 980px) {
  body.v6-immersive #pour-qui.pour-qui-band .grid-4 { grid-template-columns: 1fr; }
}

/* CTA final : panneau formulaire beige sur fond sombre, centré */
.hero-panel.cta-final-panel {
  margin: 36px auto 0;
  width: min(860px, 100%);
  background: rgba(253, 249, 238, 0.96);
  border: 1px solid rgba(253, 249, 238, 0.5);
}
.hero-panel.cta-final-panel strong { color: var(--bordeaux); }
.hero-panel.cta-final-panel span { color: var(--ink-soft); }

/* Artistes : noms affichés directement sur les images */
body.v6-immersive .artist-card { position: relative; }
body.v6-immersive .artist-media {
  position: absolute;
  inset: 0;
  height: 100%;
}
body.v6-immersive .artist-media::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0) 40%, rgba(20, 12, 8, 0.78));
}
body.v6-immersive .artist-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 20px;
  text-align: left;
  background: none;
}
body.v6-immersive .artist-info h3 { color: var(--cream); }
body.v6-immersive .artist-info p {
  color: rgba(253, 249, 238, 0.88);
  margin-top: 4px;
}

/* Page PASS : grille des options hébergement + bloc accès */
.lodging-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 8px;
}
.lodging-card {
  background: var(--cream);
  border: 1px solid rgba(92, 12, 1, 0.12);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(46, 24, 15, 0.08);
}
.lodging-card .emoji { font-size: 34px; display: block; margin-bottom: 8px; }
.lodging-card strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 16px;
  color: var(--bordeaux);
}
.lodging-card .price {
  display: block;
  margin-top: 8px;
  font-family: var(--font-soft);
  font-size: 26px;
  color: var(--orange);
}
.lodging-card .price small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: none;
}

.access-band {
  position: relative;
  isolation: isolate;
  background: #1c0f08 center / cover no-repeat;
  background-attachment: fixed;
  color: var(--cream);
  padding: clamp(64px, 9vh, 110px) 0;
}
.access-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(19, 11, 7, 0.34), rgba(19, 11, 7, 0.5));
}
.access-band .kicker,
.access-band h2,
.access-band .lead,
.access-band .script-accent { color: var(--cream); }
.access-band .access-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 28px;
}
.access-band .access-points article {
  background: rgba(253, 249, 238, 0.12);
  border: 1px solid rgba(253, 249, 238, 0.28);
  border-radius: 12px;
  padding: 18px 20px;
}
.access-band .access-points strong { display: block; font-size: 18px; }
.access-band .access-points span { color: rgba(253, 249, 238, 0.86); }

@media (max-width: 980px) {
  .lodging-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .access-band .access-points { grid-template-columns: 1fr; }
  .access-band { background-attachment: scroll; }
}
@media (max-width: 640px) {
  .lodging-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 3)
   ============================================================ */

/* Pour qui : tous les textes en beige */
body.v6-immersive #pour-qui.pour-qui-band .kicker,
body.v6-immersive #pour-qui.pour-qui-band h2 {
  color: var(--cream);
}
body.v6-immersive #pour-qui.pour-qui-band .script-accent {
  color: var(--orange);
}
body.v6-immersive #pour-qui.pour-qui-band .kicker::before {
  background: var(--cream);
}

/* Échelle de prix : les deux passes actuels en orange clair + cartes cliquables */
a.urgency-card.is-clickable {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
a.urgency-card.is-clickable:hover {
  transform: translateY(-2px);
}
body.v6-immersive #pass .urgency-card.current,
body.v6-immersive #pass a.urgency-card.is-clickable {
  background: rgba(231, 134, 5, 0.20);
  border-color: rgba(231, 134, 5, 0.55);
  box-shadow: 0 18px 46px rgba(231, 134, 5, 0.12);
}
/* Survol : orange vif de la palette, texte beige pour le contraste */
body.v6-immersive #pass a.urgency-card.is-clickable:hover {
  background: var(--orange);
  border-color: var(--orange-dark);
}
body.v6-immersive #pass a.urgency-card.is-clickable:hover strong,
body.v6-immersive #pass a.urgency-card.is-clickable:hover span {
  color: var(--cream);
}

/* Boutons hero + itinéraire : passage en orange au survol */
.btn.ghost:hover,
.btn.line:hover,
.btn.line.light:hover {
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
}

/* Composant email dépliable (bouton qui s'agrandit) */
.mail-pop {
  display: inline-block;
}
.mail-pop > summary {
  list-style: none;
  cursor: pointer;
}
.mail-pop > summary::-webkit-details-marker { display: none; }
.mail-pop > summary::marker { content: ""; }
/* Une fois ouvert : le bouton disparaît, la capture email le remplace */
.mail-pop[open] > summary { display: none; }
.mail-pop[open] .mail-pop-form { margin-top: 0; }
.mail-pop .mail-pop-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  max-width: 460px;
  animation: mailPopIn 220ms ease;
}
.mail-pop .mail-pop-label {
  flex-basis: 100%;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  opacity: 0.92;
}
.mail-pop .mail-pop-form input {
  flex: 1 1 180px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(92, 12, 1, 0.18);
  border-radius: 8px;
  background: var(--cream);
  font-size: 15px;
}
.mail-pop .mail-pop-form .btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 15px;
}
@keyframes mailPopIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Carte programme : la zone email tient dans la carte */
body.v6-immersive .day-card .mail-pop {
  margin-top: auto;
}
body.v6-immersive .day-card:has(.mail-pop[open]) {
  max-height: none;
}
body.v6-immersive .day-card .mail-pop[open] {
  display: block;
  width: 100%;
  background: rgba(231, 134, 5, 0.16);
  border: 1px solid rgba(231, 134, 5, 0.42);
  border-radius: 12px;
  padding: 16px;
}
body.v6-immersive .day-card .mail-pop .mail-pop-form input {
  flex: 1 1 140px;
}
body.v6-immersive .day-card .mail-pop .mail-pop-label {
  color: var(--bordeaux);
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 4)
   ============================================================ */

/* Police Bobby Jones Condensed : accroche date hero + bande repères */
body.v6-immersive .hero .lead.hero-date {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(24px, 2.6vw, 36px);
  color: #FFFFFF;
}
body.v6-immersive .proof-item strong,
body.v6-immersive .proof-item span {
  font-family: var(--font-display);
}
body.v6-immersive .proof-item span {
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Comment s'y rendre : blocs en beige, texte couleurs habituelles */
.access-band .access-points article {
  background: var(--cream);
  border: 1px solid rgba(92, 12, 1, 0.12);
  box-shadow: 0 14px 34px rgba(46, 24, 15, 0.12);
}
.access-band .access-points strong { color: var(--bordeaux); }
.access-band .access-points span { color: var(--ink-soft); }

/* Decision-strip : étapes cliquables vers les embeds HelloAsso */
.decision-steps-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.decision-steps a.decision-step {
  display: block;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(253, 249, 238, 0.82);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}
body.v6-immersive .decision-steps a.decision-step {
  background: rgba(253, 249, 238, 0.44);
}
a.decision-step:hover {
  transform: translateY(-2px);
}
body.v6-immersive .decision-steps a.decision-step:hover {
  background: var(--orange);
}
body.v6-immersive .decision-steps a.decision-step:hover span,
body.v6-immersive .decision-steps a.decision-step:hover p {
  color: var(--cream);
}

/* Menu mobile (hamburger CSS) */
.nav-toggle { display: none; }
.nav-burger { display: none; }
@media (max-width: 980px) {
  .nav { position: relative; flex-wrap: wrap; }
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    border: 1px solid rgba(92, 12, 1, 0.18);
    border-radius: 10px;
    background: var(--cream);
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--bordeaux);
    border-radius: 2px;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-width: 230px;
    padding: 14px;
    background: #FDF9EE;
    border: 1px solid rgba(92, 12, 1, 0.12);
    border-radius: 14px;
    box-shadow: 0 22px 54px rgba(46, 24, 15, 0.18);
    display: none;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(92, 12, 1, 0.08);
  }
  .nav-links .btn { width: 100%; margin-top: 4px; }
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 5)
   ============================================================ */

/* Note d'aide sous les embeds HelloAsso (anti-blocage scroll mobile) */
.embed-help {
  margin: 12px 2px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}
.embed-help a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 6)
   ============================================================ */

/* Bande repères home : même mise en forme que le bandeau cadeau (cartes) */
body.v6-immersive .proof-grid {
  gap: 12px;
  align-items: stretch;
}
body.v6-immersive .proof-item {
  min-height: auto;
  padding: 20px 22px;
  border: 1px solid rgba(92, 12, 1, 0.12);
  border-right: 1px solid rgba(92, 12, 1, 0.12);
  border-radius: 10px;
  background: rgba(253, 249, 238, 0.72);
  box-shadow: none;
}
/* Survol des repères cliquables : passage en bleu */
body.v6-immersive a.proof-item:hover {
  background: rgba(148, 190, 197, 0.22);
  border-color: rgba(148, 190, 197, 0.6);
}
body.v6-immersive a.proof-item:hover strong,
body.v6-immersive a.proof-item:hover span {
  color: var(--blue);
}

/* Page cadeau : petite image sous une carte cadeau */
.gift-card-img {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 18px auto 0;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(46, 24, 15, 0.12);
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 7)
   ============================================================ */

/* Hero : réduire l'accroche "Festival danse · souffle · musique live" */
body.v6-immersive .hero .script-accent {
  font-size: clamp(18px, 1.8vw, 24px);
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 8)
   ============================================================ */

/* Vidéo YouTube dans la fiche artiste */
.artist-modal-video:empty { display: none; }
.artist-modal-video {
  margin: 22px 0 4px;
}
.artist-modal-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(20, 12, 8, 0.20);
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 9) — typo plus légère (Fredoka Light)
   ============================================================ */

body { font-weight: 400; }

/* Corps de texte allégé sur tout le site */
p, .lead, li,
.gift-hero .lead, .gift-intro .lead, .gift-card p, .gift-step p,
.gift-form-card p, .gift-note, .gift-proof-item span,
.day-copy p, .timeline-item span, .check-list li,
.access-band .access-points span, .lodging-card .price small {
  font-family: "Fredoka Light", var(--font-body);
  font-weight: 400;
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 10) — badge paiement sécurisé HelloAsso
   ============================================================ */
.ha-secure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(253, 249, 238, 0.85);
  color: #2e2f5e;
  font-size: 13px;
  font-weight: 700;
}
.ha-secure svg { fill: currentColor; }
.ha-secure img { height: 22px; width: auto; display: inline-block; }

/* ============================================================
   Correctifs V7 — 15 juin (lot 11)
   ============================================================ */
a.scroll-cue { text-decoration: none; cursor: pointer; }

/* ============================================================
   Correctifs V7 — 15 juin (lot 12)
   ============================================================ */

/* Bloc pass : carte "Pass actuel" en action forte + urgence */
.urgency-flag {
  display: inline-block !important;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--cream) !important;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
/* Carte "Pass actuel" : orange plein, texte beige lisible (action principale) */
body.v6-immersive #pass a.urgency-card.current,
body.v6-immersive #pass a.urgency-card.current:hover {
  background: var(--orange);
  border-color: var(--orange-dark);
  box-shadow: 0 18px 46px rgba(231, 134, 5, 0.32);
}
body.v6-immersive #pass a.urgency-card.current strong,
body.v6-immersive #pass a.urgency-card.current span {
  color: var(--cream);
}
.urgency-card.current .urgency-flag {
  background: var(--bordeaux);
  color: var(--cream) !important;
}
/* Pass Duo : couleur distincte (bleu) pour le différencier */
body.v6-immersive #pass a.urgency-card.is-clickable:not(.current) {
  background: rgba(148, 190, 197, 0.30);
  border-color: var(--blue);
}
body.v6-immersive #pass a.urgency-card.is-clickable:not(.current):hover {
  background: var(--blue);
}
body.v6-immersive #pass a.urgency-card.is-clickable:not(.current):hover strong,
body.v6-immersive #pass a.urgency-card.is-clickable:not(.current):hover span {
  color: var(--bordeaux);
}
.btn.btn-xl {
  min-height: 64px;
  padding: 0 40px;
  font-size: 20px;
}
.pass-cta-row { justify-content: center; margin-top: 26px; margin-bottom: 4px; }

/* ----- Sliders horizontaux sur mobile ----- */
@media (max-width: 780px) {
  /* Programme des 5 jours : défilement horizontal (swipe) */
  body.v6-immersive #programme .programme-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  body.v6-immersive #programme .day-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: center;
    max-height: none;
  }

  /* Artistes (home) : défilement horizontal */
  body.v6-immersive #artistes .artist-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-auto-rows: auto;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  body.v6-immersive #artistes .artist-card {
    flex: 0 0 70%;
    max-width: 70%;
    height: 360px;
    scroll-snap-align: center;
  }
  body.v6-immersive #artistes .artist-card:nth-child(1),
  body.v6-immersive #artistes .artist-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }
  /* Indice visuel : on laisse entrevoir la carte suivante */
  body.v6-immersive #programme .programme-grid,
  body.v6-immersive #artistes .artist-grid {
    scroll-padding-left: 16px;
  }
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 13)
   ============================================================ */

/* Compte à rebours (bloc pass) */
.countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 22px 0 8px;
  padding: 16px 22px;
  border: 1px solid rgba(231, 134, 5, 0.4);
  border-radius: 14px;
  background: rgba(231, 134, 5, 0.12);
}
.countdown-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  color: var(--bordeaux);
}
.countdown-units {
  display: flex;
  gap: 10px;
}
.countdown-units > div {
  min-width: 60px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--cream);
  text-align: center;
}
.countdown-units strong {
  display: block;
  font-family: var(--font-soft);
  font-size: 26px;
  line-height: 1;
}
.countdown-units span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.92;
}
.countdown.is-over {
  background: rgba(204, 44, 20, 0.10);
  border-color: rgba(204, 44, 20, 0.4);
}

/* Modale artiste : barre d'actions toujours visible (réserver / naviguer) */
.artist-modal-nav {
  background: var(--cream);
  box-shadow: 0 -10px 24px rgba(46, 24, 15, 0.12);
}
@media (max-width: 640px) {
  .artist-modal-nav .btn { flex: 1; text-align: center; }
  .artist-modal-close { position: fixed; top: 12px; right: 12px; }
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 14)
   ============================================================ */

/* Pass Duo mis en avant (bleu plein) + petit CTA dans les cartes d'action */
body.v6-immersive #pass a.urgency-card.duo {
  background: var(--blue);
  border-color: #7FB0B8;
  box-shadow: 0 18px 46px rgba(148, 190, 197, 0.34);
}
body.v6-immersive #pass a.urgency-card.duo strong,
body.v6-immersive #pass a.urgency-card.duo span {
  color: var(--bordeaux);
}
.urgency-card.duo .urgency-flag {
  background: var(--bordeaux);
  color: var(--cream) !important;
}
.urgency-card .urgency-cta {
  display: inline-block !important;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bordeaux);
  color: var(--cream) !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.urgency-card.current .urgency-cta { background: var(--bordeaux); }

/* ============================================================
   Correctifs V7 — 15 juin (lot 15) — échelle de prix épurée
   ============================================================ */
body.v6-immersive #pass .urgency-card {
  min-height: 0;
  padding: 22px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
body.v6-immersive #pass .urgency-card strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.urgency-card .ptag {
  margin-bottom: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.4px;
  font-weight: 700;
}
.urgency-card .pbig {
  font-family: var(--font-soft);
  font-size: 30px;
  line-height: 1;
  margin-top: 2px;
}
.urgency-card .psub {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.82;
}
.urgency-card .pgo {
  margin-top: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

/* Pass actuel : orange plein, sobre */
body.v6-immersive #pass a.urgency-card.current,
body.v6-immersive #pass a.urgency-card.current:hover {
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 16px 40px rgba(231, 134, 5, 0.28);
}
body.v6-immersive #pass a.urgency-card.current strong,
body.v6-immersive #pass a.urgency-card.current span { color: var(--cream); }
body.v6-immersive #pass a.urgency-card.current .ptag { color: rgba(255, 249, 238, 0.85); }

/* Pass Duo : bleu doux, texte bordeaux, flèche orange */
body.v6-immersive #pass a.urgency-card.duo,
body.v6-immersive #pass a.urgency-card.duo:hover {
  background: rgba(148, 190, 197, 0.28);
  border: 1px solid var(--blue);
  box-shadow: 0 16px 40px rgba(148, 190, 197, 0.26);
}
body.v6-immersive #pass a.urgency-card.duo strong,
body.v6-immersive #pass a.urgency-card.duo span { color: var(--bordeaux); }
body.v6-immersive #pass a.urgency-card.duo .ptag { color: #5E8E97; }
body.v6-immersive #pass a.urgency-card.duo .pgo { color: var(--orange); }

/* Cartes complètes / late : sobres */
body.v6-immersive #pass .urgency-card.done { opacity: 0.6; }

/* ============================================================
   Correctifs V7 — 15 juin (lot 16) — embed Brevo "programme"
   ============================================================ */
.programme-embed {
  margin-top: 34px;
  text-align: center;
}
.programme-embed-title {
  display: block;
  font-family: var(--font-soft);
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--bordeaux);
  line-height: 1;
}
.programme-embed-sub {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 600;
}
.programme-embed .brevo-embed {
  width: 100%;
  max-width: 600px;
  min-height: 320px;
  border: 0;
  margin: 18px auto 0;
  display: block;
}

/* ============================================================
   Correctifs V7 — 15 juin (lot 17) — formulaire programme maison (Brevo)
   ============================================================ */
.brevo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.brevo-form input[name="EMAIL"] {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(92, 12, 1, 0.18);
  border-radius: 8px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--bordeaux);
  outline: none;
}
.brevo-form input[name="EMAIL"]:focus {
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(92, 12, 1, 0.12);
}
.brevo-form .btn { white-space: nowrap; }
/* honeypot anti-spam : invisible */
.ss-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
/* iframe d'envoi : invisible */
.ss-hidden-iframe { display: none; }
/* message de remerciement */
.brevo-merci {
  margin: 4px 0 0;
  font-family: var(--font-soft);
  font-size: 20px;
  color: var(--cream);
  font-weight: 700;
}
@media (max-width: 640px) {
  .brevo-form { grid-template-columns: 1fr; }
  .brevo-form .btn { width: 100%; }
}

/* ============================================================
   Correctifs V7 — anti-flash chargement (repli couleur sous les images)
   Chaque section à image plein cadre prend déjà sa couleur de marque
   pendant que la photo se charge. Aucune image/texte/structure modifié.
   ============================================================ */

/* Sections à texte clair (color: var(--cream)) → repli bordeaux */
.day-card { background-color: #5C0C01; }
.band-immersive { background-color: #5C0C01; }
.pass-hero { background-color: #5C0C01; }
.pass-hero-media { background-color: #5C0C01; }
.option-visual { background-color: #5C0C01; }
.art-card-photo { background-color: #5C0C01; }
.access-band { background-color: #5C0C01; }
body.v6-immersive .day-card::before { background-color: #5C0C01; }
body.v6-immersive .day-card.j4::before { background-color: #5C0C01; }
body.v6-immersive #pour-qui.pour-qui-band { background-color: #5C0C01; }

/* Visuel d'ambiance teal (cadre bleu de la charte) → repli bleu */
.artist-modal-photo { background-color: #94BEC5; }

/* ============================================================
   Correctifs V7 — "Une journée type" en slider horizontal (mobile)
   Même traitement que le programme et les artistes : swipe latéral.
   ============================================================ */
@media (max-width: 780px) {
  body.v6-immersive #journee .rhythm-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin-top: 28px;
    padding-bottom: 12px;
    scroll-padding-left: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  /* on masque la ligne et les pastilles de la timeline en mode slider */
  body.v6-immersive #journee .rhythm-grid::before { display: none; }
  body.v6-immersive #journee .rhythm-grid article::before { display: none; }
  body.v6-immersive #journee .rhythm-grid article {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: center;
    padding: 24px 22px;
    text-align: left;
    border: 1px solid rgba(92, 12, 1, 0.12);
    border-radius: 12px;
    background: rgba(253, 249, 238, 0.72);
  }
}

/* ============================================================
   Hero "Keyzz" — vidéo lisible en haut (aperçu château + clic),
   puis logo, titre et texte EN DESSOUS. Plus de texte par-dessus.
   Corrige aussi le zoom de la vidéo sur mobile (cadre dimensionné).
   ============================================================ */
body.v6-immersive .hero.hero-stacked {
  min-height: 0;
  display: block;
  padding: clamp(96px, 12vh, 132px) 0 clamp(26px, 4vw, 48px);
  background: var(--cream);
  color: var(--bordeaux);
}
body.v6-immersive .hero.hero-stacked::before,
body.v6-immersive .hero.hero-stacked::after { content: none; display: none; }

.hero-stacked .hero-media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #5C0C01;
  box-shadow: 0 24px 60px rgba(46, 24, 15, 0.18);
}
.hero-stacked .hero-media .hero-vid,
.hero-stacked .hero-media .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-stacked .hero-media .hero-vid { z-index: 1; }
.hero-stacked .hero-media .hero-poster { z-index: 2; }
.hero-stacked.is-playing .hero-media .hero-poster,
.hero-stacked.is-playing .hero-media .hero-play,
.hero-stacked.is-playing .hero-media .hero-media-logo { display: none; }
/* Desktop : lecture auto en sourdine — on masque l'aperçu et le bouton, on garde le logo */
.hero-stacked.is-live .hero-media .hero-poster,
.hero-stacked.is-live .hero-media .hero-play { display: none; }

.hero-stacked .hero-media-logo {
  position: absolute;
  left: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  width: clamp(60px, 8vw, 92px);
  height: auto;
  z-index: 4;
  filter: drop-shadow(0 6px 18px rgba(46, 24, 15, 0.55));
}
.hero-stacked .hero-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(64px, 9vw, 84px);
  height: clamp(64px, 9vw, 84px);
  border: 0;
  border-radius: 50%;
  background: rgba(231, 134, 5, 0.94);
  box-shadow: 0 10px 30px rgba(46, 24, 15, 0.35);
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-stacked .hero-play:hover { transform: scale(1.06); background: var(--orange); }
.hero-stacked .hero-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent var(--cream);
  margin-left: 5px;
}

.hero-stacked .hero-text {
  margin-top: clamp(22px, 3vw, 36px);
  max-width: 900px;
}
.hero-stacked .hero-text .script-accent { color: var(--orange); margin: 0 0 4px; }
body.v6-immersive .hero.hero-stacked .hero-text h1 {
  margin: 0;
  max-width: 900px;
  color: var(--bordeaux);
  text-shadow: none;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.96;
}
body.v6-immersive .hero.hero-stacked .hero-text .lead,
body.v6-immersive .hero.hero-stacked .hero-text .lead.hero-date {
  color: var(--bordeaux);
  text-shadow: none;
}
.hero-stacked .hero-text .hero-date { margin-top: 14px; font-weight: 600; }
.hero-stacked .hero-text .hero-tagline {
  margin-top: 14px;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600;
  max-width: 640px;
}
/* Bandeau prix : visible mais secondaire, il ne concurrence pas le titre */
body.v6-immersive .hero.hero-stacked .hero-badge {
  margin-top: 16px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(92, 12, 1, 0.22);
  color: var(--ink-soft);
  backdrop-filter: none;
}
.hero-stacked .hero-badge b { color: var(--bordeaux); font-weight: 700; }
.hero-stacked .hero-badge .dot {
  width: 7px;
  height: 7px;
  background: rgba(231, 134, 5, 0.7);
  box-shadow: none;
  animation: none;
}
.hero-stacked .actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 780px) {
  body.v6-immersive .hero.hero-stacked {
    padding: clamp(82px, 15vh, 104px) 0 24px;
  }
  .hero-stacked .hero-text { margin-top: 20px; }
  .hero-stacked .actions .btn { flex: 1 1 100%; text-align: center; }
}

/* Cartes options hébergement : cliquables → page Réserver */
a.option-visual { text-decoration: none; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.25s ease; }
a.option-visual:hover,
a.option-visual:focus-visible { transform: translateY(-3px); box-shadow: 0 24px 52px rgba(46, 24, 15, 0.22); outline: none; }
.option-visual .option-cta {
  margin-top: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--cream);
}

/* ============================================================
   Bandeau repères (chiffres) : fond bleu festival + motif,
   4 colonnes centrées, chiffres bordeaux qui ressortent.
   ============================================================ */
body.v6-immersive .proof-strip {
  padding: 20px 0;
  background:
    linear-gradient(rgba(148, 190, 197, 0.90), rgba(148, 190, 197, 0.90)),
    url("assets/brand/motif-2.png") center / 520px auto repeat;
  border-top: 1px solid rgba(92, 12, 1, 0.10);
  border-bottom: 1px solid rgba(92, 12, 1, 0.10);
}
body.v6-immersive .proof-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
body.v6-immersive .proof-item {
  min-height: auto;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(92, 12, 1, 0.18);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
body.v6-immersive .proof-item:last-child { border-right: 0; }
body.v6-immersive .proof-item strong { color: var(--bordeaux); }
body.v6-immersive .proof-item span { color: var(--bordeaux); opacity: 0.82; }
body.v6-immersive a.proof-item:hover { background: rgba(253, 249, 238, 0.20); }
body.v6-immersive a.proof-item:hover strong,
body.v6-immersive a.proof-item:hover span { color: var(--bordeaux); opacity: 1; }

@media (max-width: 980px) {
  body.v6-immersive .proof-grid { grid-template-columns: repeat(2, 1fr); }
  body.v6-immersive .proof-item:nth-child(2n) { border-right: 0; }
  body.v6-immersive .proof-item:nth-child(1),
  body.v6-immersive .proof-item:nth-child(2) { border-bottom: 1px solid rgba(92, 12, 1, 0.18); }
}

/* ============================================================
   Compte à rebours "Gagne ton pass" (grosses tuiles) — réutilisé sur la home (#pass)
   ============================================================ */
.gtp-cd-label { display:flex; align-items:center; gap:8px; margin:28px 0 12px; color:var(--orange); font-family:var(--font-display); text-transform:uppercase; font-size:14px; font-weight:700; letter-spacing:0.3px; }
.gtp-cd { display:flex; gap:clamp(8px,1.4vw,16px); flex-wrap:wrap; }
.gtp-cd .unit { flex:1 1 0; min-width:74px; max-width:120px; padding:14px 6px 12px; border:1px solid rgba(92,12,1,0.12); border-top:3px solid var(--orange); border-radius:12px; background:#fff; box-shadow:0 14px 34px rgba(46,24,15,0.08); text-align:center; }
.gtp-cd .unit strong { display:block; font-family:var(--font-soft); font-size:clamp(40px,5.2vw,64px); line-height:1; color:var(--bordeaux); }
.gtp-cd .unit span { display:block; margin-top:6px; font-family:var(--font-display); text-transform:uppercase; font-size:11px; letter-spacing:0.4px; color:var(--ink-soft); }
@media (max-width:780px){ .gtp-cd .unit strong { font-size:38px; } }
