/* ═══════════════════════════════════════════════
   JUDO CLUB CATTENOM — Premium Dark Theme
   ═══════════════════════════════════════════════ */

/* === VARIABLES === */
:root {
  --bg: #0a0f1c;
  --bg-surface: #111827;
  --bg-elevated: #1a2236;
  --bg-card: #151d2e;
  --accent: #e2b13c;
  --accent-dim: rgba(226, 177, 60, 0.12);
  --accent-soft: #c9962e;
  --text: #e8ecf4;
  --text-muted: #8892a8;
  --text-dim: #5a6478;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #efd07a; }
ul { list-style: none; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAV TOP === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.3s, transform 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.2);
}
.nav--hidden {
  transform: translateY(-100%);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.nav__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s var(--ease);
}
.nav__logo:hover { transform: scale(1.08) rotate(-3deg); }
.nav__title { display: flex; flex-direction: column; line-height: 1.2; }
.nav__club { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.nav__sub { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav__link:hover::after { width: 20px; left: calc(50% - 10px); }
.nav__link--active { color: var(--accent); }
.nav__link--active::after { width: 20px; left: calc(50% - 10px); background: var(--accent); }

.nav__cta {
  margin-left: 12px;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover {
  background: #efd07a;
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(226, 177, 60, 0.3);
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
  z-index: 1010;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform 0.35s var(--ease), opacity 0.25s;
  border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ DRAWER (mobile slide-in) ═══ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  height: 100dvh;
  background: var(--bg-surface);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer.open {
  transform: translateX(0);
}
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.drawer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer__brand strong {
  font-size: 0.95rem;
  color: var(--text);
  display: block;
}
.drawer__brand span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.drawer__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.drawer__close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.drawer__close:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.drawer__nav {
  flex: 1;
  padding: 12px 0;
}
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s, padding-left 0.3s var(--ease);
  border-left: 3px solid transparent;
}
.drawer__link:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 32px;
  color: var(--accent);
}
.drawer__link--active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-dim);
}
.drawer__link svg {
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}
.drawer__link:hover svg {
  opacity: 1;
  transform: translateX(3px);
}
.drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.drawer__cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: background 0.2s, transform 0.2s;
}
.drawer__cta:hover {
  background: #efd07a;
  color: var(--bg);
  transform: translateY(-1px);
}
.drawer__contact {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.drawer__contact a {
  display: block;
  margin-top: 8px;
  color: var(--accent);
}

/* ═══ BOTTOM TAB BAR (mobile app-style) ═══ */
.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-top: 1px solid var(--border);
  padding: 8px 0 env(safe-area-inset-bottom, 12px);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.bottom-bar--visible {
  transform: translateY(0);
}
.bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links { display: none; }
  .nav__title .nav__sub { display: none; }

  .bottom-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0;
  }
  .bottom-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 12px;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-bar__item svg {
    width: 22px;
    height: 22px;
    transition: transform 0.25s var(--ease);
  }
  .bottom-bar__item:active svg {
    transform: scale(0.85);
  }
  .bottom-bar__item:hover,
  .bottom-bar__item:active {
    color: var(--accent);
  }

  /* Home button (center, elevated) */
  .bottom-bar__item--home {
    margin-top: -22px;
    position: relative;
  }
  .bottom-bar__item--home img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 3px solid var(--accent);
    padding: 4px;
    box-shadow: 0 4px 20px rgba(226, 177, 60, 0.25);
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
  }
  .bottom-bar__item--home:active img {
    transform: scale(0.9);
    box-shadow: 0 2px 10px rgba(226, 177, 60, 0.35);
  }

  /* Extra bottom padding on main for tab bar */
  main {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(226, 177, 60, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(30, 58, 110, 0.2) 0%, transparent 60%),
    var(--bg);
  z-index: -1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(226, 177, 60, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero__accent {
  background: linear-gradient(135deg, var(--accent), #f5d98a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 2px 20px rgba(226, 177, 60, 0.25);
}
.btn--primary:hover {
  background: #efd07a;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(226, 177, 60, 0.35);
  color: var(--bg);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* === STATS === */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 2rem + 1vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
@media (max-width: 600px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* === SECTIONS === */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* === DISCIPLINES === */
.disciplines {
  padding: 96px 0;
}
.disciplines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: rgba(226, 177, 60, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.card--featured {
  border-color: rgba(226, 177, 60, 0.2);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(226, 177, 60, 0.04) 100%);
}
.card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.card__tags li {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .disciplines__grid { grid-template-columns: 1fr; }
}

/* === ABOUT === */
.about {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}
.about h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.about .prose, .about p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about__highlights div { display: flex; flex-direction: column; gap: 4px; }
.about__highlights strong { font-family: var(--font-head); font-size: 1rem; color: var(--text); }
.about__highlights span { font-size: 0.85rem; color: var(--text-muted); }

.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid rgba(226, 177, 60, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about__big {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about__big span { font-size: 2rem; }
.about__badge > span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__highlights { flex-wrap: wrap; gap: 20px; }
  .about__visual { order: -1; }
  .about__badge { width: 160px; height: 160px; }
  .about__big { font-size: 2.5rem; }
}

/* === CTA === */
.cta {
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(226, 177, 60, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PAGE HERO === */
.page-hero {
  padding: 140px 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.page-hero__back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.page-hero__back:hover { color: var(--accent); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* === PAGE CONTENT === */
.page-content {
  padding: 64px 0 96px;
}
.prose {
  max-width: 680px;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--text);
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
}
.prose p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.prose strong {
  color: var(--text);
  font-weight: 600;
}
.prose ul, .prose ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.prose li {
  color: var(--text-muted);
  line-height: 1.75;
  list-style: disc;
  margin-bottom: 4px;
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: #efd07a; }
.prose em { color: var(--text-dim); font-style: italic; }

/* Price cards inside tarifs */
.prose ul {
  list-style: none;
  padding-left: 0;
}
.prose ul li {
  list-style: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prose ul li strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--accent);
}
.prose ul li em {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* === FOOTER === */
.footer {
  padding: 64px 0 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer {
    margin-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.footer__brand {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}
.footer__brand strong {
  font-family: var(--font-head);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.footer__brand p { font-size: 0.85rem; color: var(--text-muted); }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__col p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer__bottom p { font-size: 0.8rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.disciplines__grid .card:nth-child(2) { transition-delay: 0.1s; }
.disciplines__grid .card:nth-child(3) { transition-delay: 0.2s; }
.stats__grid .stat:nth-child(2) { transition-delay: 0.08s; }
.stats__grid .stat:nth-child(3) { transition-delay: 0.16s; }
.stats__grid .stat:nth-child(4) { transition-delay: 0.24s; }

/* === BOUTIQUE === */
.page-hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
.product {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}
.product--featured {
  border: 2px solid var(--accent);
}
.product__gallery {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
  cursor: pointer;
}
.product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.product__img--alt {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product__body {
  padding: 24px;
}
.product__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 8px;
}
.product__name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.product__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.size-badge {
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.size-badge.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ── Size selector (dropdown for variable products) ── */
.product__size {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.product__size label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product__size-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 36px 8px 14px;
  cursor: pointer;
  min-width: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23e2b13c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product__size-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226, 177, 60, 0.15);
}
.product__size-select:hover {
  border-color: var(--accent);
}
.product__size-select option:disabled {
  color: #888;
  text-decoration: line-through;
}
.product__size-stock {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}
.cart__size-tag {
  display: inline-block;
  background: rgba(226, 177, 60, 0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 4px;
}

.product__pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.product__price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}
.product__price--old {
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.product__badge {
  padding: 4px 10px;
  background: rgba(226, 177, 60, 0.15);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
}
.boutique__info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}
.boutique__info svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.boutique__info strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-head);
}
.boutique__info span {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.boutique__cta {
  text-align: center;
  padding: 64px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.boutique__cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.boutique__cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.boutique__cta p strong { color: var(--text); }

/* === LOADING === */
.boutique__loading p { color: var(--text-muted); margin-top: 16px; }
.boutique__spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.boutique__error { text-align: center; padding: 60px 0; color: var(--text-muted); }
.boutique__error p { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); border-radius: var(--radius); padding: 20px; display: inline-block; }

/* === STOCK BADGE === */
.stock-badge {
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.stock-badge.low {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

/* === ADD TO CART BUTTON === */
.btn--cart {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font-head);
}
.btn--cart:hover {
  background: var(--accent);
  color: var(--bg);
}

/* === FLOATING CART BUTTON === */
.cart__fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(226, 177, 60, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.cart__fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(226, 177, 60, 0.5); }
.cart__fab span {
  background: var(--bg);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -4px;
}

/* === CART PANEL === */
.cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  z-index: 1001;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s var(--ease);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cart__inner { display: flex; flex-direction: column; height: 100%; }
.cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart__header h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
.cart__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}
.cart__close:hover { color: var(--text); }
.cart__items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart__empty { text-align: center; color: var(--text-muted); padding: 40px 0; }

.cart__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart__item-info { display: flex; flex-direction: column; gap: 4px; }
.cart__item-info strong { font-family: var(--font-head); font-size: 0.95rem; }
.cart__item-info span { font-size: 0.85rem; color: var(--text-muted); }
.cart__item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart__item-actions button {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart__item-actions button:hover { border-color: var(--accent); color: var(--accent); }
.cart__item-actions span { font-weight: 600; min-width: 20px; text-align: center; }
.cart__remove { background: none !important; border: none !important; color: var(--text-dim) !important; font-size: 1rem !important; }
.cart__remove:hover { color: #ef4444 !important; }
.cart__item-subtotal {
  grid-column: 1 / -1;
  text-align: right;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

.cart__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.cart__total-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.cart__form { display: flex; flex-direction: column; gap: 10px; }
.cart__form input {
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.cart__form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dim);
}
.cart__form input::placeholder { color: var(--text-dim); }

@media (max-width: 480px) {
  .cart { width: 100vw; }
  .cart__fab { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.2rem; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   ONE-PAGER SECTIONS
   ═══════════════════════════════════════════════════════════ */

/* === SECTION FLAT (generic full section) === */
.section-flat {
  padding: 100px 0;
}
.section-flat--alt {
  background: var(--bg-surface);
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 8px 0 12px;
  color: var(--text);
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 20px;
}
.section-tag--light {
  color: var(--bg);
  background: var(--accent);
}

/* === SCHEDULE (Horaires) === */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.schedule-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.schedule-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.schedule-card h3 small {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.schedule-slot {
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  line-height: 1.5;
}
.schedule-slot strong {
  color: var(--accent);
  min-width: 90px;
  display: inline-block;
}
.schedule-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.schedule-footer a {
  margin-top: 16px;
  display: inline-block;
}

/* === PRICING (Tarifs) === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(226, 177, 60, 0.08);
}
.price-card--accent {
  border-color: rgba(226, 177, 60, 0.3);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(226, 177, 60, 0.05) 100%);
}
.price-card__header {
  margin-bottom: 16px;
}
.price-card__cat {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.price-card__age {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.price-card__amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.price-card__split {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Family pack */
.family-pack {
  max-width: 700px;
  margin: 0 auto;
}
.family-pack__inner {
  background: var(--accent-dim);
  border: 1px solid rgba(226, 177, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}
.family-pack__inner strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.family-pack__inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === SHOP CTA (Boutique) === */
.shop-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.shop-cta__text h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.shop-cta__text p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.shop-cta__text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.shop-cta__text li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.shop-cta__text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.shop-cta .btn {
  align-self: center;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .shop-cta {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  .shop-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* === ADHESION === */
.adhesion {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(226, 177, 60, 0.06) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}
.adhesion__content {
  max-width: 700px;
  margin: 0 auto;
}
.adhesion h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin: 12px 0 16px;
  color: var(--text);
}
.adhesion p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.adhesion__steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.adhesion__step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.adhesion__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.adhesion__actions .btn--lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* === CONTACT === */
.contact-section {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-card__icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-card a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 7;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Button variants */
.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* Responsive one-pager tweaks */
@media (max-width: 768px) {
  .section-flat,
  .contact-section {
    padding: 64px 0;
  }
  .adhesion {
    padding: 80px 0;
  }
  .adhesion__steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .map-wrapper {
    aspect-ratio: 4 / 3;
  }
}

/* Schedule hero (PDF download) */
.schedule-hero {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.schedule-hero > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.schedule-hero__actions {
  margin-bottom: 32px;
}
.schedule-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
}
.schedule-info svg {
  color: var(--accent);
  flex-shrink: 0;
}
.schedule-info span {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}
.schedule-info strong {
  color: var(--text);
}
