:root {
  --cream: #faf6f1;
  --cream-2: #f2ebe1;
  --rose: #e8c4b8;
  --rose-deep: #d4a09a;
  --terre: #b8654f;
  --terre-deep: #9d5240;
  --terre-dark: #8e4636;
  --ink: #1a1614;
  --ink-soft: #2b2522;
  --grey: #4a4540;
  --grey-soft: #7a726b;
  --line: #dcd2c4;
  --container-max: 1320px;
  --max: var(--container-max);
  --gutter: 20px;
  --gutter-mobile: var(--gutter);
  --section-y: 64px;
  --section-space-mobile: var(--section-y);
  --measure-mobile: 36ch;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --fs-display: clamp(2.25rem, 8vw, 5.75rem);
  --fs-h1: clamp(2rem, 6.5vw, 4.5rem);
  --fs-h2: clamp(1.75rem, 5vw, 3.5rem);
  --fs-h3: clamp(1.375rem, 3.2vw, 1.875rem);
  --fs-lead: clamp(1rem, 2.6vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.6875rem;
  --home-hero-image: url("/assets/uploads/maison-rose-facade-hero.jpg");
}

@media (min-width: 640px) {
  :root {
    --gutter: 24px;
    --section-y: 80px;
  }
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --section-y: 96px;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 40px;
    --section-y: 120px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-bottom: 100px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: var(--fs-body);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.40  0 0 0 0 0.35  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@media (hover: none) {
  body::before {
    display: none;
  }
}

h1,
h2,
h3,
h4,
.serif {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
}

p,
ul,
ol,
figure {
  margin: 0;
}

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

:focus-visible {
  outline: 2px solid var(--terre);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--cream);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.hand {
  font-family: "Caveat", cursive;
}

.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

:where(
  .hero-grid,
  .headline-grid,
  .page-hero-grid,
  .feat-grid,
  .history-inner,
  .visit-grid,
  .ct-grid,
  .checkout-grid,
  .bio-grid,
  .w-hero-grid,
  .filters,
  .stage-grid,
  .miss-grid,
  .team-grid,
  .docs-grid,
  .teaser-grid,
  .foot-grid,
  .headline-meta,
  .feat-meta,
  .info-grid,
  .stats
) > * {
  min-width: 0;
}

.util {
  background: var(--ink);
  color: #e8ddd0;
  font-size: 0.5625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-block: 6px;
}

.util-viewport {
  min-height: 1rem;
}

.util-track {
  display: grid;
  min-height: 1rem;
}

.util-item {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
  padding-inline: max(12px, var(--gutter));
}

.util-item.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.util span {
  display: none;
  opacity: 0.78;
  white-space: nowrap;
}

.util strong {
  min-width: 0;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.util .sep {
  display: none;
  color: var(--terre);
  opacity: 0.72;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .nav {
    background: rgba(250, 246, 241, 0.98);
  }
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-inner nav {
  grid-column: 1 / -1;
  width: 100%;
}

.nav-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.nav-end {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 44px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text .a {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--ink);
}

.brand-text .b {
  display: none;
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-soft);
}

body[data-lang="en"] .brand-text .a {
  font-size: 0.9375rem;
  font-style: normal;
}

.nav-actions {
  display: none;
  align-items: center;
  justify-self: end;
  gap: 8px;
  width: auto;
}

.nav-cta-stack {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  justify-self: start;
  align-self: center;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.nav-actions .lang-switch {
  display: none;
}

.nav-end .lang-switch {
  display: inline-flex;
  padding: 2px;
  background: rgba(255, 255, 255, 0.82);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--grey);
  min-width: 40px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-end .lang-btn {
  min-width: 32px;
  min-height: 32px;
  padding: 4px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--cream);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  white-space: nowrap;
  justify-self: stretch;
  width: 100%;
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.nav-cta .arr {
  display: none;
}

.nav-cta:hover {
  background: var(--terre);
  transform: translateY(-1px);
}

.nav-cta--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: var(--line);
}

.nav-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-color: var(--terre);
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  align-self: center;
  background: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.burger:hover {
  border-color: var(--ink);
  background: var(--cream);
  transform: translateY(-1px);
}

.burger svg {
  display: block;
}

.menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(250, 246, 241, 0.98);
  box-shadow: 0 30px 60px -40px rgba(26, 22, 20, 0.35);
  gap: 6px;
}

.nav.open .menu {
  display: grid;
}

.menu li {
  min-width: 0;
}

.menu-mobile-only {
  display: none;
}

.menu a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  color: var(--grey);
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--ink);
}

.menu a::after {
  content: "";
  flex: 1 1 auto;
  margin-left: 14px;
  height: 1px;
  background: var(--line);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.menu a:hover::after,
.menu a.active::after {
  opacity: 1;
  transform: scaleX(1);
  background: var(--terre);
}

.menu-mobile-only {
  display: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--terre);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--rose);
}

.btn .arr,
.nav-cta .arr {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .arr,
.nav-cta:hover .arr {
  transform: translateX(4px);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.cta-row > * {
  width: 100%;
}

.ticket-callout {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 241, 0.98)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px -30px rgba(26, 22, 20, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ticket-callout:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 101, 79, 0.32);
  box-shadow: 0 24px 42px -30px rgba(26, 22, 20, 0.22);
}

.ticket-callout__eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
}

.ticket-callout__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.02;
  color: var(--ink);
}

.ticket-callout__copy {
  color: var(--grey);
  font-size: 0.9375rem;
  line-height: 1.66;
  max-width: 34ch;
}

.ticket-callout__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticket-callout__link .arr {
  display: inline-block;
  transition: transform 0.25s ease;
}

.ticket-callout:hover .ticket-callout__link .arr {
  transform: translateX(4px);
}

.event-audio {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
  max-width: 420px;
}

.event-audio-label {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
}

.event-audio audio {
  width: 100%;
  min-height: 42px;
  accent-color: var(--terre);
}

/* Fallback sans JS : le contenu reste visible. */
.reveal {
  opacity: 1;
  transform: none;
}

/* Animations seulement si le JS s'est bien lancé. */
html.has-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal.d2 {
  transition-delay: 0.12s;
}

.reveal.d3 {
  transition-delay: 0.24s;
}

.reveal.d4 {
  transition-delay: 0.36s;
}

.eyebrow,
.num-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terre-deep);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terre-deep);
}

.page-hero {
  padding-block: 18px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

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

.page-hero .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 22, 20, 0.56);
  line-height: 1.5;
  margin-bottom: 12px;
}

.page-hero .crumbs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(26, 22, 20, 0.72);
}

.page-hero .crumbs a::before {
  content: "←";
  font-size: 0.9em;
  line-height: 1;
}

.page-hero .crumbs a:hover {
  color: var(--terre);
}

.page-hero h1 {
  font-size: clamp(2rem, 8.3vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  max-width: 14ch;
  text-wrap: balance;
}

.page-hero h1 .line {
  display: inline;
}

.page-hero h1 .line + .line::before {
  content: " ";
}

.page-hero h1 em {
  color: var(--terre);
  font-style: italic;
  font-weight: 300;
}

.page-hero .lede {
  width: 100%;
  max-width: 34ch;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.58;
  color: var(--grey);
}

.page-hero-media,
.page-hero-carousel {
  width: 100%;
}

.page-hero-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-2);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-carousel-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-2);
}

.page-hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.page-hero-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.page-hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(184, 101, 79, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.page-hero-carousel-dot.is-active {
  width: 26px;
  background: var(--terre);
}

body[data-lang="en"] .page-hero-copy,
body[data-lang="en"] .page-hero .lede {
  max-width: 100%;
}

body[data-lang="en"] .page-hero h1 {
  max-width: 16ch;
}

body[data-lang="en"] .hero h1 {
  max-width: 12ch;
}

body[data-lang="en"] .hero-sub,
body[data-lang="en"] .hero-lede {
  max-width: 34rem;
}

.empty-note {
  width: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--grey);
  font-size: var(--fs-small);
  line-height: 1.68;
}

.sec-head {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.sec-head .left {
  display: grid;
  gap: 10px;
}

.sec-head .left h2 {
  font-size: var(--fs-h2);
  line-height: 1.02;
}

.sec-head .left h2 .it {
  font-style: italic;
  color: var(--terre);
  font-weight: 300;
}

.sec-head .right {
  width: 100%;
  max-width: 42rem;
  color: var(--grey);
  font-size: var(--fs-body);
  line-height: 1.68;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 42px;
}

.foot-grid > :nth-child(1) { order: 1; }
.foot-grid > :nth-child(2) { order: 2; }
.foot-grid > :nth-child(4) { order: 3; }
.foot-grid > :nth-child(3) { order: 4; }

footer {
  background: var(--ink);
  color: rgba(232, 221, 208, 0.7);
  padding: 82px 0 30px;
  margin-top: 0;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -16px rgba(26, 22, 20, 0.18);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-cta-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta-bar.is-hidden-by-cta {
  transform: translateY(100%);
  pointer-events: none;
}

body.has-mobile-cta main {
  padding-bottom: 100px;
}

.mobile-cta {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-cta:active {
  transform: scale(0.97);
}

.mobile-cta--primary {
  background: var(--ink);
  color: var(--cream);
}

.mobile-cta--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.mobile-cta .arr {
  display: inline-block;
  transition: transform 0.2s ease;
}

.mobile-cta:hover .arr,
.mobile-cta:focus-visible .arr {
  transform: translateX(2px);
}

.mobile-cta[hidden] {
  display: none;
}

.foot-grid h4 {
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}

.foot-grid .brand-blk .a {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.625rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
}

.foot-grid .brand-blk p,
.foot-note {
  max-width: 30ch;
  font-size: var(--fs-small);
  line-height: 1.68;
}

.foot-note strong {
  color: var(--cream);
  font-weight: 600;
}

.foot-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.foot-grid li {
  font-size: var(--fs-small);
  line-height: 1.72;
}

.foot-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}

.foot-social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(232, 221, 208, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.foot-social-link:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--ink);
  transform: translateY(-1px);
}

.foot-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.foot-social-helloasso {
  display: inline-flex;
  align-items: center;
}

.foot-social-helloasso-frame {
  width: 146px;
  height: 44px;
  overflow: hidden;
  border-radius: 999px;
}

.foot-social-helloasso-frame iframe {
  display: block;
  width: 172px;
  height: 70px;
  margin: -13px 0 0 -10px;
  background: transparent;
}

.foot-social-link--helloasso {
  width: auto;
  min-width: 132px;
  padding: 0 16px;
}

.foot-social-link__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foot-grid li a:hover,
.foot-grid .contact a:hover,
.foot-bot a:hover {
  color: var(--rose);
}

.foot-support {
  border-top: 1px solid rgba(232, 221, 208, 0.12);
  border-bottom: 1px solid rgba(232, 221, 208, 0.12);
  padding: 20px 0;
  margin-bottom: 24px;
  display: grid;
  gap: 16px;
}

.foot-support-copy .ey {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 221, 208, 0.64);
}

.foot-support-copy p {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  line-height: 1.18;
  font-style: italic;
}

.foot-support-logo {
  width: fit-content;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
}

.foot-support-logo img {
  width: 78px;
  height: auto;
}

.foot-bot {
  border-top: 1px solid rgba(232, 221, 208, 0.15);
  padding-top: 24px;
  display: grid;
  gap: 14px;
  font-size: 0.75rem;
}

.foot-bot .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.stage-img.has-photo img,
.headline-visual .hl-img.has-photo img,
.feat-visual .img.has-photo img,
.past-card .img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline-visual .hl-img.has-photo::before,
.headline-visual .hl-img.has-photo::after,
.feat-visual .img.has-photo::before,
.feat-visual .img.has-photo::after {
  content: none;
}

.headline-visual .hl-img.has-photo.mask-badge::after,
.feat-visual .img.has-photo.mask-badge::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  background: var(--ink);
  border-radius: 0 0 0 999px;
  pointer-events: none;
}

.reg.reg-disabled {
  background: transparent;
  color: var(--grey-soft);
  border: 1px solid var(--line);
  pointer-events: none;
}

.archive-block {
  padding-bottom: 80px;
}

.archive-grid {
  padding-bottom: 0;
}

.stage-grid .empty-note,
.past-grid .empty-note,
.ev-list .empty-note {
  grid-column: 1 / -1;
}

@supports not (aspect-ratio: 1 / 1) {
  .page-hero-media,
  .page-hero-carousel-stage,
  .headline-visual,
  .feat-visual,
  .w-portrait,
  .visit-gallery-stage {
    position: relative;
    height: auto;
  }

  .page-hero-media::before,
  .page-hero-carousel-stage::before,
  .headline-visual::before,
  .feat-visual::before,
  .w-portrait::before,
  .visit-gallery-stage::before {
    content: "";
    display: block;
  }

  .page-hero-media::before,
  .page-hero-carousel-stage::before {
    padding-top: 62.5%;
  }

  .headline-visual::before,
  .feat-visual::before {
    padding-top: 125%;
  }

  .w-portrait::before {
    padding-top: 133.3333%;
  }

  .visit-gallery-stage::before {
    padding-top: 120%;
  }

  .page-hero-media > *,
  .page-hero-carousel-stage > *,
  .headline-visual > *,
  .feat-visual > *,
  .w-portrait > *,
  .visit-gallery-stage > * {
    position: absolute;
    inset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.has-reveal .reveal,
  html.has-reveal .reveal.in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track,
  .util-track,
  .scroll-hint .line {
    animation: none !important;
  }

  .mobile-cta-bar,
  .mobile-cta,
  .mobile-cta .arr {
    transition: none !important;
  }
}

@media (min-width: 640px) {
  .util {
    font-size: var(--fs-small);
    padding-block: 10px;
  }

  .util-item {
    gap: 10px;
  }

  .util span,
  .util .sep {
    display: inline;
  }

  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .nav-inner nav {
    grid-column: 1 / -1;
  }

  .nav-head {
    justify-self: start;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text .a {
    font-size: 1.125rem;
  }

  .brand-text .b {
    display: block;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-row > * {
    width: auto;
  }

  .page-hero {
    padding-block: 32px 40px;
  }

  .page-hero-grid {
    gap: 24px;
  }

  .page-hero .lede {
    max-width: 42ch;
    font-size: var(--fs-lead);
  }

  .sec-head {
    gap: 20px;
    margin-bottom: 40px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }

  .foot-bot {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .util {
    font-size: 0.8125rem;
    padding-block: 13px;
  }

  .util-item {
    gap: 12px;
  }

  .ticket-callout {
    max-width: 32rem;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-text .a {
    font-size: 1.1875rem;
  }

  .brand-text .b {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
  }

  .nav-inner {
    padding-block: 18px;
    gap: 16px;
  }

  .page-hero {
    padding-block: 34px 42px;
  }

  .page-hero-grid {
    gap: 28px;
  }

  .page-hero-media,
  .page-hero-carousel-stage {
    aspect-ratio: 16 / 9;
  }

  .sec-head {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 34rem);
    align-items: end;
    gap: 32px;
    margin-bottom: 48px;
  }

  .foot-grid {
    gap: 42px;
  }

  .foot-support {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

}

@media (min-width: 1024px) {
  .mobile-cta-bar {
    display: none;
  }

  body.has-mobile-cta main {
    padding-bottom: 0;
  }

  .nav-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
  }

  .nav-end .lang-switch {
    display: none;
  }

  .nav-actions {
    display: flex;
  }

  .nav-actions .lang-switch {
    display: inline-flex;
  }

  .nav-head {
    grid-column: auto;
  }

  .nav-inner nav {
    grid-column: auto;
  }

  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.6vw, 24px);
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav.open .menu {
    display: flex;
  }

  html.has-reveal .nav-actions {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .nav-cta-stack {
    display: grid;
    min-width: 184px;
  }

  .nav-cta {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.75rem;
  }

  .nav-cta .arr {
    display: inline-block;
  }

  .menu a {
    width: auto;
    min-height: 48px;
    padding: 8px 0;
    white-space: nowrap;
  }

  .menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    margin: 0;
    width: auto;
    opacity: 0;
    height: 1px;
    transform: scaleX(0);
  }

  .menu a:hover::after,
  .menu a.active::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .menu-mobile-only {
    display: none;
  }

  .burger {
    display: none;
  }

  body[data-lang="en"] .menu {
    gap: clamp(12px, 1.3vw, 20px);
  }

  .page-hero {
    padding-block: 56px 50px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
    gap: clamp(28px, 3.6vw, 52px);
    align-items: center;
  }

  .page-hero-media,
  .page-hero-carousel {
    width: min(100%, 520px);
    justify-self: end;
  }

  .page-hero h1 {
    max-width: 15ch;
  }

  .page-hero .crumbs a::before {
    content: "";
  }

  .page-hero h1 .line {
    display: block;
  }

  .page-hero h1 .line + .line::before {
    content: "";
  }

  .page-hero .lede {
    max-width: 42rem;
  }

  .sec-head {
    gap: 40px;
    margin-bottom: 64px;
  }

  footer {
    padding: 100px 0 30px;
  }

  .foot-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 70px;
  }

  .foot-support {
    padding: 26px 0;
    margin-bottom: 26px;
  }

  .headline-visual .hl-img.has-photo.mask-badge::after,
  .feat-visual .img.has-photo.mask-badge::after {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 1280px) {
  .nav-inner {
    gap: 28px;
  }

  .page-hero {
    padding-block: 76px 58px;
  }
}
