/* =========================================================
   US ROUHLING — Design system
   Rouge, Blanc & Noir — les couleurs du blason officiel, depuis 1947
   ========================================================= */

:root {
  --rouge: #c8102e;
  --rouge-dark: #8c0c21;
  --rouge-darker: #5c0816;
  --rouge-light: #e8394f;
  --noir: #0a0a0c;
  --noir-soft: #17171b;
  --anthracite: #26262c;
  --gris: #6b6b74;
  --gris-clair: #f4f3f1;
  --gris-ligne: #e6e3df;
  --blanc: #ffffff;

  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 14px rgba(10, 10, 12, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 10, 12, 0.12);
  --shadow-lg: 0 26px 60px rgba(10, 10, 12, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--noir);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.5px; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--rouge); color: var(--blanc); }

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

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rouge);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--rouge);
}
.section-head {
  max-width: 640px;
  margin-bottom: 3.2rem;
}
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-top: 0.8rem;
  text-transform: uppercase;
}
.section-head p {
  margin-top: 1.1rem;
  color: var(--gris);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.on-dark p { color: rgba(255,255,255,0.65); }
.section-head.on-dark h2 { color: var(--blanc); }

.section { padding: 6.5rem 0; }
.section.tight { padding: 4rem 0; }
.bg-clair { background: var(--gris-clair); }
.bg-noir { background: var(--noir); color: var(--blanc); }
.bg-noir .gris { color: rgba(255,255,255,0.6); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--rouge);
  color: var(--blanc);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.35);
}
.btn-primary:hover { background: var(--rouge-light); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(200, 16, 46, 0.4); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--blanc);
}
.btn-ghost:hover { border-color: var(--blanc); background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  border-color: var(--noir);
  color: var(--noir);
}
.btn-outline:hover { background: var(--noir); color: var(--blanc); transform: translateY(-3px); }

.btn-gold {
  background: var(--blanc);
  color: var(--noir);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.btn-gold:hover { transform: translateY(-3px); background: var(--gris-clair); box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28); }

.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.72rem; }
.btn-block { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.4rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand .crest { width: 48px; height: 48px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; color: var(--blanc); }
.brand-text strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 1.5px; }
.brand-text span { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 2.1rem; }
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--rouge-light);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--blanc); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.burger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--blanc);
  align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.mobile-nav {
  position: fixed; inset: 0; z-index: 600;
  background: var(--noir);
  display: flex; flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.08); color: var(--blanc); font-size: 1.2rem; }
.mobile-nav ul { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--blanc); letter-spacing: 1px; }
.mobile-nav .btn { margin-top: 2.5rem; align-self: stretch; justify-content: center; white-space: normal; text-align: center; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .burger { display: inline-flex; }
  .header-actions .btn-gold.desktop-only { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 85% 0%, var(--rouge-darker) 0%, var(--noir) 55%), var(--noir);
  color: var(--blanc);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  opacity: 0.5;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 62vw; height: 62vw;
  max-width: 780px; max-height: 780px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
  z-index: -1;
}
.hero-inner { padding-top: 7rem; padding-bottom: 4rem; position: relative; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.8rem;
}
.hero-tag span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rouge-light); box-shadow: 0 0 0 4px rgba(200,16,46,0.25); }

.hero h1 {
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--rouge-light); }
.hero-lead {
  margin-top: 1.6rem;
  max-width: 540px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }

.hero-stats {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 2rem 2.5rem;
  max-width: 100%;
}
@media (max-width: 420px) {
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
  .hero-stats .stat b { font-size: 2rem; }
}
.hero-stats .stat b {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--blanc);
  display: block;
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.heritage-stamp {
  position: absolute;
  top: 6.5rem; right: 2.5rem;
  width: 108px; height: 108px;
  border: 1.5px dashed rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-11deg);
  z-index: 1;
}
.heritage-stamp span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.heritage-stamp span b { display: block; font-size: 1.3rem; color: rgba(255,255,255,0.75); letter-spacing: 1px; }
@media (max-width: 960px) { .heritage-stamp { display: none; } }

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--rouge-light), transparent); animation: scrollcue 1.8s infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: scaleY(0.4); } 50% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); } }

/* ---------- Breadcrumb / page hero (sous-pages) ---------- */
.page-hero {
  position: relative;
  padding: 10.5rem 0 5rem;
  background: linear-gradient(160deg, var(--noir) 0%, var(--rouge-darker) 130%);
  color: var(--blanc);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--rouge-light); }
.page-hero .eyebrow::before { background: var(--rouge-light); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase; margin-top: 0.8rem; }
.page-hero p { margin-top: 1.1rem; max-width: 560px; color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.7; }
.crumb { margin-top: 2rem; display: flex; gap: 0.5rem; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }
.crumb a:hover { color: var(--blanc); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: minmax(0, 1fr); } .grid-2 { grid-template-columns: minmax(0, 1fr); } }

.card {
  background: var(--blanc);
  box-shadow: var(--shadow-sm);
  padding: 2.4rem 2.4rem 2.4rem 2.7rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px;
  background: var(--rouge);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-card {
  background: var(--noir);
  color: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
@media (min-width: 901px) {
  .grid-3 .team-card:nth-child(2) { transform: translateY(-1.4rem); }
  .grid-3 .team-card:nth-child(2):hover { transform: translateY(-1.4rem) translateY(-8px); }
}
.team-card .band {
  height: 210px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 1.6rem;
  background: linear-gradient(150deg, var(--rouge-dark), var(--noir) 85%);
  overflow: hidden;
}
.team-card .band .num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,0.14);
  position: absolute; right: 1rem; top: -0.5rem;
}
.team-card .band h3 { position: relative; font-size: 1.8rem; text-transform: uppercase; }
.team-card .body { padding: 1.8rem; }
.team-card .body .tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--rouge-light); border: 1px solid rgba(232,57,79,0.4); border-radius: 999px; padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}
.team-card .body p { color: rgba(255,255,255,0.65); line-height: 1.7; font-size: 0.95rem; }
.team-card .meta { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.team-card .meta div { display: flex; gap: 0.7rem; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.team-card .meta i { color: var(--rouge-light); width: 16px; text-align: center; }
.team-card .body .btn { margin-top: 1.6rem; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--rouge);
  color: var(--blanc);
  padding: 3.5rem 0;
}
.stats-strip .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); text-align: center; }
@media (max-width: 760px) { .stats-strip .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.2rem; } }
.stats-strip b { font-family: var(--font-display); font-size: 3.2rem; display: block; line-height: 1; }
.stats-strip span { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }

/* ---------- Timeline (Histoire) ---------- */
.timeline { position: relative; margin-top: 1rem; }
.timeline::before {
  content: "";
  position: absolute; left: 26px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(var(--rouge), var(--noir) 50%, var(--gris-ligne));
}
.timeline-item { position: relative; padding-left: 76px; margin-bottom: 3.2rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item .dot {
  position: absolute; left: 12px; top: 4px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blanc); border: 3px solid var(--rouge);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--rouge); font-weight: 700;
}
.timeline-item .year {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--rouge);
  letter-spacing: 1px;
}
.timeline-item h3 { text-transform: uppercase; font-size: 1.3rem; margin-top: 0.2rem; }
.timeline-item p { margin-top: 0.7rem; color: var(--gris); line-height: 1.75; max-width: 640px; }

@media (max-width: 600px) {
  .timeline-item { padding-left: 56px; }
  .timeline::before { left: 18px; }
  .timeline-item .dot { left: 3px; width: 26px; height: 26px; }
}

/* ---------- Buteurs / leaderboard ---------- */
.notice {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: #fff7e8; border: 1px solid #f0dcae;
  color: #6b5623;
  padding: 1.1rem 1.4rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; line-height: 1.6; margin-bottom: 3rem;
}
.notice i { color: #a9821f; margin-top: 0.15rem; }

.tabs { display: flex; gap: 0.7rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
  border: 2px solid var(--gris-ligne);
  background: var(--blanc);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gris);
  transition: all 0.25s var(--ease);
}
.tab-btn.active, .tab-btn:hover { background: var(--noir); border-color: var(--noir); color: var(--blanc); }

.podium { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; margin-bottom: 3.5rem; align-items: end; }
.podium .p-card {
  background: var(--noir); color: var(--blanc); border-radius: var(--radius);
  padding: 1.8rem 1.2rem 1.6rem; text-align: center; position: relative; overflow: hidden;
}
.podium .p-card.gold { transform: translateY(-18px); border: 1px solid rgba(198,166,100,0.5); }
.podium .medal {
  position: relative; width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--noir);
}
.podium .gold .medal { background: linear-gradient(135deg, #f4d98a, #c6a664); }
.podium .silver .medal { background: linear-gradient(135deg, #eaeaea, #b9b9c0); }
.podium .bronze .medal { background: linear-gradient(135deg, #d9a66c, #a85f34); color: var(--blanc); }
.podium .p-card .pname { position: relative; font-size: 1.15rem; font-weight: 700; }
.podium .p-card .pteam { position: relative; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }
.podium .p-card .pgoals { position: relative; font-family: var(--font-display); font-size: 2.6rem; margin-top: 0.8rem; color: var(--rouge-light); }
.podium .p-card .pgoals small { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 1px; color: rgba(255,255,255,0.5); display: block; }
@media (max-width: 700px) {
  .podium { grid-template-columns: minmax(0, 1fr); }
  .podium .p-card.gold { order: -1; transform: none; }
}

.score-table { width: 100%; border-collapse: collapse; background: var(--blanc); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.score-table thead th {
  background: var(--noir); color: var(--blanc);
  text-align: left; padding: 1rem 1.3rem; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.score-table td { padding: 1rem 1.3rem; border-bottom: 1px solid var(--gris-ligne); font-size: 0.95rem; }
.score-table tbody tr:last-child td { border-bottom: none; }
.score-table tbody tr:hover { background: var(--gris-clair); }
.score-table .rank { font-family: var(--font-display); font-size: 1.2rem; color: var(--rouge); width: 40px; }
.score-table .goals { font-family: var(--font-display); font-size: 1.3rem; color: var(--noir); }
.score-table .player { font-weight: 700; }
.score-table .team-pill { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gris); }
.table-wrap { overflow-x: auto; }

/* ---------- Histoire quotes / valeurs ---------- */
.quote-block {
  border-left: 4px solid var(--rouge);
  padding: 0.4rem 0 0.4rem 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--noir);
  margin: 3.5rem 0;
  text-transform: uppercase;
}
.quote-block span { color: var(--rouge); }

.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.6rem; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: minmax(0, 1fr); } }
.value-item { text-align: center; padding: 2rem 1.2rem; border: 1px solid var(--gris-ligne); border-radius: var(--radius); }
.value-item i { font-size: 1.7rem; color: var(--rouge); margin-bottom: 1rem; }
.value-item h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.6rem; font-family: var(--font-body); font-weight: 800; }
.value-item p { font-size: 0.85rem; color: var(--gris); line-height: 1.6; }

/* ---------- Boutique CTA ---------- */
.shop-band {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--rouge-darker), var(--noir) 70%);
  color: var(--blanc);
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.shop-band::after {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  border: 2px solid rgba(198,166,100,0.25); border-radius: 50%;
}
.shop-band .txt { position: relative; max-width: 560px; }
.shop-band .eyebrow { color: var(--rouge-light); }
.shop-band .eyebrow::before { background: var(--rouge-light); }
.shop-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); text-transform: uppercase; margin-top: 0.7rem; }
.shop-band p { margin-top: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.shop-band .cta { position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

.form-field { margin-bottom: 1.5rem; }
.form-field label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gris); margin-bottom: 0.5rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.95rem 1.1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gris-ligne); background: var(--gris-clair);
  transition: border-color 0.25s, background 0.25s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--rouge); background: var(--blanc);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: minmax(0, 1fr); } }
.form-note { font-size: 0.82rem; color: var(--gris); margin-top: 1rem; line-height: 1.6; }
#form-status { margin-top: 1rem; font-size: 0.9rem; font-weight: 600; }
#form-status.ok { color: #1b7a3d; }
#form-status.err { color: var(--rouge); }

.info-card { background: var(--noir); color: var(--blanc); border-radius: var(--radius); padding: 2.4rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.info-row:last-child { border-bottom: none; }
.info-row i { width: 38px; height: 38px; border-radius: 50%; background: rgba(200,16,46,0.18); color: var(--rouge-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-row div span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.info-row div strong { font-weight: 600; font-size: 0.95rem; }
.social-row { display: flex; gap: 0.8rem; margin-top: 1.8rem; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.25s, transform 0.25s; }
.social-row a:hover { background: var(--rouge); transform: translateY(-3px); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 2rem; filter: grayscale(0.3) contrast(1.05); }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---------- Team detail (page Équipes) ---------- */
.team-detail { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 3.5rem; align-items: center; }
.team-detail.reverse { direction: rtl; }
.team-detail.reverse > * { direction: ltr; }
@media (max-width: 900px) { .team-detail, .team-detail.reverse { grid-template-columns: minmax(0, 1fr); direction: ltr; } }

.team-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--rouge-dark), var(--noir) 85%);
}
.team-visual .letter { position: relative; font-family: var(--font-display); font-size: 11rem; color: rgba(255,255,255,0.9); line-height: 1; }
.team-visual .letter small { position: absolute; bottom: -6px; right: -14px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blanc); background: rgba(0,0,0,0.4); padding: 0.3rem 0.7rem; border-radius: 999px; }

.fact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.fact-list div { display: flex; gap: 1rem; align-items: center; }
.fact-list i { width: 42px; height: 42px; border-radius: 50%; background: var(--gris-clair); color: var(--rouge); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fact-list strong { display: block; font-size: 0.95rem; }
.fact-list span { font-size: 0.78rem; color: var(--gris); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--noir); color: rgba(255,255,255,0.7); padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr); gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }
.footer-grid h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blanc); margin-bottom: 1.3rem; font-weight: 700; }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-grid a:hover { color: var(--blanc); }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; color: rgba(255,255,255,0.55); }
.footer-bottom { padding: 1.8rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1.active { transition-delay: 0.1s; }
.reveal-delay-2.active { transition-delay: 0.2s; }
.reveal-delay-3.active { transition-delay: 0.3s; }

/* ---------- Misc ---------- */
.mt-lg { margin-top: 4rem; }
.text-center { text-align: center; }
.divider-line { height: 1px; background: var(--gris-ligne); margin: 4rem 0; }
