:root {
  /* -- Palette : "Programme de scène" — part du papier/rouge existant -- */
  --papier: #f4efe4;
  --papier-bright: #faf6ee;
  --encre: #14100d;
  --rouge-scene: #e51c14;
  --rouge-scene-dark: #c11710;
  --sapin: #1f4632;
  --kraft: #7a6a56;
  --line: rgba(20, 16, 13, 0.14);
  --line-strong: rgba(20, 16, 13, 0.28);
  --shadow: 0 26px 60px rgba(20, 16, 13, 0.16);
  --shadow-soft: 0 14px 32px rgba(20, 16, 13, 0.12);

  /* -- Typographie (2 familles) ------------------------------------- */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html.reduced-motion {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--encre);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.85), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(20, 16, 13, 0.04), transparent 22%),
    var(--papier);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.24;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.25' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23g)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 190px 190px, 92px 92px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rouge-scene);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease-standard), transform 680ms var(--ease-standard);
}

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

html.reduced-motion .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100vw - 34px));
  margin: 0 auto;
}

/* ---------- Kicker ---------- */

.kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--rouge-scene);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Bouton billet (élément signature, répété) ---------- */

.btn-ticket {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 2.9rem 0 1.7rem;
  border-radius: 7px;
  background:
    repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255, 255, 255, 0.55) 3px 7px) right 2.2rem top / 2px 100% no-repeat,
    var(--rouge-scene);
  color: var(--papier-bright);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms var(--ease-standard), box-shadow 180ms ease;
}

.btn-ticket::before,
.btn-ticket::after {
  content: "";
  position: absolute;
  right: 2.2rem;
  width: 14px;
  height: 14px;
  transform: translateX(50%);
  border-radius: 50%;
  background: var(--papier);
  border: 1px solid rgba(20, 16, 13, 0.08);
}

.btn-ticket::before {
  top: -7px;
}

.btn-ticket::after {
  bottom: -7px;
}

.btn-ticket:hover,
.btn-ticket:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(197, 23, 16, 0.28);
}

.btn-ticket-small {
  min-height: 42px;
  padding: 0 2.1rem 0 1.15rem;
  border-radius: 6px;
  font-size: 0.82rem;
  background:
    repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255, 255, 255, 0.55) 3px 7px) right 1.55rem top / 2px 100% no-repeat,
    var(--rouge-scene);
}

.btn-ticket-small::before,
.btn-ticket-small::after {
  right: 1.55rem;
  width: 10px;
  height: 10px;
}

.btn-ticket-small::before {
  top: -5px;
}

.btn-ticket-small::after {
  bottom: -5px;
}

.btn-ticket-on-ink::before,
.btn-ticket-on-ink::after {
  background: var(--encre);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--rouge-scene);
  color: var(--encre);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--rouge-scene);
}

.btn-ghost-light {
  color: var(--papier-bright);
  border-color: rgba(250, 246, 238, 0.5);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  color: var(--papier-bright);
  border-color: var(--papier-bright);
}

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.topbar-brand {
  display: flex;
  align-items: center;
}

.topbar-brand img {
  height: 28px;
  width: auto;
}

.topbar-divider {
  display: none;
  width: 1px;
  height: 22px;
  background: var(--line-strong);
}

.topbar-label {
  display: none;
  color: var(--kraft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.topbar-link {
  display: none;
  color: var(--kraft);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.topbar-link:hover,
.topbar-link:focus-visible {
  color: var(--rouge-scene);
}

@media (min-width: 620px) {
  .topbar-divider,
  .topbar-label {
    display: block;
  }

  .topbar-link {
    display: inline;
  }
}

@media (max-width: 480px) {
  .topbar-actions .btn-ghost {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.2rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  }
}

.hero-copy .kicker {
  margin-bottom: 1rem;
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--encre);
}

.accent-ink {
  color: var(--rouge-scene);
}

.hero-dek {
  margin: 1.1rem 0 0;
  max-width: 30ch;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  line-height: 1.35;
  color: var(--encre);
}

.hero-tagline {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: var(--kraft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.hero-note {
  margin: 1.2rem 0 0;
  color: var(--kraft);
  font-size: 0.9rem;
  font-style: italic;
  font-family: var(--serif);
}

/* ---------- Video showcase ---------- */

.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--encre);
  box-shadow: var(--shadow);
}

@media (min-width: 980px) {
  .video-frame {
    max-height: 580px;
    margin: 0;
  }
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}

.video-frame.has-media video {
  opacity: 1;
}

.video-frame-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, #1c1712, #0f0c0a);
  color: rgba(250, 246, 238, 0.86);
  transition: opacity 260ms ease;
}

.video-frame.has-media .video-frame-placeholder {
  opacity: 0;
  pointer-events: none;
}

.video-frame-placeholder-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid rgba(229, 28, 20, 0.6);
  color: var(--rouge-scene);
}

.video-frame-placeholder-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.video-frame-placeholder strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--papier-bright);
}

.video-frame-placeholder code {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.3rem 0.6rem;
  background: rgba(250, 246, 238, 0.08);
  color: rgba(250, 246, 238, 0.78);
  font-size: 0.78rem;
}

.video-frame-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, background-color 220ms ease;
}

.video-frame.has-media .video-frame-play {
  opacity: 1;
  pointer-events: auto;
}

.video-frame-play:hover {
  background: rgba(0, 0, 0, 0.32);
}

.video-frame.is-playing .video-frame-play {
  opacity: 0;
  pointer-events: none;
}

.video-frame-play-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rouge-scene);
  color: var(--papier-bright);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  transition: transform 220ms ease;
}

.video-frame-play:hover .video-frame-play-icon {
  transform: scale(1.06);
}

.video-frame-play-icon svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: currentColor;
}

.video-frame-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  background: rgba(250, 246, 238, 0.94);
  color: var(--encre);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Section shells ---------- */

.section {
  position: relative;
  z-index: 1;
  padding: clamp(3.2rem, 6.5vw, 5rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: end;
}

.section-intro h2 {
  margin: 0.6rem 0 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--encre);
}

.section-intro-copy {
  position: relative;
  max-width: 28rem;
  justify-self: end;
  padding-left: 1.3rem;
  border-left: 2px solid var(--rouge-scene);
}

.section-intro-copy p {
  margin: 0;
  color: var(--kraft);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .section-intro-copy {
    justify-self: start;
  }
}

/* ---------- Editorial (Actes I / II) ---------- */

.editorial {
  display: grid;
  gap: clamp(3.6rem, 7vw, 5.5rem);
  margin-top: clamp(3.2rem, 6vw, 4.6rem);
}

.editorial-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
  gap: clamp(1.8rem, 5vw, 5rem);
  align-items: center;
}

.editorial-block-reverse .editorial-visual {
  order: 2;
}

.editorial-block-reverse .editorial-copy {
  order: 1;
}

@media (max-width: 900px) {
  .editorial-block,
  .editorial-block-reverse .editorial-visual,
  .editorial-block-reverse .editorial-copy {
    grid-template-columns: 1fr;
    order: initial;
  }
}

.editorial-visual {
  position: relative;
  min-height: clamp(360px, 42vw, 480px);
}

.photo-card {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 10px 10px 14px;
  background: var(--papier-bright);
  box-shadow: 0 20px 42px rgba(20, 16, 13, 0.22);
}

.photo-card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 44px;
  height: 16px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(229, 28, 20, 0.62);
}

.photo-card-main {
  left: 5%;
  top: 8%;
  width: 63%;
  transform: rotate(-3deg);
}

.photo-card-secondary {
  right: 6%;
  bottom: 9%;
  width: 33%;
  transform: rotate(6deg);
}

.editorial-block-reverse .photo-card-main {
  left: 24%;
  top: 7%;
  width: 52%;
  transform: rotate(3deg);
}

.editorial-block-reverse .photo-card-secondary {
  left: 5%;
  bottom: 8%;
  width: 34%;
  transform: rotate(-6deg);
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e7ddc9;
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease, transform 600ms ease;
}

.photo-frame.has-image img {
  opacity: 1;
}

.editorial-block:hover .photo-frame.has-image img {
  transform: scale(1.04);
}

.photo-frame-label,
.filmstrip-item-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  text-align: center;
  color: rgba(20, 16, 13, 0.4);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.has-image .photo-frame-label,
.has-image .filmstrip-item-label {
  opacity: 0;
  pointer-events: none;
}

.photo-frame-label code,
.filmstrip-item-label code {
  display: block;
  margin-top: 0.35rem;
  color: rgba(20, 16, 13, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0;
  text-transform: none;
}

.editorial-copy {
  position: relative;
}

.act-numeral {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(229, 28, 20, 0.18);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(4.4rem, 10vw, 7.2rem);
  line-height: 0.8;
}

.editorial-copy h2 {
  margin: 0.5rem 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  line-height: 1.08;
  color: var(--encre);
}

.editorial-tagline {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.35;
  color: var(--rouge-scene-dark);
}

.editorial-text {
  margin: 1rem 0 0;
  color: var(--kraft);
  font-size: 1rem;
  line-height: 1.8;
}

.editorial-meta {
  margin-top: 1.3rem;
}

.editorial-meta-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--encre);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.editorial-tags li {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line-strong);
  background: var(--papier-bright);
  color: var(--encre);
  font-size: 0.86rem;
  line-height: 1.2;
}

/* ---------- Photo de fond (bandes sombres) ---------- */

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  filter: saturate(1.1) brightness(0.88);
  transition: opacity 700ms ease;
}

.section-bg.has-image img {
  opacity: 1;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.12), rgba(20, 16, 13, 0.05) 40%, rgba(20, 16, 13, 0.55));
}

/* ---------- Bandeau de texte flottant sur photo ---------- */

.text-panel {
  position: relative;
  z-index: 1;
  background: rgba(10, 8, 6, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(250, 246, 238, 0.14);
  border-radius: 6px;
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.6rem, 4vw, 3rem);
}

/* ---------- Section vedette (bande renversée) ---------- */

.section-feature {
  position: relative;
  overflow: hidden;
  background: var(--encre);
  color: var(--papier-bright);
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.feature-copy {
  max-width: 40rem;
  text-align: center;
  text-shadow: 0 2px 16px rgba(6, 5, 4, 0.55);
}

.section-feature .kicker {
  justify-content: center;
  color: var(--rouge-scene);
}

.feature-copy h2 {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  color: var(--papier-bright);
}

.feature-text {
  margin: 1.3rem 0 0;
  color: rgba(250, 246, 238, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.feature-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin: 1.8rem 0 2.2rem;
  padding: 0;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--papier-bright);
}

.feature-facts li {
  position: relative;
  padding-left: 1.1rem;
}

.feature-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--rouge-scene);
}

/* ---------- Galerie filmique ---------- */

.filmstrip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
}

.filmstrip-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e7ddc9;
  box-shadow: var(--shadow-soft);
}

.filmstrip-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease, transform 600ms ease;
}

.filmstrip-item.has-image img {
  opacity: 1;
}

.filmstrip-item:hover img {
  transform: scale(1.04);
}

@media (min-width: 640px) {
  .filmstrip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

@media (min-width: 980px) {
  .filmstrip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .filmstrip-item:nth-child(odd) {
    margin-top: 1.6rem;
  }
}

/* ---------- Événements (liste fluide) ---------- */

.events h2 {
  margin: 0.6rem 0 0;
  max-width: 20ch;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  color: var(--encre);
}

.events-lede {
  margin: 1.4rem 0 0;
  max-width: 42rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--encre);
}

.events-flow {
  margin: 1rem 0 0;
  max-width: 52rem;
  color: var(--kraft);
  font-size: 1.15rem;
  line-height: 2.1;
}

.events-flow span {
  color: var(--rouge-scene);
  margin: 0 0.15em;
}

/* ---------- Timeline de réservation ---------- */

.process-heading h2 {
  margin: 0.6rem 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  color: var(--encre);
}

.process-heading p {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--kraft);
  font-size: 1rem;
  line-height: 1.8;
}

.timeline {
  position: relative;
  display: grid;
  gap: 2.4rem;
  margin-top: 2.8rem;
  padding-left: 2.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line-strong);
}

.timeline-step {
  position: relative;
}

.timeline-number {
  position: absolute;
  left: -2.2rem;
  top: 0;
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--rouge-scene);
  box-shadow: 0 0 0 4px var(--papier);
  font-size: 0;
}

.timeline-step h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.25;
  color: var(--encre);
}

.timeline-step p {
  margin: 0.6rem 0 0;
  color: var(--kraft);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    padding-left: 0;
  }

  .timeline::before {
    left: 0;
    right: 0;
    top: 5px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .timeline-number {
    position: static;
    margin: 0 0 1.1rem;
  }

  .timeline-step {
    padding-top: 0;
  }
}

/* ---------- CTA banner final ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 4.2rem);
  background: var(--encre);
  color: var(--papier-bright);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(6, 5, 4, 0.55);
}

.cta-banner .kicker {
  justify-content: center;
  color: var(--rouge-scene);
}

.cta-banner h2 {
  margin: 0.6rem 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  color: var(--papier-bright);
}

.cta-banner p {
  margin: 1.1rem 0 0;
  color: rgba(250, 246, 238, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.9rem;
}

.cta-banner-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.7rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(250, 246, 238, 0.6);
}

.cta-banner-contacts a {
  color: var(--papier-bright);
  border-bottom: 1px solid rgba(229, 28, 20, 0.7);
  padding-bottom: 2px;
}

.cta-banner-contacts a:hover {
  color: var(--rouge-scene);
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  z-index: 1;
  padding: clamp(2.2rem, 5vw, 3rem) 0 clamp(2.4rem, 5vw, 3.4rem);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-brand img {
  height: 24px;
  margin: 0 auto 0.9rem;
}

.footer p {
  margin: 0.3rem 0;
  color: var(--kraft);
  font-size: 0.86rem;
}

.footer-link {
  color: var(--rouge-scene);
  font-weight: 600;
  border-bottom: 1px solid rgba(229, 28, 20, 0.4);
  padding-bottom: 1px;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--rouge-scene-dark);
  border-color: var(--rouge-scene-dark);
}

.footer-note {
  max-width: 30rem;
  margin: 0.9rem auto 0;
  color: rgba(122, 106, 86, 0.75);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ---------- Page Contact ---------- */

.contact-page-hero {
  padding-bottom: clamp(2rem, 4vw, 2.6rem);
}

.contact-page-hero .hero-copy {
  max-width: 44rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: clamp(2.4rem, 5vw, 4rem);
  align-items: start;
}

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

.contact-form-wrap h2 {
  margin: 0.6rem 0 1.8rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: var(--encre);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field span {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kraft);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--papier-bright);
  color: var(--encre);
  font-family: var(--sans);
  font-size: 0.98rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
  border-color: var(--rouge-scene);
  box-shadow: 0 0 0 3px rgba(229, 28, 20, 0.14);
}

.contact-form .btn-ticket {
  justify-self: start;
  margin-top: 0.4rem;
  border: 0;
}

.form-note {
  margin: 0;
  max-width: 34rem;
  color: var(--kraft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.text-panel-light {
  background: var(--papier-bright);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.contact-info-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.1rem;
}

.contact-info-list li {
  display: grid;
  gap: 0.25rem;
}

.contact-info-list span {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kraft);
}

.contact-info-list a {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--encre);
  transition: color 180ms ease;
}

.contact-info-list a:hover,
.contact-info-list a:focus-visible {
  color: var(--rouge-scene);
}

.contact-info-note {
  margin: 1.6rem 0 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--kraft);
  font-size: 0.92rem;
  line-height: 1.7;
}
