@font-face {
  font-family: "Loury Serif";
  src: url("../fonts/serif-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Loury Serif";
  src: url("../fonts/serif-italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Loury Serif";
  src: url("../fonts/serif-bold-italic.otf") format("opentype");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #090807;
  --ink-soft: #161310;
  --paper: #f0ebe2;
  --paper-deep: #e1d8cb;
  --white: #fffaf2;
  --muted: #8d857b;
  --gold: #c29a61;
  --wine: #6f1d32;
  --line: rgba(15, 13, 11, 0.18);
  --shell: min(1360px, calc(100vw - 96px));
  --serif: "Loury Serif", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: var(--body-size, 17px);
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.nowrap { white-space: nowrap; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-index {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: height 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  height: 76px;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(9, 8, 7, 0.92);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: var(--logo-size, 31px);
  letter-spacing: -0.035em;
}
.brand__last { margin-left: .08em; font-style: normal; font-weight: 400; letter-spacing: .015em; }
.brand__tag {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.desktop-nav { display: flex; align-items: center; gap: 29px; }
.desktop-nav a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}
.desktop-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { padding: 12px 18px 10px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle__label { font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.menu-toggle__icon { position: relative; width: 31px; height: 17px; }
.menu-toggle__icon i { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform 220ms ease, top 220ms ease, opacity 160ms ease; }
.menu-toggle__icon i:nth-child(1) { top: 1px; }
.menu-toggle__icon i:nth-child(2) { top: 8px; }
.menu-toggle__icon i:nth-child(3) { top: 15px; }
body.menu-open .menu-toggle__icon i:nth-child(1) { top: 8px; transform: rotate(45deg); }
body.menu-open .menu-toggle__icon i:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle__icon i:nth-child(3) { top: 8px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 108px 8vw 36px;
  background: var(--ink);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  padding: 4px 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 6.5vw, 4rem);
  line-height: 1.05;
}
.mobile-menu__footer { margin-top: 44px; }
.social-links { display: flex; align-items: center; gap: 18px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; color: var(--paper); transition: color 180ms ease, transform 180ms ease; }
.social-links a:hover { color: var(--gold); transform: translateY(-2px); }
.social-icon { width: 19px; height: 19px; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-color: #191310;
  background-image: var(--hero-image, url("../images/christelle-loury-hero.webp"));
  background-position: center center;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,6,5,.82) 0%, rgba(7,6,5,.3) 48%, rgba(7,6,5,.02) 70%), linear-gradient(0deg, rgba(7,6,5,.72), transparent 42%);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 35%, transparent 0 18%, rgba(8,7,6,.08) 52%, rgba(8,7,6,.28));
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: var(--shell);
  min-height: 100svh;
  margin-inline: auto;
  padding: 150px 0 68px;
}
.eyebrow { margin: 0 0 22px; font-size: .76rem; font-weight: 700; letter-spacing: .08em; }
.hero__title { margin: 0; font-family: var(--serif); font-size: clamp(5.6rem, 12.3vw, var(--hero-title-max, 192px)); font-weight: 400; letter-spacing: -.045em; line-height: .76; }
.hero__title span { display: block; }
.hero__title span:last-child { margin-left: 10.5vw; font-size: .88em; font-style: normal; font-weight: 400; letter-spacing: .005em; }
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
  margin-top: 52px;
}
.hero__bottom > p { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2.15rem); line-height: 1.05; }
.hero__bottom em { color: var(--gold); }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .045em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: transparent; color: var(--paper); }
.button--dark { background: var(--ink); color: var(--paper); }
.button--dark:hover { background: transparent; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .75rem; font-weight: 700; letter-spacing: .035em; }
.text-link--light { color: var(--paper); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.scroll-cue span { width: 1px; height: 45px; background: rgba(255,255,255,.55); }

.manifesto { padding: clamp(110px, 14vw, 210px) 0; background: var(--paper); color: var(--ink); }
.manifesto__statement { max-width: 1130px; margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 7.4vw, 7.8rem); letter-spacing: -.045em; line-height: .98; text-wrap: balance; }
.manifesto__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 70px; padding-left: 35%; }
.manifesto__grid p { max-width: 610px; margin: 0; font-size: clamp(1rem, 1.5vw, 1.3rem); }
.manifesto__grid .text-link { justify-self: end; align-self: end; }

.places { overflow: hidden; padding: 28px 0 24px; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); background: var(--ink); }
.places__track { display: flex; align-items: center; width: max-content; animation: ticker 30s linear infinite; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3.2rem); white-space: nowrap; }
.places__track span { margin: 0 25px; }
.places__track i { color: var(--gold); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.shows { padding: clamp(105px, 12vw, 180px) 0; background: var(--ink); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 62px; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.section-heading > p { max-width: 420px; margin: 0 0 10px; color: #b8b0a8; }
.shows__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: stretch; }
.show-card { position: relative; min-height: 540px; overflow: hidden; border-radius: 18px; background: var(--ink-soft); }
.show-card--wide { grid-column: span 7; }
.show-card--tall { grid-column: span 5; }
.show-card:nth-child(3) { grid-column: span 5; }
.show-card:nth-child(4) { grid-column: span 7; }
.show-card a { position: absolute; inset: 0; }
.show-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 850ms cubic-bezier(.2,.7,.2,1), filter 500ms ease; }
.show-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,6,5,.86), rgba(7,6,5,0) 68%); }
.show-card__content { position: absolute; inset: auto 36px 34px; }
.show-card__content p { margin: 0 0 11px; color: #d5cdc2; font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.show-card__content h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.15rem, 4.2vw, 4.5rem); font-weight: 400; letter-spacing: -.045em; line-height: .92; }
.show-card__cta { position: absolute; right: 0; bottom: 3px; display: inline-flex; align-items: center; min-height: 38px; padding: 8px 15px 7px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; font-size: .68rem; font-weight: 700; letter-spacing: .035em; transition: background 220ms ease, color 220ms ease; }
.show-card:hover img { transform: scale(1.035); filter: saturate(1.12); }
.show-card:hover .show-card__cta { background: var(--paper); color: var(--ink); }
.shows__footer { display: flex; justify-content: center; margin-top: 54px; }

.stage-feature { position: relative; min-height: min(900px, 92vh); margin-inline: 24px; overflow: hidden; border-radius: 22px; }
.stage-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.stage-feature__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,7,6,.82), rgba(8,7,6,.14) 65%), linear-gradient(0deg, rgba(8,7,6,.55), transparent 50%); }
.stage-feature__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; width: var(--shell); min-height: min(900px, 92vh); margin-inline: auto; }
.stage-feature h2 { max-width: 850px; margin: 0 0 48px; font-family: var(--serif); font-size: clamp(4rem, 8vw, 8.7rem); font-weight: 400; letter-spacing: -.06em; line-height: .85; }
.play-link { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 52px; padding: 13px 22px 11px; border: 1px solid rgba(255,255,255,.72); border-radius: 999px; font-size: .76rem; font-weight: 700; letter-spacing: .035em; transition: background 200ms ease, color 200ms ease; }
.play-link:hover { background: var(--paper); color: var(--ink); }

.journey { padding: clamp(110px, 13vw, 190px) 0; background: var(--paper); color: var(--ink); }
.journey__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(70px, 10vw, 160px); align-items: center; }
.journey__portrait { position: relative; }
.journey__portrait img { width: 100%; aspect-ratio: 4 / 5; border-radius: 18px; object-fit: cover; object-position: 54% center; filter: saturate(.88) contrast(1.02); }
.journey__portrait p { position: absolute; right: -35px; bottom: 40px; margin: 0; padding: 11px 16px 9px; border-radius: 999px; background: var(--wine); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .035em; }
.journey__copy h2 { margin: 0 0 38px; font-family: var(--serif); font-size: clamp(3.4rem, 6.2vw, 6.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.journey__copy > p:not(.section-index) { max-width: 670px; margin: 0; font-size: clamp(1rem, 1.35vw, 1.2rem); }
.journey__facts { margin: 44px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.journey__facts li { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 16px 0 14px; border-bottom: 1px solid var(--line); }
.journey__facts strong { color: var(--wine); font-size: .75rem; letter-spacing: .12em; }
.journey__facts span { font-size: .92rem; }

.international { display: grid; grid-template-columns: 1.18fr .82fr; min-height: 760px; background: var(--wine); }
.international__image { margin: 24px 0 24px 24px; }
.international__image img { width: 100%; height: 100%; border-radius: 18px; object-fit: cover; object-position: center; }
.international__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 130px); }
.international__copy .section-index { color: #e0b977; }
.international__copy h2 { margin: 0 0 34px; font-family: var(--serif); font-size: clamp(3.2rem, 5.2vw, 6rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.international__copy p:not(.section-index) { margin: 0 0 40px; color: #eadfda; }
.international__copy .button { width: fit-content; }

.press-preview { padding: clamp(105px, 12vw, 170px) 0; background: var(--ink); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.quotes blockquote { min-height: 315px; margin: 0; padding: 42px 38px; border-right: 1px solid rgba(255,255,255,.18); }
.quotes blockquote:last-child { border-right: 0; }
.quotes p { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 3rem); letter-spacing: -.035em; line-height: 1.04; }
.quotes cite { display: block; margin-top: 30px; color: var(--gold); font-size: .72rem; font-style: normal; font-weight: 700; letter-spacing: .04em; }

.agenda-callout { padding: clamp(95px, 11vw, 160px) 0; background: var(--paper-deep); color: var(--ink); }
.agenda-callout__inner { display: grid; grid-template-columns: 1.45fr .55fr; gap: 70px; align-items: end; }
.agenda-callout__inner .section-index { grid-column: 1 / -1; margin-bottom: 0; }
.agenda-callout h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.8rem, 7vw, 7.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.agenda-callout__inner > div p { margin: 0 0 30px; }

.booking {
  position: relative;
  display: grid;
  min-height: 670px;
  margin: 0 24px 24px;
  border-radius: 22px;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: var(--booking-image, url("../images/christelle-loury-monaco.webp")) center 44% / cover no-repeat;
}
.booking::before { content: ""; position: absolute; inset: 0; background: rgba(8,7,6,.76); }
.booking__content { position: relative; z-index: 1; width: min(1000px, calc(100% - 48px)); }
.booking h2 { margin: 0 0 46px; font-family: var(--serif); font-size: clamp(4rem, 9vw, 9rem); font-weight: 400; letter-spacing: -.06em; line-height: .82; }

.site-footer { padding: 80px 48px 28px; background: #050504; }
.site-footer__top { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; width: var(--shell); margin-inline: auto; padding-bottom: 75px; }
.brand--footer .brand__name { font-size: clamp(2.6rem, 4.8vw, 5.5rem); }
.site-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.site-footer__links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__links strong { margin-bottom: 11px; color: var(--gold); font-size: .7rem; letter-spacing: .04em; }
.site-footer__links a { color: #bdb5ad; font-size: .84rem; }
.site-footer__links a:hover { color: var(--paper); }
.site-footer__social .social-links { margin-top: 2px; }
.site-footer__social .social-links a { width: 36px; height: 36px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; width: var(--shell); margin-inline: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: #7f7871; font-size: .69rem; letter-spacing: .025em; }

.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --shell: min(calc(100% - 56px), 1200px); }
  .site-header { padding-inline: 28px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero__title { font-size: clamp(5.1rem, 14vw, 9.5rem); }
  .hero__bottom { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .manifesto__grid { padding-left: 20%; }
  .show-card { min-height: 490px; }
  .journey__grid { gap: 70px; }
  .international { grid-template-columns: 1fr 1fr; }
  .site-footer { padding-inline: 28px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 36px); }
  body { font-size: max(16px, var(--body-size, 17px)); }
  .site-header { height: 74px; padding: 0 18px; }
  .site-header.is-scrolled, body.menu-open .site-header { height: 68px; }
  .brand__name { font-size: var(--logo-size-mobile, 25px); }
  .brand__tag { font-size: .48rem; }
  .menu-toggle__label { display: none; }
  .mobile-menu { padding-inline: 24px; }
  .mobile-menu nav a { padding: 6px 0; font-size: clamp(2rem, 9vw, 3.25rem); }
  .mobile-menu__footer { flex-wrap: wrap; }
  .hero {
    min-height: 780px;
    background-image: var(--hero-image, url("../images/christelle-loury-portrait.webp"));
    background-position: 56% center;
  }
  .hero::before { background: linear-gradient(0deg, rgba(7,6,5,.88) 0%, rgba(7,6,5,.22) 75%), linear-gradient(90deg, rgba(7,6,5,.42), transparent 72%); }
  .hero__content { min-height: 780px; padding: 120px 0 38px; }
  .eyebrow { max-width: 210px; font-size: .61rem; line-height: 1.6; }
  .hero__title { font-size: clamp(4.25rem, 19vw, var(--hero-title-mobile, 100px)); line-height: .8; }
  .hero__title span:last-child { margin-left: 4vw; font-size: .9em; letter-spacing: -.006em; }
  .hero__bottom { margin-top: 38px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
  .manifesto { padding: 100px 0; }
  .manifesto__statement { font-size: clamp(2.75rem, 12vw, 4.6rem); line-height: 1.02; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 35px; margin-top: 48px; padding-left: 0; }
  .manifesto__grid .text-link { justify-self: start; }
  .places { padding-block: 20px; }
  .places__track { font-size: 1.7rem; }
  .places__track span { margin-inline: 16px; }
  .shows { padding: 100px 0; }
  .section-heading { display: block; margin-bottom: 42px; }
  .section-heading h2 { font-size: clamp(3.5rem, 18vw, 5.8rem); }
  .section-heading > p, .section-heading > .text-link { margin-top: 28px; }
  .shows__grid { display: block; }
  .show-card { min-height: 470px; margin-bottom: 18px; }
  .show-card__content { inset: auto 22px 22px; }
  .show-card__content h3 { padding-right: 10px; padding-bottom: 56px; font-size: clamp(2.35rem, 10.8vw, 3.7rem); }
  .show-card__content p { max-width: 80%; font-size: .58rem; }
  .show-card__cta { right: auto; bottom: 0; left: 0; }
  .shows__footer .button { width: 100%; }
  .stage-feature { min-height: 720px; margin-inline: 10px; border-radius: 16px; }
  .stage-feature__content { min-height: 720px; justify-content: flex-end; padding-bottom: 70px; }
  .stage-feature h2 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .stage-feature > img { object-position: 57% center; }
  .journey { padding: 100px 0; }
  .journey__grid { grid-template-columns: 1fr; gap: 70px; }
  .journey__portrait { width: calc(100% - 22px); }
  .journey__portrait p { right: -22px; bottom: 20px; }
  .journey__copy h2 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .journey__facts li { grid-template-columns: 90px 1fr; }
  .international { grid-template-columns: 1fr; }
  .international__image { min-height: 480px; margin: 18px 18px 0; }
  .international__copy { padding: 80px 22px; }
  .international__copy .button { width: 100%; }
  .press-preview { padding: 100px 0; }
  .quotes { grid-template-columns: 1fr; }
  .quotes blockquote { min-height: 0; padding: 34px 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .quotes blockquote:last-child { border-bottom: 0; }
  .quotes p { font-size: 2.15rem; }
  .agenda-callout { padding: 90px 0; }
  .agenda-callout__inner { grid-template-columns: 1fr; gap: 40px; }
  .agenda-callout h2 { font-size: clamp(3.7rem, 17vw, 5.9rem); }
  .booking { min-height: 610px; margin: 0 10px 10px; border-radius: 16px; background-position: 40% center; }
  .booking h2 { font-size: clamp(4rem, 19vw, 6.8rem); }
  .site-footer { padding: 66px 18px 26px; }
  .site-footer__top { padding-bottom: 55px; }
  .site-footer__links { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .site-footer__links > div:last-child { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Site de production — version 2.0.0 */
.desktop-nav a.is-active { color: var(--gold); }
.section-pad { padding: clamp(90px, 10vw, 150px) 0; background: var(--paper); color: var(--ink); }
.lead-small { font-family: var(--serif); font-size: clamp(1.55rem, 2.5vw, 2.4rem); line-height: 1.15; letter-spacing: -.025em; text-wrap: balance; }
.prose { max-width: 900px; }
.prose h2 { margin: 58px 0 16px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; letter-spacing: -.035em; }
.prose h2:first-child { margin-top: 0; }
.prose p { max-width: 780px; }
.prose a { border-bottom: 1px solid currentColor; }

.inner-hero {
  position: relative;
  display: grid;
  min-height: min(750px, 84svh);
  overflow: hidden;
  place-items: end stretch;
  background: var(--page-hero, linear-gradient(135deg, #221a15, #090807)) center 40% / cover no-repeat;
}
.inner-hero__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,6,.9) 0%, rgba(8,7,6,.2) 65%), linear-gradient(90deg, rgba(8,7,6,.58), transparent 70%); }
.inner-hero__content { position: relative; z-index: 1; padding: 185px 0 70px; }
.inner-hero h1 { max-width: 1130px; margin: 0; font-family: var(--serif); font-size: clamp(4.3rem, 9vw, var(--page-title-max, 152px)); font-weight: 400; letter-spacing: -.06em; line-height: .86; text-wrap: balance; }
.inner-hero__content > p:last-child { max-width: 700px; margin: 34px 0 0; font-size: clamp(1.05rem, 1.6vw, 1.35rem); text-wrap: pretty; }

.catalogue .section-shell { display: grid; gap: 110px; }
.catalogue-card { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(45px, 7vw, 100px); align-items: center; }
.catalogue-card:nth-child(even) .catalogue-card__image { order: 2; }
.catalogue-card__image { min-height: 610px; overflow: hidden; border-radius: 22px; background: var(--ink-soft); }
.catalogue-card__image img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; transition: transform 700ms ease; }
.catalogue-card__image:hover img { transform: scale(1.025); }
.catalogue-card__copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.4rem, 6.2vw, 6.7rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.catalogue-card__copy > p:not(.section-index) { max-width: 650px; }
.catalogue-card__facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0; }
.catalogue-card__facts span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; font-weight: 700; }

.show-intro__grid { display: grid; grid-template-columns: minmax(0, 1.13fr) minmax(300px, .67fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.show-intro__copy h2 { margin: 0 0 36px; font-family: var(--serif); font-size: clamp(3.1rem, 5.9vw, 6.3rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.show-intro__copy > p { max-width: 760px; text-wrap: pretty; }
.show-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 42px; }
.show-facts { position: sticky; top: 110px; }
.show-facts > img { width: 100%; max-height: 560px; border-radius: 20px; object-fit: cover; }
.show-facts dl { margin: 25px 0 0; border-top: 1px solid var(--line); }
.show-facts dl > div { display: grid; grid-template-columns: 95px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.show-facts dt { color: var(--wine); font-size: .71rem; font-weight: 700; }
.show-facts dd { margin: 0; font-size: .88rem; }

.highlights { padding: 85px 0; background: var(--paper-deep); color: var(--ink); }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.highlight-card { min-height: 200px; padding: 34px; border-right: 1px solid var(--line); }
.highlight-card:last-child { border-right: 0; }
.highlight-card p { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.5vw, 2.5rem); line-height: 1.08; }

.media-section { background: var(--ink); color: var(--paper); }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 54px 24px; }
.video-card { min-width: 0; }
.video-frame { position: relative; overflow: hidden; border-radius: 18px; background: #000; aspect-ratio: 16 / 9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card h3 { margin: 22px 0 5px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; line-height: 1; }
.video-card p { margin: 0; color: #a69e96; }
.center-action { display: flex; justify-content: center; margin-top: 70px; }

.gallery-section { background: var(--paper); color: var(--ink); }
.masonry-grid { columns: 3 300px; column-gap: 18px; }
.gallery-item { position: relative; display: block; width: 100%; margin: 0 0 18px; padding: 0; overflow: hidden; break-inside: avoid; border: 0; border-radius: 16px; background: #d8d0c5; cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform 550ms ease, filter 300ms ease; }
.gallery-item:hover img { transform: scale(1.025); filter: saturate(1.08); }
.gallery-item > span { position: absolute; right: 12px; bottom: 12px; padding: 7px 11px; border-radius: 999px; background: rgba(9,8,7,.82); color: var(--paper); font-size: .66rem; font-weight: 700; }
.masonry-grid--large { columns: 4 260px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 42px; }
.gallery-filters button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; }
.gallery-filters button.is-active { background: var(--ink); color: var(--paper); }
.gallery-item[hidden] { display: none; }
.lightbox { width: min(1400px, calc(100vw - 30px)); max-width: none; height: min(920px, calc(100svh - 30px)); max-height: none; padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: #050504; }
.lightbox::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(10px); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox__close { position: absolute; z-index: 1; top: 14px; right: 14px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: rgba(9,8,7,.72); color: var(--paper); cursor: pointer; }

.timeline { background: var(--paper); }
.timeline .section-shell { display: grid; gap: 120px; }
.timeline-item { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.timeline-item:nth-child(even) .timeline-item__image { order: 2; }
.timeline-item__image { position: relative; }
.timeline-item__image img { width: 100%; max-height: 700px; border-radius: 22px; object-fit: cover; }
.timeline-item__image span { position: absolute; right: 18px; bottom: 18px; max-width: calc(100% - 36px); padding: 9px 13px; border-radius: 999px; background: rgba(9,8,7,.82); color: var(--paper); font-size: .68rem; }
.timeline-item__copy h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5.8rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.timeline-item__copy p:last-child { max-width: 630px; font-size: 1.05rem; }

.events { background: var(--paper); }
.event-card { display: grid; grid-template-columns: 150px 1fr auto; gap: 40px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); }
.event-card--with-image { grid-template-columns: 160px 120px 1fr auto; }
.event-card__thumb { overflow: hidden; border-radius: 16px; aspect-ratio: 4 / 3; background: var(--paper-deep); }
.event-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.event-card:first-child { border-top: 1px solid var(--line); }
.event-card__date { display: flex; flex-direction: column; }
.event-card__date strong { font-family: var(--serif); font-size: 4.8rem; font-weight: 400; line-height: .8; }
.event-card__date span { margin-top: 12px; color: var(--wine); font-size: .73rem; font-weight: 700; }
.event-card__main .section-index { margin-bottom: 10px; }
.event-card__main h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 400; line-height: 1; }
.event-card__main > p:last-child { margin: 10px 0 0; }
.empty-state { max-width: 760px; padding: 70px; border-radius: 20px; background: var(--paper-deep); }
.empty-state h2 { margin-top: 0; font-family: var(--serif); font-size: 3rem; font-weight: 400; }
.agenda-notice { margin: 0 0 38px; padding: 18px 22px; border-radius: 14px; background: #eadcc5; }
.past-events { background: var(--paper-deep); }
.past-events__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.past-event { display: flex; min-height: 210px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.2); transition: transform 200ms ease, background 200ms ease; }
.past-event:hover { transform: translateY(-3px); background: rgba(255,255,255,.45); }
.past-event time { color: var(--wine); font-size: .72rem; font-weight: 700; }
.past-event strong { margin: auto 0 20px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1.05; }
.past-event span { font-size: .82rem; }
.event-detail { background: var(--paper); color: var(--ink); }
.event-detail__grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 130px); align-items: start; }
.event-detail__image { width: 100%; max-height: 720px; border-radius: 22px; object-fit: cover; }
.event-detail__copy h2 { margin: 0 0 35px; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5.6rem); font-weight: 400; line-height: .94; }
.event-detail__copy dl { margin: 0; border-top: 1px solid var(--line); }
.event-detail__copy dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.event-detail__copy dt { color: var(--wine); font-size: .72rem; font-weight: 700; }
.event-detail__copy dd { margin: 0; }
.event-detail__text { max-width: 760px; margin-top: 36px; }

.press-wall { background: var(--paper); }
.press-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.press-card { display: flex; flex-direction: column; min-height: 370px; margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.2); }
.press-card__logo { display: grid; width: 160px; height: 70px; place-items: center start; }
.press-card__logo img { max-width: 155px; max-height: 58px; object-fit: contain; }
.press-card p { margin: auto 0 28px; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.55rem); line-height: 1.06; text-wrap: pretty; }
.press-card cite { color: var(--wine); font-size: .75rem; font-style: normal; font-weight: 700; }

.people { background: var(--paper); }
.people-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 24px; }
.person-card { display: grid; grid-template-columns: 190px 1fr; gap: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.person-card img { width: 190px; aspect-ratio: 4 / 5; border-radius: 16px; object-fit: cover; }
.person-card h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 400; line-height: 1; }
.person-card__shows { color: var(--wine); font-size: .78rem; font-weight: 700; }

.contact-page { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(60px, 10vw, 150px); }
.contact-copy h2 { margin: 0 0 34px; font-family: var(--serif); font-size: clamp(3.5rem, 6.4vw, 7rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.contact-copy > p:not(.section-index) { max-width: 650px; font-size: 1.1rem; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 40px; }
.contact-cards { display: grid; gap: 18px; }
.contact-cards article { display: flex; flex-direction: column; align-items: flex-start; min-height: 235px; padding: 32px; border-radius: 18px; background: var(--paper-deep); }
.contact-cards h3 { margin: auto 0 18px; font-family: var(--serif); font-size: 2.5rem; font-weight: 400; }
.contact-cards a { margin-top: 7px; border-bottom: 1px solid currentColor; }

.legal-page { background: var(--paper); }
.booking-strip { padding: 90px 0; background: var(--wine); }
.booking-strip__inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.booking-strip h2 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.4rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.booking-strip .button { flex: 0 0 auto; }

@media (max-width: 980px) {
  .catalogue-card, .show-intro__grid, .timeline-item, .contact-grid { grid-template-columns: 1fr; }
  .catalogue-card:nth-child(even) .catalogue-card__image, .timeline-item:nth-child(even) .timeline-item__image { order: 0; }
  .catalogue-card__image, .catalogue-card__image img { min-height: 520px; }
  .show-facts { position: static; display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
  .show-facts dl { margin-top: 0; }
  .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .inner-hero { min-height: 680px; }
  .inner-hero__content { padding: 140px 0 48px; }
  .inner-hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); line-height: .89; }
  .inner-hero__content > p:last-child { font-size: 1rem; }
  .catalogue .section-shell, .timeline .section-shell { gap: 75px; }
  .catalogue-card { gap: 34px; }
  .catalogue-card__image, .catalogue-card__image img { min-height: 440px; border-radius: 16px; }
  .catalogue-card__copy h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .show-intro__copy h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .show-actions { align-items: stretch; flex-direction: column; }
  .show-facts { display: block; }
  .show-facts dl { margin-top: 22px; }
  .highlight-grid, .video-grid, .press-grid { grid-template-columns: 1fr; }
  .highlight-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .highlight-card:last-child { border-bottom: 0; }
  .video-grid { gap: 48px; }
  .masonry-grid, .masonry-grid--large { columns: 2 140px; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; border-radius: 11px; }
  .gallery-item > span { display: none; }
  .timeline-item { gap: 34px; }
  .timeline-item__copy h2 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .event-card { grid-template-columns: 80px 1fr; gap: 20px; padding: 28px 0; }
  .event-card--with-image { grid-template-columns: 96px 1fr; }
  .event-card__thumb { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
  .event-card__date strong { font-size: 3.6rem; }
  .event-card__action { grid-column: 2; }
  .event-card__action .button { width: fit-content; }
  .past-events__grid { grid-template-columns: 1fr; }
  .event-detail__grid { grid-template-columns: 1fr; }
  .event-detail__copy dl > div { grid-template-columns: 95px 1fr; }
  .press-card { min-height: 320px; padding: 26px; }
  .person-card { grid-template-columns: 105px 1fr; gap: 18px; }
  .person-card img { width: 105px; border-radius: 12px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .booking-strip__inner { align-items: flex-start; flex-direction: column; }
  .booking-strip .button { width: 100%; }
  .empty-state { padding: 38px 24px; }
}
