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

html, body {
  width: 100%;
  background: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

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

html.menu-open,
body.menu-open { overflow: hidden; }

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.2rem;
  background: transparent;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  mix-blend-mode: difference;
  will-change: transform;
}

nav.nav-hidden {
  transform: translateY(-120%);
}

.nav-logo {
  opacity: 0;
  transform: translateX(-20px);
  animation: logoIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: invert(1);
}
@media (min-width: 701px) {
  .nav-logo img { height: 76px; }
}
@keyframes logoIn {
  to { opacity: 1; transform: translateX(0); }
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.5s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.hamburger span {
  display: block;
  width: 32px;
  height: 1.5px;
  background: #fff;
  transition: width 0.4s ease, transform 0.4s ease, opacity 0.3s ease;
}
.hamburger:hover span:nth-child(2) { width: 22px; }
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ══ MENU OVERLAY ══ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 13%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-item {
  font-family: "Poiret One", cursive;
  font-size: clamp(1.65rem, 4.4vw, 3.9rem);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.28;
  display: block;
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.3s, transform 0.5s ease, opacity 0.5s ease;
}
.menu-overlay.open .menu-item { opacity: 1; transform: translateY(0); }
.menu-overlay.open .menu-item:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.open .menu-item:nth-child(2) { transition-delay: 0.12s; }
.menu-overlay.open .menu-item:nth-child(3) { transition-delay: 0.19s; }
.menu-overlay.open .menu-item:nth-child(4) { transition-delay: 0.26s; }
.menu-overlay.open .menu-item:nth-child(5) { transition-delay: 0.33s; }
.menu-overlay.open .menu-item:nth-child(6) { transition-delay: 0.40s; }
.menu-item:hover { color: #fff; }

@media (max-width: 700px) {
  .menu-item { color: rgba(255, 255, 255, 0.68); }
  .menu-item + .menu-item { margin-top: 0.75rem; }
}

.menu-footer {
  position: absolute;
  bottom: 2.5rem; left: 12%;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
.menu-overlay.open .menu-footer { opacity: 1; }

/* ══ HERO ══ */
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100%;
  max-width: 980px;
  padding: 0 2rem;
  display: block;
  opacity: 0;
  animation: heroIn 1.2s cubic-bezier(0.22,1,0.36,1) 0.7s forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══ SECTION À PROPOS ══ */
#a-propos {
  background: #000;
  min-height: 100vh;
  padding: 8rem 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
}

/* Grand titre centré */
.apropos-title {
  font-family: "Poiret One", cursive;
  width: min(62vw, 440px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #fff;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 3.5rem;
  white-space: normal;
}

/* Ligne fine de séparation */
.apropos-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 4rem;
}

/* QUI SOMMES-NOUS / NOTRE MISSION */
.qui-line {
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  text-align: left;
}

.qui-title {
  font-family: "Poiret One", cursive;
  font-size: clamp(2.6rem, 5.6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-align: right;
}

.qui-body {
  max-width: 700px;
  text-align: left;
  font-family: "Manrope", sans-serif;
}

.qui-para {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.qui-para + .qui-para { margin-top: 1.4rem; }

.qui-para strong {
  color: #fff;
  font-weight: 600;
}

.qui-devize {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* NOS VALEURS */
#valeurs {
  min-height: 100vh;
  padding: 8rem 6vw;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
}

.valeurs-title {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  font-family: "Poiret One", cursive;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.valeurs-grid {
  width: min(100%, 1150px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.valeur-card {
  font-family: "Manrope", sans-serif;
  text-align: left;
}

.valeur-name {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  font-weight: 500;
  color: #fff;
}

.valeur-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* NOTRE HISTOIRE */
#notre-histoire {
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 6rem);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.histoire-panel {
  width: min(100%, 1180px);
  padding: clamp(3rem, 7vw, 7rem);
  background: #fff;
  color: #000;
  display: grid;
  grid-template-columns: 0.75fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.histoire-title {
  font-family: "Poiret One", cursive;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
}

.histoire-text {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(0,0,0,0.68);
}

.histoire-text p + p { margin-top: 1.25rem; }
.histoire-text strong { color: #000; font-weight: 600; }

/* PROGRAMMES */
#programmes {
  min-height: 100vh;
  padding: 8rem 6vw;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
}

.programmes-title {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-family: "Poiret One", cursive;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.programmes-soon {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 2.4rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.programmes-soon span {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.programmes-soon.visible span {
  opacity: 1;
  transform: translateY(0);
}

.programmes-soon.visible span:nth-child(1) { transition-delay: 0.05s; }
.programmes-soon.visible span:nth-child(2) { transition-delay: 0.12s; }
.programmes-soon.visible span:nth-child(3) { transition-delay: 0.19s; }
.programmes-soon.visible span:nth-child(4) { transition-delay: 0.26s; }
.programmes-soon.visible span:nth-child(5) { transition-delay: 0.33s; }
.programmes-soon.visible span:nth-child(6) { transition-delay: 0.40s; }
.programmes-soon.visible span:nth-child(7) { transition-delay: 0.47s; }

.hamburger-page {
  display: none !important;
}

.hamburger-page.active-page {
  display: flex !important;
}

body.menu-page-mode section {
  display: none !important;
}

body.menu-page-mode section.active-page,
body.menu-page-mode #confirmation.active {
  display: flex !important;
}

/* ADHÉSION */
#adhesion {
  min-height: 100vh;
  padding: 8rem 6vw;
  background: #fff;
  color: #000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border: none;
}

.adhesion-inner {
  width: min(100%, 1040px);
}

.adhesion-title {
  font-family: "Poiret One", cursive;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  text-align: center;
}

.adhesion-note {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.48);
  text-align: center;
}

.adhesion-form {
  margin-top: clamp(3rem, 6vw, 5rem);
  font-family: "Manrope", sans-serif;
}

.form-block {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.form-block-title {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label,
.form-choice-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.58);
  font-weight: 600;
}

.optional-label {
  margin-left: 0.4rem;
  color: rgba(0,0,0,0.34);
  font-weight: 400;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 0;
  background: #fff;
  padding: 1rem 1.05rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #000;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-field textarea {
  min-height: 135px;
  resize: vertical;
  line-height: 1.7;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #000;
  background: rgba(0,0,0,0.025);
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.9rem;
}

.choice-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.72);
}

.choice-item input {
  width: 16px;
  height: 16px;
  accent-color: #000;
}

.form-submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2.5rem;
}

.submit-btn {
  border: 1px solid #000;
  background: #000;
  color: #fff;
  padding: 1rem 2.4rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.submit-btn:hover {
  background: #fff;
  color: #000;
}

.adhesion-status {
  display: none;
  margin: 0.8rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: center;
}

.adhesion-status.visible {
  display: block;
}

.adhesion-status.error {
  color: #d93636;
}

.field-help {
  display: block;
  margin-top: 0.45rem;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.72rem;
  line-height: 1.4;
}

.field-error {
  min-height: 1.4em;
  margin: 0.45rem 0 0;
  color: #b42318;
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  line-height: 1.4;
}

#confirmation {
  min-height: 100vh;
  padding: 8rem 6vw;
  background: #000;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
}

#confirmation.active { display: flex; }

.confirmation-title {
  font-family: "Poiret One", cursive;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.confirmation-text {
  margin: 2rem auto 0;
  max-width: 680px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  text-align: center;
}

#contact {
  min-height: 100vh;
  padding: 8rem 6vw;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  border: none;
}

.contact-wrap {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(2rem, 4.8vw, 4.8rem);
  align-items: start;
}

.contact-title {
  font-family: "Poiret One", cursive;
  font-size: clamp(2.8rem, 6.6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.8rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-family: "Manrope", sans-serif;
}

.contact-form .form-field.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: #fff;
  padding: 1rem 1.05rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
  background: rgba(255,255,255,0.04);
}

.contact-submit {
  width: fit-content;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-submit:hover {
  background: transparent;
  color: #fff;
}

.contact-status {
  margin-top: 0.8rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
  display: none;
}

.contact-status.visible {
  display: block;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-card {
  min-height: 100%;
  background: #fff;
  color: #000;
  border: 1px solid rgba(255,255,255,0.16);
  padding: clamp(1.5rem, 3.2vw, 2.2rem);
  font-family: "Manrope", sans-serif;
}

.contact-logo-box {
  width: 140px;
  height: 140px;
  margin-bottom: 1.7rem;
  border: 1px solid rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.contact-logo-box img {
  max-width: 100%;
  max-height: 100%;
  filter: none;
}

.contact-info {
  display: grid;
  gap: 1.2rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.42);
}

.contact-value {
  color: rgba(0,0,0,0.76);
  line-height: 1.6;
}

.instagram-link {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #000;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.instagram-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.05rem;
}

.site-footer {
  padding: 1.4rem 6vw;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 700px) {
  #a-propos { padding: 7rem 1.5rem; }
  .apropos-title {
    width: min(82vw, 340px);
    font-size: clamp(2.5rem, 12vw, 4.2rem);
    padding: 1.5rem;
  }
  .qui-line {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }
  .qui-title,
  .qui-body {
    text-align: center;
  }
  #valeurs { padding: 7rem 1.5rem; }
  .valeurs-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  #notre-histoire { padding: 1.25rem; }
  .histoire-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.6rem;
  }
  #adhesion { padding: 7rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .choice-group { flex-direction: column; }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ══ REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
