:root {
  --ink: #142239;
  --paper: #f7f5ef;
  --white: #ffffff;
  --mist: #d8e0e9;
  --terracotta: #c9795e;
  --shadow: 0 22px 70px rgba(20, 34, 57, 0.16);
  --max: 1160px;
  --header: 76px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: var(--header);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 5vw;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 8px 26px rgba(20, 34, 57, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0.1rem;
  text-decoration: none;
}

.brand span {
  font-size: 1rem;
  font-weight: 760;
  text-transform: uppercase;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle__line + .menu-toggle__line {
  margin-top: -12px;
}

.site-header.is-open .menu-toggle__line:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle__line:nth-child(2) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.section__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section--paper {
  background: var(--paper);
}

.section--mist {
  background: var(--mist);
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 0.98;
}

h1 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 5.3rem;
  font-weight: 300;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 4rem;
  font-weight: 760;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0.78rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  border-color: var(--terracotta);
  color: var(--white);
  background: var(--terracotta);
}

.button--ghost {
  color: var(--white);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: var(--header);
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 7% 6% 9% 44%;
  border: 2px solid rgba(201, 121, 94, 0.58);
  border-bottom-right-radius: 160px;
  border-top-left-radius: 160px;
  content: "";
}

.hero::after {
  position: absolute;
  top: 16%;
  right: -12%;
  width: 54rem;
  height: 54rem;
  border-radius: 50%;
  background: rgba(216, 224, 233, 0.13);
  content: "";
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 34, 57, 0.92), rgba(20, 34, 57, 0.56), rgba(20, 34, 57, 0.12));
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 18%;
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0 4rem;
}

.eyebrow {
  max-width: 42rem;
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-weight: 800;
  text-transform: uppercase;
}

.hero__subtitle {
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero__line {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  width: 2px;
  height: 54px;
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
}

.scroll-cue::after {
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
  animation: cue 1.4s ease-in-out infinite;
}

.intro {
  padding: 5rem 0;
}

.intro__grid,
.portrait__grid,
.work__grid,
.parcours__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: start;
}

.intro__copy h2 {
  max-width: 9em;
}

.intro__statement {
  position: relative;
  padding: 1.4rem 0 0 2rem;
  font-size: 1.15rem;
}

.intro__statement::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(var(--terracotta), rgba(201, 121, 94, 0.1));
  content: "";
}

.intro__statement::after {
  position: absolute;
  right: 0;
  bottom: -1.35rem;
  width: min(10rem, 30%);
  height: 3.6rem;
  border-right: 2px solid rgba(201, 121, 94, 0.58);
  border-bottom: 2px solid rgba(201, 121, 94, 0.58);
  border-bottom-right-radius: 54px;
  content: "";
  pointer-events: none;
}

.intro__statement p {
  position: relative;
  z-index: 1;
}

.note {
  color: var(--terracotta);
  font-size: 0.95rem;
}

.portrait,
.parcours {
  background: var(--white);
}

.portrait::before {
  position: absolute;
  top: -16rem;
  left: -16rem;
  width: 43rem;
  height: 43rem;
  border-radius: 50%;
  background: var(--mist);
  content: "";
}

.portrait__grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.portrait__figure {
  position: relative;
}

.portrait__figure::before {
  position: absolute;
  inset: -2rem 3rem 2rem -2rem;
  border: 2px solid var(--terracotta);
  border-bottom-left-radius: 160px;
  content: "";
}

.portrait__figure img,
.contact__image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-top-left-radius: 220px;
  border-top-right-radius: 220px;
  box-shadow: var(--shadow);
}

.portrait__text {
  max-width: 40rem;
}

blockquote {
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--terracotta);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 3rem;
}

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

.universe-card,
.repertoire-card,
.timeline article {
  border: 1px solid rgba(20, 34, 57, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(20, 34, 57, 0.08);
}

.universe-card {
  display: grid;
  overflow: hidden;
}

.universe-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 420ms ease;
}

.universe-card:hover img {
  transform: scale(1.035);
}

.universe-card div,
.repertoire-card {
  padding: 1.5rem;
}

.interpretation {
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.interpretation__image {
  position: absolute;
  inset: 0;
}

.interpretation__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 34, 57, 0.95), rgba(20, 34, 57, 0.58), rgba(20, 34, 57, 0.18));
  content: "";
}

.interpretation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interpretation__content {
  min-height: 88vh;
  display: grid;
  align-content: center;
  gap: 3rem;
  padding: 7rem 0;
}

.interpretation h2,
.interpretation blockquote,
.interpretation p {
  color: var(--white);
}

.interpretation__headline {
  max-width: 58rem;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 62rem;
}

.text-columns p {
  padding-top: 1rem;
  border-top: 2px solid rgba(201, 121, 94, 0.9);
}

.spectacle {
  isolation: isolate;
}

.spectacle::before {
  position: absolute;
  left: -13rem;
  top: -8rem;
  z-index: 0;
  width: min(44rem, 70vw);
  height: 34rem;
  background: var(--mist);
  border-radius: 52% 48% 57% 43%;
  content: "";
  pointer-events: none;
  transform: rotate(-18deg);
}

.spectacle::after {
  position: absolute;
  right: -13rem;
  top: 4rem;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border: 2px solid rgba(201, 121, 94, 0.32);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.spectacle__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.spectacle__media {
  position: relative;
  width: min(390px, 100%);
  justify-self: center;
}

.spectacle__media::before {
  position: absolute;
  left: -1.8rem;
  top: 2rem;
  z-index: 0;
  width: 7rem;
  height: 7rem;
  background: var(--ink);
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  content: "";
}

.spectacle__media::after {
  position: absolute;
  left: -2rem;
  bottom: -1.8rem;
  z-index: 0;
  width: 7rem;
  height: 11rem;
  border: 2px solid var(--terracotta);
  border-right: 0;
  border-bottom-left-radius: 6rem;
  content: "";
}

.spectacle__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-top-left-radius: 14rem;
  border-top-right-radius: 14rem;
  box-shadow: var(--shadow);
}

.spectacle__media--poster {
  width: min(430px, 100%);
}

.spectacle__media--poster::before {
  left: -1.25rem;
  top: 2.4rem;
}

.spectacle__media--poster::after {
  left: -1.4rem;
  bottom: -1.2rem;
}

.spectacle__media--poster img {
  aspect-ratio: 1055 / 1491;
  object-fit: contain;
  object-position: center;
  border-top-left-radius: 14rem;
  border-top-right-radius: 14rem;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background: var(--ink);
}

.spectacle__content {
  max-width: 55rem;
}

.spectacle h2 {
  max-width: 10.5ch;
}

.spectacle__subtitle {
  margin: -0.6rem 0 1.5rem;
  color: var(--terracotta);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spectacle__intro {
  max-width: 43rem;
  color: rgba(20, 34, 57, 0.78);
}

.spectacle-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.spectacle-step {
  padding-top: 0.9rem;
  border-top: 2px solid rgba(201, 121, 94, 0.68);
}

.spectacle-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 0.9rem;
  color: var(--terracotta);
  border: 1px dashed rgba(20, 34, 57, 0.55);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 800;
}

.spectacle-step h3 {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.spectacle-step p {
  color: rgba(20, 34, 57, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.spectacle__lower {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.spectacle-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: stretch;
}

.spectacle-gallery img {
  width: 100%;
  height: clamp(210px, 22vw, 300px);
  object-fit: cover;
  object-position: 50% 22%;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 0 16px 40px rgba(20, 34, 57, 0.12);
}

.spectacle-gallery img:nth-child(2) {
  object-position: 50% 32%;
}

.spectacle-gallery img:nth-child(3) {
  object-position: 52% 48%;
}

.spectacle-gallery img:nth-child(4) {
  object-position: 50% 18%;
}

.spectacle__aside {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.spectacle-quote {
  position: relative;
  margin: 0;
  padding: 1.45rem 1.6rem 1.5rem 4.1rem;
  color: var(--white);
  background: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.spectacle-quote::before {
  position: absolute;
  left: 1.25rem;
  top: 0.45rem;
  color: var(--terracotta);
  content: "“";
  font-size: 4.5rem;
  line-height: 1;
}

.spectacle-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.spectacle-point {
  padding: 0.95rem 1rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.74);
}

.spectacle-point h3 {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.spectacle-point p {
  color: rgba(20, 34, 57, 0.74);
  font-size: 0.86rem;
  line-height: 1.45;
}

.work__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
}

.work__image {
  position: relative;
}

.work__image::before {
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 60%;
  height: 55%;
  border: 2px solid var(--terracotta);
  border-bottom-right-radius: 140px;
  content: "";
}

.work__image img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-top-right-radius: 180px;
  box-shadow: var(--shadow);
}

.work__copy h3 {
  color: var(--terracotta);
}

.repertoire-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.song-list {
  color: var(--terracotta);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.stats p {
  display: grid;
  min-height: 98px;
  align-content: center;
  border-top: 3px solid var(--terracotta);
  margin: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.stats strong {
  color: var(--terracotta);
  font-size: 2.1rem;
  line-height: 1;
}

.prestations {
  overflow: hidden;
}

.prestations::before {
  position: absolute;
  right: -25rem;
  top: -22rem;
  width: 42rem;
  height: 42rem;
  border: 2px solid rgba(201, 121, 94, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.prestations::after {
  position: absolute;
  left: -9rem;
  bottom: 1.2rem;
  z-index: 0;
  width: min(64rem, 78vw);
  height: 28rem;
  background: var(--mist);
  border-radius: 58% 42% 55% 45%;
  content: "";
  pointer-events: none;
  transform: rotate(-10deg);
}

.prestations__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.prestations__lead {
  max-width: 34rem;
  color: rgba(20, 34, 57, 0.78);
  font-size: 1.18rem;
}

.prestations-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.prestations-card,
.testimonial-card {
  border: 1px solid rgba(20, 34, 57, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(20, 34, 57, 0.08);
}

.prestations-card {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: space-between;
  overflow: hidden;
  padding: 1.45rem;
}

.prestations-card::before {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(201, 121, 94, 0.45);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.prestations-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--terracotta);
  border: 1px solid rgba(201, 121, 94, 0.45);
  border-radius: 50%;
  font-weight: 800;
}

.prestations-card h3 {
  margin-bottom: 0.75rem;
}

.prestations-card p {
  color: rgba(20, 34, 57, 0.76);
}

.prestations-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.prestations-details p {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.prestations-details span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--terracotta);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.parcours::before {
  position: absolute;
  right: -20rem;
  bottom: -24rem;
  width: 56rem;
  height: 56rem;
  border-radius: 50%;
  background: var(--mist);
  content: "";
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding-left: 2rem;
}

.timeline__kicker {
  margin: 0 0 -0.2rem;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.3rem;
  width: 2px;
  background: var(--terracotta);
  content: "";
}

.timeline article {
  position: relative;
  padding: 1.25rem;
  background: var(--paper);
}

.timeline article::before {
  position: absolute;
  top: 1.45rem;
  left: -2.05rem;
  width: 12px;
  height: 12px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.timeline time {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--terracotta);
  font-weight: 800;
}

.timeline blockquote {
  margin-top: 0.4rem;
  font-size: 1.1rem;
}

.testimonials {
  overflow: hidden;
}

.testimonials::before {
  position: absolute;
  left: -16rem;
  bottom: -20rem;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: rgba(211, 220, 229, 0.58);
  content: "";
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.testimonial-card::before {
  display: block;
  width: 4rem;
  height: 3px;
  margin-bottom: 1.4rem;
  background: var(--terracotta);
  content: "";
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.testimonial-card figcaption {
  margin-top: 1.1rem;
  color: var(--terracotta);
  font-weight: 800;
}

.galerie {
  overflow: hidden;
}

.galerie .section__inner {
  position: relative;
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(145px, 13vw, 240px);
  gap: clamp(0.7rem, 1.2vw, 1rem);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.gallery-grid::before {
  position: absolute;
  z-index: 0;
  top: -2rem;
  right: -2.5rem;
  width: min(31rem, 58%);
  height: min(17rem, 45%);
  border-top: 2px solid rgba(201, 121, 94, 0.42);
  border-right: 2px solid rgba(201, 121, 94, 0.42);
  border-top-right-radius: 120px;
  content: "";
  pointer-events: none;
}

.gallery-item {
  --gallery-x: 0px;
  --gallery-y: 0px;
  --gallery-focus: 50% 35%;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--ink);
  box-shadow: 0 18px 54px rgba(20, 34, 57, 0.16);
  cursor: zoom-in;
  isolation: isolate;
  transform: translateY(0);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.gallery-item--large {
  --gallery-focus: 50% 16%;
  grid-row: span 2;
  grid-column: span 3;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item:nth-child(2) {
  --gallery-focus: 50% 12%;
}

.gallery-item:nth-child(3) {
  --gallery-focus: 43% 24%;
  grid-row: span 2;
  grid-column: span 1;
}

.gallery-item:nth-child(4) {
  --gallery-focus: 52% 42%;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 3;
}

.gallery-item:nth-child(5) {
  --gallery-focus: 50% 18%;
}

.gallery-item:nth-child(6) {
  --gallery-focus: 50% 14%;
}

.gallery-item::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 31, 0.02) 34%, rgba(11, 18, 31, 0.76) 100%);
  content: "";
  opacity: 0.86;
  transition: opacity 260ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--gallery-focus);
  transform: scale(1.01) translate(var(--gallery-x), var(--gallery-y));
  transition: transform 520ms ease, opacity 220ms ease;
}

.gallery-item__meta {
  position: absolute;
  z-index: 2;
  right: clamp(0.85rem, 1.7vw, 1.25rem);
  bottom: clamp(0.85rem, 1.7vw, 1.25rem);
  left: clamp(0.85rem, 1.7vw, 1.25rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
  transform: translateY(0.35rem);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-item__meta span {
  display: grid;
  flex: 0 0 2.15rem;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--white);
  background: rgba(201, 121, 94, 0.72);
  font-size: 0.72rem;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  box-shadow: 0 26px 70px rgba(20, 34, 57, 0.24);
  transform: translateY(-0.35rem);
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.88;
  transform: scale(1.055) translate(var(--gallery-x), var(--gallery-y));
}

.gallery-item:hover .gallery-item__meta,
.gallery-item:focus-visible .gallery-item__meta {
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact::before {
  position: absolute;
  inset: 8% auto auto -10rem;
  width: 34rem;
  height: 34rem;
  border: 2px solid rgba(201, 121, 94, 0.58);
  border-radius: 50%;
  content: "";
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact__lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 1.8rem 0;
}

.contact-actions span,
.contact-email,
.contact-phone {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible,
.contact-phone:hover,
.contact-phone:focus-visible {
  color: var(--white);
}

.qr {
  display: inline-grid;
  gap: 0.65rem;
  justify-items: start;
}

.qr img {
  width: 132px;
  border: 8px solid var(--white);
}

.qr figcaption {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 5vw;
  color: var(--ink);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(11, 18, 31, 0.94);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 960px);
  margin: 0;
  transform: translateY(0);
  animation: lightboxIn 260ms ease both;
}

.lightbox img {
  max-height: 82vh;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 0.8rem;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-page {
  min-height: 100vh;
  background: var(--ink);
}

.auth-main {
  min-height: 100vh;
}

.auth-panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
}

.auth-panel::before {
  position: absolute;
  inset: 8% 8% 10% auto;
  width: min(44rem, 72vw);
  height: min(44rem, 72vw);
  border: 2px solid rgba(201, 121, 94, 0.58);
  border-bottom-right-radius: 160px;
  border-top-left-radius: 160px;
  content: "";
}

.auth-panel__media {
  position: absolute;
  inset: 0;
}

.auth-panel__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 34, 57, 0.96), rgba(20, 34, 57, 0.82), rgba(20, 34, 57, 0.34));
  content: "";
}

.auth-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 18%;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 2rem;
  color: var(--white);
  background: rgba(20, 34, 57, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.auth-card__brand {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.auth-card h1 {
  margin-bottom: 1rem;
  font-size: 3.2rem;
}

.auth-card__intro,
.auth-status {
  color: rgba(255, 255, 255, 0.78);
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.auth-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.auth-form input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  padding: 0.8rem 0.9rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.auth-form input:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-top: 1.2rem;
}

.auth-links a,
.auth-back {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.auth-status {
  min-height: 1.5rem;
  margin: 1rem 0;
  font-weight: 700;
}

.auth-back {
  display: inline-flex;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-34px);
  }
  50% {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem 5vw 1.3rem;
    background: rgba(247, 245, 239, 0.98);
    box-shadow: 0 18px 30px rgba(20, 34, 57, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0;
    color: var(--ink);
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .intro__grid,
  .portrait__grid,
  .spectacle__grid,
  .spectacle__lower,
  .work__grid,
  .parcours__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .prestations__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .spectacle__media {
    width: min(330px, 78vw);
    justify-self: start;
  }

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

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

  .spectacle-gallery img {
    clip-path: none;
  }

  .universe-grid,
  .repertoire-grid,
  .prestations-grid,
  .prestations-details,
  .testimonial-grid,
  .text-columns,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 30vw, 280px);
  }

  .gallery-grid .gallery-item,
  .gallery-grid .gallery-item:nth-child(n) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-grid .gallery-item.gallery-item--large {
    grid-row: span 2;
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 68px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: 92vh;
  }

  .hero::before {
    inset: 18% 1rem 12% 1rem;
    border-bottom-right-radius: 92px;
    border-top-left-radius: 92px;
  }

  .hero__media img {
    object-position: 56% 28%;
  }

  h1 {
    max-width: 8ch;
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  blockquote {
    font-size: 1.16rem;
  }

  .intro__statement {
    padding-left: 1.25rem;
  }

  .intro__statement::after {
    display: none;
  }

  .universe-grid,
  .repertoire-grid,
  .prestations-grid,
  .prestations-details,
  .spectacle-steps,
  .spectacle-points,
  .spectacle-gallery,
  .testimonial-grid,
  .text-columns,
  .stats,
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid::before {
    display: none;
  }

  .spectacle::after {
    display: none;
  }

  .spectacle__media {
    width: min(280px, 82vw);
    justify-self: center;
  }

  .spectacle h2 {
    max-width: 9.5ch;
  }

  .spectacle-gallery img {
    height: 260px;
  }

  .gallery-grid .gallery-item,
  .gallery-grid .gallery-item:nth-child(n),
  .gallery-grid .gallery-item.gallery-item--large {
    grid-row: auto;
    grid-column: auto;
    min-height: 280px;
  }

  .gallery-item__meta {
    transform: none;
  }

  .site-footer,
  .contact-actions {
    display: grid;
  }

  .auth-panel {
    padding: 1rem;
  }

  .auth-card {
    padding: 1.35rem;
  }

  .auth-card h1 {
    font-size: 2.4rem;
  }

  .auth-panel__media img {
    object-position: 56% 28%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
