/* ============================================
   Duo Sarya — Design System & Styles
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/CormorantGaramond-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/CormorantGaramond-Italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/CormorantGaramond-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/CormorantGaramond-BoldItalic.woff2') format('woff2');
}

/* --- Custom Properties --- */
:root {
  /* Colours */
  --cream: #F5F0E8;
  --burgundy: #6B2D3E;
  --burgundy-light: #8A3D52;
  --gold: #C4973B;
  --gold-light: #D4AC5A;
  --chapel-blue: #2C3E6B;
  --sage: #5B7B6A;
  --warm-dark: #2A2320;
  --warm-dark-light: #3D3632;
  --parchment: #FDFBF7;
  --selection: rgba(196, 151, 59, 0.2);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Cormorant Garamond', 'Georgia', serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-hero: clamp(3.5rem, 10vw, 8rem);
  --text-hero-sub: clamp(1.125rem, 2.5vw, 1.75rem);

  /* Spacing (8px grid) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 72rem;
  --reading-width: 40rem;
  --section-padding: clamp(4rem, 10vw, 8rem);

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --duration-reveal: 1000ms;
  --reveal-distance: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(42, 35, 32, 0.08);
  --shadow-md: 0 4px 12px rgba(42, 35, 32, 0.1);
  --shadow-lg: 0 8px 30px rgba(42, 35, 32, 0.12);
  --shadow-lift: 0 12px 40px rgba(42, 35, 32, 0.15);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--warm-dark);
  background-color: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

::selection {
  background: var(--selection);
  color: var(--warm-dark);
}

::-moz-selection {
  background: var(--selection);
  color: var(--warm-dark);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Skip to content --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--burgundy);
  color: var(--cream);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  z-index: 1000;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-to-content:focus {
  top: var(--space-4);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* --- Section base --- */
.section {
  padding: var(--section-padding) 0;
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--burgundy);
  text-align: center;
  margin-bottom: var(--space-12);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: var(--text-4xl);
  }
}

/* Gold ornamental divider */
.ornament {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: var(--space-6) auto var(--space-12);
  position: relative;
}

.ornament::before {
  content: '\2666';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--text-sm);
  color: var(--gold);
  background: var(--parchment);
  padding: 0 var(--space-3);
  line-height: 1;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background var(--duration-normal) var(--ease-out),
              padding var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-2) 0;
  box-shadow: var(--shadow-sm);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--cream);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: color var(--duration-normal) var(--ease-out),
              text-shadow var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav-logo {
  text-shadow: none;
}

.nav.scrolled .nav-logo {
  color: var(--burgundy);
}

.nav-links {
  display: none;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: color var(--duration-normal) var(--ease-out),
              text-shadow var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav-links a {
  color: var(--warm-dark);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav.scrolled .nav-links a:hover {
  color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 110;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled .nav-toggle span {
  background: var(--warm-dark);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--warm-dark);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--warm-dark);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal) var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--warm-dark);
  letter-spacing: 0.04em;
  transition: color var(--duration-fast);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--warm-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

/* Stained glass light overlay layers */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 151, 59, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(44, 62, 107, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 60%, rgba(107, 45, 62, 0.08) 0%, transparent 40%);
  animation: lightShift 20s ease-in-out infinite alternate;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(42, 35, 32, 0.45) 0%, transparent 70%),
    linear-gradient(
      to bottom,
      rgba(42, 35, 32, 0.5) 0%,
      rgba(42, 35, 32, 0.4) 30%,
      rgba(42, 35, 32, 0.5) 55%,
      rgba(42, 35, 32, 0.75) 100%
    );
}

@keyframes lightShift {
  0% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) translate(1%, -1%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(-1%, 1%);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: var(--space-12) var(--space-8);
  max-width: 56rem;
  background: radial-gradient(ellipse at 50% 40%, rgba(42, 35, 32, 0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-hero);
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 0.9;
  text-shadow: 0 0 80px rgba(196, 151, 59, 0.3), 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  animation: heroReveal var(--duration-reveal) var(--ease-out) 0.3s forwards;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: var(--text-hero-sub);
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-top: var(--space-4);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  animation: heroReveal var(--duration-reveal) var(--ease-out) 0.6s forwards;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: rgba(245, 240, 232, 0.9);
  margin-top: var(--space-8);
  line-height: 1.6;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  animation: heroReveal var(--duration-reveal) var(--ease-out) 0.9s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: heroReveal var(--duration-reveal) var(--ease-out) 1.5s forwards;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  color: var(--cream);
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   Next Concert Banner
   ============================================ */
.next-concert {
  background: var(--burgundy);
  padding: var(--space-3) 0;
}

.next-concert-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--cream);
  font-family: var(--font-serif);
  text-decoration: none;
  flex-wrap: wrap;
  transition: opacity var(--duration-fast);
}

.next-concert-inner:hover {
  opacity: 0.85;
}

.next-concert-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(245, 240, 232, 0.15);
  padding: var(--space-1) var(--space-3);
  border-radius: 2px;
}

.next-concert-info {
  font-size: var(--text-sm);
  font-weight: 600;
}

.next-concert-arrow {
  font-size: var(--text-sm);
  opacity: 0.7;
}

/* ============================================
   Le Duo
   ============================================ */
.duo {
  background: var(--cream);
}

.duo .ornament::before {
  background: var(--cream);
}

.duo-text {
  max-width: var(--reading-width);
  margin: 0 auto;
  text-align: center;
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--warm-dark-light);
}

.duo-text p + p {
  margin-top: var(--space-6);
}

.duo-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--burgundy);
  line-height: 1.4;
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
}

/* ============================================
   Les Musiciennes
   ============================================ */
.musicians {
  background: var(--parchment);
}

.musicians-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .musicians-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.musician-card {
  text-align: center;
}

.musician-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto var(--space-8);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.musician-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.musician-photo-wrap:hover img {
  transform: scale(1.04);
}

.musician-card:first-child .musician-photo-wrap {
  border-bottom: 3px solid var(--sage);
}

.musician-card:last-child .musician-photo-wrap {
  border-bottom: 3px solid var(--chapel-blue);
}

.musician-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--burgundy);
  margin-bottom: var(--space-2);
}

.musician-instrument {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--gold);
  margin-bottom: var(--space-2);
  letter-spacing: 0.04em;
}

.musician-credentials {
  font-size: var(--text-xs);
  color: var(--warm-dark-light);
  letter-spacing: 0.03em;
  opacity: 0.7;
  margin-bottom: var(--space-6);
}

.musician-bio {
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
  color: var(--warm-dark-light);
}

.musician-bio p + p {
  margin-top: var(--space-4);
}

/* ============================================
   En Concert — Video
   ============================================ */
.en-concert {
  background: var(--warm-dark);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.en-concert .section-heading {
  color: var(--cream);
}

.en-concert .ornament::before {
  background: var(--warm-dark);
}

.video-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .video-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-play svg {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.video-facade:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-facade:hover .video-play svg path:first-child {
  fill: rgba(107, 45, 62, 0.85);
}

.video-facade.playing {
  cursor: default;
}

.video-facade.playing .video-play {
  display: none;
}

.video-facade iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.video-caption {
  text-align: center;
  margin-top: var(--space-3);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--cream);
  opacity: 0.6;
}

/* ============================================
   Le Programme
   ============================================ */
.programme {
  background: var(--warm-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.programme::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 4px
  );
  pointer-events: none;
}

.programme .section-heading {
  color: var(--cream);
}

.programme .ornament::before {
  background: var(--warm-dark);
  color: var(--gold);
}

.programme-intro {
  max-width: var(--reading-width);
  margin: 0 auto var(--space-16);
  text-align: center;
  font-size: var(--text-lg);
  color: rgba(245, 240, 232, 0.75);
  font-style: italic;
}

.programme-threads {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .programme-threads {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.programme-thread {
  position: relative;
}

.thread-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--gold);
  margin-bottom: var(--space-8);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
}

.thread-numeral {
  font-size: var(--text-4xl);
  font-weight: 400;
  color: rgba(196, 151, 59, 0.25);
  line-height: 1;
  font-style: italic;
}

.thread-intro {
  margin-bottom: var(--space-8);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.8);
}

/* Sacred thread: vertical gold timeline */
.thread-sacred .composer-journey {
  position: relative;
  padding-left: var(--space-8);
}

.thread-sacred .composer-journey::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 10%,
    var(--gold) 90%,
    transparent 100%
  );
  opacity: 0.3;
}

.composer-era {
  margin-bottom: var(--space-10);
}

.era-label {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  position: relative;
}

.thread-sacred .era-label::before {
  content: '';
  position: absolute;
  left: calc(var(--space-8) * -1);
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-3px, -50%);
}

.composer-entry {
  margin-bottom: var(--space-6);
}

.composer-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--cream);
  display: inline;
  transition: color var(--duration-fast);
}

.composer-name:hover {
  color: var(--gold);
}

.composer-dates {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.5);
  font-style: italic;
  margin-left: var(--space-2);
  font-variant-numeric: oldstyle-nums;
}

.composer-desc {
  margin-top: var(--space-2);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  font-size: var(--text-base);
}

/* ============================================
   Événements
   ============================================ */
.events {
  background: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 48rem;
  margin: 0 auto;
}

.event-card {
  background: var(--parchment);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.event-card-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}

@media (max-width: 480px) {
  .event-card-inner {
    grid-template-columns: 1fr;
  }
}

.event-date-block {
  background: var(--burgundy);
  color: var(--cream);
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 140px;
}

.event-day {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

.event-year {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-top: var(--space-1);
}

.event-details {
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--burgundy);
  margin-bottom: var(--space-2);
}

.event-venue {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--warm-dark-light);
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}

.event-meta {
  font-size: var(--text-sm);
  color: var(--warm-dark-light);
  line-height: 1.7;
}

.event-meta span {
  display: block;
}

.event-highlight {
  color: var(--gold);
  font-weight: 600;
}

.event-venue-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color var(--duration-fast);
}

.event-venue-link:hover {
  color: var(--gold);
}

.event-partners {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(42, 35, 32, 0.08);
  font-size: var(--text-xs);
  color: var(--warm-dark-light);
  opacity: 0.7;
}

/* ============================================
   Écouter
   ============================================ */
.listen {
  background: var(--parchment);
  text-align: center;
}

.listen-placeholder {
  max-width: var(--reading-width);
  margin: 0 auto;
}

.listen-waveform {
  margin: 0 auto var(--space-8);
  max-width: 20rem;
  opacity: 0.4;
}

.listen-waveform svg {
  width: 100%;
  height: auto;
  color: var(--gold);
}

.listen-message {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--warm-dark-light);
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--cream);
}

.contact-inner {
  max-width: var(--reading-width);
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--warm-dark-light);
  margin-bottom: var(--space-8);
}

.contact-types {
  margin-bottom: var(--space-10);
  text-align: left;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-types li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  color: var(--warm-dark-light);
}

.contact-types li::before {
  content: '\2666';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: var(--text-xs);
  top: 50%;
  transform: translateY(-50%);
}

.contact-cta {
  display: inline-block;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  padding: var(--space-4) var(--space-12);
  border-radius: 2px;
  transition: background var(--duration-fast),
              transform var(--duration-fast),
              box-shadow var(--duration-fast);
}

.contact-cta:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-cta:active {
  transform: translateY(0);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--warm-dark);
  color: rgba(245, 240, 232, 0.6);
  padding: var(--space-12) 0;
  text-align: center;
}

.footer-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.footer-tagline {
  font-style: italic;
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.footer-location {
  font-size: var(--text-xs);
  margin-bottom: var(--space-2);
}

.footer-copy {
  font-size: var(--text-xs);
  opacity: 0.5;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--duration-reveal) var(--ease-out),
              transform var(--duration-reveal) var(--ease-out);
}

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

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 150ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 450ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 600ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 750ms; }

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

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

  .hero-title,
  .hero-subtitle,
  .hero-tagline,
  .hero-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-bg img {
    will-change: auto;
  }
}
