/* =========================================================
   US ENDOUME — Styles par section
   ========================================================= */

/* ─── SCROLL AIMANTÉ : chaque section est un point d'ancrage ── */

/* Le hero est exclu de l'aimant : sur mobile, il masquait le header
   (logo, burger, Instagram, Facebook) en collant directement au titre */
body > section:not(#hero) {
  scroll-snap-align: start;
  scroll-margin-top: var(--header-h);
}

/* ─── HEADER ──────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--black);
  border-bottom-color: rgba(227, 8, 20, 0.4);
}

.header-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-logo-fallback {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.7);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--white); }

.header-socials {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.header-socials a {
  color: rgba(245, 243, 238, 0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.header-socials a:hover { color: var(--white); }

.header-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


/* ─── HERO ────────────────────────────────────────────── */

.section-hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: var(--header-h) 0 6rem;
}

/* Image hero — couvre tout, fondu vers le bas */
.section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/images/hero-design.png') center top / cover no-repeat;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
}

/* Layout deux colonnes hero */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
}

/* Logo visuel (colonne droite) */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 5rem 3rem 2rem;
}

.hero-logo-large {
  width: clamp(220px, 28vw, 400px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.45s forwards;
  filter: drop-shadow(0 4px 32px rgba(133, 118, 78, 0.18));
}

/* Barre rouge verticale gauche */
.hero-accent-line {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: var(--red);
  z-index: 2;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.1s var(--ease-out) 0.2s;
}

.hero-accent-line.visible {
  transform: scaleY(1);
}

/* Contenu principal (colonne gauche) */
.hero-content {
  padding: 4rem 3rem 4rem 6rem;
}

/* Badge centenaire */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}

.hero-badge-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Titre principal */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(5rem, 12vw, 9.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: slideRight 0.9s var(--ease-out) 0.25s forwards;
}

.hero-title span {
  color: var(--red);
  display: block;
}

/* Sous-titre */
.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.55);
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-subtitle strong {
  color: var(--white);
  font-weight: 700;
}

/* Description */
.hero-description {
  font-size: 1.05rem;
  color: rgba(245, 243, 238, 0.5);
  max-width: 480px;
  margin-bottom: 3.5rem;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

/* Actions CTA */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out);
}

.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::after { transform: translateX(0); }

.btn-secondary-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.btn-secondary-link:hover { color: var(--white); }

.btn-secondary-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.btn-secondary-link:hover svg { transform: translateX(4px); }

/* Indicateur scroll */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.3);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(245, 243, 238, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse-dot {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  opacity: 0.5;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0.5; }
  50%  { transform: translateY(8px); opacity: 0.15; }
  100% { transform: translateY(0); opacity: 0.5; }
}

/* (badge centenaire supprimé — remplacé par logo visuel) */

/* ─── HISTOIRE ────────────────────────────────────────── */

.section-histoire {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 0; /* le marquee colle au bas */
}

/* "1925" fantôme en fond */
.histoire-bg-year {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-52%);
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18rem, 38vw, 34rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(204, 27, 38, 0.1);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.histoire-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem 7rem;
}

/* Label + titre */
.section-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.histoire-header {
  margin-bottom: 5rem;
}

.histoire-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}

.histoire-title-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.7s var(--ease-out);
}

.histoire-title-line.visible {
  transform: scaleX(1);
}

/* Grille deux colonnes */
.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.histoire-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.histoire-intro {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.45;
  color: var(--white);
}

.histoire-text p {
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.55);
  line-height: 1.7;
}

/* Galerie photos historiques */
.histoire-photos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.histoire-photo {
  margin: 0;
  position: relative;
  border: 1px solid rgba(245, 243, 238, 0.07);
  background: var(--black);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
  transform-origin: center center;
  z-index: 0;
}

.histoire-photo:hover {
  transform: rotate(2deg) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.histoire-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.45s ease;
}

.histoire-photo:hover img {
  filter: grayscale(0%) contrast(1.08);
}

/* Jalons */
.histoire-milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.histoire-milestone {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(245, 243, 238, 0.07);
}

.histoire-milestone:first-child {
  border-top: 1px solid rgba(245, 243, 238, 0.07);
}

.milestone-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--red);
  letter-spacing: -0.01em;
  line-height: 1;
  padding-top: 0.15rem;
}

.milestone-content strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.milestone-content p {
  font-size: 0.92rem;
  color: rgba(245, 243, 238, 0.45);
  line-height: 1.5;
}

/* Marquee */
.histoire-marquee {
  position: relative;
  z-index: 1;
  background: var(--red);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.95);
}

.marquee-dot {
  color: rgba(245, 243, 238, 0.45) !important;
}

/* ─── ÉQUIPES ─────────────────────────────────────────── */

.section-equipes {
  background: var(--black);
}

/* Bandeau stats — fond rouge */
.stats-band {
  background: var(--red);
  padding: 3.5rem 0;
}

.stats-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  /* Les chiffres comptent via JS */
}

.stat-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.6);
  margin-top: 0.5rem;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(245, 243, 238, 0.2);
  flex-shrink: 0;
}

/* Liste équipes */
.equipes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 5rem 8rem;
}

.equipes-header {
  margin-bottom: 4rem;
}

.equipes-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.equipes-intro {
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.45);
  max-width: 520px;
  line-height: 1.65;
}

/* Ligne équipe */
.equipes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  margin-bottom: 5rem;
}

.equipes-col {
  border-top: 1px solid rgba(245, 243, 238, 0.08);
}

.equipe-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 48px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(245, 243, 238, 0.08);
  cursor: default;
  transition: background 0.25s;
  overflow: hidden;
}

/* Photo équipe */
.equipe-thumb {
  width: 56px;
  height: 56px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(245, 243, 238, 0.04);
  border: 1px solid rgba(245, 243, 238, 0.08);
}

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

/* Placeholder quand l'image est absente */
.equipe-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipe-thumb--empty img { display: none; }

.equipe-thumb--empty::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: rgba(245, 243, 238, 0.12);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Trait rouge gauche au hover */
.equipe-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease-out);
}

.equipe-row:hover .equipe-line {
  transform: scaleY(1);
}

.equipe-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(201, 150, 12, 0.5);
  padding-left: 1rem;
  transition: color 0.25s;
}

.equipe-row:hover .equipe-num {
  color: var(--gold);
}

.equipe-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.equipe-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
}

.equipe-row:hover .equipe-name {
  transform: translateX(6px);
}

.equipe-level {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.35);
}

.equipe-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.35);
  white-space: nowrap;
  transition: color 0.25s;
}

.equipe-row:hover .equipe-cta {
  color: var(--red);
}

.equipe-cta svg {
  transition: transform 0.25s var(--ease-out);
}

.equipe-row:hover .equipe-cta svg {
  transform: translateX(3px);
}

/* Liste des catégories — pleine largeur (plus de colonne calendrier FFF) */
.equipes-body {
  display: block;
}

.equipes-left {
  display: flex;
  flex-direction: column;
}

/* CTA bas */
.equipes-cta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.equipes-cta p {
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.45);
}

/* ─── PARTENAIRES ─────────────────────────────────────── */

.section-partenaires {
  background: var(--black);
}

.partenaires-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 5rem 4rem;
}

.partenaires-header {
  margin-bottom: 1.5rem;
}

.partenaires-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.partenaires-intro {
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.45);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── Partenaires — Grille par rang (style PSG) ─────────── */

.partners-tiers-grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}

.partners-tier-row {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding: 2.8rem 0;
  border-top: 1px solid rgba(201, 150, 12, 0.15);
}

.partners-tier-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1.5;
}

.partners-tier-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  row-gap: 1rem;
  overflow: visible;
  width: 100%;
}

.partner-logo-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-logo-link:hover {
  opacity: 1;
  filter: none;
}

.partner-logo-img {
  width: auto;
  object-fit: contain;
  display: block;
}

.partners-tier-logos--xl .partner-logo-img { height: 200px; max-width: 240px; }
.partners-tier-logos--lg                   { gap: 0.15rem; }
.partners-tier-logos--lg .partner-logo-img { height: 145px; max-width: 145px; }
.partners-tier-logos--md .partner-logo-img { height: 135px; max-width: 275px; }
.partners-tier-logos--sm .partner-logo-img { height: 115px; max-width: 230px; }

.partner-logo-fallback {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.partners-empty {
  padding: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 243, 238, 0.35);
}

.partners-empty a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA partenaire */
.partenaires-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(245, 243, 238, 0.07);
}

.partenaires-cta-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.partenaires-cta-text p {
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.5);
  max-width: 500px;
}


/* ─── CONTACT ──────────────────────────────────────────── */

.section-contact {
  position: relative;
  background: var(--black);
  border-top: 3px solid var(--red);
  overflow: hidden;
}

/* Fond typographique */
.contact-bg-text {
  position: absolute;
  right: -4rem;
  bottom: 6rem;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(14rem, 28vw, 26rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(204, 27, 38, 0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Accroche gauche */
.contact-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 1.5rem;
}

.contact-title span {
  color: var(--red);
  display: block;
}

/* Détails droite */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 3.5rem;
}

.contact-block {}

.contact-block-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.3);
  margin-bottom: 0.8rem;
}

.contact-email {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--gold);
  letter-spacing: -0.01em;
  transition: color 0.2s;
  word-break: break-all;
}

.contact-email:hover { color: var(--white); }

.contact-address {
  font-style: normal;
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.55);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.3);
  transition: color 0.2s;
}

.contact-map-link:hover { color: var(--white); }
.contact-map-link svg { transition: transform 0.2s; }
.contact-map-link:hover svg { transform: translateX(3px); }

/* Réseaux */
.contact-socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  color: rgba(245, 243, 238, 0.4);
  transition: color 0.2s;
}

.contact-social-link svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-social-link:hover { color: var(--white); }


/* ─── FOOTER ───────────────────────────────────────────── */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(245, 243, 238, 0.06);
  padding: 1.8rem 5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-domain {
  font-size: 0.75rem;
  color: rgba(245, 243, 238, 0.2);
  letter-spacing: 0.06em;
}

.footer-domain {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.15);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.25);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

/* ─── BOUTIQUE ──────────────────────────────────────── */

.section-boutique {
  background: var(--black);
  padding: 5rem 0 9rem;
  position: relative;
  overflow: hidden;
}

.boutique-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* En-tête */
.boutique-header {
  margin-bottom: 5rem;
}

.boutique-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 1rem 0 1.5rem;
}

.boutique-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.55);
  max-width: 520px;
  line-height: 1.65;
}

/* Grille produits */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}

/* Un seul produit en vente : carte centrée, largeur contenue */
.boutique-grid--single {
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
}

/* Card produit */
.boutique-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(133, 118, 78, 0.15);
  display: flex;
  flex-direction: column;
}

.boutique-card-img {
  position: relative;
  height: 440px;
  background: rgba(35, 31, 32, 0.6);
  overflow: hidden;
  border-bottom: 1px solid rgba(133, 118, 78, 0.12);
}

.boutique-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.boutique-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(133, 118, 78, 0.12);
  border: 1px solid rgba(133, 118, 78, 0.3);
  padding: 0.3rem 0.7rem;
}

/* Contenu card */
.boutique-card-body {
  padding: 1.75rem 2rem 1rem;
  flex: 1;
}

.boutique-card-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.boutique-card-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(245, 243, 238, 0.45);
  line-height: 1.5;
}

/* Zone bouton commande */
.boutique-card-action {
  padding: 1rem 2rem 1.75rem;
  border-top: 1px solid rgba(133, 118, 78, 0.1);
}

.boutique-btn-order {
  width: 100%;
  justify-content: center;
}

/* CTA Shopify + note bas de section */
.boutique-shopify-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-top: 2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 243, 238, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary svg { transition: transform 0.25s; }
.btn-secondary:hover svg { transform: translateX(4px); }

.boutique-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.35);
  text-align: center;
}

.boutique-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.boutique-note a:hover { color: var(--white); }

/* ─── Burger menu -──────────────────────────────────── */

.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.header-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

/* État ouvert */
.header-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Responsive ──────────────────────────────────────── */

@media (max-width: 768px) {
  .site-header { padding: 0 1.5rem; }

  .header-burger { display: flex; }

  /* Nav mobile — overlay plein écran */
  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
  }
  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  /* Hero layout mobile — colonne unique */
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    padding: 3rem 1.5rem 3rem 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  /* Partenaires mobile */
  .partenaires-inner {
    padding: 5rem 0 4rem;
  }

  .partners-tier-row {
    gap: 1rem;
    padding: 2rem 0;
  }

  .partners-tier-logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .partners-tier-logos--xl .partner-logo-img { height: 100px; max-width: 145px; }
  .partners-tier-logos--lg .partner-logo-img { height: 80px;  max-width: 125px; }
  .partners-tier-logos--md .partner-logo-img { height: 70px;  max-width: 150px; }
  .partners-tier-logos--sm .partner-logo-img { height: 60px;  max-width: 125px; }

  .partenaires-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* Contact mobile */
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 4rem;
    gap: 3rem;
  }

  .contact-details { padding-top: 0; }

  .site-footer {
    padding: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-nav { flex-wrap: wrap; gap: 1rem; }

  /* Équipes mobile */
  .stats-band-inner {
    padding: 0 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .stat-sep { display: none; }

  .stat-item { min-width: 120px; }

  .equipes-inner {
    padding: 5rem 1.5rem 6rem;
  }

  .equipes-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .equipes-col:last-child {
    border-top: none;
  }

  .equipe-row {
    grid-template-columns: 48px 40px 1fr;
    gap: 1rem;
  }

  .equipe-thumb {
    width: 48px;
    height: 48px;
  }

  .equipe-cta { display: none; }

  .equipes-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  /* Histoire mobile */
  .histoire-inner {
    padding: 0 1.5rem 5rem;
  }

  .histoire-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .histoire-bg-year {
    right: -1rem;
    font-size: clamp(12rem, 50vw, 20rem);
  }

  .histoire-milestone {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .histoire-photo:hover {
    transform: rotate(1deg) translateY(-2px);
  }

  /* Boutique mobile */
  .boutique-inner {
    padding: 0 1.5rem 5rem;
  }

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

  .boutique-card-img {
    height: 220px;
  }

  /* Hero mobile — réduire le titre */
  .hero-title {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-bg-text {
    font-size: clamp(30vw, 55vw, 80vw);
    opacity: 0.04;
  }
}
