
:root {
  --black: #11110f;
  --black-soft: #1a1a17;
  --gold: #c6a15b;
  --gold-light: #dfc685;
  --cream: #f6f1e7;
  --warm-white: #fbfaf7;
  --warm-gray: #a39d92;
  --text: #181816;

  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--warm-white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);

  background: linear-gradient(
    to bottom,
    rgba(9, 9, 8, .80),
    rgba(9, 9, 8, .38),
    rgba(9, 9, 8, 0)
  );

  transition:
    height .35s ease,
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.site-header.scrolled {
  height: 74px;
  background: rgba(17, 17, 15, .94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
}

.header-inner {
  width: min(1480px, calc(100% - 56px));
  height: 100%;
  margin-inline: auto;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}


/* BRAND */

.brand {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 100%;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--gold);
  line-height: 1;
}

.brand-separator {
  width: 1px;
  height: 42px;
  background: rgba(198, 161, 91, .8);
}


/* NAV */

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: clamp(18px, 1.55vw, 30px);
}

.nav-link {
  position: relative;

  display: flex;
  align-items: center;
  gap: 6px;

  height: 100%;
  border: 0;
  background: none;

  color: rgba(255,255,255,.92);

  font-size: 14.5px;
  font-weight: 650;

  cursor: pointer;
  white-space: nowrap;

  transition: color .25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;

  width: 0;
  height: 2px;

  background: var(--gold);
  border-radius: 999px;

  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.activities-button svg {
  width: 14px;
  height: 14px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;

  transition: transform .25s ease;
}

.mega-wrapper {
  position: static;
  display: flex;
  align-items: stretch;
}

.mega-wrapper:hover .activities-button svg {
  transform: rotate(180deg);
}


/* CTA HEADER */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.register-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 138px;
  min-height: 46px;

  padding: 0 22px;

  border-radius: 999px;

  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;

  box-shadow: 0 10px 28px rgba(198,161,91,.18);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.register-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(198,161,91,.30);
}


/* =========================================================
   MEGA MENU
========================================================= */

.mega-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;

  width: min(980px, calc(100vw - 60px));
  padding-top: 15px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, -10px);

  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease;
}

.mega-wrapper:hover .mega-menu,
.mega-wrapper:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: .9fr 1.15fr 1.35fr;
  gap: 28px;

  padding: 28px;

  border: 1px solid rgba(198,161,91,.23);
  border-radius: 20px;

  background: rgba(18,18,16,.98);
  box-shadow: 0 25px 65px rgba(0,0,0,.30);
}

.mega-heading {
  padding-right: 22px;
  border-right: 1px solid rgba(255,255,255,.09);
}

.small-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .20em;
}

.mega-heading h2 {
  margin: 8px 0 10px;

  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  color: #fff;
  letter-spacing: -.04em;
}

.mega-heading p {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.55;
}

.mega-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-title {
  min-height: 40px;

  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 5px;

  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.gold-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--gold);

  box-shadow: 0 0 0 5px rgba(198,161,91,.10);
}

.mega-group a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 9px 10px;

  border-radius: 9px;

  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 600;

  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.mega-group a span {
  color: var(--gold);
  opacity: 0;
  transform: translateX(-5px);
  transition: .2s ease;
}

.mega-group a:hover {
  color: var(--gold-light);
  background: rgba(198,161,91,.09);
  transform: translateX(2px);
}

.mega-group a:hover span {
  opacity: 1;
  transform: translateX(0);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;
  background: var(--black);
}


/* IMAGE */

.hero-photo {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.015);
}


/* DARK OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8,8,7,.72) 0%,
      rgba(8,8,7,.49) 38%,
      rgba(8,8,7,.32) 66%,
      rgba(8,8,7,.42) 100%
    ),
    linear-gradient(
      to top,
      rgba(7,7,6,.48) 0%,
      rgba(7,7,6,.04) 43%,
      rgba(7,7,6,.12) 100%
    );
}

.hero-top-shadow {
  position: absolute;
  inset: 0 0 auto;
  height: 190px;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.43),
    transparent
  );
}


/* HERO CONTENT */

.hero-inner {
  position: relative;
  z-index: 5;

  width: min(1120px, calc(100% - 64px));
  margin: 86px auto 0;

  display: grid;
  grid-template-columns: 280px 1px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}


/* LOGO */

.hero-logo-card {
  width: 280px;
  display: grid;
  place-items: center;
  background: transparent;
}

.hero-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.22));
}

.hero-line {
  width: 1px;
  height: 265px;

  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 15%,
    var(--gold) 85%,
    transparent
  );
}


/* TEXT */

.hero-copy {
  max-width: 760px;
}

.hero-eyebrow {
  margin-bottom: 7px;

  color: #fff;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 600;

  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  line-height: .98;
}

.hero-copy h1 span {
  display: block;

  color: var(--gold-light);

  font-size: clamp(44px, 4.35vw, 72px);
  font-weight: 800;

  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero-copy h1 strong {
  display: block;

  margin-top: 15px;

  color: #fff;

  font-size: clamp(34px, 3.7vw, 60px);
  font-weight: 500;

  letter-spacing: -.04em;
}

.hero-cta {
  margin-top: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  min-height: 60px;

  padding: 0 26px;

  border: 1px solid var(--gold-light);
  border-radius: 13px;

  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);

  font-size: 14px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .035em;

  box-shadow: 0 15px 35px rgba(0,0,0,.15);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 19px 40px rgba(0,0,0,.23);
}

.cta-arrow {
  font-size: 22px;
  line-height: 1;
  transition: transform .25s ease;
}

.hero-cta:hover .cta-arrow {
  transform: translateX(4px);
}


/* CLEAN STRAIGHT BOTTOM — NO CURVE */

.scroll-hint {
  position: absolute;
  z-index: 5;

  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color: rgba(255,255,255,.68);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}



/* =========================================================
   BIENVENUE À L'ASEG
========================================================= */

.welcome-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 0;
  background: var(--cream);
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(198, 161, 91, .16);
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.welcome-inner {
  position: relative;
  z-index: 1;

  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(70px, 8vw, 130px);
  align-items: start;
}

.welcome-heading {
  position: relative;
}

.welcome-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.welcome-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.welcome-heading h2 {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  color: var(--black);

  font-size: clamp(46px, 5.1vw, 74px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.065em;
}

.welcome-copy {
  max-width: 640px;
  padding-top: 34px;
}

.welcome-copy p {
  margin: 0 0 20px;

  color: #666159;
  font-size: 17px;
  line-height: 1.75;
}

.welcome-copy strong {
  color: var(--black);
  font-weight: 700;
}

.welcome-signature {
  margin-top: 30px !important;

  color: var(--black) !important;

  font-family: "Montserrat", sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: -.02em;
}

.welcome-signature::after {
  content: "";
  display: block;

  width: 72px;
  height: 2px;

  margin-top: 16px;

  background: var(--gold);
}


/* STATS */

.stats-wrap {
  margin-top: 100px;

  border-top: 1px solid rgba(17, 17, 15, .10);
  background: rgba(255, 255, 255, .23);
}

.stats-grid {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  position: relative;

  min-height: 190px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 34px 42px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: 0;
  bottom: 44px;

  width: 1px;

  background: rgba(17, 17, 15, .10);
}

.stat-number {
  color: var(--gold);

  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: 1;
  font-weight: 800;

  letter-spacing: -.06em;
}

.stat-label {
  margin-top: 9px;

  color: var(--black);
  font-size: 13px;
  font-weight: 700;

  letter-spacing: .08em;
  text-transform: uppercase;
}


/* RESPONSIVE WELCOME */

@media (max-width: 900px) {
  .welcome-section {
    padding-top: 95px;
  }

  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .welcome-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .stats-wrap {
    margin-top: 70px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(17, 17, 15, .10);
  }
}

@media (max-width: 560px) {
  .welcome-section {
    padding-top: 78px;
  }

  .welcome-inner,
  .stats-grid {
    width: calc(100% - 36px);
  }

  .welcome-kicker {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .welcome-heading h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .welcome-copy p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    min-height: 150px;
    padding: 26px 18px;
  }

  .stat-item::after {
    top: 30px !important;
    bottom: 30px !important;
  }

  .stat-number {
    font-size: 46px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.35;
  }
}


/* =========================================================
   NOS ACTIVITÉS
========================================================= */

.activities-section {
  position: relative;
  overflow: hidden;

  padding: 105px 0 140px;

  background: var(--black);
}

.activities-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.12), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.018), transparent 40%);
  pointer-events: none;
}

.activities-inner {
  position: relative;
  z-index: 1;

  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
}

.activities-intro {
  margin-bottom: 46px;
}

.activities-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 24px;

  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.activities-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.activities-intro-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(70px, 8vw, 130px);
  align-items: end;
}

.activities-intro h2 {
  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(50px, 5.5vw, 78px);
  line-height: .94;
  font-weight: 800;
  letter-spacing: -.065em;
}

.activities-intro p {
  max-width: 620px;
  margin: 0 0 4px;

  color: rgba(255,255,255,.64);

  font-size: 17px;
  line-height: 1.75;
}


/* CARDS */

.activities-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.activity-card {
  position: relative;
  overflow: hidden;

  min-height: 370px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 34px;

  border-radius: 24px;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.activity-card:hover {
  transform: translateY(-7px);
}

.activity-card-light {
  background: var(--cream);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.activity-card-dark {
  background:
    linear-gradient(145deg, rgba(255,255,255,.03), transparent 42%),
    #171714;

  border: 1px solid rgba(198,161,91,.22);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.activity-card-dark:hover {
  border-color: rgba(198,161,91,.45);
}


/* CONTENT */

.activity-card-content {
  position: relative;
  z-index: 3;
}

.activity-card-label {
  display: block;
  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.activity-card-light .activity-card-label {
  color: #7a746b;
}

.activity-card-dark .activity-card-label {
  color: rgba(255,255,255,.48);
}

.activity-card h3 {
  margin: 0 0 15px;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
}

.activity-card-light h3 {
  color: var(--black);
}

.activity-card-dark h3 {
  color: #fff;
}

.activity-list {
  max-width: 440px;
  margin: 0;

  font-size: 15px;
  line-height: 1.65;
}

.activity-card-light .activity-list {
  color: #6d675e;
}

.activity-card-dark .activity-list {
  color: rgba(255,255,255,.60);
}

.activity-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 28px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;

  transition: gap .25s ease;
}

.activity-card-light .activity-link {
  color: var(--black);
}

.activity-card-dark .activity-link {
  color: var(--gold-light);
}

.activity-card:hover .activity-link {
  gap: 18px;
}

.activity-arrow {
  font-size: 19px;
  line-height: 1;
}


/* RESPONSIVE ACTIVITIES */

@media (max-width: 900px) {
  .activities-section {
    padding: 100px 0 110px;
  }
.activities-intro p {
    max-width: 650px;
  }

  .activities-cards {
    grid-template-columns: 1fr;
  }

  .activity-card {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .activities-inner {
    width: calc(100% - 36px);
  }

  .activities-section {
    padding: 82px 0 88px;
  }

  .activities-kicker {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .activities-intro {
    margin-bottom: 42px;
  }

  .activities-intro h2 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .activities-intro p {
    font-size: 15.5px;
    line-height: 1.7;
  }
.activity-card {
    min-height: 360px;
    padding: 27px;
    border-radius: 19px;
  }

  .activity-card h3 {
    font-size: 39px;
  }

  .activity-list {
    font-size: 14px;
  }

  .activity-link {
    margin-top: 28px;
    font-size: 11px;
  }
}


/* =========================================================
   SUIVEZ L'ASEG / ACTUALITÉS
========================================================= */

.follow-section {
  padding: 120px 0 125px;
  background: var(--cream);
}

.follow-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.follow-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.follow-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.follow-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.follow-heading h2 {
  margin: 0;

  color: var(--black);

  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.06em;
}

.follow-heading p {
  max-width: 680px;
  margin: 24px 0 0;

  color: #69645c;

  font-size: 17px;
  line-height: 1.75;
}


/* CAROUSEL */

.news-carousel-wrap {
  position: relative;
}

.news-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 4px 2px 18px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.news-carousel::-webkit-scrollbar {
  display: none;
}

.news-card {
  scroll-snap-align: start;

  overflow: hidden;

  min-height: 470px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(17,17,15,.08);
  border-radius: 20px;

  background: #fff;

  box-shadow: 0 14px 35px rgba(17,17,15,.06);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(17,17,15,.10);
}

.news-media {
  position: relative;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  background: #e8e3da;
}

.placeholder-media {
  display: grid;
  place-items: center;

  background:
    radial-gradient(circle at 70% 20%, rgba(198,161,91,.35), transparent 28%),
    linear-gradient(135deg, #1b1b18, #2b2923);
}

.placeholder-media::before {
  content: "";
  position: absolute;
  inset: 18px;

  border: 1px solid rgba(198,161,91,.30);
  border-radius: 14px;
}

.placeholder-media span {
  position: relative;
  z-index: 1;

  color: var(--gold-light);

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 22px;
}

.news-date {
  color: var(--gold);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.news-content h3 {
  margin: 0;

  color: var(--black);

  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.news-content p {
  margin: 0;

  color: #777168;

  font-size: 14px;
  line-height: 1.6;
}


/* ARROWS */

.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 44%;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(17,17,15,.10);
  border-radius: 50%;

  background: rgba(255,255,255,.94);
  color: var(--black);

  font-size: 19px;

  box-shadow: 0 10px 26px rgba(17,17,15,.10);

  cursor: pointer;

  transition:
    transform .22s ease,
    background .22s ease,
    color .22s ease;
}

.carousel-arrow:hover {
  transform: scale(1.05);
  background: var(--black);
  color: var(--gold-light);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}


/* FOOTER LINK */

.follow-footer {
  margin-top: 34px;
  display: flex;
  justify-content: flex-start;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--black);

  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;

  transition:
    color .22s ease,
    gap .22s ease;
}

.instagram-link:hover {
  color: var(--gold);
  gap: 17px;
}

.instagram-link span {
  font-size: 18px;
}


/* RESPONSIVE */

@media (max-width: 900px) {
  .follow-section {
    padding: 95px 0 100px;
  }

  .news-carousel {
    grid-auto-columns: minmax(280px, 72%);
  }

  .carousel-arrow {
    display: none;
  }

  .follow-footer {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .follow-inner {
    width: calc(100% - 36px);
  }

  .follow-section {
    padding: 78px 0 82px;
  }

  .follow-kicker {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .follow-heading {
    margin-bottom: 38px;
  }

  .follow-heading h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .follow-heading p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .news-carousel {
    grid-auto-columns: 86%;
    gap: 14px;
  }

  .news-card {
    min-height: 430px;
  }
}

/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
  display: none;

  position: relative;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;

  background: rgba(255,255,255,.06);
}

.menu-toggle span {
  position: absolute;
  left: 13px;

  width: 18px;
  height: 2px;

  background: #fff;
  border-radius: 99px;

  transition: .28s ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle.open span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.open span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 900;

  padding: 105px 26px 30px;

  background: var(--black);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);

  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease;

  overflow-y: auto;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  min-height: calc(100vh - 135px);

  display: flex;
  flex-direction: column;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav > a,
.mobile-activities {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.10);

  background: none;
  color: #fff;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 6vw, 27px);
  font-weight: 600;

  text-align: left;
}

.mobile-activities span {
  color: var(--gold);
  font-size: 28px;
  font-weight: 400;

  transition: transform .25s ease;
}

.mobile-activities.open span {
  transform: rotate(45deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;

  padding-left: 17px;

  transition:
    max-height .35s ease,
    padding .35s ease;
}

.mobile-submenu.open {
  max-height: 520px;
  padding-top: 12px;
  padding-bottom: 20px;
}

.mobile-submenu p {
  margin: 14px 0 7px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;

  text-transform: uppercase;
}

.mobile-submenu a {
  display: block;
  padding: 7px 0;

  color: rgba(255,255,255,.64);

  font-size: 15px;
  font-weight: 600;
}

.mobile-bottom {
  margin-top: auto;
  padding-top: 30px;
}

.mobile-register {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  border-radius: 13px;

  background: var(--gold);
  color: var(--black);

  font-weight: 800;
  text-transform: uppercase;
}

.mobile-social {
  display: flex;
  gap: 22px;

  padding-top: 24px;

  color: rgba(255,255,255,.50);

  font-size: 13px;
  font-weight: 600;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1320px) {
  .header-inner {
    width: calc(100% - 36px);
    gap: 22px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 13px;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-separator {
    height: 34px;
  }

  .register-button {
    min-width: 118px;
    padding-inline: 17px;
  }
}

@media (max-width: 1110px) {
  .desktop-nav,
  .register-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-inner {
    width: min(900px, calc(100% - 48px));
    grid-template-columns: 220px 1px minmax(0,1fr);
    gap: 30px;
  }

  .hero-logo-card {
    width: 205px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header.scrolled {
    height: 68px;
  }

  .header-inner {
    width: calc(100% - 26px);
  }

  .brand {
    gap: 15px;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-separator {
    height: 28px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-photo {
    object-position: 55% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(7,7,6,.78) 0%,
        rgba(7,7,6,.45) 50%,
        rgba(7,7,6,.35) 100%
      );
  }

  .hero-inner {
    width: calc(100% - 38px);
    margin-top: 90px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    gap: 25px;
  }

  .hero-logo-card {
    width: 170px;
  }

  .hero-line {
    width: 74px;
    height: 1px;

    background: linear-gradient(to right, var(--gold), transparent);
  }

  .hero-eyebrow {
    font-size: 15px;
  }

  .hero-copy h1 span {
    font-size: clamp(40px, 11vw, 54px);
  }

  .hero-copy h1 strong {
    margin-top: 11px;
    font-size: clamp(31px, 9vw, 44px);
  }

  .hero-cta {
    margin-top: 28px;
    min-height: 56px;
  }

  .scroll-hint {
    display: none;
  }

  .intro-grid {
    width: calc(100% - 38px);
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


@media (min-width: 561px) {
  .activities-intro h2 {
    white-space: nowrap;
  }
}


/* Cartes : contenu naturel, seul le CTA reste aligné en bas */
.activity-card {
  justify-content: stretch;
}

.activity-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 302px;
}

.activity-card-label {
  align-self: auto;
}

.activity-card h3 {
  display: block;
  min-height: 0;
  margin: 0 0 15px;
}

.activity-list {
  margin: 0;
}

.activity-link {
  margin-top: auto;
  padding-top: 28px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .activities-intro-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .activities-intro p {
    max-width: 700px;
  }

  .activity-card-content {
    min-height: 290px;
  }
}


/* V12 — cartes comme la version validée, CTA uniquement aligné */
.activity-card {
  min-height: 470px;
  padding: 36px;
  justify-content: center;
}

.activity-card-content {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 300px;
}

.activity-card-label {
  margin-bottom: 12px;
}

.activity-card h3 {
  display: block;
  min-height: 0;
  margin: 0 0 18px;
}

.activity-list {
  margin: 0;
}

.activity-link {
  margin-top: auto;
  padding-top: 34px;
  align-self: flex-start;
}

/* Intro : le paragraphe de droite commence à la hauteur du titre */
.activities-intro-split {
  align-items: start;
}

.activities-intro p {
  margin: 0;
  padding-top: 2px;
}

@media (max-width: 900px) {
  .activity-card {
    min-height: 390px;
  }

  .activity-card-content {
    min-height: 280px;
  }

  .activities-intro-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 560px) {
  .activity-card {
    min-height: 360px;
    padding: 27px;
  }

  .activity-card-content {
    min-height: 270px;
  }
}


/* V13 — proportions des cartes calées sur la capture validée */
.activities-cards {
  gap: 24px;
}

.activity-card {
  min-height: 350px;
  padding: 34px;
  border-radius: 24px;
  justify-content: center;
}

.activity-card-content {
  display: flex;
  flex-direction: column;
  height: 270px;
  min-height: 0;
}

.activity-card-label {
  margin-bottom: 12px;
}

.activity-card h3 {
  margin: 0 0 18px;
  min-height: 0;
}

.activity-list {
  margin: 0;
}

.activity-link {
  margin-top: auto;
  padding-top: 26px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .activity-card {
    min-height: 330px;
  }

  .activity-card-content {
    height: 250px;
  }
}

@media (max-width: 560px) {
  .activity-card {
    min-height: 310px;
    padding: 27px;
  }

  .activity-card-content {
    height: 235px;
  }
}


/* V17 — CTA Instagram plus visible */
.instagram-link {
  font-size: 16px;
  gap: 14px;
}

.instagram-link span {
  font-size: 23px;
}

.instagram-link:hover {
  gap: 20px;
}

@media (max-width: 560px) {
  .instagram-link {
    font-size: 14px;
  }

  .instagram-link span {
    font-size: 20px;
  }
}


/* Publications Instagram réelles */
.news-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.news-card:hover .news-media img {
  transform: scale(1.035);
}

.instagram-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;

  padding: 7px 10px;
  border-radius: 999px;

  background: rgba(17,17,15,.82);
  color: #fff;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;

  padding: 92px 0 28px;

  background:
    radial-gradient(circle at 85% 12%, rgba(198,161,91,.09), transparent 26%),
    var(--black);

  color: #fff;
  border-top: 1px solid rgba(198,161,91,.18);
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -105px;

  transform: translateX(-50%);

  font-family: "Montserrat", sans-serif;
  font-size: clamp(190px, 27vw, 430px);
  line-height: .75;
  font-weight: 900;
  letter-spacing: -.08em;

  color: rgba(255,255,255,.018);

  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footer-inner {
  position: relative;
  z-index: 2;

  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .72fr 1fr 1.15fr;
  gap: clamp(42px, 5vw, 78px);

  padding-bottom: 76px;
}

.footer-brand-name {
  display: block;

  margin-bottom: 20px;

  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
}

.footer-brand p {
  margin: 0;

  color: rgba(255,255,255,.88);

  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.footer-tagline {
  display: inline-block;

  margin-top: 25px;

  color: rgba(255,255,255,.46);
  font-size: 13px;
  line-height: 1.5;
}

.footer-title {
  display: block;

  margin-bottom: 25px;

  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a {
  position: relative;

  display: inline-block;
  margin-bottom: 12px;

  color: rgba(255,255,255,.68);
  font-size: 14px;
  font-weight: 600;

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-location address {
  display: flex;
  flex-direction: column;

  margin: 0 0 25px;

  color: rgba(255,255,255,.60);

  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
}

.footer-location address:last-child {
  margin-bottom: 0;
}

.footer-location strong {
  margin-bottom: 3px;

  color: rgba(255,255,255,.90);
  font-weight: 700;
}

.footer-email {
  display: inline-block;

  margin-bottom: 26px;

  color: #fff;
  font-size: 16px;
  font-weight: 700;

  border-bottom: 1px solid rgba(198,161,91,.55);

  transition:
    color .2s ease,
    border-color .2s ease;
}

.footer-email:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 17px;

  color: rgba(255,255,255,.76);

  transition:
    color .2s ease,
    transform .2s ease;
}

a.footer-social:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-social-icon {
  flex: 0 0 auto;

  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;

  color: var(--gold-light);

  font-size: 21px;
  font-weight: 700;
}

.footer-facebook {
  font-family: Arial, sans-serif;
  font-size: 19px;
}

.footer-social span:last-child {
  display: flex;
  flex-direction: column;

  font-size: 13px;
  line-height: 1.35;
}

.footer-social small {
  margin-bottom: 2px;

  color: rgba(255,255,255,.37);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-social-static {
  cursor: default;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;

  padding-top: 27px;

  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-bottom p {
  margin: 0;

  color: rgba(255,255,255,.38);
  font-size: 11px;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,.38);
  font-size: 11px;

  transition: color .2s ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,.78);
}


/* FOOTER RESPONSIVE */

@media (max-width: 1050px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 55px;
  }
}

@media (max-width: 650px) {
  .site-footer {
    padding: 72px 0 25px;
  }

  .footer-inner {
    width: calc(100% - 36px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 46px;

    padding-bottom: 55px;
  }

  .footer-brand-name {
    font-size: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 9px;
  }

  .footer-watermark {
    bottom: -40px;
    font-size: 46vw;
  }
}


/* =========================================================
   OÙ NOUS TROUVER
========================================================= */

.locations-section {
  padding: 118px 0 125px;
  background: #f5f0e6;
}

.locations-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(55px, 7vw, 100px);
  align-items: stretch;
}

.locations-copy {
  display: flex;
  flex-direction: column;
}

.locations-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.locations-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.locations-copy h2 {
  margin: 0;

  color: var(--black);

  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.06em;
}

.locations-intro {
  max-width: 520px;
  margin: 24px 0 36px;

  color: #6c665d;
  font-size: 16px;
  line-height: 1.7;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;

  padding: 23px 24px;

  border: 1px solid rgba(17,17,15,.08);
  border-radius: 18px;

  background: rgba(255,255,255,.58);
  color: var(--black);

  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198,161,91,.38);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 34px rgba(17,17,15,.07);
}

.location-pin {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--black);
}

.location-pin svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-card-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.location-eyebrow {
  margin-bottom: 5px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.location-card strong {
  color: var(--black);

  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.location-address {
  margin-top: 6px;

  color: #777168;
  font-size: 12.5px;
  line-height: 1.5;
}

.location-activities {
  margin-top: 14px;

  color: #4f4a43;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.location-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 14px;

  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.location-route b {
  color: var(--gold);
  font-size: 16px;
  transition: transform .2s ease;
}

.location-card:hover .location-route b {
  transform: translateX(4px);
}


/* MAP */

.locations-map-wrap {
  position: relative;
  min-height: 590px;
}

.locations-map {
  width: 100%;
  height: 100%;
  min-height: 590px;

  overflow: hidden;

  border: 1px solid rgba(17,17,15,.09);
  border-radius: 24px;

  background: #ded9cf;

  box-shadow: 0 18px 45px rgba(17,17,15,.08);
}

.locations-map .leaflet-tile-pane {
  filter: grayscale(1) sepia(.08) contrast(.92);
}

.locations-map .leaflet-control-attribution {
  font-size: 8px;
}

.aseg-map-pin {
  width: 36px !important;
  height: 36px !important;

  display: grid !important;
  place-items: center;

  margin-left: -18px !important;
  margin-top: -18px !important;

  border: 3px solid #fff;
  border-radius: 50%;

  background: #11110f;
  color: #d8b566;

  box-shadow: 0 7px 18px rgba(0,0,0,.28);

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.aseg-map-popup .leaflet-popup-content-wrapper {
  border-radius: 13px;
}

.aseg-map-popup .leaflet-popup-content {
  min-width: 185px;
  margin: 14px 16px;

  font-family: "Inter", sans-serif;
  line-height: 1.45;
}

.aseg-map-popup strong {
  display: block;
  margin-bottom: 4px;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.aseg-map-popup span {
  color: #6d675f;
  font-size: 11px;
}

.map-legend {
  position: absolute;
  z-index: 500;
  left: 18px;
  bottom: 18px;

  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;

  max-width: calc(100% - 36px);
  padding: 11px 14px;

  border: 1px solid rgba(17,17,15,.08);
  border-radius: 12px;

  background: rgba(255,255,255,.91);
  box-shadow: 0 7px 20px rgba(17,17,15,.10);

  backdrop-filter: blur(10px);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #4d4942;
  font-size: 10px;
  font-weight: 700;
}

.map-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--gold);
}

.map-dot-two {
  background: var(--black);
}


/* FOOTER SIMPLIFIÉ */

.footer-top-simple {
  grid-template-columns: 1.2fr .75fr 1.15fr;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .locations-inner {
    grid-template-columns: 1fr;
  }

  .locations-map-wrap,
  .locations-map {
    min-height: 460px;
  }

  .footer-top-simple {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .locations-section {
    padding: 78px 0 82px;
  }

  .locations-inner {
    width: calc(100% - 36px);
    gap: 42px;
  }

  .locations-kicker {
    font-size: 10px;
  }

  .locations-copy h2 {
    font-size: clamp(43px, 12vw, 56px);
  }

  .locations-intro {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .location-card {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .location-pin {
    width: 40px;
    height: 40px;
  }

  .location-card strong {
    font-size: 18px;
  }

  .locations-map-wrap,
  .locations-map {
    min-height: 390px;
  }

  .map-legend {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .footer-top-simple {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}


/* =========================================================
   PAGE LE CLUB
========================================================= */

.club-page {
  background: var(--cream);
}

/* HERO */

.club-hero {
  position: relative;
  min-height: 76vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.club-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 28%, rgba(198,161,91,.22), transparent 25%),
    linear-gradient(135deg, #1b1b18 0%, #25231e 48%, #11110f 100%);
}

.club-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,.035) 44% 45%, transparent 45% 100%),
    linear-gradient(25deg, transparent 0 67%, rgba(198,161,91,.07) 67% 68%, transparent 68% 100%);
}

.club-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,4,.70), rgba(5,5,4,.08) 58%, rgba(5,5,4,.20));
}

.club-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 90px;
  color: #fff;
}

.club-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.club-hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.club-hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(62px, 8.3vw, 122px);
  line-height: .86;
  font-weight: 800;
  letter-spacing: -.075em;
}

.club-hero-inner > p {
  margin: 23px 0 0;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -.035em;
}

.club-hero-note {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.club-hero-note span:first-child {
  margin-bottom: 5px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .18em;
}


/* HISTORY */

.history-section {
  padding: 125px 0 135px;
  background: var(--cream);
  overflow: hidden;
}

.history-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.history-heading {
  max-width: 720px;
  margin-bottom: 78px;
}

.history-kicker,
.team-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.history-kicker::before,
.team-kicker::before {
  content: "";
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.history-heading h2,
.team-heading h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.065em;
}

.history-heading p,
.team-heading > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #726c63;
  font-size: 16px;
  line-height: 1.7;
}

.history-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(245px, 1fr));
  gap: 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(198,161,91,.25), var(--gold), rgba(198,161,91,.25));
}

.history-step {
  position: relative;
  min-width: 0;
  padding-right: 34px;
}

.history-date {
  height: 36px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.history-node {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin: 11px 0 30px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(198,161,91,.45);
}

.history-card {
  max-width: 255px;
}

.history-card > span {
  display: block;
  margin-bottom: 8px;
  color: #9a9388;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.history-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.history-card p {
  margin: 0;
  color: #777168;
  font-size: 13.5px;
  line-height: 1.65;
}


/* TEAM SECTIONS */

.team-section {
  padding: 120px 0 130px;
}

.team-section-light {
  background: #fbfaf7;
}

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

.team-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.team-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.coaches-heading h2 {
  color: #fff;
}

.coaches-heading > p {
  color: rgba(255,255,255,.55);
}

.people-grid {
  display: grid;
  gap: 22px;
}

.bureau-grid {
  grid-template-columns: repeat(4, 1fr);
}

.coaches-grid {
  grid-template-columns: repeat(4, 1fr);
}

.person-card {
  overflow: hidden;
  border-radius: 20px;
}

.team-section-light .person-card {
  background: var(--cream);
  border: 1px solid rgba(17,17,15,.07);
}

.coach-card {
  background: #181815;
  border: 1px solid rgba(198,161,91,.17);
}

.person-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.person-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(198,161,91,.11), transparent 45%),
    #e8e1d4;
  color: rgba(17,17,15,.25);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.person-photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198,161,91,.22);
  border-radius: 14px;
}

.dark-placeholder {
  background:
    radial-gradient(circle at 70% 20%, rgba(198,161,91,.18), transparent 28%),
    #22221e;
  color: rgba(255,255,255,.28);
}

.person-info {
  padding: 21px 20px 24px;
}

.person-role {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.person-info h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.team-section-light .person-info h3 {
  color: var(--black);
}

.coach-card .person-info h3 {
  color: #fff;
}


.person-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.coach-group + .coach-group {
  margin-top: 76px;
}

.coach-group-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.coach-group-heading span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.coach-group-heading h3 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  letter-spacing: -.035em;
}

.coaches-grid-three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 930px;
}

/* RESPONSIVE CLUB PAGE */

@media (max-width: 980px) {
  .history-timeline {
    overflow-x: auto;
    grid-template-columns: repeat(4, 300px);
    padding-bottom: 18px;
    scrollbar-width: none;
  }

  .history-timeline::-webkit-scrollbar {
    display: none;
  }

  .history-timeline::before {
    width: 1200px;
    right: auto;
  }

  .bureau-grid,
  .coaches-grid,
  .coaches-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .club-hero {
    min-height: 610px;
  }

  .club-hero-inner,
  .history-inner,
  .team-inner {
    width: calc(100% - 36px);
  }

  .club-hero-inner {
    padding-bottom: 70px;
  }

  .club-hero h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .club-hero-note {
    display: none;
  }

  .history-section,
  .team-section {
    padding: 82px 0 90px;
  }

  .history-heading {
    margin-bottom: 54px;
  }

  .history-timeline {
    margin-right: -18px;
    grid-template-columns: repeat(4, 265px);
  }

  .bureau-grid,
  .coaches-grid,
  .coaches-grid-three {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }

  .person-card {
    border-radius: 15px;
  }

  .person-info {
    padding: 16px 14px 18px;
  }

  .person-info h3 {
    font-size: 16px;
  }

  .person-photo-placeholder::after {
    inset: 11px;
  }
}


/* =========================================================
   V23 — BUREAU & ENCADRANTS
========================================================= */

.bureau-grid-eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 22px;
}

.bureau-card .person-info {
  min-height: 92px;
}

.bureau-placeholder {
  background: #ecd087 !important;
  color: rgba(17, 17, 15, .20);
}

.bureau-placeholder span {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .18em;
}

.coach-group-heading {
  display: flex;
  align-items: center;
  min-height: auto;
  margin-bottom: 24px;
}

.coach-group-heading h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.coach-group-heading > span {
  display: none !important;
}

/* Même fond visuel pour tous les portraits */
.coach-photo {
  background: #ecd087;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #ecd087;
}

.gym-coaches-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: calc(75% - 6px);
}

@media (max-width: 980px) {
  .bureau-grid-eight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gym-coaches-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .bureau-grid-eight,
  .gym-coaches-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .coach-group-heading h3 {
    font-size: 19px;
  }
}


/* =========================================================
   V24 — DISTINCTION BUREAU / ENCADRANTS
========================================================= */

/* Bureau : univers or / chaud */
.team-section-light {
  background:
    radial-gradient(circle at 92% 8%, rgba(198,161,91,.12), transparent 24%),
    #fbf7ed;
}

.bureau-card {
  background: #fffaf0 !important;
  border-color: rgba(198,161,91,.18) !important;
}

.bureau-photo,
.bureau-placeholder {
  background: #d8b566 !important;
}

.bureau-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 26%;
}

.bureau-placeholder {
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), transparent 48%),
    #d8b566 !important;
}

/* Encadrants : univers ivoire sur section noire */
.coach-photo {
  background: #f1eadf !important;
}

.coach-card {
  background: #191916;
}

.coach-card .person-photo {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Quentin : cadrage remonté */
.coach-card img[alt="Quentin Lemière"] {
  object-position: center 12% !important;
}

/* Les photos des encadrants restent cohérentes dans leur cadre */
.coach-photo img {
  object-fit: cover;
}

@media (max-width: 650px) {
  .bureau-photo img {
    object-position: center 22%;
  }
}


/* =========================================================
   V25 — MEGA MENU SIMPLIFIÉ
========================================================= */

.mega-section-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: inherit !important;
  text-decoration: none;
}

.mega-section-arrow {
  margin-left: auto;
  color: var(--gold);
  transition: transform .2s ease;
}

.mega-section-link:hover .mega-section-arrow {
  transform: translateX(4px);
}

.mega-activity-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px;
}

.mega-activity-list > span {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 500;
  cursor: default;
}

.mobile-section-link {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px !important;
  color: var(--gold-light) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.mobile-activity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  margin: 10px 0 4px;
}

.mobile-activity-list span {
  color: rgba(255,255,255,.52);
  font-size: 12px;
}


/* =========================================================
   INSTAGRAM — LOAD MORE
========================================================= */

.instagram-load-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  appearance: none;
  border: 0;
  border-bottom: 2px solid var(--black);
  padding: 0 0 8px;

  background: transparent;
  color: var(--black);

  font-family: inherit;
  font-size: 17px;
  font-weight: 800;

  cursor: pointer;

  transition:
    color .2s ease,
    border-color .2s ease;
}

.instagram-load-more span {
  color: var(--gold);
  font-size: 19px;
  transition: transform .2s ease;
}

.instagram-load-more:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.instagram-load-more:hover span {
  transform: translateY(3px);
}

.instagram-load-more[hidden] {
  display: none;
}

.news-card-loading {
  pointer-events: none;
}


/* =========================================================
   PAGE CONTACT
========================================================= */

.contact-page {
  background: #f6f0e5;
}

.contact-hero {
  padding: 190px 0 100px;
  background:
    radial-gradient(circle at 82% 25%, rgba(198,161,91,.19), transparent 27%),
    var(--black);
  color: #fff;
}

.contact-hero-inner,
.contact-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.contact-kicker,
.contact-section-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;

  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-kicker::before,
.contact-section-heading > span::before {
  content: "";
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.contact-hero h1 {
  margin: 0;
  max-width: 950px;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(60px, 8vw, 116px);
  line-height: .88;
  font-weight: 800;
  letter-spacing: -.075em;
}

.contact-hero p {
  max-width: 590px;
  margin: 30px 0 0;

  color: rgba(255,255,255,.62);
  font-size: 17px;
  line-height: 1.7;
}

.contact-section {
  padding: 110px 0 125px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.contact-form-wrap {
  padding: 45px;
  border-radius: 24px;
  background: #fffaf1;
  border: 1px solid rgba(17,17,15,.07);
}

.contact-section-heading {
  margin-bottom: 38px;
}

.contact-section-heading h2,
.contact-mail-card h2 {
  margin: 0;
  color: var(--black);

  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 55px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #5e584f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;

  border: 1px solid rgba(17,17,15,.13);
  border-radius: 11px;
  padding: 15px 16px;

  background: #fff;
  color: var(--black);

  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;

  outline: none;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 155px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,161,91,.11);
}

.contact-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 24px;

  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;

  background: var(--black);
  color: #fff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
  text-decoration: none;

  transition:
    transform .2s ease,
    background .2s ease;
}

.contact-submit span {
  color: var(--gold-light);
  font-size: 18px;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #292924;
}

.contact-side {
  position: sticky;
  top: 115px;
}

.contact-mail-card {
  padding: 42px;
  border-radius: 24px;
  background: var(--gold);
  color: var(--black);
}

.contact-card-label {
  display: block;
  margin-bottom: 25px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-mail-card p {
  margin: 24px 0 32px;
  color: rgba(17,17,15,.66);
  font-size: 14px;
  line-height: 1.65;
}

.contact-mail-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;

  padding-top: 18px;
  border-top: 1px solid rgba(17,17,15,.22);

  color: var(--black);
  font-size: 14px;
  font-weight: 800;

  word-break: break-word;
}

.contact-mail-link span {
  font-size: 20px;
}

.contact-response-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;

  margin-top: 20px;
  padding: 20px 5px;
}

.contact-response-note p {
  margin: 0;
  color: #706a61;
  font-size: 12px;
  line-height: 1.6;
}

.contact-note-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
}


/* THANK YOU PAGE */

.thanks-page {
  min-height: 100vh;
  background: var(--black);
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.thanks-card {
  width: min(620px, 100%);
  padding: 60px;
  border-radius: 26px;
  background: #f7f0e4;
}

.thanks-card h1 {
  margin: 0;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(58px, 10vw, 95px);
  line-height: .9;
  letter-spacing: -.07em;
}

.thanks-card p {
  margin: 24px 0 32px;
  color: #6e685e;
  font-size: 16px;
}

.thanks-link {
  display: inline-flex;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: static;
  }
}

@media (max-width: 650px) {
  .contact-hero {
    padding: 145px 0 75px;
  }

  .contact-hero-inner,
  .contact-inner {
    width: calc(100% - 36px);
  }

  .contact-section {
    padding: 70px 0 82px;
  }

  .contact-form-wrap,
  .contact-mail-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .thanks-card {
    padding: 38px 26px;
  }
}


/* =========================================================
   V26 — MÉGA MENU : TITRES DE SECTION VISIBLES
========================================================= */

.mega-menu .mega-title,
.mega-menu .mega-section-link {
  color: #f4e9d3 !important;
  opacity: 1 !important;
}

.mega-menu .mega-title:hover,
.mega-menu .mega-section-link:hover {
  color: var(--gold-light) !important;
}

.mega-menu .gold-dot {
  background: var(--gold) !important;
}

.mega-menu .mega-section-arrow {
  color: var(--gold-light) !important;
}


/* =========================================================
   V26 — HOME CTA ACTUALITÉS
========================================================= */

.instagram-all-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  color: var(--black);
  font-size: 18px;
  font-weight: 800;

  border-bottom: 2px solid var(--black);
  padding-bottom: 8px;
}

.instagram-all-link span {
  color: var(--gold);
  font-size: 20px;
  transition: transform .2s ease;
}

.instagram-all-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   PAGE ACTUALITÉS
========================================================= */

.news-page {
  background: #f6f0e5;
}

.news-page-hero {
  padding: 185px 0 100px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.18), transparent 28%),
    var(--black);
  color: #fff;
}

.news-page-hero-inner,
.news-page-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.news-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.news-page-kicker::before {
  content: "";
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.news-page-hero h1 {
  margin: 0;
  max-width: 1050px;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(56px, 7.5vw, 106px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.07em;
}

.news-page-hero p {
  max-width: 620px;
  margin: 28px 0 0;

  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.7;
}

.news-page-section {
  padding: 105px 0 125px;
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-page-grid .news-card {
  width: 100%;
  min-width: 0;
}

.news-page-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}


/* =========================================================
   CONTACT V26
========================================================= */

.contact-mail-title-small {
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1.02 !important;
}

.contact-mail-link-large {
  font-size: 19px !important;
  line-height: 1.25;
}

.contact-volunteer-note {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #4f4a42 !important;
  font-weight: 600;
}

@media (max-width: 900px) {
  .news-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .news-page-hero {
    padding: 145px 0 75px;
  }

  .news-page-hero-inner,
  .news-page-inner {
    width: calc(100% - 36px);
  }

  .news-page-section {
    padding: 70px 0 85px;
  }

  .news-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-mail-link-large {
    font-size: 17px !important;
  }
}


/* =========================================================
   V27 — MÉGA MENU : SECTIONS PLUS FORTES
========================================================= */

.mega-menu .mega-title,
.mega-menu .mega-section-link {
  font-family: "Montserrat", sans-serif !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;

  padding-bottom: 13px;
  border-bottom: 1px solid rgba(216,181,102,.24);
}

.mega-menu .mega-section-link .gold-dot {
  width: 9px !important;
  height: 9px !important;
}

.mega-menu .mega-activity-list {
  margin-top: 17px;
}

.mega-menu .mega-activity-list > span {
  font-size: 13px;
  color: rgba(255,255,255,.60);
}


/* =========================================================
   PAGE HORAIRES
========================================================= */

.schedule-page {
  background: #f5f0e6;
}

.schedule-hero {
  padding: 185px 0 100px;

  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.20), transparent 27%),
    var(--black);

  color: #fff;
}

.schedule-hero-inner,
.schedule-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.schedule-kicker,
.schedule-intro > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.schedule-kicker::before,
.schedule-intro > span::before {
  content: "";
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.schedule-hero h1 {
  margin: 0;
  max-width: 980px;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(60px, 8vw, 114px);
  line-height: .88;
  font-weight: 800;
  letter-spacing: -.075em;
}

.schedule-hero p {
  max-width: 650px;
  margin: 28px 0 0;

  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.7;
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;

  margin-top: 38px;
}

.schedule-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 700;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.legend-multi {
  background: #d8b566;
}

.legend-gym {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(216,181,102,.8);
}

.legend-full {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(205,75,67,.14);
  border: 1px solid rgba(240,105,96,.35);
  color: #ff9c95;

  font-style: normal;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.schedule-section {
  padding: 105px 0 125px;
}

.schedule-intro {
  max-width: 680px;
  margin-bottom: 58px;
}

.schedule-intro h2 {
  margin: 0;

  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.06em;
}

.schedule-intro p {
  max-width: 590px;
  margin: 20px 0 0;

  color: #766f65;
  font-size: 15px;
  line-height: 1.7;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.schedule-day {
  overflow: hidden;

  border: 1px solid rgba(17,17,15,.08);
  border-radius: 22px;

  background: #fffaf1;

  box-shadow: 0 12px 30px rgba(17,17,15,.04);
}

.schedule-day-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 22px;

  background: var(--black);
  color: #fff;
}

.schedule-day-heading > span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.schedule-day-heading small {
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.schedule-day-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-session {
  position: relative;

  padding: 19px 20px 20px;

  border-bottom: 1px solid rgba(17,17,15,.07);
}

.schedule-session:last-child {
  border-bottom: 0;
}

.schedule-session::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 3px 3px 0;
}

.schedule-multi::before {
  background: var(--gold);
}

.schedule-gym::before {
  background: var(--black);
}

.schedule-session-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 9px;
}

.schedule-time {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.schedule-status {
  display: inline-flex;
  align-items: center;

  padding: 5px 8px;

  border-radius: 999px;
  border: 1px solid rgba(193,69,61,.20);

  background: rgba(193,69,61,.07);
  color: #b44d47;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.schedule-session h3 {
  margin: 0;

  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -.025em;
}

.schedule-age {
  display: block;

  margin-top: 6px;

  color: #797269;
  font-size: 11px;
  line-height: 1.45;
}

.schedule-coach {
  display: block;

  margin-top: 12px;

  color: #9a9388;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.schedule-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;

  margin-top: 40px;
  padding: 21px 23px;

  border-radius: 17px;
  border: 1px solid rgba(198,161,91,.22);

  background: rgba(216,181,102,.10);
}

.schedule-note-icon {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--gold);
  color: var(--black);

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.schedule-note p {
  margin: 0;

  color: #6e675e;
  font-size: 12px;
  line-height: 1.55;
}

.schedule-note a {
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .schedule-hero {
    padding: 145px 0 75px;
  }

  .schedule-hero-inner,
  .schedule-inner {
    width: calc(100% - 36px);
  }

  .schedule-section {
    padding: 72px 0 85px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .schedule-day {
    border-radius: 17px;
  }

  .schedule-note {
    grid-template-columns: auto 1fr;
  }

  .schedule-note a {
    grid-column: 2;
  }
}


/* =========================================================
   V28 — MÉGA MENU : BOUTONS DE SECTION TOUJOURS VISIBLES
========================================================= */

.mega-menu .mega-section-link {
  display: flex !important;
  align-items: center;
  gap: 12px;

  width: 100%;
  box-sizing: border-box;

  padding: 14px 16px !important;
  border: 1px solid rgba(216,181,102,.38) !important;
  border-radius: 12px;

  background: rgba(216,181,102,.11) !important;
  color: #f4e9d3 !important;

  font-size: 20px !important;
  font-weight: 800 !important;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.mega-menu .mega-section-link:hover {
  background: rgba(216,181,102,.19) !important;
  border-color: rgba(216,181,102,.70) !important;
  transform: translateY(-1px);
}

.mega-menu .mega-section-arrow {
  margin-left: auto;
  font-size: 20px;
}

.mega-menu .mega-title {
  border-bottom: 0 !important;
}

.mobile-section-link {
  padding: 12px 14px !important;
  border: 1px solid rgba(216,181,102,.30);
  border-radius: 10px;
  background: rgba(216,181,102,.09);
}


/* =========================================================
   V28 — PLANNING HORIZONTAL
========================================================= */

.schedule-intro-simple {
  margin-bottom: 18px !important;
}

.schedule-intro-simple h2 {
  font-size: clamp(38px, 4.5vw, 60px);
}

.schedule-intro-simple > span {
  margin-bottom: 14px;
}

.schedule-legend-planning {
  margin: 0 0 28px !important;
  padding: 14px 18px;

  border-radius: 14px;
  border: 1px solid rgba(17,17,15,.08);

  background: rgba(255,250,241,.76);
}

.schedule-legend-planning > span {
  color: #6c655c !important;
}

.schedule-scroll-head {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 14px;
}

.schedule-scroll-head > span {
  color: #8b847a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.schedule-scroll-arrows {
  display: flex;
  gap: 8px;
}

.schedule-scroll-arrows span {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(17,17,15,.12);
  border-radius: 50%;

  background: #fffaf1;
  color: var(--black);

  font-size: 15px;
  font-weight: 700;
}

.schedule-grid-horizontal {
  display: flex !important;
  align-items: flex-start;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 0 3px 18px;

  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(198,161,91,.5) transparent;
}

.schedule-grid-horizontal::-webkit-scrollbar {
  height: 8px;
}

.schedule-grid-horizontal::-webkit-scrollbar-track {
  background: transparent;
}

.schedule-grid-horizontal::-webkit-scrollbar-thumb {
  background: rgba(198,161,91,.45);
  border-radius: 99px;
}

.schedule-grid-horizontal .schedule-day {
  flex: 0 0 min(360px, 82vw);
  width: min(360px, 82vw);

  scroll-snap-align: start;
}

@media (min-width: 1150px) {
  .schedule-grid-horizontal .schedule-day {
    flex-basis: 355px;
    width: 355px;
  }
}

@media (max-width: 650px) {
  .schedule-grid-horizontal {
    margin-right: -18px;
    padding-right: 18px;
  }

  .schedule-grid-horizontal .schedule-day {
    flex-basis: 86vw;
    width: 86vw;
  }

  .schedule-scroll-head > span {
    font-size: 9px;
  }
}


/* =========================================================
   V29 — ACTUALITÉS / PLANNING
========================================================= */

/* Moins de vide après le CTA Actualités */
.news-page-section {
  padding-bottom: 70px !important;
}

.news-page-loadmore-wrap {
  margin-top: 36px !important;
  margin-bottom: 0 !important;
}

.news-page-loadmore-wrap .instagram-load-more span {
  transform: none !important;
}

.news-page-loadmore-wrap .instagram-load-more:hover span {
  transform: translateX(4px) !important;
}

/* Un seul titre Planning hebdomadaire */
.schedule-intro-v29 {
  margin-bottom: 22px !important;
}

.schedule-intro-v29 h2 {
  margin: 0;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.06em;
}

/* Légende fidèle aux cartes */
.legend-multi {
  background: var(--gold) !important;
}

.legend-gym {
  background: var(--black) !important;
  box-shadow: none !important;
}

/* Barre au-dessus du carrousel */
.schedule-carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin: 0 0 16px;
}

.schedule-carousel-head > span {
  color: #8a8379;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.schedule-carousel-buttons {
  display: flex;
  gap: 9px;
}

.schedule-carousel-buttons button {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(17,17,15,.12);
  border-radius: 50%;

  background: #fffaf1;
  color: var(--black);

  font-family: inherit;
  font-size: 17px;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.schedule-carousel-buttons button:hover {
  transform: translateY(-2px);
  border-color: rgba(198,161,91,.6);
  background: #fff;
}

/* Vrai rail horizontal */
.schedule-grid-horizontal {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 20px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 2px 2px 20px;

  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(198,161,91,.45) transparent;
}

.schedule-grid-horizontal .schedule-day {
  flex: 0 0 350px !important;
  width: 350px !important;
  min-width: 350px !important;

  scroll-snap-align: start;
}

/* Des cartes plus nettes et cohérentes */
.schedule-day {
  background: #fffaf1 !important;
}

.schedule-day-heading {
  padding: 18px 20px !important;
}

.schedule-session {
  padding: 17px 19px 18px !important;
}

.schedule-gym::before {
  background: var(--black) !important;
}

.schedule-multi::before {
  background: var(--gold) !important;
}

@media (max-width: 650px) {
  .news-page-section {
    padding-bottom: 52px !important;
  }

  .schedule-grid-horizontal .schedule-day {
    flex-basis: 84vw !important;
    width: 84vw !important;
    min-width: 84vw !important;
  }

  .schedule-carousel-head > span {
    display: none;
  }

  .schedule-carousel-head {
    justify-content: flex-end;
  }
}


/* =========================================================
   V31 — DATES À RETENIR
========================================================= */

.dates-section {
  padding: 100px 0 105px;
  background: #11110f;
  color: #fff;
}

.dates-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.dates-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.dates-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;

  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.dates-kicker::before {
  content: "";
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.dates-heading h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 5vw, 70px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.06em;
}

.dates-heading p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 15px;
}

.dates-list {
  max-width: 920px;
}

.date-card {
  display: grid;
  grid-template-columns: 135px 1fr auto;
  align-items: center;
  gap: 30px;

  padding: 24px 26px;

  border: 1px solid rgba(216,181,102,.18);
  border-radius: 18px;

  background:
    linear-gradient(110deg, rgba(216,181,102,.08), transparent 45%),
    #181815;
}

.date-card-date {
  display: flex;
  flex-direction: column;
  padding-right: 25px;
  border-right: 1px solid rgba(255,255,255,.10);
}

.date-card-date span,
.date-card-date small {
  color: rgba(255,255,255,.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.date-card-date strong {
  margin: 2px 0;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.05em;
}

.date-card-label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.date-card-content h3 {
  margin: 6px 0 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  letter-spacing: -.035em;
}

.date-card-content p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.date-card-status {
  padding: 7px 10px;
  border: 1px solid rgba(216,181,102,.35);
  border-radius: 999px;

  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* =========================================================
   PAGE INSCRIPTION
========================================================= */

.registration-page {
  background: #f5f0e6;
}

.registration-hero {
  padding: 185px 0 105px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.22), transparent 28%),
    var(--black);
  color: #fff;
}

.registration-hero-inner,
.registration-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.registration-kicker,
.registration-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.registration-kicker {
  margin-bottom: 22px;
}

.registration-kicker::before {
  content: "";
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.registration-hero h1 {
  margin: 0;
  max-width: 930px;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(62px, 8vw, 114px);
  line-height: .88;
  font-weight: 800;
  letter-spacing: -.075em;
}

.registration-hero p {
  max-width: 620px;
  margin: 29px 0 0;

  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.7;
}

.registration-hero p strong {
  color: #fff;
}

.registration-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;

  margin-top: 34px;
  padding: 16px 22px;

  border-radius: 999px;

  background: var(--gold);
  color: var(--black);

  font-size: 13px;
  font-weight: 800;
}

.registration-main-cta span {
  font-size: 18px;
}

.registration-content {
  padding: 105px 0 125px;
}

.registration-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(48px, 6vw, 85px);
  align-items: start;
}

.registration-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.registration-block {
  padding: 38px;
  border: 1px solid rgba(17,17,15,.07);
  border-radius: 22px;
  background: #fffaf1;
}

.registration-block h2,
.registration-link-card h2,
.registration-tariff-card h2 {
  margin: 10px 0 0;

  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(31px, 3.4vw, 48px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
}

.registration-block > p {
  margin: 20px 0 0;
  color: #706960;
  font-size: 15px;
  line-height: 1.75;
}

.registration-alert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;

  margin-top: 28px;
  padding: 18px;

  border: 1px solid rgba(181,77,71,.18);
  border-radius: 14px;
  background: rgba(181,77,71,.06);
}

.registration-alert-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;

  border-radius: 50%;
  background: #b54d47;
  color: #fff;

  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.registration-alert p {
  margin: 0;
  color: #675e57;
  font-size: 12px;
  line-height: 1.55;
}

.registration-alert a {
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.registration-step-list {
  display: flex;
  flex-direction: column;
  gap: 0;

  margin-top: 26px;
}

.registration-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;

  padding: 21px 0;

  border-top: 1px solid rgba(17,17,15,.08);
}

.registration-step-number {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.registration-step h3 {
  margin: 0 0 7px;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  letter-spacing: -.025em;
}

.registration-step p {
  margin: 0;
  color: #746d63;
  font-size: 13px;
  line-height: 1.6;
}

.registration-surcharge {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 30px;
  align-items: center;

  background: var(--black);
  color: #fff;
}

.registration-surcharge h2 {
  color: #fff;
}

.registration-surcharge > strong {
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -.06em;
}

.registration-surcharge > p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255,255,255,.52);
}

.registration-side {
  position: sticky;
  top: 110px;

  display: flex;
  flex-direction: column;
  gap: 22px;
}

.registration-link-card,
.registration-tariff-card {
  padding: 35px;
  border-radius: 22px;
}

.registration-link-card {
  background: var(--gold);
}

.registration-link-card .registration-label {
  color: rgba(17,17,15,.56);
}

.registration-link-card p,
.registration-tariff-card p {
  margin: 20px 0 27px;
  font-size: 13px;
  line-height: 1.65;
}

.registration-link-card p {
  color: rgba(17,17,15,.63);
}

.registration-link-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 17px;
  border-top: 1px solid rgba(17,17,15,.20);

  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.registration-tariff-card {
  border: 1px solid rgba(17,17,15,.08);
  background: #fffaf1;
}

.registration-tariff-card p {
  color: #746d63;
}

.registration-pdf-preview {
  height: 390px;
  overflow: hidden;

  margin-bottom: 20px;

  border: 1px solid rgba(17,17,15,.10);
  border-radius: 12px;
  background: #eee;
}

.registration-pdf-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.registration-pdf-link {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 15px;
  border-top: 1px solid rgba(17,17,15,.10);

  color: var(--black);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .registration-inner {
    grid-template-columns: 1fr;
  }

  .registration-side {
    position: static;
  }
}

@media (max-width: 650px) {
  .dates-section {
    padding: 75px 0 80px;
  }

  .dates-inner,
  .registration-hero-inner,
  .registration-inner {
    width: calc(100% - 36px);
  }

  .date-card {
    grid-template-columns: 88px 1fr;
    gap: 18px;
  }

  .date-card-status {
    grid-column: 2;
    justify-self: start;
  }

  .date-card-date {
    padding-right: 16px;
  }

  .registration-hero {
    padding: 145px 0 78px;
  }

  .registration-content {
    padding: 72px 0 85px;
  }

  .registration-block,
  .registration-link-card,
  .registration-tariff-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .registration-alert {
    grid-template-columns: auto 1fr;
  }

  .registration-alert a {
    grid-column: 2;
  }

  .registration-surcharge {
    grid-template-columns: 1fr;
  }

  .registration-surcharge > p {
    grid-column: auto;
  }

  .registration-pdf-preview {
    height: 320px;
  }
}


/* =========================================================
   V36 — HERO SYSTEM UNIFIÉ + HOME PLUS IMPACTANTE
========================================================= */

.hero-title {
  font-size: clamp(78px, 10.5vw, 158px) !important;
  line-height: .86 !important;
  letter-spacing: -.065em !important;
}

.club-hero,
.schedule-hero,
.news-page-hero,
.contact-hero,
.registration-hero {
  min-height: 620px !important;
  height: auto !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: flex-end !important;
  padding-top: 170px !important;
  padding-bottom: 82px !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.18), transparent 28%),
    var(--black) !important;
  color: #fff !important;
}

.club-hero-inner,
.schedule-hero-inner,
.news-page-hero-inner,
.contact-hero-inner,
.registration-hero-inner {
  width: min(1240px, calc(100% - 56px)) !important;
  margin: 0 auto !important;
}

.club-kicker,
.schedule-kicker,
.news-page-kicker,
.contact-kicker,
.registration-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: .17em !important;
  text-transform: uppercase !important;
}

.club-hero h1,
.schedule-hero h1,
.news-page-hero h1,
.contact-hero h1,
.registration-hero h1 {
  max-width: 1040px !important;
  margin: 0 !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(58px, 7.2vw, 104px) !important;
  line-height: .94 !important;
  font-weight: 800 !important;
  letter-spacing: -.045em !important;
}

.club-hero p,
.schedule-hero p,
.news-page-hero p,
.contact-hero p,
.registration-hero p {
  max-width: 640px !important;
  margin: 28px 0 0 !important;
  color: rgba(255,255,255,.62) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: clamp(68px, 12vw, 118px) !important;
    line-height: .88 !important;
  }

  .club-hero,
  .schedule-hero,
  .news-page-hero,
  .contact-hero,
  .registration-hero {
    min-height: 540px !important;
    padding-top: 145px !important;
    padding-bottom: 68px !important;
  }

  .club-hero h1,
  .schedule-hero h1,
  .news-page-hero h1,
  .contact-hero h1,
  .registration-hero h1 {
    font-size: clamp(52px, 9vw, 84px) !important;
    line-height: .96 !important;
    letter-spacing: -.04em !important;
  }
}

@media (max-width: 650px) {
  .hero-title {
    font-size: clamp(58px, 16vw, 88px) !important;
    line-height: .9 !important;
    letter-spacing: -.05em !important;
  }

  .club-hero,
  .schedule-hero,
  .news-page-hero,
  .contact-hero,
  .registration-hero {
    min-height: 480px !important;
    padding-top: 128px !important;
    padding-bottom: 54px !important;
  }

  .club-hero-inner,
  .schedule-hero-inner,
  .news-page-hero-inner,
  .contact-hero-inner,
  .registration-hero-inner {
    width: calc(100% - 36px) !important;
  }

  .club-hero h1,
  .schedule-hero h1,
  .news-page-hero h1,
  .contact-hero h1,
  .registration-hero h1 {
    font-size: clamp(44px, 13vw, 68px) !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
  }

  .club-hero p,
  .schedule-hero p,
  .news-page-hero p,
  .contact-hero p,
  .registration-hero p {
    margin-top: 22px !important;
    font-size: 14px !important;
  }
}


/* =========================================================
   V37 — HERO HORS ACCUEIL 100 % UNIFIÉS
========================================================= */

/* Une seule géométrie pour Club / Horaires / Actualités / Contact / Inscription */
.page-hero-unified {
  min-height: 560px !important;
  height: 560px !important;
  box-sizing: border-box !important;

  display: flex !important;
  align-items: flex-end !important;

  padding: 0 0 72px !important;
  margin: 0 !important;

  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.16), transparent 29%),
    #11110f !important;

  color: #fff !important;
}

.page-hero-unified-inner {
  width: min(1240px, calc(100% - 56px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* Aucun surtitre / aucun trait doré au-dessus des titres */
.page-hero-unified .club-kicker,
.page-hero-unified .schedule-kicker,
.page-hero-unified .news-page-kicker,
.page-hero-unified .contact-kicker,
.page-hero-unified .registration-kicker {
  display: none !important;
}

/* Même titre sur toutes les pages hors accueil */
.page-hero-unified h1 {
  width: 100% !important;
  max-width: 1040px !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #fff !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(58px, 6.6vw, 96px) !important;
  line-height: .98 !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
}

/* Même paragraphe sous le titre */
.page-hero-unified p {
  width: 100% !important;
  max-width: 640px !important;

  margin: 24px 0 0 !important;
  padding: 0 !important;

  color: rgba(255,255,255,.62) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* Neutralisation spécifique des anciennes différences du hero Club */
.club-hero.page-hero-unified {
  min-height: 560px !important;
  height: 560px !important;
  padding: 0 0 72px !important;
}

.club-hero.page-hero-unified .club-hero-inner {
  width: min(1240px, calc(100% - 56px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: block !important;
}

.club-hero.page-hero-unified h1,
.club-hero.page-hero-unified p {
  transform: none !important;
  position: static !important;
}

/* Tablette */
@media (max-width: 900px) {
  .page-hero-unified,
  .club-hero.page-hero-unified {
    min-height: 500px !important;
    height: 500px !important;
    padding-bottom: 60px !important;
  }

  .page-hero-unified h1 {
    font-size: clamp(50px, 8.7vw, 78px) !important;
    line-height: 1 !important;
    letter-spacing: -.03em !important;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .page-hero-unified,
  .club-hero.page-hero-unified {
    min-height: 440px !important;
    height: 440px !important;
    padding-bottom: 46px !important;
  }

  .page-hero-unified-inner,
  .club-hero.page-hero-unified .club-hero-inner {
    width: calc(100% - 36px) !important;
  }

  .page-hero-unified h1 {
    font-size: clamp(42px, 12.5vw, 64px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.025em !important;
  }

  .page-hero-unified p {
    margin-top: 20px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}


/* =========================================================
   V38 — HERO RESET STRICT : TOUTES LES PAGES HORS ACCUEIL
========================================================= */

/* Neutralise TOUT ancien pseudo-élément décoratif sur les heroes */
.page-hero-unified::before,
.page-hero-unified::after,
.club-hero::before,
.club-hero::after,
.schedule-hero::before,
.schedule-hero::after,
.news-page-hero::before,
.news-page-hero::after,
.contact-hero::before,
.contact-hero::after,
.registration-hero::before,
.registration-hero::after,
.page-hero-unified-inner::before,
.page-hero-unified-inner::after {
  content: none !important;
  display: none !important;
}

/* Même fond EXACT pour toutes les pages hors accueil */
.club-hero.page-hero-unified,
.schedule-hero.page-hero-unified,
.news-page-hero.page-hero-unified,
.contact-hero.page-hero-unified,
.registration-hero.page-hero-unified {
  position: relative !important;

  width: 100% !important;
  min-height: 560px !important;
  height: 560px !important;

  margin: 0 !important;
  padding: 0 0 72px !important;

  display: flex !important;
  align-items: flex-end !important;

  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.16), transparent 29%),
    #11110f !important;

  background-color: #11110f !important;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.16), transparent 29%) !important;

  color: #fff !important;

  overflow: hidden !important;
}

/* Aucune image / texture / overlay propre au Club */
.club-hero.page-hero-unified > img,
.club-hero.page-hero-unified .club-hero-image,
.club-hero.page-hero-unified .hero-image,
.club-hero.page-hero-unified .hero-overlay,
.club-hero.page-hero-unified .club-hero-overlay,
.club-hero.page-hero-unified .hero-media {
  display: none !important;
}

/* Même conteneur */
.club-hero.page-hero-unified .page-hero-unified-inner,
.schedule-hero.page-hero-unified .page-hero-unified-inner,
.news-page-hero.page-hero-unified .page-hero-unified-inner,
.contact-hero.page-hero-unified .page-hero-unified-inner,
.registration-hero.page-hero-unified .page-hero-unified-inner {
  width: min(1240px, calc(100% - 56px)) !important;
  max-width: none !important;

  margin: 0 auto !important;
  padding: 0 !important;

  display: block !important;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
}

/* Supprime tout surtitre doré, même s'il restait dans le HTML */
.page-hero-unified .club-kicker,
.page-hero-unified .schedule-kicker,
.page-hero-unified .news-page-kicker,
.page-hero-unified .contact-kicker,
.page-hero-unified .registration-kicker,
.page-hero-unified .hero-kicker,
.page-hero-unified .small-label,
.page-hero-unified .hero-line,
.page-hero-unified .kicker-line,
.page-hero-unified .gold-line {
  display: none !important;
}

/* Titre identique */
.club-hero.page-hero-unified h1,
.schedule-hero.page-hero-unified h1,
.news-page-hero.page-hero-unified h1,
.contact-hero.page-hero-unified h1,
.registration-hero.page-hero-unified h1 {
  position: static !important;
  inset: auto !important;
  transform: none !important;

  width: 100% !important;
  max-width: 1040px !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #fff !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(58px, 6.6vw, 96px) !important;
  line-height: .98 !important;
  font-weight: 800 !important;
  letter-spacing: -.035em !important;
}

/* Intro identique */
.club-hero.page-hero-unified p,
.schedule-hero.page-hero-unified p,
.news-page-hero.page-hero-unified p,
.contact-hero.page-hero-unified p,
.registration-hero.page-hero-unified p {
  position: static !important;
  inset: auto !important;
  transform: none !important;

  width: 100% !important;
  max-width: 640px !important;

  margin: 24px 0 0 !important;
  padding: 0 !important;

  color: rgba(255,255,255,.62) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* =========================================================
   V38 — SALLE DE LA GARENNE
========================================================= */

.venue-eyebrow {
  display: block;
  margin-bottom: 8px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.venue-activities {
  display: flex;
  flex-direction: column;
  gap: 3px;

  margin-top: 13px;
}

.venue-activities > span {
  color: #8f887d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.venue-activities > strong {
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .club-hero.page-hero-unified,
  .schedule-hero.page-hero-unified,
  .news-page-hero.page-hero-unified,
  .contact-hero.page-hero-unified,
  .registration-hero.page-hero-unified {
    min-height: 500px !important;
    height: 500px !important;
    padding-bottom: 60px !important;
  }
}

@media (max-width: 650px) {
  .club-hero.page-hero-unified,
  .schedule-hero.page-hero-unified,
  .news-page-hero.page-hero-unified,
  .contact-hero.page-hero-unified,
  .registration-hero.page-hero-unified {
    min-height: 440px !important;
    height: 440px !important;
    padding-bottom: 46px !important;
  }

  .club-hero.page-hero-unified .page-hero-unified-inner,
  .schedule-hero.page-hero-unified .page-hero-unified-inner,
  .news-page-hero.page-hero-unified .page-hero-unified-inner,
  .contact-hero.page-hero-unified .page-hero-unified-inner,
  .registration-hero.page-hero-unified .page-hero-unified-inner {
    width: calc(100% - 36px) !important;
  }

  .club-hero.page-hero-unified h1,
  .schedule-hero.page-hero-unified h1,
  .news-page-hero.page-hero-unified h1,
  .contact-hero.page-hero-unified h1,
  .registration-hero.page-hero-unified h1 {
    font-size: clamp(42px, 12.5vw, 64px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.025em !important;
  }

  .club-hero.page-hero-unified p,
  .schedule-hero.page-hero-unified p,
  .news-page-hero.page-hero-unified p,
  .contact-hero.page-hero-unified p,
  .registration-hero.page-hero-unified p {
    margin-top: 20px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}


/* =========================================================
   V39 — HERO CLUB = EXACTEMENT LE MÊME SYSTÈME
========================================================= */

/* Club ne conserve absolument aucun média ou décor spécifique */
.club-hero.page-hero-unified {
  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.16), transparent 29%),
    #11110f !important;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.16), transparent 29%) !important;
  background-color: #11110f !important;
}

.club-hero.page-hero-unified *,
.club-hero.page-hero-unified *::before,
.club-hero.page-hero-unified *::after {
  background-image: none;
}

/* On rétablit uniquement le texte */
.club-hero.page-hero-unified h1,
.club-hero.page-hero-unified p {
  background: transparent !important;
}

/* =========================================================
   V39 — LIENS ENCADRANTS DEPUIS LE PLANNING
========================================================= */

.schedule-coach-link {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;

  width: fit-content;

  color: #8f887d !important;
  text-decoration: none;

  transition:
    color .2s ease,
    transform .2s ease;
}

.schedule-coach-link span {
  color: var(--gold);
  font-size: 10px;
  transition: transform .2s ease;
}

.schedule-coach-link:hover {
  color: var(--black) !important;
}

.schedule-coach-link:hover span {
  transform: translate(2px, -2px);
}

/* Quand on arrive sur une carte via #ancre, petit highlight discret */
.person-card:target {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
  scroll-margin-top: 120px;
  animation: trainerTargetPulse 1.2s ease;
}

@keyframes trainerTargetPulse {
  0%   { box-shadow: 0 0 0 0 rgba(216,181,102,.35); }
  100% { box-shadow: 0 0 0 14px rgba(216,181,102,0); }
}


/* =========================================================
   V40 — SALLE SECONDAIRE + ŒIL FICHE ENCADRANT
========================================================= */

.schedule-coach-link {
  gap: 7px !important;
}

.schedule-coach-eye {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;

  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform .2s ease,
    stroke .2s ease;
}

.schedule-coach-link:hover .schedule-coach-eye {
  transform: scale(1.08);
  stroke: var(--black);
}


/* =========================================================
   V41 — KRAmBAR : apparitions discrètes
   Les PNG restent en résolution source et sont seulement
   redimensionnés visuellement par CSS.
========================================================= */

.krambar-cameo {
  position: relative;
  z-index: 2;
  width: min(150px, 18vw);
  height: 0;
  margin-left: auto;
  margin-right: clamp(22px, 6vw, 90px);
  pointer-events: none;
}

.krambar-cameo img {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: block;
  width: 100%;
  height: auto;
  max-height: 185px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(16, 15, 12, .10));
}

/* Quelques variations pour éviter l'effet répétitif. */
.krambar-cameo--1,
.krambar-cameo--4,
.krambar-cameo--7 {
  width: min(128px, 16vw);
}

.krambar-cameo--2,
.krambar-cameo--5,
.krambar-cameo--8 {
  width: min(142px, 17vw);
}

.krambar-cameo--9 {
  width: min(150px, 18vw);
}

@media (max-width: 760px) {
  .krambar-cameo {
    width: 92px;
    margin-right: 18px;
  }

  .krambar-cameo img {
    bottom: 12px;
    max-height: 125px;
  }
}


/* =========================================================
   V42 — KRAmBAR : PLACEMENTS SELON LES MAQUETTES
========================================================= */

.krambar-cameo {
  display: none !important;
}

.krambar-placement {
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  filter: drop-shadow(0 10px 16px rgba(17,17,15,.08));
}

/* ---------------------------------------------------------
   HOME — NOS ACTIVITÉS
   Maquette : bas gauche, légèrement hors du contenu.
--------------------------------------------------------- */
.activities-section {
  position: relative;
  overflow: hidden;
}

.krambar-activities {
  position: absolute;
  left: clamp(18px, 3.6vw, 58px);
  bottom: 22px;
  width: clamp(82px, 8.4vw, 126px);
  height: auto;
}

/* ---------------------------------------------------------
   CLUB — LE BUREAU
   Maquette : droite du titre, petit mais bien visible.
--------------------------------------------------------- */
.team-section-light {
  position: relative;
}

.team-section-light .team-inner {
  position: relative;
}

.krambar-bureau {
  position: absolute;
  top: 52px;
  right: clamp(64px, 10vw, 150px);
  width: clamp(92px, 8.5vw, 130px);
  height: auto;
}

/* Le heading garde de l'air pour ne jamais passer dessous */
.team-section-light .team-heading {
  padding-right: clamp(150px, 18vw, 235px);
}

/* ---------------------------------------------------------
   PAGE ACTUALITÉS
   Maquette : tout en bas à droite, à hauteur du CTA.
--------------------------------------------------------- */
.news-page-section {
  position: relative;
}

.news-page-inner {
  position: relative;
}

.krambar-news {
  position: absolute;
  right: clamp(16px, 2.5vw, 42px);
  bottom: 22px;
  width: clamp(68px, 6.5vw, 96px);
  height: auto;
}

.news-page-loadmore-wrap {
  padding-right: 110px;
}

/* ---------------------------------------------------------
   HOME — DATES À RETENIR
   Maquette : pom-poms à droite du contenu.
--------------------------------------------------------- */
.dates-section {
  position: relative;
  overflow: hidden;
}

.dates-inner {
  position: relative;
}

.krambar-dates {
  position: absolute;
  right: clamp(18px, 4vw, 70px);
  top: 48%;
  transform: translateY(-40%);
  width: clamp(125px, 12vw, 185px);
  height: auto;
}

.dates-heading,
.dates-list {
  max-width: calc(100% - 220px);
}

/* ---------------------------------------------------------
   INSCRIPTION — PDF TARIFS
   Maquette : tout petit, bas droite de la carte.
--------------------------------------------------------- */
.registration-tariff-card {
  position: relative;
  overflow: visible;
}

.krambar-registration {
  position: absolute;
  right: -3px;
  bottom: -58px;
  width: clamp(62px, 6vw, 88px);
  height: auto;
  z-index: 4;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 900px) {
  .krambar-bureau {
    right: 34px;
    top: 56px;
    width: 100px;
  }

  .team-section-light .team-heading {
    padding-right: 125px;
  }

  .krambar-dates {
    right: 18px;
    width: 135px;
  }

  .dates-heading,
  .dates-list {
    max-width: calc(100% - 155px);
  }
}

@media (max-width: 650px) {
  .krambar-activities {
    width: 72px;
    left: 8px;
    bottom: 8px;
    opacity: .96;
  }

  .krambar-bureau {
    position: static;
    width: 86px;
    margin: 0 0 10px auto;
  }

  .team-section-light .team-heading {
    padding-right: 0;
  }

  .krambar-news {
    width: 62px;
    right: 2px;
    bottom: 16px;
  }

  .news-page-loadmore-wrap {
    padding-right: 74px;
  }

  .dates-heading,
  .dates-list {
    max-width: none;
  }

  .krambar-dates {
    position: relative;
    display: block;
    right: auto;
    top: auto;
    transform: none;
    width: 105px;
    margin: -12px 0 10px auto;
  }

  .krambar-registration {
    right: 4px;
    bottom: -48px;
    width: 64px;
  }
}


/* =========================================================
   V43 — CARTE : MARQUEURS COHÉRENTS AVEC LA LÉGENDE
========================================================= */

.aseg-map-pin--gold {
  background: #d8b566 !important;
  color: #11110f !important;
  border-color: #fff !important;
}

.aseg-map-pin--black {
  background: #11110f !important;
  color: #d8b566 !important;
  border-color: #fff !important;
}

/* =========================================================
   V43 — KRAmBAR : PNG RECARDÉS AU PERSONNAGE
   Les fichiers n'ont plus de grand canevas transparent :
   les dimensions ci-dessous correspondent donc réellement
   à la taille visible du personnage comme sur les maquettes.
========================================================= */

/* Nos activités */
.krambar-activities {
  width: clamp(105px, 9.2vw, 142px) !important;
}

/* Bureau */
.krambar-bureau {
  width: clamp(112px, 9.6vw, 148px) !important;
}

/* Actualités */
.krambar-news {
  width: clamp(82px, 7.3vw, 108px) !important;
}

/* Dates à retenir */
.krambar-dates {
  width: clamp(145px, 13vw, 195px) !important;
}

/* Inscription / tarifs */
.krambar-registration {
  width: clamp(72px, 6.7vw, 98px) !important;
}

@media (max-width: 650px) {
  .krambar-activities { width: 82px !important; }
  .krambar-bureau { width: 96px !important; }
  .krambar-news { width: 68px !important; }
  .krambar-dates { width: 118px !important; }
  .krambar-registration { width: 70px !important; }
}


/* =========================================================
   V44 — KRAmBAR : placements finaux selon maquettes
========================================================= */

/* Accueil / Nos activités : aucune mascotte */
.krambar-activities {
  display: none !important;
}

/* Dates à retenir :
   plus grande et davantage poussée vers la droite */
.krambar-dates {
  right: clamp(-18px, -1.4vw, -6px) !important;
  top: 50% !important;
  transform: translateY(-44%) !important;
  width: clamp(190px, 16vw, 250px) !important;
  max-height: none !important;
}

/* Bureau : taille et placement conservés */
.krambar-bureau {
  width: clamp(112px, 9.6vw, 148px) !important;
}

/* Actualités :
   plus de mascotte en bas ; grande mascotte dans le hero */
.krambar-news {
  display: none !important;
}

.news-page-hero.page-hero-unified {
  position: relative !important;
  overflow: hidden !important;
}

.news-page-hero-inner.page-hero-unified-inner {
  position: relative !important;
  z-index: 2 !important;
}

.krambar-news-hero {
  position: absolute;
  right: clamp(28px, 7vw, 110px);
  bottom: -12px;

  width: clamp(260px, 24vw, 390px);
  max-height: 88%;
  object-fit: contain;

  pointer-events: none;
  user-select: none;
  z-index: 1;

  filter: drop-shadow(0 16px 24px rgba(0,0,0,.16));
}

/* Laisse de la place au personnage dans le hero Actualités */
.news-page-hero.page-hero-unified h1,
.news-page-hero.page-hero-unified p {
  max-width: min(760px, calc(100% - 360px)) !important;
}

/* Inscription : on conserve le réglage actuel */
.krambar-registration {
  display: block !important;
}

@media (max-width: 900px) {
  .krambar-dates {
    right: -12px !important;
    width: 180px !important;
  }

  .krambar-news-hero {
    right: 18px;
    width: 250px;
  }

  .news-page-hero.page-hero-unified h1,
  .news-page-hero.page-hero-unified p {
    max-width: calc(100% - 260px) !important;
  }
}

@media (max-width: 650px) {
  .krambar-dates {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 130px !important;
    margin: -8px -10px 10px auto !important;
  }

  .krambar-news-hero {
    right: -8px;
    bottom: -6px;
    width: 160px;
    opacity: .96;
  }

  .news-page-hero.page-hero-unified h1,
  .news-page-hero.page-hero-unified p {
    max-width: calc(100% - 115px) !important;
  }
}


/* =========================================================
   V45 — Ajustements fins Krambar
========================================================= */

/* Dates à retenir : nouveau visuel, plus gros et plus à droite */
.krambar-dates {
  right: -38px !important;
  width: clamp(225px, 18vw, 285px) !important;
  top: 50% !important;
  transform: translateY(-45%) !important;
}

/* Bureau : retour à la taille de la maquette validée */
.krambar-bureau {
  width: clamp(145px, 12vw, 185px) !important;
}

/* Actualités / hero : légèrement plus gros + plus à droite */
.krambar-news-hero {
  right: clamp(-18px, 1vw, 16px) !important;
  width: clamp(285px, 26vw, 420px) !important;
  max-height: 92% !important;
}

@media (max-width: 900px) {
  .krambar-dates {
    right: -28px !important;
    width: 205px !important;
  }

  .krambar-bureau {
    width: 145px !important;
  }

  .krambar-news-hero {
    right: -12px !important;
    width: 275px !important;
  }
}

@media (max-width: 650px) {
  .krambar-dates {
    right: auto !important;
    width: 145px !important;
  }

  .krambar-bureau {
    width: 120px !important;
  }

  .krambar-news-hero {
    right: -18px !important;
    width: 175px !important;
  }
}


/* =========================================================
   V46 — Tailles finales Krambar
   Seuls "Dates à retenir" et "Bureau" sont modifiés.
========================================================= */

/* Dates : nettement plus grand, comme la maquette */
.krambar-dates {
  width: clamp(300px, 23vw, 380px) !important;
  right: -52px !important;
  top: 50% !important;
  transform: translateY(-45%) !important;
}

/* Bureau : retour à une présence proche de la V43 */
.krambar-bureau {
  width: clamp(190px, 15vw, 235px) !important;
}

@media (max-width: 900px) {
  .krambar-dates {
    width: 245px !important;
    right: -34px !important;
  }
  .krambar-bureau {
    width: 175px !important;
  }
}

@media (max-width: 650px) {
  .krambar-dates {
    width: 165px !important;
    right: auto !important;
  }
  .krambar-bureau {
    width: 140px !important;
  }
}


/* =========================================================
   V47 — Respect visuel des maquettes
   Le PNG pom-poms est désormais recadré sur son contenu :
   plus de grande zone transparente qui le faisait paraître minuscule.
========================================================= */

/* Dates à retenir : GRANDE mascotte, comme sur la maquette */
.krambar-dates {
  width: clamp(255px, 20vw, 330px) !important;
  right: -30px !important;
  top: 50% !important;
  transform: translateY(-46%) !important;
}

/* Bureau : vraiment plus grand, même présence visuelle que la maquette/V43 */
.krambar-bureau {
  width: clamp(235px, 18vw, 285px) !important;
}

@media (max-width: 900px) {
  .krambar-dates {
    width: 225px !important;
    right: -24px !important;
  }
  .krambar-bureau {
    width: 215px !important;
  }
}

@media (max-width: 650px) {
  .krambar-dates {
    width: 155px !important;
    right: -12px !important;
  }
  .krambar-bureau {
    width: 150px !important;
  }
}


/* V48 — Dates à retenir : taille intermédiaire validée d'après la nouvelle maquette */
.krambar-dates {
  width: clamp(205px, 15.5vw, 255px) !important;
  right: -12px !important;
  top: 50% !important;
  transform: translateY(-45%) !important;
}

@media (max-width: 900px) {
  .krambar-dates {
    width: 190px !important;
    right: -10px !important;
  }
}

@media (max-width: 650px) {
  .krambar-dates {
    width: 145px !important;
    right: -8px !important;
  }
}


/* V49 — Dates à retenir : nouveau PNG + légèrement plus grand */
.krambar-dates {
  width: clamp(220px, 16.5vw, 275px) !important;
  right: -12px !important;
  top: 50% !important;
  transform: translateY(-45%) !important;
}
@media (max-width: 900px) {
  .krambar-dates { width: 200px !important; }
}
@media (max-width: 650px) {
  .krambar-dates { width: 150px !important; }
}


/* =========================================================
   V51 — PAGES DE SECTION / ACTIVITÉS
========================================================= */

.section-page {
  background: #f5f0e6;
}

.section-hero.page-hero-unified {
  position: relative;
  min-height: 560px;
  height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198,161,91,.16), transparent 29%),
    #11110f;
  color: #fff;
}

.section-hero-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.section-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(58px, 6.6vw, 96px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.035em;
}

.section-hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.7;
}

.activities-detail-section {
  padding: 105px 0 125px;
}

.activities-detail-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.activities-detail-intro {
  max-width: 680px;
  margin-bottom: 62px;
}

.activities-detail-intro h2 {
  margin: 0;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.06em;
}

.activities-detail-intro p {
  margin: 20px 0 0;
  color: #756f66;
  font-size: 15px;
  line-height: 1.7;
}

.activity-detail-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  gap: clamp(50px, 6vw, 90px);
  align-items: start;

  padding: 62px 0;

  border-top: 1px solid rgba(17,17,15,.10);

  scroll-margin-top: 110px;
}

.activity-detail-featured {
  display: block;
}

.activity-detail-index {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
}

.activity-detail-main h2 {
  margin: 0;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(39px, 4.7vw, 64px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
}

.activity-detail-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #4f4a43;
  font-size: 16px;
  line-height: 1.78;
}

.activity-detail-text {
  max-width: 760px;
  margin: 16px 0 0;
  color: #777168;
  font-size: 14px;
  line-height: 1.75;
}

.activity-age-badge {
  display: inline-flex;
  margin-top: 17px;
  padding: 7px 10px;
  border: 1px solid rgba(198,161,91,.34);
  border-radius: 999px;
  color: #8b6f37;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.activity-detail-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.activity-info-box {
  padding: 22px;
  border: 1px solid rgba(17,17,15,.08);
  border-radius: 16px;
  background: #fffaf1;
}

.activity-info-label {
  display: block;
  margin-bottom: 13px;
  color: #9b9489;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.activity-trainers {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
}

.activity-trainer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.activity-trainer-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-time-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;

  padding: 9px 0;

  border-top: 1px solid rgba(17,17,15,.07);
}

.activity-time-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.activity-time-row:last-child {
  padding-bottom: 0;
}

.activity-time-row span {
  color: #817a70;
  font-size: 11px;
}

.activity-time-row strong {
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.childhood-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.childhood-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;

  padding: 26px 24px;

  border: 1px solid rgba(17,17,15,.08);
  border-radius: 18px;

  background: #fffaf1;
}

.childhood-card-head > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.childhood-card-head h3 {
  margin: 7px 0 0;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.childhood-card > p {
  margin: 18px 0 24px;
  color: #716a61;
  font-size: 13px;
  line-height: 1.7;
}

.childhood-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,15,.08);
}

.childhood-meta .activity-mini-schedule {
  margin-top: 13px;
}

.activity-global-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  margin-top: 48px;
  padding-top: 34px;

  border-top: 1px solid rgba(17,17,15,.10);
}

.activity-global-links-single {
  justify-content: flex-end;
}

.activity-primary-cta,
.activity-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  padding: 15px 20px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease;
}

.activity-primary-cta {
  background: var(--black);
  color: #fff;
}

.activity-primary-cta span {
  color: var(--gold-light);
}

.activity-secondary-cta {
  border: 1px solid rgba(17,17,15,.16);
  color: var(--black);
  background: transparent;
}

.activity-primary-cta:hover,
.activity-secondary-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .activity-detail-block {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .childhood-levels {
    grid-template-columns: 1fr 1fr;
  }

  .childhood-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .section-hero.page-hero-unified {
    min-height: 440px;
    height: 440px;
    padding-bottom: 46px;
  }

  .section-hero-inner,
  .activities-detail-inner {
    width: calc(100% - 36px);
  }

  .section-hero h1 {
    font-size: clamp(42px, 12.5vw, 64px);
    line-height: 1.02;
  }

  .section-hero p {
    margin-top: 20px;
    font-size: 14px;
  }

  .activities-detail-section {
    padding: 72px 0 85px;
  }

  .activities-detail-intro {
    margin-bottom: 38px;
  }

  .activity-detail-block {
    padding: 46px 0;
  }

  .childhood-levels {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .childhood-card:last-child {
    grid-column: auto;
  }

  .activity-global-links {
    flex-direction: column;
    align-items: stretch;
  }

  .activity-primary-cta,
  .activity-secondary-cta {
    justify-content: space-between;
  }
}


/* V55 — finitions pages activités */
.childhood-card-head > span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}
.activity-room-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 22px;
}
.activity-room-inline > span {
  color: #9b9489;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.activity-room-inline > strong {
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}
.activity-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .2s ease, opacity .2s ease;
}
.activity-inline-cta:hover { transform: translateY(-2px); opacity: .88; }
.childhood-room { margin-top: 18px; }
.childhood-cta { margin-top: 14px; }


/* =========================================================
   V56 — MÉGA-MENU : ACTIVITÉS CLIQUABLES
========================================================= */
.mega-activity-list a {
  display: block;
  width: fit-content;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-weight: 650;
  transition: color .18s ease, transform .18s ease;
}
.mega-activity-list a:hover,
.mega-activity-list a:focus-visible {
  color: var(--gold);
  transform: translateX(4px);
}

/* =========================================================
   V56 — NAVIGATION RAPIDE DES PAGES ACTIVITÉS
========================================================= */
.activity-jump-nav {
  position: sticky;
  top: 86px;
  z-index: 18;
  background: rgba(245,240,230,.95);
  border-bottom: 1px solid rgba(17,17,15,.08);
  backdrop-filter: blur(12px);
}
.activity-jump-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.activity-jump-label {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.activity-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.activity-jump-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(198,161,91,.32);
  border-radius: 999px;
  color: #554d42;
  background: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.activity-jump-links a:hover,
.activity-jump-links a:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #11110f;
  transform: translateY(-1px);
}

/* =========================================================
   V56 — PLUS D'OR SUR LES PAGES ACTIVITÉS
========================================================= */
.activity-detail-block {
  position: relative;
}
.activity-detail-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.activity-detail-main h2 {
  position: relative;
}
.activity-detail-main h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--gold);
}
.activity-info-box {
  border-color: rgba(198,161,91,.22) !important;
}
.activity-info-label {
  color: #a6803d !important;
}

/* CTA inscription discret, sous les horaires */
.activity-inline-signup-subtle,
.activity-detail-side a[href*="inscription"] {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 8px;
  padding: 0 0 5px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(198,161,91,.55) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #8e713a !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}
.activity-inline-signup-subtle:hover,
.activity-detail-side a[href*="inscription"]:hover {
  color: #11110f !important;
  border-bottom-color: #11110f !important;
}

/* =========================================================
   V56 — CLUB : CONTRASTE ENTRE HISTOIRE ET BUREAU
========================================================= */
.history-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(198,161,91,.12), transparent 28%),
    #efe6d6 !important;
  border-top: 1px solid rgba(198,161,91,.18);
  border-bottom: 1px solid rgba(198,161,91,.18);
}
.history-section::after {
  content: "ASEG";
  position: absolute;
  right: -18px;
  top: 38px;
  color: rgba(198,161,91,.07);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 800;
  letter-spacing: -.08em;
  pointer-events: none;
}
.team-section-light {
  background: #f8f4eb !important;
}

/* =========================================================
   V56 — FRISE ANIMÉE
========================================================= */
.history-timeline {
  position: relative;
}
.history-timeline::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.15s cubic-bezier(.22,.61,.36,1);
}
.history-timeline.is-visible::before {
  transform: scaleX(1);
}
.history-step {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .62s ease var(--step-delay, 0ms),
    transform .62s cubic-bezier(.22,.61,.36,1) var(--step-delay, 0ms);
}
.history-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.history-node {
  transform: scale(.45);
  transition: transform .42s cubic-bezier(.34,1.56,.64,1) calc(var(--step-delay, 0ms) + 140ms),
              box-shadow .25s ease;
}
.history-step.is-visible .history-node {
  transform: scale(1);
}
.history-step:hover .history-node {
  box-shadow: 0 0 0 8px rgba(198,161,91,.14);
}
.history-card {
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.history-step:hover .history-card {
  transform: translateY(-7px);
  border-color: rgba(198,161,91,.42);
  box-shadow: 0 18px 45px rgba(17,17,15,.08);
}

@media (prefers-reduced-motion: reduce) {
  .history-timeline::before,
  .history-step,
  .history-node,
  .history-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 760px) {
  .activity-jump-nav {
    top: 72px;
  }
  .activity-jump-inner {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .activity-jump-links {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .activity-jump-links::-webkit-scrollbar {
    display: none;
  }
  .activity-jump-links a {
    flex: 0 0 auto;
  }
}


/* =========================================================
   V57 — NAVIGATION ACTIVITÉS PLUS COMPACTE ET PLUS LISIBLE
========================================================= */

.activity-jump-inner {
  min-height: 62px !important;
  gap: 18px !important;
}

.activity-jump-links {
  gap: 10px !important;
}

.activity-jump-links a {
  min-height: 40px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

/* Moins d'espace entre les boutons et la première activité */
.activities-detail-section {
  padding-top: 48px !important;
}

.activities-detail-intro {
  margin-bottom: 30px !important;
}

/* =========================================================
   V57 — CTA INSCRIPTION DISCRET SOUS LES HORAIRES
========================================================= */

.activity-signup-text {
  display: inline-block;
  width: fit-content;
  margin-top: 10px;
  padding-bottom: 3px;

  color: #a67f38;
  border-bottom: 1px solid rgba(166,127,56,.55);

  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;

  transition:
    color .18s ease,
    border-color .18s ease;
}

.activity-signup-text:hover,
.activity-signup-text:focus-visible {
  color: #11110f;
  border-bottom-color: #11110f;
}

.activity-signup-text-small {
  margin-top: 12px;
}

/* Neutralise les anciens CTA visuellement forts */
.activity-detail-side a[href="inscription.html"]:not(.activity-signup-text),
.childhood-card a[href="inscription.html"]:not(.activity-signup-text) {
  background: transparent !important;
  color: #a67f38 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(166,127,56,.55) !important;
  border-radius: 0 !important;
  padding: 0 0 3px !important;
  box-shadow: none !important;
}

/* =========================================================
   V57 — SUPPRESSION DES TRAITS DORÉS ENTRE ACTIVITÉS
========================================================= */

.activity-detail-block::before,
.activity-detail-main h2::after {
  display: none !important;
  content: none !important;
}

/* On conserve uniquement la séparation sobre d'origine */
.activity-detail-block {
  border-top: 1px solid rgba(17,17,15,.10) !important;
}

/* =========================================================
   V57 — ESPACEMENTS GLOBAUX RÉDUITS
   Pages moins longues, sans écraser la mise en page.
========================================================= */

.activities-detail-section,
.team-section,
.history-section,
.news-page-section,
.contact-section,
.registration-content,
.schedule-section,
.dates-section,
.follow-section {
  padding-top: clamp(68px, 7vw, 92px) !important;
  padding-bottom: clamp(72px, 7.5vw, 98px) !important;
}

.activity-detail-block {
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

.history-heading,
.team-heading,
.activities-detail-intro {
  margin-bottom: 42px !important;
}

/* évite que les cartes info créent trop de vide */
.activity-detail-side {
  gap: 10px !important;
}

@media (max-width: 760px) {
  .activity-jump-inner {
    padding: 9px 0 !important;
  }

  .activity-jump-links a {
    min-height: 38px !important;
    padding: 9px 14px !important;
    font-size: 12px !important;
  }

  .activities-detail-section {
    padding-top: 34px !important;
  }

  .activity-detail-block {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .activities-detail-section,
  .team-section,
  .history-section,
  .news-page-section,
  .contact-section,
  .registration-content,
  .schedule-section,
  .dates-section,
  .follow-section {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }
}


/* =========================================================
   V58 — 330 ADHÉRENTS / CTA / ANCRAGES
========================================================= */

/* Navigation d'ancrage : un peu plus basse dans sa barre */
.activity-jump-nav {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.activity-jump-inner {
  min-height: 54px !important;
}

.activity-jump-links a {
  min-height: 42px !important;
  padding: 11px 18px !important;
  font-size: 13px !important;
}

/* Beaucoup moins de vide avant la première activité */
.activities-detail-section {
  padding-top: 24px !important;
}

/* Une seule ligne : on garde celle de la barre d'ancrage,
   on retire celle placée juste avant la première activité */
.activities-detail-section .activity-detail-block:first-of-type {
  border-top: 0 !important;
}

/* CTA vraiment en dehors de la carte horaires */
.activity-detail-side > .activity-signup-text,
.childhood-meta > .activity-signup-text {
  display: inline-block !important;
  width: fit-content;
  margin-top: 10px !important;
  margin-left: 2px !important;
  padding: 0 0 2px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(166,127,56,.58) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #a67f38 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.activity-detail-side > .activity-signup-text:hover,
.childhood-meta > .activity-signup-text:hover {
  color: #11110f !important;
  border-bottom-color: #11110f !important;
}

@media (max-width: 760px) {
  .activity-jump-nav {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .activities-detail-section {
    padding-top: 18px !important;
  }
}


/* =========================================================
   V60 — MENTIONS LÉGALES / CONFIDENTIALITÉ
========================================================= */

.legal-page {
  background: #f5f0e6;
}

.legal-hero.page-hero-unified {
  min-height: 500px;
  height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 66px;
  background:
    radial-gradient(circle at 82% 16%, rgba(198,161,91,.15), transparent 30%),
    #11110f;
  color: #fff;
}

.legal-hero-inner {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.05em;
}

.legal-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content-section {
  padding: 76px 0 92px;
}

.legal-content-inner {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
}

.legal-card {
  position: relative;
  padding: 42px 0;
  border-top: 1px solid rgba(17,17,15,.10);
}

.legal-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-number {
  display: block;
  margin-bottom: 10px;
  color: #a67f38;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.legal-card h2 {
  margin: 0 0 18px;
  color: #11110f;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.legal-card p {
  max-width: 850px;
  margin: 0 0 14px;
  color: #5f594f;
  font-size: 14px;
  line-height: 1.8;
}

.legal-card a {
  color: #8f7138;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-details {
  margin: 22px 0 0;
  padding: 0;
}

.legal-details > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid rgba(17,17,15,.07);
}

.legal-details dt {
  color: #9b9489;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0;
  color: #332f29;
  font-size: 13px;
  line-height: 1.6;
}

.legal-crosslink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding: 26px 28px;
  border: 1px solid rgba(198,161,91,.25);
  border-radius: 16px;
  background: #fffaf1;
}

.legal-crosslink span {
  color: #8d857a;
  font-size: 11px;
  font-weight: 700;
}

.legal-crosslink a,
.legal-external-link {
  color: #8f7138;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.contact-privacy-notice {
  max-width: 650px;
  margin: 16px 0 0 !important;
  color: #8b847a !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
}

.contact-privacy-notice a {
  color: #9a7533;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 650px) {
  .legal-hero.page-hero-unified {
    min-height: 420px;
    height: 420px;
    padding-bottom: 44px;
  }

  .legal-hero-inner,
  .legal-content-inner {
    width: calc(100% - 36px);
  }

  .legal-content-section {
    padding: 56px 0 70px;
  }

  .legal-card {
    padding: 34px 0;
  }

  .legal-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-crosslink {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   V61 — PASSE RESPONSIVE MOBILE FINALE
   Objectif : 320–480 px en priorité, tablette ensuite.
========================================================= */

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

/* Les longues chaînes ne doivent jamais provoquer de débordement */
p,
h1,
h2,
h3,
h4,
a,
dd {
  overflow-wrap: break-word;
}

/* =========================================================
   TABLETTE
========================================================= */
@media (max-width: 980px) {

  /* Heroes hors accueil : même comportement */
  .page-hero-unified,
  .club-hero.page-hero-unified,
  .section-hero.page-hero-unified,
  .legal-hero.page-hero-unified {
    min-height: 460px !important;
    height: auto !important;
  }

  /* Grilles principales */
  .contact-grid,
  .registration-grid,
  .club-intro-grid,
  .team-grid,
  .footer-main {
    gap: 32px !important;
  }

  /* Images/mascottes décoratives ne doivent pas sortir du viewport */
  .mascot,
  [class*="mascot"],
  [class*="krambar"] {
    max-width: min(42vw, 310px);
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 700px) {

  /* -------- HEADER -------- */
  .site-header {
    min-height: 68px;
  }

  .header-inner {
    min-height: 68px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .desktop-nav,
  .header-cta {
    display: none !important;
  }

  .mobile-menu-button,
  .menu-toggle {
    display: flex !important;
  }

  /* -------- HERO ACCUEIL -------- */
  .home-hero,
  .hero-home,
  .hero {
    min-height: min(760px, calc(100svh - 68px)) !important;
  }

  .hero-content,
  .home-hero-inner {
    width: calc(100% - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-hero h1,
  .hero-home h1,
  .hero h1 {
    font-size: clamp(46px, 14vw, 70px) !important;
    line-height: .96 !important;
    letter-spacing: -.055em !important;
  }

  /* -------- HERO DES AUTRES PAGES -------- */
  .page-hero-unified,
  .club-hero.page-hero-unified,
  .section-hero.page-hero-unified,
  .legal-hero.page-hero-unified {
    min-height: 390px !important;
    height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 42px !important;
  }

  .page-hero-unified-inner,
  .club-hero-inner,
  .section-hero-inner,
  .legal-hero-inner {
    width: calc(100% - 36px) !important;
  }

  .page-hero-unified h1,
  .club-hero h1,
  .section-hero h1,
  .legal-hero h1 {
    font-size: clamp(40px, 12vw, 58px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.05em !important;
  }

  .page-hero-unified p,
  .club-hero p,
  .section-hero p,
  .legal-hero p {
    max-width: 100% !important;
    margin-top: 18px !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  /* -------- ESPACEMENTS GLOBAUX -------- */
  main section:not(.page-hero-unified):not(.home-hero):not(.hero-home):not(.hero):not(.activity-jump-nav) {
    scroll-margin-top: 84px;
  }

  .activities-detail-section,
  .history-section,
  .team-section,
  .contact-section,
  .registration-content,
  .news-page-section,
  .schedule-section,
  .legal-content-section {
    padding-top: 48px !important;
    padding-bottom: 56px !important;
  }

  /* -------- PAGES ACTIVITÉS -------- */
  .activity-jump-nav {
    position: sticky;
    top: 68px !important;
    padding: 9px 0 !important;
  }

  .activity-jump-inner {
    width: calc(100% - 28px) !important;
    padding: 0 !important;
    gap: 7px !important;
  }

  .activity-jump-label {
    font-size: 9px !important;
  }

  .activity-jump-links {
    width: 100%;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .activity-jump-links::-webkit-scrollbar {
    display: none;
  }

  .activity-jump-links a {
    flex: 0 0 auto;
    min-height: 40px !important;
    padding: 10px 15px !important;
    font-size: 12px !important;
  }

  .activities-detail-inner {
    width: calc(100% - 36px) !important;
  }

  .activity-detail-block {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding: 36px 0 !important;
  }

  .activity-detail-main h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .activity-detail-lead {
    margin-top: 18px !important;
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  .activity-detail-text {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .childhood-levels {
    grid-template-columns: 1fr !important;
  }

  .childhood-card {
    padding: 22px 20px !important;
  }

  .childhood-card-head > span {
    font-size: 12px !important;
  }

  .childhood-card-head h3 {
    font-size: 23px !important;
  }

  .activity-info-box {
    padding: 18px !important;
  }

  .activity-time-row {
    gap: 10px !important;
  }

  .activity-time-row strong {
    white-space: normal !important;
    text-align: right;
  }

  .activity-global-links {
    margin-top: 28px !important;
  }

  /* -------- PLANNING -------- */
  .schedule-table-wrap,
  .planning-scroll,
  .schedule-scroll,
  [class*="planning"][class*="wrap"] {
    max-width: 100%;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .schedule-table,
  .planning-table {
    min-width: 720px;
  }

  /* -------- ACTUALITÉS -------- */
  .news-grid,
  .instagram-grid,
  .posts-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* -------- CLUB / BUREAU -------- */
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .history-timeline {
    max-width: 100%;
  }

  .history-card {
    max-width: 100%;
  }

  /* -------- CONTACT -------- */
  .contact-grid,
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  form input,
  form select,
  form textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px; /* évite le zoom automatique iOS */
  }

  .contact-submit {
    width: 100%;
    justify-content: space-between;
  }

  .contact-map iframe,
  .map-card iframe,
  iframe[src*="openstreetmap"],
  iframe[src*="google.com/maps"] {
    width: 100% !important;
    min-height: 320px;
  }

  /* -------- INSCRIPTION -------- */
  .registration-grid,
  .registration-layout {
    grid-template-columns: 1fr !important;
  }

  .registration-card,
  .registration-info-card {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* -------- FOOTER -------- */
  .footer-main,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  /* -------- LÉGAL -------- */
  .legal-content-inner {
    width: calc(100% - 36px) !important;
  }

  .legal-details > div {
    grid-template-columns: 1fr !important;
  }

  .legal-crosslink {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  /* -------- BOUTONS / LIENS -------- */
  .section-cta,
  .activity-primary-cta,
  .activity-secondary-cta {
    max-width: 100%;
  }
}

/* =========================================================
   TRÈS PETITS TÉLÉPHONES
========================================================= */
@media (max-width: 380px) {

  .home-hero h1,
  .hero-home h1,
  .hero h1 {
    font-size: 44px !important;
  }

  .page-hero-unified h1,
  .club-hero h1,
  .section-hero h1,
  .legal-hero h1 {
    font-size: 38px !important;
  }

  .activity-jump-links a {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }

  .activity-time-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px !important;
  }

  .activity-time-row strong {
    text-align: left;
  }
}


/* =========================================================
   V64 — MOBILE : masquer Krambar uniquement sur téléphone
========================================================= */

@media (max-width: 700px) {
  [class*="krambar"],
  [class*="mascot"] {
    display: none !important;
  }
}


/* =========================================================
   V66 — Planning : titres des cours cliquables
========================================================= */

.schedule-activity-link {
  color: inherit;
  text-decoration: none;
  transition:
    color .18s ease,
    text-decoration-color .18s ease;
}

.schedule-activity-link:hover,
.schedule-activity-link:focus-visible {
  color: #a67f38;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}



/* =========================================================
   V70 — DÉCALAGE & ANIMATIONS DE CARTES
========================================================= */
.childhood-levels > .childhood-card:nth-child(even),
.team-grid > .person-card:nth-child(even) {
  transform: translateY(24px);
}

.reveal-block {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .62s ease,
    transform .62s cubic-bezier(.22,.61,.36,1);
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.childhood-levels > .childhood-card.reveal-block:nth-child(even).is-visible,
.team-grid > .person-card.reveal-block:nth-child(even).is-visible {
  transform: translateY(24px);
}

.childhood-card,
.person-card {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.childhood-card:hover,
.person-card:hover {
  box-shadow: 0 18px 42px rgba(17,17,15,.08);
}

@media (max-width: 700px) {
  .childhood-levels > .childhood-card:nth-child(even),
  .team-grid > .person-card:nth-child(even),
  .childhood-levels > .childhood-card.reveal-block:nth-child(even).is-visible,
  .team-grid > .person-card.reveal-block:nth-child(even).is-visible {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-block {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* =========================================================
   V72 — STICKY CONTACT & INSCRIPTION
   Correction réelle : overflow-x:hidden ajouté par la passe
   responsive empêchait le sticky sur certains navigateurs
   (notamment Safari). On utilise clip à la place.
========================================================= */

html,
body {
  overflow-x: clip !important;
}

/* Les conteneurs parents doivent laisser le sticky fonctionner */
.contact-section,
.contact-inner,
.registration-content,
.registration-inner,
main {
  overflow: visible !important;
}

/* Même comportement que dans la V58 */
@media (min-width: 901px) {
  .contact-side {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 115px !important;
    align-self: start !important;
    height: fit-content !important;
  }

  .registration-side {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px !important;
    align-self: start !important;
    height: fit-content !important;
  }
}

/* Sur mobile/tablette : comportement normal, sans bloc collé */
@media (max-width: 900px) {
  .contact-side,
  .registration-side {
    position: static !important;
    top: auto !important;
    height: auto !important;
  }
}

/* V73 — popup rentrée */
.season-popup{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:24px}
.season-popup[hidden]{display:none!important}
.season-popup-backdrop{position:absolute;inset:0;background:rgba(17,17,15,.68);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}
.season-popup-card{position:relative;z-index:1;width:min(560px,100%);padding:48px;background:#fffaf1;border:1px solid rgba(198,161,91,.42);box-shadow:0 28px 80px rgba(0,0,0,.24)}
.season-popup-kicker{display:block;margin-bottom:13px;color:#c6a15b;font-family:"Montserrat",sans-serif;font-size:11px;font-weight:800;letter-spacing:.16em}
.season-popup-card h2{margin:0 42px 25px 0;color:#11110f;font-family:"Montserrat",sans-serif;font-size:clamp(28px,4vw,42px);line-height:1.08}
.season-popup-card p{margin:0 0 12px;color:#4f4a43;font-size:16px;line-height:1.65}
.season-popup-card p strong{color:#11110f;font-weight:800}
.season-popup-close{position:absolute;top:16px;right:17px;width:38px;height:38px;border:0;background:transparent;color:#11110f;font-size:30px;cursor:pointer}
.season-popup-close:hover{color:#c6a15b}
@media(max-width:600px){.season-popup{padding:18px}.season-popup-card{padding:40px 26px 30px}.season-popup-card h2{font-size:29px}.season-popup-card p{font-size:15px}}
@media(prefers-reduced-motion:no-preference){.season-popup-card{animation:seasonPopupIn .38s ease both}@keyframes seasonPopupIn{from{opacity:0;transform:translateY(20px) scale(.98)}to{opacity:1;transform:none}}}

/* V74 — mise en avant de la date de rentrée */
.season-popup-card p:first-of-type {
  font-size: 21px;
  line-height: 1.45;
  margin-bottom: 18px;
}
@media (max-width:600px) {
  .season-popup-card p:first-of-type {
    font-size: 19px;
  }
}
