/*
  Provence Social Club — feuille de styles partagée
  =================================================
  Variables (tokens) en haut de fichier, puis composants réutilisables
  (boutons, eyebrow, nav, footer, cartes...), puis les styles propres
  à chaque page, regroupés par section commentée.
*/

/* ---------------------------------------------------------------- */
/* Tokens                                                            */
/* ---------------------------------------------------------------- */
:root {
  --navy: #241E3D;       /* encre principale, fonds sombres */
  --navy-rgb: 36, 30, 61;
  --cream: #F5F0E8;      /* fond du site, texte sur navy */
  --cream-rgb: 245, 240, 232;
  --gold: #C9A96E;       /* eyebrows, filets, accents */
  --gold-rgb: 201, 169, 110;
  --sand: #EDE6D6;       /* survol des menus déroulants, footer */
  --violet: #9B8FB8;     /* accent italique dans les titres */
  --ink-alt: #2C2A4E;    /* encre alternative utilisée sur "Nos valeurs" */

  --font-serif: 'Saol Display', 'Bodoni Moda', serif;
  --font-sans: 'DM Sans', sans-serif;

  --container: 1200px;
}

/* ---------------------------------------------------------------- */
/* Base                                                               */
/* ---------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
}
a { color: var(--navy); text-decoration: none; }
a:hover { opacity: 1; }
img { max-width: 100%; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; }

/* ---------------------------------------------------------------- */
/* Typographie utilitaire                                             */
/* ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 28px;
}
.eyebrow--tight { margin-bottom: 16px; }
.eyebrow--center { text-align: center; }
.eyebrow--violet { color: var(--violet); }

.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 32px;
  border: none;
}
.rule--center { margin-left: auto; margin-right: auto; }
.rule--soft { background: rgba(var(--gold-rgb), 0.5); }

.accent { font-style: italic; color: var(--violet); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; margin: 0; }

.h1 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.h3-italic {
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 34px);
}

.lede {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.7;
}

/* ---------------------------------------------------------------- */
/* Boutons                                                            */
/* ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn-sm { padding: 14px 34px; font-size: 10px; letter-spacing: 0.18em; }

.btn-primary { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-primary:hover { background: #332A54; border-color: #332A54; }

.btn-primary-inverse { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-primary-inverse:hover { background: var(--gold); border-color: var(--gold); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }

.btn-ghost-inverse { background: transparent; color: var(--cream); border-color: rgba(var(--cream-rgb), 0.5); }
.btn-ghost-inverse:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.btn-ghost-inverse--solid-border { border-color: var(--cream); }

.icon-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(var(--navy-rgb), 0.3);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.icon-btn:hover { border-color: var(--navy); }

.social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  border: 1px solid rgba(var(--navy-rgb), 0.3);
  text-decoration: none; color: var(--navy);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.social-pill:hover { border-color: var(--navy); }
.social-pill--fill { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.social-pill--fill:hover { background: #332A54; }
.social-pill--cream { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.social-pill--cream:hover { background: var(--gold); border-color: var(--gold); }
.social-pill--on-dark { border-color: rgba(var(--cream-rgb), 0.4); color: var(--cream); }
.social-pill--on-dark:hover { border-color: var(--cream); }

/* ---------------------------------------------------------------- */
/* Navigation                                                         */
/* ---------------------------------------------------------------- */
.site-nav {
  top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-nav--fixed { position: fixed; }
.site-nav--absolute { position: absolute; }
.site-nav--static { position: relative; background: transparent; }

.site-nav__logo { height: 52px; width: auto; display: block; }
.site-nav__logo--sm { height: 44px; }
.site-nav__logo--invert { filter: brightness(0) invert(1); }
.site-nav__logo--black { filter: brightness(0); }

.nav-links {
  display: flex; gap: 48px; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; opacity: 0.85;
}
.site-nav--on-dark .nav-links a { color: var(--cream); }
.site-nav--on-light .nav-links a { color: var(--navy); }
.site-nav--on-alt .nav-links a { color: var(--ink-alt); }

.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 20px; display: none;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown { display: block; }
.nav-dropdown__inner {
  display: flex; flex-direction: column; background: var(--cream);
  box-shadow: 0 20px 40px rgba(var(--navy-rgb), 0.25);
}
.nav-dropdown a {
  width: 140px; padding: 14px 16px; text-align: center; text-decoration: none;
  color: var(--navy); border-bottom: 1px solid rgba(var(--navy-rgb), 0.1);
  transition: background 0.2s ease;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--sand); }
.nav-dropdown span {
  display: block; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}

.nav-burger {
  display: none;
  width: 32px; height: 24px;
  border: none; background: transparent; cursor: pointer;
  padding: 0; position: relative; z-index: 210;
}
.nav-burger span {
  position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 11px; }
.nav-burger span:nth-child(3) { top: 22px; }
.site-nav--on-dark .nav-burger { color: var(--cream); }
.site-nav--on-light .nav-burger,
.site-nav--on-alt .nav-burger { color: var(--navy); }
.nav-burger.is-active { color: var(--navy) !important; }
.nav-burger.is-active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__logo { position: absolute; top: 24px; left: 24px; }
.mobile-menu__logo img { height: 40px; width: auto; display: block; }
.mobile-menu a {
  color: var(--navy); text-decoration: none;
  font-family: var(--font-serif); font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ---------------------------------------------------------------- */
/* Footer                                                             */
/* ---------------------------------------------------------------- */
.site-footer {
  background: var(--sand);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(var(--navy-rgb), 0.1);
}
.site-footer--alt { border-top-color: rgba(44, 42, 78, 0.1); }
.site-footer__grid {
  display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap;
  padding-bottom: 60px;
}
.site-footer__brand { max-width: 280px; }
.site-footer__logo { height: 60px; width: auto; display: block; margin-bottom: 24px; }
.site-footer__tagline { font-size: 14px; line-height: 1.7; opacity: 0.6; margin: 0; }
.site-footer__heading {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  margin: 0 0 24px;
}
.site-footer__list { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.site-footer__list a { font-size: 14px; text-decoration: none; opacity: 0.6; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(var(--navy-rgb), 0.1);
  flex-wrap: wrap; gap: 16px;
}
.site-footer__bottom p { font-size: 11px; opacity: 0.4; letter-spacing: 0.1em; margin: 0; }

/* ---------------------------------------------------------------- */
/* Cartes d'expérience                                                */
/* ---------------------------------------------------------------- */
.exp-card {
  position: relative; overflow: hidden; aspect-ratio: 1/1;
  display: block; color: inherit; text-decoration: none;
}
.exp-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-card__badge {
  position: absolute; top: 34px; left: 50%; transform: translateX(-50%);
  height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; z-index: 2;
}
.exp-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.46) 100%);
  transition: opacity 0.4s ease;
}
.exp-card__body {
  position: absolute; inset: 0; padding: 36px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.exp-card__tag {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin: 0 0 16px;
}
.exp-card__title {
  font-family: var(--font-serif); font-size: 30px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.035em; color: var(--cream); line-height: 1.2; margin: 0 0 16px;
}
.exp-card__desc { font-size: 15px; color: var(--cream); opacity: 0.75; line-height: 1.6; margin: 0; max-width: 34ch; }
.exp-card__footer {
  position: absolute; left: 0; right: 0; bottom: 28px; z-index: 2; padding: 0 16px;
  display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 20px;
}
.exp-card__footer-row {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.exp-card__footer-row svg { flex-shrink: 0; }
.exp-card__cta {
  display: inline-block; margin-top: 28px; padding: 14px 34px;
  border: 1px solid rgba(var(--cream-rgb), 0.6); color: var(--cream);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.exp-card.is-hidden { display: none; }
.exp-card--soon { cursor: default; }
.exp-card--soon .exp-card__veil {
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.76) 45%, rgba(0,0,0,0.88) 100%);
}
.exp-card__cta--soon {
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0.65;
}
.exp-card__cta--soon svg { flex-shrink: 0; }

/* filtre par tag (accueil + page expériences) */
.tag-filter { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; justify-content: center; }
.tag-filter__divider { width: 1px; height: 14px; background: var(--navy); opacity: 0.25; align-self: center; }
.tag-filter__btn {
  padding: 0 0 10px; display: flex; align-items: center; gap: 4px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-sans); font-weight: 500; cursor: pointer;
  border: none; border-bottom: 1px solid transparent; background: transparent;
  color: var(--navy); opacity: 0.9;
}
.tag-filter__btn.is-active { border-bottom-color: var(--navy); opacity: 1; }
.tag-filter__badge { position: relative; display: inline-block; height: 20px; }
.tag-filter__badge img { display: block; height: 100%; width: auto; filter: brightness(0); }
.tag-filter__badge img.tag-filter__badge--hover {
  position: absolute; inset: 0; height: 100%; opacity: 0; transition: opacity 0.3s ease;
}
.tag-filter__btn:hover .tag-filter__badge--hover { opacity: 1; }

/* apparition au scroll (IntersectionObserver + .is-visible) */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }

/* ---------------------------------------------------------------- */
/* Animations partagées                                               */
/* ---------------------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealLeft { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes fadeOnly { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes instaScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================================================================
   Accueil (index.html)
   ================================================================== */
.home-hero {
  position: relative; z-index: 0; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.home-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 33%; z-index: 0; }
.home-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}
.home-hero__content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.home-hero__title { margin: 0 auto 44px; }
.home-hero__title-line {
  font-family: var(--font-serif); font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; font-weight: 400;
  letter-spacing: 0.035em; text-transform: uppercase; color: var(--cream);
  clip-path: inset(0 100% 0 0); animation: revealLeft 0.8s linear forwards;
}
.home-hero__title-line--italic { font-style: italic; animation-delay: 0.8s; }
.home-hero__subtitle--mobile { display: none; }
.home-hero__subtitle {
  font-size: 15px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--cream); font-weight: 500;
  margin: 0; opacity: 0; animation: fadeOnly 1.4s ease forwards 1.8s;
}
.home-hero__ctas {
  display: flex; justify-content: center; gap: 16px; margin-top: 48px; flex-wrap: wrap;
  opacity: 0; animation: fadeOnly 1.4s ease forwards 3s;
}

.home-experiences { padding: 60px 60px 140px; }
.home-experiences__head {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px; margin-bottom: 56px;
}
.home-experiences__label { font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; margin: 0; padding-bottom: 10px; }

.featured-cover {
  position: relative; display: block; overflow: hidden; aspect-ratio: 21/9; margin-bottom: 2px;
  color: inherit; text-decoration: none;
}
.featured-cover__img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; display: block; transition: transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.featured-cover:hover .featured-cover__img { transform: scale(1.04); }
.featured-cover__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.46) 100%);
}
.featured-cover__eyebrow-top {
  position: absolute; top: 34px; left: 0; right: 0; text-align: center; padding: 0 60px;
  font-size: 14px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--cream); font-weight: 500; margin: 0;
}
.featured-cover__date {
  position: absolute; bottom: 38px; left: 0; right: 0; text-align: center; padding: 0 60px;
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin: 0;
}
.featured-cover__body {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 60px 110px; text-align: center;
}
.featured-cover__badge { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; margin: 0 0 22px; }
.featured-cover__title {
  font-family: var(--font-serif); font-size: clamp(28px, 3.4vw, 48px); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--cream); line-height: 1.14; margin: 0 0 18px;
}
.featured-cover__desc { font-size: 14px; color: var(--cream); opacity: 0.78; line-height: 1.7; margin: 0 0 32px; max-width: 520px; }
.featured-cover__cta {
  display: inline-block; padding: 14px 36px; border: 1px solid rgba(var(--cream-rgb), 0.7); color: var(--cream);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  transition: background 0.35s ease, color 0.35s ease;
}
.featured-cover:hover .featured-cover__cta { background: var(--cream); color: var(--navy); }

.home-experiences-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.home-experiences-grid .exp-card { transition: opacity 0.35s ease, transform 0.35s ease; }
.home-see-all {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px;
  padding: 64px 60px 0; color: inherit; text-decoration: none;
}
.home-see-all img { height: 33px; width: auto; }

.home-esprit {
  padding: 0 60px 140px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center;
  position: relative; overflow: visible;
}
.home-esprit__frame { position: relative; height: 560px; }
.home-esprit__digit {
  position: absolute; top: 50%; left: 10%; font-family: var(--font-serif); font-size: 120px; font-weight: 700;
  color: var(--navy); opacity: 0.05; transform: translateY(-50%); pointer-events: none;
}
.home-esprit__img-a { position: absolute; top: 0; right: 0; width: 80%; height: 75%; }
.home-esprit__img-a img { width: 100%; height: 100%; object-fit: cover; object-position: center 78%; display: block; }
.home-esprit__img-b { position: absolute; bottom: -56px; left: 0; width: 55%; height: 58%; border: 6px solid var(--cream); }
.home-esprit__img-b img { width: 100%; height: 100%; object-fit: cover; display: block; }

.home-valeurs { background: var(--navy); padding: 60px 60px 140px; position: relative; overflow: hidden; }
.home-valeurs__manifesto { max-width: 720px; margin: 0 auto 80px; position: relative; text-align: center; }
.home-valeurs__manifesto p { font-size: 17px; line-height: 1.9; color: var(--cream); opacity: 0.75; margin: 0 0 6px; }
.home-valeurs__manifesto p:last-child { opacity: 1; margin-bottom: 0; }
.home-valeurs__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 80px 0 60px; }

.club-carousel { overflow: hidden; display: flex; margin-top: -100px; position: relative; z-index: 5; cursor: grab; }
.club-carousel.is-dragging { cursor: grabbing; }
.club-carousel:hover .club-carousel__strip { animation-play-state: paused; }
.club-carousel__strip { display: flex; width: max-content; animation: scrollLeft 150s linear infinite; }
.club-carousel__item {
  width: 300px; aspect-ratio: 4/5; overflow: hidden; flex-shrink: 0; margin-right: 20px;
  box-shadow: 0 20px 40px rgba(var(--navy-rgb), 0.25); position: relative;
}
.club-carousel__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.club-carousel__stamp { position: absolute; width: 110px !important; height: auto !important; transform: rotate(-6deg); }
.club-carousel__stamp--bl { bottom: -20px; left: -20px; opacity: 0.55; }
.club-carousel__stamp--br { bottom: -20px; right: -20px; opacity: 0.85; }
.club-carousel__stamp--tr { top: -20px; right: -20px; opacity: 0.55; }

.home-join { padding: 145px 60px 110px; text-align: center; position: relative; overflow: hidden; }
.home-join__grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 64px; max-width: 1100px; margin: 0 auto;
  position: relative; text-align: left;
}
.home-join__sep { width: 1px; background: rgba(var(--navy-rgb), 0.15); }

/* ==================================================================
   Expériences (experiences.html)
   ================================================================== */
.exp-tags-section { padding: 150px 60px 56px; text-align: center; }
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.exp-grid .exp-card { opacity: 0; transition: opacity 1.4s ease; cursor: pointer; }
.exp-grid .exp-card.exp-visible { opacity: 1; }
.exp-card__category-label {
  position: absolute; top: 34px; left: 50%; transform: translateX(-50%); margin: 0;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream); opacity: 0.9;
  font-weight: 500; z-index: 2; white-space: nowrap;
}
.exp-card:hover .exp-card__veil { opacity: 0.55; }

.exp-join-section { background: var(--cream); padding: 0px 60px 100px; text-align: center; position: relative; overflow: hidden; }
.exp-join-illu {
  position: absolute; right: 40px; bottom: 0; width: min(34vw, 420px); height: auto;
  opacity: 0.12; pointer-events: none;
}
.exp-join-el { position: relative; z-index: 1; }
.exp-join-el h2 { font-size: clamp(32px, 3.4vw, 44px); line-height: 1.2; color: var(--navy); margin: 0 0 24px; }
.exp-join-el p { font-size: 16px; line-height: 1.75; color: var(--navy); opacity: 0.75; max-width: 640px; margin: 0 auto 40px; }
.exp-join-el .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==================================================================
   Le Club (le-club.html)
   ================================================================== */
.image-hero { position: relative; height: 68vh; min-height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.image-hero--boutique { height: 64vh; min-height: 440px; }
.image-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.35) 100%); }
.image-hero__veil--strong { background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%); }
.image-hero__content { position: relative; z-index: 2; text-align: center; padding: 0 24px; margin-top: -40px; }

.club-history { max-width: 720px; margin: 0 auto; padding: 100px 60px 60px; text-align: center; }
.club-history p { font-size: 15px; line-height: 1.85; opacity: 0.8; margin: 0 0 32px; }
.club-history p:last-of-type { margin-bottom: 0; }
.club-history__stamp-row { display: flex; justify-content: flex-end; }
.club-history__stamp { width: 180px; height: auto; opacity: 0.5; margin-top: 48px; transform: rotate(6deg); }

.club-cta { background: var(--navy); padding: 140px 60px 100px; text-align: center; position: relative; overflow: visible; }
.club-cta h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.14; color: var(--cream); margin: 0 0 24px; }
.club-cta p { font-size: 16px; line-height: 1.75; color: var(--cream); opacity: 0.7; max-width: 560px; margin: 0 auto 40px; }

/* ==================================================================
   Nos valeurs (nos-valeurs.html)
   ================================================================== */
.valeurs-title-section { padding: 180px 60px 0; text-align: center; position: relative; overflow: hidden; }
.valeurs-title-section img:first-child {
  position: relative; z-index: 2; height: 70px; width: auto; margin: 0 auto; display: block;
  clip-path: inset(0 100% 0 0); animation: revealLeft 1.2s linear forwards 0.4s;
}
.valeurs-title-section img:last-child { display: block; width: 100%; max-width: 700px; height: auto; margin: 24px auto 0; pointer-events: none; }

.valeurs-list { max-width: 760px; margin: 0 auto; padding: 130px 60px 0; }
.valeur-item { margin-bottom: 56px; }
.valeur-item h2 { font-size: clamp(22px, 2.2vw, 27px); font-style: italic; text-transform: uppercase; letter-spacing: 0.035em; line-height: 1.3; margin: 0 0 24px; }
.valeur-item p { font-size: 16px; line-height: 1.85; opacity: 0.75; margin: 0; }
.valeur-item__photo { width: 100%; display: block; margin: 48px auto 0; aspect-ratio: 4/3; object-fit: cover; }
.valeur-item__illustration { width: 100%; max-width: 420px; display: block; margin: 48px auto 0; filter: brightness(0.75) saturate(1.3); }

.valeurs-join { background: var(--cream); padding: 24px 60px 90px; text-align: center; }
.valeurs-join__wave { max-width: 560px; margin: 0 auto; }
.valeurs-join__wave img { display: block; width: 100%; height: auto; }
.valeurs-join__illu { display: block; width: 100%; max-width: 520px; height: auto; margin: -40px auto 40px; filter: brightness(0.75) saturate(1.3); }

/* ==================================================================
   Rejoindre le club (rejoindre.html)
   ================================================================== */
.join-intro { padding: 56px 60px 64px; text-align: center; }
.join-intro img { height: 44px; width: auto; margin: 0 auto 24px; display: block; clip-path: inset(0 100% 0 0); animation: revealLeft 1.2s linear forwards; }
.join-intro p { font-size: 16px; line-height: 1.75; max-width: 520px; margin: 0 auto; opacity: 0; animation: fadeUp 0.7s ease forwards 1.35s; }
.join-intro .eyebrow { opacity: 0; animation: fadeUp 0.7s ease forwards 1.2s; }

.join-form-section { padding: 0 60px 140px; }
.rc-card { max-width: 760px; margin: 0 auto; background: var(--navy); padding: 64px; }
.rc-card--thanks { padding: 80px 64px; text-align: center; }
.rc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.rc-input {
  background: transparent; border: none; border-bottom: 1px solid rgba(var(--cream-rgb), 0.4);
  color: var(--cream); font-family: var(--font-sans); font-size: 16px; font-style: italic;
  padding: 10px 0; width: 100%; outline: none;
}
.rc-input::placeholder { color: rgba(var(--cream-rgb), 0.65); font-style: italic; }
.rc-input:focus { border-bottom-color: var(--cream); }
.rc-label { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); font-weight: 500; margin: 0 0 20px; }
.rc-options { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 44px; }
.rc-option { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.rc-dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(var(--cream-rgb), 0.7); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rc-dot__inner { width: 9px; height: 9px; border-radius: 50%; background: transparent; }
.rc-option input:checked ~ .rc-dot .rc-dot__inner,
.rc-dot.is-active .rc-dot__inner { background: var(--gold); }
.rc-option span.rc-option-label { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--cream); opacity: 0.9; }
.rc-submit { background: transparent; border: none; cursor: pointer; padding: 0; }
.rc-submit span {
  display: inline-block; padding-bottom: 6px; border-bottom: 1px solid rgba(var(--cream-rgb), 0.6);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--cream);
}

.join-news { padding: 0 60px 56px; text-align: center; }
.join-carousel { overflow: hidden; display: flex; margin-bottom: 56px; cursor: grab; }
.join-carousel__track { display: flex; width: max-content; animation: scrollLeft 60s linear infinite; }
.join-carousel__item { width: 300px; aspect-ratio: 3/4; overflow: hidden; flex-shrink: 0; margin-right: 20px; box-shadow: 0 20px 40px rgba(var(--navy-rgb), 0.15); position: relative; }
.join-carousel__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.join-carousel__stamp { position: absolute; top: 10px; right: 6px; width: 90px !important; height: 90px !important; transform: rotate(-6deg); opacity: 0.9; }
.join-follow { padding: 0 60px 140px; text-align: center; }
.join-follow__row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==================================================================
   Boutique
   ================================================================== */
.bq-section { max-width: var(--container); margin: 0 auto; padding: 100px 60px 40px; }
.bq-section--tight-top { padding-top: 80px; }
.bq-section--products { padding: 40px 60px 140px; }
.bq-intro { text-align: center; margin: 0 0 56px; }
.bq-intro .eyebrow { margin-bottom: 16px; }
.bq-intro h2 { font-size: clamp(28px, 2.8vw, 36px); margin: 0; }
.bq-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.bq-tile { display: block; text-decoration: none; color: inherit; filter: brightness(0.92); transition: filter 0.35s ease, transform 0.35s ease; }
.bq-tile:hover { filter: brightness(1); transform: translateY(-3px); }
.bq-tile__img { position: relative; aspect-ratio: 4/5; overflow: hidden; margin-bottom: 18px; }
.bq-tile__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bq-tile__category { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin: 0 0 8px; }
.bq-tile__name { font-family: var(--font-serif); font-size: 19px; font-weight: 400; margin: 0 0 6px; }
.bq-tile__price { font-size: 15px; opacity: 0.7; margin: 0; }
.bq-cats { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
.bq-cat { cursor: default; border: none; background: none; padding: 0; display: block; text-align: left; width: 100%; }
.bq-cat__img { position: relative; aspect-ratio: 1/1; overflow: hidden; margin-bottom: 16px; }
.bq-cat__img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.7); transition: filter 0.35s ease; }
.bq-cat:hover .bq-cat__img img { filter: brightness(0.9); }
.bq-cat__label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.bq-cat__label span { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); font-weight: 500; }
.bq-grid6 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }

.pd-breadcrumb { max-width: var(--container); margin: 0 auto; padding: 140px 60px 0; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5; }
.pd-breadcrumb a { text-decoration: none; color: var(--navy); opacity: 0.6; }
.pd-section { max-width: var(--container); margin: 0 auto; padding: 40px 60px 120px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.pd-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.pd-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-info { padding-top: 20px; }
.pd-info h1 { font-size: clamp(28px, 3vw, 38px); margin: 0 0 20px; }
.pd-price { font-size: 22px; opacity: 0.8; margin: 0 0 32px; }
.pd-info > p.lede-like { font-size: 16px; line-height: 1.85; opacity: 0.75; margin: 0 0 40px; }
.pd-specs { display: flex; flex-direction: column; gap: 12px; padding: 24px 0; border-top: 1px solid rgba(var(--navy-rgb), 0.15); border-bottom: 1px solid rgba(var(--navy-rgb), 0.15); margin-bottom: 40px; }
.pd-specs__row { display: flex; justify-content: space-between; font-size: 14px; }
.pd-specs__row span:first-child { opacity: 0.6; }
.pd-note { font-size: 13px; opacity: 0.5; margin: 24px 0 0; }

/* ==================================================================
   Pages événement (experiences/*.html)
   ================================================================== */
.event-hero { position: relative; z-index: 0; height: 66vh; min-height: 560px; display: flex; flex-direction: column; padding-top: 92px; }
.event-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.event-hero__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(36,30,61,0.35) 0%, rgba(36,30,61,0.15) 40%, rgba(36,30,61,0.85) 100%); }
.event-hero__veil--strong { background: linear-gradient(180deg, rgba(36,30,61,0.55) 0%, rgba(36,30,61,0.35) 40%, rgba(36,30,61,0.85) 100%); }
.event-hero__body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; position: relative; z-index: 2; }
.event-hero__badge { height: 24px; width: auto; display: block; margin: 0 auto 22px; }
.event-hero__title { font-size: clamp(30px, 4vw, 50px); line-height: 1.1; text-transform: uppercase; letter-spacing: 0.035em; color: var(--cream); margin: 0 0 20px; }
.event-hero__subtitle { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); opacity: 0.85; margin: 0 0 32px; }
.event-meta {
  display: flex; flex-shrink: 0; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px 0;
  min-height: 60px; padding: 18px 60px; border-top: 1px solid rgba(var(--cream-rgb), 0.2);
  position: relative; z-index: 2;
}
.event-meta__item { display: flex; align-items: center; gap: 9px; padding: 6px 24px; border-right: 1px solid rgba(var(--cream-rgb), 0.25); }
.event-meta__item:last-child { border-right: none; }
.event-meta__item svg { display: block; }
.event-meta__item span { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); white-space: nowrap; }

.event-body { max-width: 740px; margin: 0 auto; padding: 120px 24px 60px; }
.event-body__chapo { font-family: var(--font-serif); font-style: italic; font-size: clamp(21px, 2.4vw, 25px); line-height: 1.5; margin: 0 0 64px; text-align: center; }
.event-body__text { font-size: 15px; line-height: 1.85; }
.event-body__text p { margin: 0 0 32px; }
.event-body__text p:last-child { margin-bottom: 0; }
.event-body__text p.pull-quote { font-family: var(--font-serif); font-style: italic; font-size: 20px; line-height: 1.6; }
.event-body__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin: 56px 0; display: block; }
.event-body__img-2x1 { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
.event-body figure { margin: 56px 0; }
.event-body__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 56px 0 0; }
.event-body__pair + .event-body__pair { margin-top: 6px; }
.event-body__pair img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.event-body__section-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; color: var(--violet); margin: 0 0 28px; text-align: center; }

.event-cta { background: var(--sand); padding: 96px 60px 56px; text-align: center; position: relative; overflow: hidden; }
.event-cta__deco { position: absolute; bottom: -40px; right: -60px; width: 480px; max-width: 50%; height: auto; opacity: 0.1; pointer-events: none; }
.event-cta__inner { max-width: 600px; margin: 0 auto 64px; position: relative; }
.event-cta__inner h3 { font-family: var(--font-serif); font-style: italic; font-size: clamp(28px, 3vw, 36px); margin: 0 0 20px; }
.event-cta__inner p { font-size: 16px; line-height: 1.75; opacity: 0.7; margin: 0 0 36px; }
.event-share { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.event-share p { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; margin: 0; }

.event-news { background: var(--cream); padding: 120px 60px 100px; text-align: center; }
.event-news h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.1; margin: 0 0 48px; }
.insta-strip { overflow: hidden; margin: 0 -60px 48px; padding: 28px 0; }
.insta-strip__track { display: flex; gap: 6px; width: max-content; animation: instaScroll 40s linear infinite; }
.insta-strip__track img { width: calc(25% - 4.5px); max-width: 255px; aspect-ratio: 3/4; object-fit: cover; flex-shrink: 0; display: block; }
.event-news__row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* ==================================================================
   Pages légales
   ================================================================== */
.legal-section { max-width: 760px; margin: 0 auto; padding: 60px 24px 140px; }
.legal-section h1 { font-size: clamp(32px, 3.6vw, 44px); line-height: 1.15; margin: 0 0 48px; }
.legal-section .eyebrow { margin-bottom: 20px; }
.legal-notice { opacity: 0.6; font-size: 13px; margin: 0 0 40px; }
.legal-body { font-size: 15px; line-height: 1.85; }
.legal-body h2 { font-family: var(--font-serif); font-style: italic; font-size: 22px; margin: 40px 0 16px; }
.legal-body p { margin: 0 0 24px; }
.legal-body p:last-child { margin-bottom: 0; }

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-burger { display: block; }

  .site-nav, .event-hero .site-nav { padding: 20px 24px; }

  .home-hero__ctas { flex-direction: column; align-items: center; }
  .home-hero__subtitle--desktop { display: none; }
  .home-hero__subtitle--mobile { display: block; }

  .home-esprit { grid-template-columns: 1fr !important; gap: 40px !important; padding: 0 24px 80px !important; }
  .home-experiences { padding: 0 24px 80px !important; }
  .home-experiences__head { display: none !important; }
  .featured-cover { aspect-ratio: 9/16 !important; margin-top: -70px !important; position: relative; z-index: 2; }
  .home-experiences-grid { grid-template-columns: 1fr !important; }
  .home-valeurs { padding: 80px 24px !important; }
  .home-valeurs__manifesto p { font-size: 14px !important; line-height: 1.7 !important; }
  .home-join { padding: 100px 24px !important; }
  .home-join__grid { grid-template-columns: 1fr !important; gap: 80px !important; }
  .home-join__sep { display: none; }
  .site-footer__grid { display: grid; grid-template-columns: 1fr 1fr; text-align: left; gap: 32px 20px; }
  .site-footer__grid > .site-footer__brand { grid-column: 1 / -1; text-align: center; }
  .site-footer__logo { height: 64px !important; margin: 0 auto 24px !important; }
  .site-footer { padding: 40px 24px !important; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .site-footer__brand { max-width: none; }

  .exp-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .exp-grid-section { padding: 110px 0 80px !important; }
  .exp-tags-section { display: none !important; }
  .tag-filter { display: none !important; }
  .exp-join-section { padding: 30px 24px 60px !important; }

  .club-history, .valeurs-list, .val-section { padding-left: 24px !important; padding-right: 24px !important; }

  .bq-section, .bq-section--products, .pd-breadcrumb { padding-left: 24px !important; padding-right: 24px !important; }
  .bq-grid3, .bq-grid6 { grid-template-columns: 1fr !important; }
  .bq-cats { grid-template-columns: 1fr 1fr !important; }
  .pd-section { grid-template-columns: 1fr !important; gap: 40px !important; }

  .rc-row { grid-template-columns: 1fr !important; gap: 24px !important; }
  .rc-card { padding: 40px 28px !important; }

  .event-hero__title { font-size: 40px !important; }
  .event-meta { flex-wrap: wrap !important; gap: 20px 32px !important; padding: 32px 24px !important; }
  .event-meta__item { border-right: none !important; padding-right: 0 !important; }
  .event-body { padding: 80px 24px !important; }
  .event-body__chapo { font-size: 24px !important; }
  .event-body__pair { grid-template-columns: 1fr 1fr !important; }

  .legal-section { padding: 40px 24px 100px; }
}

@media (max-width: 1150px) {
  .exp-join-illu { display: none !important; }
}
