/* ── ROBE Café-Théâtre — Styles ─────────────────────────────────────────────── */

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

:root {
  --bg: #0a0a0a;
  --bg-surface: #141414;
  --bg-card: #1a1a1a;
  --red: #8B1A1A;
  --red-bright: #C41E3A;
  --gold: #C5A55A;
  --gold-light: #E8D5A3;
  --gold-glow: rgba(197, 165, 90, 0.15);
  --text: #F5F0E8;
  --text-muted: #8A8478;
  --text-dim: #5a5550;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ── Curtain ───────────────────────────────────────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

/* ── Spotlight effect on curtain ────────────────────────────────────────── */
.curtain__spotlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 60% at 50% 40%,
      rgba(255,240,200,0.18) 0%,
      rgba(255,220,150,0.08) 30%,
      transparent 70%
    );
  opacity: 1;
  transition: opacity 0.8s 1.5s ease;
}

.curtain--open .curtain__spotlight {
  opacity: 0;
}

/* ── Curtain panels ─────────────────────────────────────────────────────── */
.curtain__left,
.curtain__right {
  position: absolute;
  top: -30px;
  bottom: -30px;
  width: 52%;
  z-index: 2;

  /* Base velvet color */
  background-color: #8B1A1A;

  /* Fabric fold illusion: repeating vertical gradient bands */
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0)     0px,
      rgba(0,0,0,0.06)  8px,
      rgba(0,0,0,0.15)  14px,
      rgba(0,0,0,0.06)  20px,
      rgba(0,0,0,0)     28px,
      rgba(255,255,255,0.04) 32px,
      rgba(255,255,255,0.08) 38px,
      rgba(255,255,255,0.04) 44px,
      rgba(0,0,0,0)     50px
    ),
    /* Broad highlight for center sheen */
    linear-gradient(
      90deg,
      rgba(0,0,0,0.3) 0%,
      transparent 15%,
      rgba(255,255,255,0.06) 40%,
      rgba(255,255,255,0.1) 50%,
      rgba(255,255,255,0.06) 60%,
      transparent 85%,
      rgba(0,0,0,0.3) 100%
    );

  background-size: 50px 100%, 100% 100%;

  /* Depth: top shadow (overhead lighting) + side shadows */
  box-shadow:
    inset 0 80px 60px -40px rgba(0,0,0,0.45),
    inset 0 -60px 50px -30px rgba(0,0,0,0.3),
    0 0 40px rgba(0,0,0,0.5);
}

.curtain__left {
  left: -2%;
  transform-origin: left top;
}

.curtain__right {
  right: -2%;
  transform-origin: right top;
}

/* Subtle vertical seam / edge highlight on the inner edges */
.curtain__left::after,
.curtain__right::after {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
}

.curtain__left::after {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.25));
}

.curtain__right::after {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(0,0,0,0.25));
}

/* Bottom hem weight — curtains hang heavier at the bottom */
.curtain__left::before,
.curtain__right::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
  z-index: 1;
}

/* ── Opening animation ──────────────────────────────────────────────────── */
.curtain--open .curtain__left {
  animation: curtainOpenLeft 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.curtain--open .curtain__right {
  animation: curtainOpenRight 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes curtainOpenLeft {
  0% {
    transform: translateX(0) scaleX(1) skewY(0deg);
    background-size: 50px 100%, 100% 100%;
  }
  30% {
    transform: translateX(-20%) scaleX(0.92) skewY(-0.5deg);
    background-size: 38px 100%, 100% 100%;
  }
  60% {
    transform: translateX(-70%) scaleX(0.7) skewY(-0.8deg);
    background-size: 22px 100%, 100% 100%;
  }
  80% {
    transform: translateX(-92%) scaleX(0.45) skewY(-0.3deg);
    background-size: 14px 100%, 100% 100%;
  }
  92% {
    transform: translateX(-97%) scaleX(0.38) skewY(0.2deg);
    background-size: 11px 100%, 100% 100%;
  }
  100% {
    transform: translateX(-95%) scaleX(0.35) skewY(0deg);
    background-size: 10px 100%, 100% 100%;
  }
}

@keyframes curtainOpenRight {
  0% {
    transform: translateX(0) scaleX(1) skewY(0deg);
    background-size: 50px 100%, 100% 100%;
  }
  30% {
    transform: translateX(20%) scaleX(0.92) skewY(0.5deg);
    background-size: 38px 100%, 100% 100%;
  }
  60% {
    transform: translateX(70%) scaleX(0.7) skewY(0.8deg);
    background-size: 22px 100%, 100% 100%;
  }
  80% {
    transform: translateX(92%) scaleX(0.45) skewY(0.3deg);
    background-size: 14px 100%, 100% 100%;
  }
  92% {
    transform: translateX(97%) scaleX(0.38) skewY(-0.2deg);
    background-size: 11px 100%, 100% 100%;
  }
  100% {
    transform: translateX(95%) scaleX(0.35) skewY(0deg);
    background-size: 10px 100%, 100% 100%;
  }
}

/* ── Noise overlay ─────────────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Navigation ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 2rem;
  border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(197, 165, 90, 0.3);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__link:hover { color: var(--gold-light); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  color: var(--bg);
  background: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.nav__link--cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--bg);
}

.nav__link--cta::after { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6) contrast(1.1);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, var(--bg) 80%),
    linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero__logo {
  width: min(500px, 80vw);
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  filter: brightness(1.1) contrast(1.05);
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

.hero__location {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--bg);
  background: var(--gold);
  padding: 0.9rem 2rem;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.hero__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.25);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__label--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ── Reveal animation ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ── Concept ───────────────────────────────────────────────────────────────── */
.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.concept__lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.concept__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.concept__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 165, 90, 0.15);
}

.concept__stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.concept__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.concept__img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.concept__img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 165, 90, 0.15);
  border-radius: 12px;
  pointer-events: none;
}

.concept__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

.concept__img-wrapper:hover .concept__img {
  transform: scale(1.03);
}

/* ── Frédérique ────────────────────────────────────────────────────────────── */
.frederique {
  background: var(--bg-surface);
}

.frederique__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.frederique__img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.frederique__img-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--red) 100%);
  z-index: -1;
  opacity: 0.4;
}

.frederique__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.1s linear;
  will-change: transform;
}

.frederique__lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.frederique__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.frederique__quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-glow);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── Programmation ─────────────────────────────────────────────────────────── */
.programmation {
  background: var(--bg);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.events-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.events-loading__spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--text-dim);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.event-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.event-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--bg-surface);
}

.event-card__body {
  padding: 1.2rem;
}

.event-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-card__date {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.3s;
}

.event-card__cta:hover { color: var(--gold-light); }

.events-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-style: italic;
}

.events-footer {
  text-align: center;
  margin-top: 2rem;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn--gold {
  color: var(--bg);
  background: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.25);
}

.btn--outline {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(197, 165, 90, 0.1);
}

/* ── Experience ────────────────────────────────────────────────────────────── */
.experience {
  background: var(--bg-surface);
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.experience__card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.experience__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.experience__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.experience__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

.experience__card:hover .experience__card-img img {
  transform: scale(1.05);
}

.experience__card-body {
  padding: 1.5rem;
}

.experience__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--gold-light);
}

.experience__card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Robe Event ────────────────────────────────────────────────────────────── */
.robe-event {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.robe-event::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.robe-event__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.robe-event__lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.robe-event__text > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.robe-event__services {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.robe-event__service {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}

.robe-event__service:hover {
  border-color: rgba(197, 165, 90, 0.2);
}

.robe-event__service-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gold);
}

.robe-event__service h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.robe-event__service p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.robe-event__img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.robe-event__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

.robe-event__img-wrapper:hover img {
  transform: scale(1.03);
}

/* ── Galerie ───────────────────────────────────────────────────────────────── */
.galerie {
  background: var(--bg-surface);
}

/* Photo wall — polaroids pinned to a wall */
.galerie__wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  padding: 1rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.galerie__photo {
  width: 160px;
  background: #f5f0e8;
  padding: 6px 6px 24px 6px;
  margin: 6px;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.35),
    0 1px 2px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  z-index: 1;
  position: relative;
}

/* Forced square crop */
.galerie__photo-inner {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.galerie__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s;
}

/* Caption under the photo like handwriting */
.galerie__caption {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.6rem;
  color: #5a5045;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Rotations */
.galerie__photo:nth-child(11n+1)  { transform: rotate(-3deg); }
.galerie__photo:nth-child(11n+2)  { transform: rotate(2.2deg); }
.galerie__photo:nth-child(11n+3)  { transform: rotate(-1.5deg); }
.galerie__photo:nth-child(11n+4)  { transform: rotate(3.5deg); }
.galerie__photo:nth-child(11n+5)  { transform: rotate(-0.8deg); }
.galerie__photo:nth-child(11n+6)  { transform: rotate(1.8deg); }
.galerie__photo:nth-child(11n+7)  { transform: rotate(-2.8deg); }
.galerie__photo:nth-child(11n+8)  { transform: rotate(0.5deg); }
.galerie__photo:nth-child(11n+9)  { transform: rotate(2.8deg); }
.galerie__photo:nth-child(11n+10) { transform: rotate(-1.2deg); }
.galerie__photo:nth-child(11n+11) { transform: rotate(1.2deg); }

/* Slight vertical stagger */
.galerie__photo:nth-child(3n+2) { margin-top: -8px; }
.galerie__photo:nth-child(5n+3) { margin-top: 14px; }
.galerie__photo:nth-child(7n+4) { margin-top: 4px; }

/* Tape on top — translucent strip */
.galerie__photo::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 12px;
  background: rgba(255,255,240,0.5);
  border-radius: 1px;
  z-index: 3;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}

/* Tape variations */
.galerie__photo:nth-child(3n)::before {
  left: auto; right: 8px;
  transform: rotate(18deg);
  width: 28px;
}
.galerie__photo:nth-child(4n+1)::before {
  left: 10px; transform: rotate(-14deg);
  width: 30px;
}
/* Pin instead of tape */
.galerie__photo:nth-child(5n+4)::before {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  top: -3px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.2);
}

/* Hover: straighten + lift */
.galerie__photo:hover {
  transform: rotate(0deg) scale(1.12) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
  z-index: 10;
}

.galerie__photo:hover img {
  filter: brightness(0.9);
}

.galerie__insta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 700px) {
  .galerie__photo {
    width: 120px;
    padding: 5px 5px 18px 5px;
    margin: 4px;
  }
  .galerie__photo--desktop { display: none; }
  .galerie__caption { font-size: 0.55rem; }
  .galerie__photo::before { width: 24px; height: 9px; }
}

@media (max-width: 400px) {
  .galerie__photo {
    width: 100px;
    padding: 4px 4px 16px 4px;
    margin: 3px;
  }
}

/* ── Infos ─────────────────────────────────────────────────────────────────── */
.infos {
  background: var(--bg);
}

.infos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.infos__card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.infos__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.infos__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.infos__link {
  color: var(--gold);
  transition: color 0.3s;
  font-size: 0.9rem;
}

.infos__link:hover { color: var(--gold-light); }

.infos__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(197, 165, 90, 0.1);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer__legal {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-left: 1px solid rgba(197, 165, 90, 0.1);
  }

  .nav__links--open { transform: translateX(0); }

  .nav__burger { display: flex; }

  .nav__burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger--open span:nth-child(2) { opacity: 0; }
  .nav__burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .concept__grid,
  .frederique__grid,
  .robe-event__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .frederique__visual { order: -1; }
  .frederique__img-wrapper,
  .concept__img-wrapper,
  .robe-event__img-wrapper {
    aspect-ratio: 4/3;
    max-height: 400px;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .infos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .concept__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__logo {
    width: 85vw;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
}
