/* ==========================================================================
   ACHB – Alès Cévennes Handball · Feuille de style principale
   À déposer sur le FTP : /achb/achb.css
   Toutes les classes sont préfixées "achb-" pour ne pas entrer en conflit
   avec les styles générés par WebAcappella.
   ========================================================================== */

:root {
  --achb-black: #0b0b0c;
  --achb-ink: #141416;
  --achb-card: #1a1a1d;
  --achb-line: rgba(255, 255, 255, .09);
  --achb-orange: #f98000;
  --achb-orange-hot: #ffa033;
  --achb-orange-deep: #c75f00;
  --achb-white: #ffffff;
  --achb-text: #e9e9ec;
  --achb-muted: #9a9aa3;
  --achb-light: #f5f3f0;
  --achb-light-ink: #1b1b1e;
  --achb-radius: 14px;
  --achb-max: 1240px;
  --achb-gutter: clamp(16px, 4vw, 40px);
  --achb-head: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --achb-body: "Barlow", "Segoe UI", Roboto, Arial, sans-serif;
  --achb-ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base (scopée) ---------- */
.achb, .achb *, .achb *::before, .achb *::after { box-sizing: border-box; }
.achb {
  font-family: var(--achb-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--achb-text);
  background: var(--achb-black);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
}
.achb img { max-width: 100%; display: block; }
.achb a { text-decoration: none; }
:where(.achb) a { color: inherit; }
.achb p { margin: 0 0 1em; }
.achb h1, .achb h2, .achb h3, .achb h4 {
  font-family: var(--achb-head);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .01em;
  margin: 0;
  color: var(--achb-white);
}
.achb ul, .achb ol { list-style: none; margin: 0; padding: 0; }
.achb-hero__grid > *, .achb-club__grid > *, .achb-join__grid > *, .achb-contact__grid > * { min-width: 0; }
.achb-wrap { width: 100%; max-width: var(--achb-max); margin: 0 auto; padding: 0 var(--achb-gutter); }
.achb-section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.achb-section--light { background: var(--achb-light); color: var(--achb-light-ink); }
.achb-section--light h2, .achb-section--light h3 { color: var(--achb-light-ink); }
.achb-section--ink { background: var(--achb-ink); }

/* ---------- Titres de section ---------- */
.achb-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--achb-head); font-weight: 700; font-size: 15px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--achb-orange);
  margin-bottom: 14px;
}
.achb-kicker::before { content: ""; width: 28px; height: 3px; background: var(--achb-orange); transform: skewX(-20deg); }
.achb-title { font-size: clamp(40px, 6vw, 72px); margin-bottom: 18px; }
.achb-title em { font-style: italic; color: var(--achb-orange); }
.achb-lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--achb-muted); max-width: 640px; }
.achb-section--light .achb-lead { color: #55555c; }
.achb-head > div:first-child { max-width: 760px; }
.achb-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 5vw, 56px); }

/* ---------- Boutons ---------- */
.achb-btn {
  --bg: var(--achb-orange);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  font-family: var(--achb-head); font-weight: 700; font-size: 18px;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff !important; background: var(--bg);
  border: 2px solid var(--bg); border-radius: 6px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform .25s var(--achb-ease), background .25s, box-shadow .25s;
  cursor: pointer; white-space: nowrap;
}
.achb-btn:hover { transform: translateY(-2px); --bg: var(--achb-orange-hot); box-shadow: 0 12px 30px -10px rgba(249, 128, 0, .7); }
.achb-btn:focus-visible { outline: 3px solid var(--achb-orange-hot); outline-offset: 3px; }
.achb-btn svg { width: 18px; height: 18px; transition: transform .25s var(--achb-ease); }
.achb-btn:hover svg { transform: translateX(4px); }
.achb-btn--ghost { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, .35); }
.achb-btn--ghost:hover { background: rgba(255, 255, 255, .08); border-color: #fff; box-shadow: none; }
.achb-btn--dark { --bg: var(--achb-black); }
.achb-btn--dark:hover { --bg: #26262a; box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .6); }
.achb-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--achb-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--achb-orange); }
.achb-link:hover { color: var(--achb-orange-hot); }

/* ==========================================================================
   01 · HEADER / NAVIGATION
   ========================================================================== */
.achb-header {
  position: fixed; inset: 0 0 auto 0; z-index: 9999;
  transition: background .3s, box-shadow .3s, transform .35s var(--achb-ease);
  overflow: visible;
  background: transparent;
}
.achb-header.is-scrolled { background: rgba(11, 11, 12, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--achb-line); }
.achb-header.is-hidden { transform: translateY(-100%); }
.achb-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 84px; }
.achb-brand { display: flex; align-items: center; gap: 12px; }
.achb-brand { position: relative; align-self: flex-start; padding-top: 8px; flex: none; }
.achb-brand img { max-width: none; }
.achb-brand img { height: 118px; width: auto; margin-bottom: -46px; transition: height .35s var(--achb-ease), margin .35s var(--achb-ease), transform .35s var(--achb-ease); filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .55)); }
.achb-brand:hover img { transform: rotate(-4deg) scale(1.04); }
.achb-header.is-scrolled .achb-brand { padding-top: 6px; }
.achb-header.is-scrolled .achb-brand img { height: 72px; margin-bottom: 0; }
.achb-brand__txt { font-family: var(--achb-head); font-weight: 800; font-style: italic; text-transform: uppercase; line-height: 1; color: #fff; font-size: 20px; }
.achb-brand__txt small { display: block; font-size: 12px; letter-spacing: .2em; color: var(--achb-orange); font-style: normal; font-weight: 600; margin-top: 3px; }
.achb-nav { display: flex; align-items: center; gap: 4px; }
.achb-nav > li { position: relative; }
.achb-nav > li > a, .achb-nav > li > button {
  display: flex; align-items: center; gap: 6px; height: 44px; padding: 0 14px;
  font-family: var(--achb-head); font-weight: 600; font-size: 17px; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; background: none; border: 0; cursor: pointer; position: relative; white-space: nowrap;
}
.achb-nav > li > a::after, .achb-nav > li > button::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--achb-orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--achb-ease);
}
.achb-nav > li > a:hover::after, .achb-nav > li > button:hover::after, .achb-nav > li > a.is-active::after { transform: scaleX(1); }
.achb-nav svg { width: 12px; height: 12px; }
.achb-drop {
  position: absolute; top: 100%; left: 50%; min-width: 520px; padding: 18px;
  background: var(--achb-card); border: 1px solid var(--achb-line); border-radius: var(--achb-radius);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px;
  opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: .25s var(--achb-ease);
}
.achb-nav > li:hover .achb-drop, .achb-nav > li:focus-within .achb-drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.achb-drop h4 { grid-column: span 1; font-size: 13px; font-style: normal; letter-spacing: .2em; color: var(--achb-orange); margin: 6px 0 6px 10px; }
.achb-drop a { display: block; padding: 8px 10px; border-radius: 8px; font-size: 15px; color: var(--achb-text); transition: background .2s, color .2s; }
.achb-drop a:hover { background: rgba(249, 128, 0, .12); color: #fff; }
.achb-header__cta { display: flex; align-items: center; gap: 10px; }
.achb-header__cta .achb-btn { min-height: 44px; padding: 0 20px; font-size: 16px; }
.achb-burger { display: none; width: 48px; height: 48px; background: none; border: 0; cursor: pointer; position: relative; }
.achb-burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; transition: .3s var(--achb-ease); }
.achb-burger span:nth-child(1) { top: 16px; }
.achb-burger span:nth-child(2) { top: 23px; right: 18px; background: var(--achb-orange); }
.achb-burger span:nth-child(3) { top: 30px; }
.achb-header.is-open .achb-burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.achb-header.is-open .achb-burger span:nth-child(2) { opacity: 0; }
.achb-header.is-open .achb-burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Menu mobile */
.achb-mobile {
  position: fixed; inset: 0; z-index: 9998; background: var(--achb-black);
  padding: 110px var(--achb-gutter) 40px; overflow-y: auto;
  opacity: 0; visibility: hidden; transition: .35s var(--achb-ease);
}
.achb-header.is-open + .achb-mobile, .achb-mobile.is-open { opacity: 1; visibility: visible; }
.achb-mobile > ul > li { border-bottom: 1px solid var(--achb-line); }
.achb-mobile > ul > li > a, .achb-mobile summary {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 0;
  font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 30px; text-transform: uppercase; color: #fff; cursor: pointer; list-style: none;
}
.achb-mobile summary::-webkit-details-marker { display: none; }
.achb-mobile summary::after { content: "+"; color: var(--achb-orange); font-style: normal; }
.achb-mobile details[open] summary::after { content: "–"; }
.achb-mobile details ul { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; padding-bottom: 16px; }
.achb-mobile details a { padding: 8px 0; color: var(--achb-muted); font-size: 16px; }
.achb-mobile .achb-btn { width: 100%; margin-top: 28px; }

/* ==========================================================================
   02 · HERO
   ========================================================================== */
.achb-hero { min-height: 100svh; display: flex; align-items: center; padding: 130px 0 90px; isolation: isolate; }
.achb-hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(60% 70% at 78% 45%, rgba(249, 128, 0, .38), transparent 65%),
    radial-gradient(40% 50% at 10% 100%, rgba(249, 128, 0, .14), transparent 70%),
    var(--achb-black);
}
.achb-hero__bg::before { /* rayons "explosion" */
  content: ""; position: absolute; left: 72%; top: 48%; width: 170vmax; height: 170vmax; transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, .045) 0 4deg, transparent 4deg 14deg);
  -webkit-mask: radial-gradient(circle, #000 0, transparent 55%); mask: radial-gradient(circle, #000 0, transparent 55%);
  animation: achb-spin 120s linear infinite;
}
.achb-hero__bg::after { /* grain + fondu bas */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--achb-black));
}
@keyframes achb-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.achb-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; }
.achb-hero__tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px; margin-bottom: 26px;
  border: 1px solid var(--achb-line); border-radius: 100px; background: rgba(255, 255, 255, .04);
  font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--achb-text);
}
.achb-hero__tag b { white-space: nowrap; background: var(--achb-orange); color: #fff; border-radius: 100px; padding: 2px 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.achb-hero h1 { font-size: clamp(52px, 8.5vw, 124px); line-height: .86; margin-bottom: 26px; }
.achb-hero h1 span { display: block; }
.achb-hero h1 .achb-outline { color: transparent; -webkit-text-stroke: 2px var(--achb-orange); }
.achb-hero h1 .achb-orange { color: var(--achb-orange); }
.achb-hero__lead { font-size: clamp(18px, 1.8vw, 21px); color: #c9c9cf; max-width: 540px; margin-bottom: 34px; }
.achb-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.achb-hero__visual { position: relative; align-self: center; isolation: isolate; }
.achb-hero__visual img { width: 100%; max-width: 580px; margin-left: auto; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .65)); animation: achb-pop 1.1s var(--achb-ease) both, achb-float 7s 1.1s ease-in-out infinite; }
.achb-hero__visual::before { content: ""; position: absolute; left: 50%; top: 48%; width: 88%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(249, 128, 0, .45), transparent 65%); filter: blur(10px); z-index: -1; animation: achb-pulse 4s ease-in-out infinite; }
@keyframes achb-pop { from { opacity: 0; transform: scale(.7) rotate(-12deg); } }
@keyframes achb-pulse { 50% { opacity: .55; transform: translate(-50%, -50%) scale(1.08); } }
@keyframes achb-float { 50% { transform: translateY(-14px); } }
.achb-hero__badge {
  position: absolute; left: -10px; bottom: -4%; padding: 16px 20px; border-radius: var(--achb-radius);
  background: rgba(20, 20, 22, .85); border: 1px solid var(--achb-line); backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 14px; box-shadow: 0 20px 50px -20px #000;
}
.achb-hero__badge strong { font-family: var(--achb-head); font-style: italic; font-size: 42px; line-height: 1; color: var(--achb-orange); }
.achb-hero__badge span { font-size: 14px; line-height: 1.3; color: var(--achb-muted); }
.achb-scroll { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .3); border-radius: 20px; }
.achb-scroll::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--achb-orange); animation: achb-wheel 1.8s infinite; }
@keyframes achb-wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }

/* Bandeau défilant */
.achb-ticker { background: var(--achb-orange); transform: skewY(-2deg); margin: -30px 0 0; position: relative; z-index: 3; overflow: hidden; }
.achb-ticker__track { display: flex; width: max-content; animation: achb-marquee 32s linear infinite; }
.achb-ticker span { font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: clamp(22px, 3vw, 32px); text-transform: uppercase; color: var(--achb-black); padding: 14px 26px; white-space: nowrap; display: flex; align-items: center; gap: 26px; }
.achb-ticker span::after { content: ""; width: 12px; height: 12px; background: var(--achb-black); transform: rotate(45deg); }
@keyframes achb-marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   03 · LE CLUB + CHIFFRES
   ========================================================================== */
.achb-club__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.achb-club__media { position: relative; }
.achb-club__media .achb-photo { aspect-ratio: 4/5; border-radius: var(--achb-radius); overflow: hidden; background: var(--achb-card); clip-path: polygon(0 0, 100% 0, 100% 88%, 82% 100%, 0 100%); }
.achb-club__media .achb-photo img { width: 100%; height: 100%; object-fit: cover; }
.achb-club__media .achb-photo { position: relative; background: radial-gradient(70% 60% at 70% 30%, rgba(249, 128, 0, .55), transparent 70%), repeating-conic-gradient(from 0deg at 70% 30%, rgba(255, 255, 255, .05) 0 5deg, transparent 5deg 15deg), var(--achb-card); }
.achb-club__media .achb-photo::after { content: "ACHB"; position: absolute; left: 24px; bottom: 18px; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: clamp(70px, 10vw, 130px); line-height: 1; color: rgba(255, 255, 255, .08); z-index: 0; }
.achb-club__media .achb-photo img { position: relative; z-index: 1; }
.achb-club__year { position: absolute; right: -10px; top: 28px; background: var(--achb-orange); color: #fff; padding: 18px 22px; border-radius: 10px; transform: rotate(3deg); box-shadow: 0 20px 40px -15px rgba(249, 128, 0, .7); }
.achb-club__year small { display: block; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.achb-club__year strong { font-family: var(--achb-head); font-style: italic; font-size: 54px; line-height: 1; }
.achb-values { display: grid; gap: 14px; margin: 28px 0 34px; }
.achb-values li { display: flex; gap: 16px; align-items: flex-start; }
.achb-values i { flex: 0 0 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: rgba(249, 128, 0, .12); color: var(--achb-orange); font-style: normal; }
.achb-values i svg { width: 22px; height: 22px; }
.achb-values b { display: block; color: #fff; font-size: 18px; margin-bottom: 2px; }
.achb-section--light .achb-values b { color: var(--achb-light-ink); }
.achb-values span { color: var(--achb-muted); font-size: 15.5px; }

.achb-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--achb-line); border: 1px solid var(--achb-line); border-radius: var(--achb-radius); overflow: hidden; margin-top: clamp(56px, 8vw, 96px); }
.achb-stat { background: var(--achb-black); padding: 30px 26px; }
.achb-stat strong { display: block; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: clamp(48px, 6vw, 72px); line-height: 1; color: #fff; }
.achb-stat strong sup { color: var(--achb-orange); font-size: .5em; vertical-align: top; margin-left: 2px; }
.achb-stat span { display: block; margin-top: 8px; color: var(--achb-muted); font-size: 15px; }

/* ==========================================================================
   04 · ÉQUIPES
   ========================================================================== */
.achb-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.achb-filter { padding: 10px 18px; border-radius: 100px; border: 1px solid rgba(0, 0, 0, .15); background: transparent; font-family: var(--achb-head); font-weight: 700; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--achb-light-ink); cursor: pointer; transition: .2s; }
.achb-filter:hover { border-color: var(--achb-light-ink); }
.achb-filter.is-active { background: var(--achb-light-ink); border-color: var(--achb-light-ink); color: #fff; }
.achb-teams { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.achb-team {
  position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 250px; padding: 24px;
  border-radius: var(--achb-radius); background: #fff; color: var(--achb-light-ink); overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 10px 30px -18px rgba(0, 0, 0, .3);
  transition: transform .35s var(--achb-ease), box-shadow .35s, background .35s, color .35s;
}
.achb-team::before { content: attr(data-code); position: absolute; right: -8px; bottom: -22px; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 120px; line-height: 1; color: rgba(0, 0, 0, .05); transition: color .35s; pointer-events: none; }
.achb-team:hover { transform: translateY(-6px); background: var(--achb-black); color: #fff; box-shadow: 0 30px 50px -25px rgba(0, 0, 0, .6); }
.achb-team:hover::before { color: rgba(249, 128, 0, .25); }
.achb-team__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.achb-team__pill { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; background: rgba(249, 128, 0, .12); color: var(--achb-orange-deep); }
.achb-team:hover .achb-team__pill { background: var(--achb-orange); color: #fff; }
.achb-team__arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .12); display: grid; place-items: center; transition: .35s var(--achb-ease); }
.achb-team__arrow svg { width: 16px; height: 16px; }
.achb-team:hover .achb-team__arrow { background: var(--achb-orange); border-color: var(--achb-orange); transform: rotate(-45deg); }
.achb-team h3 { font-size: 34px; margin: 26px 0 6px; color: inherit !important; }
.achb-team p { font-size: 15px; margin: 0; opacity: .7; }
.achb-team.is-hidden { display: none; }
.achb-team--feature { grid-column: span 2; background: var(--achb-orange); color: #fff; }
.achb-team--feature .achb-team__pill { background: rgba(0, 0, 0, .2); color: #fff; }
.achb-team--feature .achb-team__arrow { border-color: rgba(255, 255, 255, .4); }
.achb-team--feature::before { color: rgba(0, 0, 0, .1); }

/* ==========================================================================
   05 · CRÉNEAUX D'ENTRAÎNEMENT
   ========================================================================== */
.achb-days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 26px; scrollbar-width: none; }
.achb-days::-webkit-scrollbar { display: none; }
.achb-day { flex: 0 0 auto; min-width: 104px; padding: 14px 18px; border-radius: 12px; border: 1px solid var(--achb-line); background: var(--achb-card); color: var(--achb-muted); cursor: pointer; text-align: left; font-family: var(--achb-body); transition: .2s; }
.achb-day b { display: block; font-family: var(--achb-head); font-style: italic; font-size: 22px; text-transform: uppercase; color: #fff; }
.achb-day small { font-size: 13px; }
.achb-day:hover { border-color: rgba(249, 128, 0, .5); }
.achb-day.is-active { background: var(--achb-orange); border-color: var(--achb-orange); color: rgba(255, 255, 255, .85); }
.achb-slots { display: grid; gap: 10px; min-height: 120px; }
.achb-slot { display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 20px; padding: 18px 22px; border-radius: 12px; background: var(--achb-card); border: 1px solid var(--achb-line); animation: achb-in .4s var(--achb-ease) both; }
.achb-slot__time { white-space: nowrap; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 26px; color: #fff; }
.achb-slot__time small { color: var(--achb-orange); font-size: .75em; }
.achb-slot__team { font-weight: 600; color: #fff; font-size: 18px; }
.achb-slot__team small { display: block; font-weight: 400; color: var(--achb-muted); font-size: 14px; }
.achb-slot__place { font-size: 14px; color: var(--achb-muted); display: flex; align-items: center; gap: 6px; }
.achb-slot__place svg { width: 16px; height: 16px; color: var(--achb-orange); }
.achb-slots__empty { padding: 28px; border: 1px dashed var(--achb-line); border-radius: 12px; color: var(--achb-muted); text-align: center; }
@keyframes achb-in { from { opacity: 0; transform: translateY(10px); } }
.achb-note { display: flex; gap: 12px; align-items: center; margin-top: 26px; color: var(--achb-muted); font-size: 15px; }
.achb-note svg { width: 20px; height: 20px; color: var(--achb-orange); flex: none; }

/* ==========================================================================
   06 · ÉVÉNEMENTS / AFFICHES
   ========================================================================== */
.achb-events { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: thin; scrollbar-color: var(--achb-orange) transparent; }
.achb-event { scroll-snap-align: start; border-radius: var(--achb-radius); overflow: hidden; background: #fff; box-shadow: 0 20px 40px -25px rgba(0, 0, 0, .45); transition: transform .35s var(--achb-ease); display: flex; flex-direction: column; }
.achb-event:hover { transform: translateY(-6px); }
.achb-event__poster { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--achb-black); }
.achb-event__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--achb-ease); }
.achb-event:hover .achb-event__poster img { transform: scale(1.05); }
.achb-event__date { position: absolute; top: 14px; left: 14px; background: var(--achb-orange); color: #fff; border-radius: 10px; padding: 8px 12px; text-align: center; line-height: 1; }
.achb-event__date b { display: block; font-family: var(--achb-head); font-style: italic; font-size: 30px; }
.achb-event__date small { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.achb-event__body { padding: 18px 20px 22px; color: var(--achb-light-ink); }
.achb-event__body h3 { font-size: 26px; margin-bottom: 6px; color: var(--achb-light-ink) !important; }
.achb-event__body p { font-size: 15px; color: #5f5f66; margin: 0; }
/* Affiche "générée" (sans image) */
.achb-poster-gen { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff;
  background: radial-gradient(90% 60% at 80% 20%, rgba(249, 128, 0, .75), transparent 60%), repeating-linear-gradient(-45deg, #111 0 14px, #161618 14px 28px); }
.achb-poster-gen strong { font-family: var(--achb-head); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 46px; line-height: .9; }
.achb-poster-gen span { font-family: var(--achb-head); letter-spacing: .2em; text-transform: uppercase; color: var(--achb-orange-hot); margin-top: 8px; }
.achb-events__nav { display: flex; gap: 10px; }
.achb-round { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .18); background: transparent; display: grid; place-items: center; cursor: pointer; color: var(--achb-light-ink); transition: .2s; }
.achb-round:hover { background: var(--achb-light-ink); color: #fff; }
.achb-round svg { width: 18px; height: 18px; }

/* ==========================================================================
   07 · INSCRIPTION (CTA)
   ========================================================================== */
.achb-join { position: relative; border-radius: calc(var(--achb-radius) * 1.6); padding: clamp(36px, 6vw, 72px); overflow: hidden; background: var(--achb-orange); color: #fff; isolation: isolate; }
.achb-join::before { content: ""; position: absolute; inset: 0; z-index: -1; background: repeating-conic-gradient(from 10deg at 100% 0%, rgba(255, 255, 255, .09) 0 5deg, transparent 5deg 15deg); }
.achb-join::after { content: "HAND"; position: absolute; right: -20px; bottom: -60px; z-index: -1; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: clamp(140px, 22vw, 300px); line-height: 1; color: rgba(0, 0, 0, .1); }
.achb-join__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.achb-join h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; }
.achb-join .achb-kicker { color: var(--achb-black); }
.achb-join .achb-kicker::before { background: var(--achb-black); }
.achb-join p { font-size: 19px; color: rgba(255, 255, 255, .92); }
.achb-steps { counter-reset: s; display: grid; gap: 10px; }
.achb-steps li { counter-increment: s; display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: rgba(0, 0, 0, .16); border-radius: 12px; font-weight: 500; }
.achb-steps li::before { content: counter(s); flex: 0 0 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--achb-black); color: #fff; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 19px; }
.achb-join__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.achb-join .achb-btn--ghost { border-color: rgba(255, 255, 255, .6); }

/* ==========================================================================
   08 · PARTENAIRES
   ========================================================================== */
.achb-partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--achb-line); border: 1px solid var(--achb-line); border-radius: var(--achb-radius); overflow: hidden; }
.achb-partner { background: var(--achb-black); min-height: 130px; display: grid; place-items: center; padding: 24px; text-align: center; transition: background .3s; }
.achb-partner img { max-height: 64px; width: auto; filter: grayscale(1) brightness(1.6); opacity: .7; transition: .3s; }
.achb-partner:hover { background: var(--achb-card); }
.achb-partner:hover img { filter: none; opacity: 1; }
.achb-partner__name { font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 24px; text-transform: uppercase; color: #cfcfd4; line-height: 1; transition: color .3s; }
.achb-partner__name small { display: block; font-family: var(--achb-body); font-style: normal; font-weight: 500; font-size: 12px; letter-spacing: .14em; color: var(--achb-muted); margin-top: 6px; }
.achb-partner:hover .achb-partner__name { color: var(--achb-orange); }
.achb-institutions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 30px; padding: 22px 26px; border-radius: var(--achb-radius); border: 1px solid var(--achb-line); color: var(--achb-muted); font-size: 15px; }
.achb-institutions ul { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.achb-institutions li { font-family: var(--achb-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; }

/* ==========================================================================
   09 · CONTACT
   ========================================================================== */
.achb-contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); }
.achb-infos { display: grid; gap: 14px; margin: 30px 0; }
.achb-info { display: flex; gap: 16px; align-items: center; padding: 18px; border-radius: 12px; background: #fff; color: var(--achb-light-ink); transition: .25s; }
.achb-info:hover { transform: translateX(4px); box-shadow: 0 14px 30px -20px rgba(0, 0, 0, .5); }
.achb-info i { flex: 0 0 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--achb-black); color: var(--achb-orange); }
.achb-info i svg { width: 22px; height: 22px; }
.achb-info small { display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8b8b92; }
.achb-info b { font-weight: 600; font-size: 17px; }
.achb-map { border-radius: var(--achb-radius); overflow: hidden; aspect-ratio: 16/9; background: #ddd; }
.achb-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.9) contrast(1.1); }
.achb-form { background: var(--achb-black); color: var(--achb-text); border-radius: calc(var(--achb-radius) * 1.4); padding: clamp(26px, 4vw, 44px); }
.achb-form h3 { font-size: 38px; margin-bottom: 8px; color: #fff !important; }
.achb-form > p { color: var(--achb-muted); margin-bottom: 26px; }
.achb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.achb-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.achb-field label { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--achb-muted); }
.achb-field input, .achb-field select, .achb-field textarea {
  width: 100%; min-height: 50px; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--achb-line);
  background: var(--achb-card); color: #fff; font: inherit; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.achb-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--achb-orange) 50%), linear-gradient(135deg, var(--achb-orange) 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }
.achb-field textarea { min-height: 130px; resize: vertical; }
.achb-field input:focus, .achb-field select:focus, .achb-field textarea:focus { outline: none; border-color: var(--achb-orange); box-shadow: 0 0 0 4px rgba(249, 128, 0, .18); }
.achb-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--achb-muted); margin: 6px 0 22px; }
.achb-check input { accent-color: var(--achb-orange); width: 18px; height: 18px; margin-top: 3px; flex: none; }
.achb-form .achb-btn { width: 100%; }
.achb-form__msg { margin-top: 14px; font-size: 15px; color: var(--achb-orange-hot); min-height: 1.4em; }

/* ==========================================================================
   10 · FOOTER
   ========================================================================== */
.achb-footer { background: #070708; padding: 80px 0 28px; border-top: 3px solid var(--achb-orange); }
.achb-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.achb-footer__brand img { height: 170px; width: auto; margin-bottom: 18px; }
.achb-footer__brand p { color: var(--achb-muted); font-size: 15px; max-width: 320px; }
.achb-footer h4 { font-size: 20px; margin-bottom: 18px; color: #fff; }
.achb-footer li { margin-bottom: 10px; }
.achb-footer li a { color: var(--achb-muted); font-size: 15px; transition: color .2s; }
.achb-footer li a:hover { color: var(--achb-orange); }
.achb-social { display: flex; gap: 10px; margin-top: 18px; }
.achb-social a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--achb-line); color: #fff; transition: .25s; }
.achb-social a:hover { background: var(--achb-orange); border-color: var(--achb-orange); }
.achb-social svg { width: 18px; height: 18px; }
.achb-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--achb-line); color: #6d6d75; font-size: 14px; }
.achb-footer__bottom a:hover { color: var(--achb-orange); }
.achb-totop { position: fixed; right: 20px; bottom: 20px; z-index: 9990; width: 50px; height: 50px; border-radius: 50%; border: 0; background: var(--achb-orange); color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 12px 30px -10px rgba(249, 128, 0, .8); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s var(--achb-ease); }
.achb-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.achb-totop svg { width: 20px; height: 20px; }

/* ==========================================================================
   En-tête de page interne (pour Le Club, Équipe U15, etc.)
   ========================================================================== */
.achb-pagehead { padding: 170px 0 80px; background: radial-gradient(50% 80% at 85% 30%, rgba(249, 128, 0, .3), transparent 70%), var(--achb-black); position: relative; }
.achb-pagehead h1 { font-size: clamp(52px, 8vw, 110px); }
.achb-crumbs { display: flex; gap: 8px; font-size: 14px; color: var(--achb-muted); margin-bottom: 18px; }
.achb-crumbs a:hover { color: var(--achb-orange); }

/* ==========================================================================
   Animations au scroll
   ========================================================================== */
.achb-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--achb-ease), transform .8s var(--achb-ease); transition-delay: var(--d, 0s); }
.achb-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .achb *, .achb *::before, .achb *::after { animation: none !important; transition: none !important; }
  .achb-reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1499px) { .achb-brand__txt { display: none; } }
@media (max-width: 1320px) {
  .achb-nav > li > a, .achb-nav > li > button { padding: 0 10px; font-size: 16px; }
}
@media (max-width: 1180px) {
  .achb-nav, .achb-header__cta .achb-btn--ghost { display: none; }
  .achb-burger { display: block; }
  .achb-teams { grid-template-columns: repeat(3, 1fr); }
  .achb-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .achb-hero__grid, .achb-club__grid, .achb-join__grid, .achb-contact__grid { grid-template-columns: 1fr; }
  .achb-hero { text-align: left; }
  .achb-hero__visual { max-width: 460px; margin: 20px auto 0; min-height: 200px; width: 100%; }
  .achb-hero__badge { left: 0; bottom: 6%; }
  .achb-stats { grid-template-columns: 1fr 1fr; }
  .achb-teams { grid-template-columns: 1fr 1fr; }
  .achb-partners { grid-template-columns: repeat(2, 1fr); }
  .achb-slot { grid-template-columns: 110px 1fr; }
  .achb-slot__place { grid-column: 2; }
  .achb-club__media { max-width: 520px; }
}
@media (max-width: 600px) {
  .achb { font-size: 16px; }
  .achb-header__bar { height: 72px; }
  .achb-brand img { height: 88px; margin-bottom: -30px; }
  .achb-header.is-scrolled .achb-brand img { height: 56px; }
  .achb-brand__txt { display: none; }
  .achb-header__cta .achb-btn { padding: 0 14px; font-size: 14px; }
  .achb-hero { padding-top: 110px; }
  .achb-hero__ctas .achb-btn { width: 100%; }
  .achb-btn { white-space: normal; text-align: center; }
  .achb-hero__tag { font-size: 13px; }
  .achb-teams { grid-template-columns: 1fr; }
  .achb-team--feature { grid-column: auto; }
  .achb-team { min-height: 190px; }
  .achb-form__row { grid-template-columns: 1fr; }
  .achb-footer__grid { grid-template-columns: 1fr; }
  .achb-slot { grid-template-columns: 1fr; gap: 6px; }
  .achb-slot__place { grid-column: auto; }
  .achb-club__year { right: 10px; }
  .achb-stat { padding: 22px 18px; }
}
.achb-footer__bottom a, .achb-crumbs a { color: inherit; }

/* ==========================================================================
   V2 · PAGES INTERNES, POPUP, COMPOSANTS
   ========================================================================== */

/* ---------- En-tête de page interne avec logo ---------- */
.achb-pagehead { padding: 150px 0 70px; overflow: hidden; isolation: isolate; }
.achb-pagehead::before { content: ""; position: absolute; right: -10%; top: 50%; width: 900px; height: 900px; transform: translateY(-50%); z-index: -1;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, .04) 0 4deg, transparent 4deg 14deg);
  -webkit-mask: radial-gradient(circle, #000 0, transparent 60%); mask: radial-gradient(circle, #000 0, transparent 60%); }
.achb-pagehead__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.achb-pagehead__grid > * { min-width: 0; }
.achb-pagehead__logo { width: clamp(180px, 22vw, 300px); filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .6)); animation: achb-pop 1s var(--achb-ease) both, achb-float 7s 1s ease-in-out infinite; }
.achb-pagehead h1 { font-size: clamp(44px, 6.4vw, 88px); }
.achb-pagehead h1 em { font-style: italic; color: var(--achb-orange); }
.achb-pagehead .achb-lead { margin-top: 18px; color: #c9c9cf; }
.achb-pagehead__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.achb-crumbs span:not(:first-child) { color: #6d6d75; }

/* ---------- Popup ---------- */
.achb-modal { position: fixed; inset: 0; z-index: 10050; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.achb-modal.is-open { visibility: visible; opacity: 1; }
.achb-modal__backdrop { position: absolute; inset: 0; background: rgba(5, 5, 6, .78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.achb-modal__box { position: relative; width: min(640px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; background: var(--achb-ink); border: 1px solid var(--achb-line); border-radius: 22px; padding: clamp(26px, 5vw, 44px); box-shadow: 0 40px 80px -20px #000; transform: translateY(24px) scale(.97); transition: transform .4s var(--achb-ease); }
.achb-modal.is-open .achb-modal__box { transform: none; }
.achb-modal__box::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; border-radius: 22px 22px 0 0; background: linear-gradient(90deg, var(--achb-orange), var(--achb-orange-hot)); }
.achb-modal__close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--achb-line); background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; transition: .2s; }
.achb-modal__close:hover { background: var(--achb-orange); border-color: var(--achb-orange); }
.achb-modal__close svg { width: 18px; height: 18px; }
.achb-modal__top { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.achb-modal__top img { width: 88px; flex: none; }
.achb-modal h2 { font-size: clamp(34px, 5vw, 48px); }
.achb-modal h2 em { color: var(--achb-orange); font-style: italic; }
.achb-modal p { color: #c9c9cf; font-size: 17px; }
.achb-discover { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.achb-discover div { background: var(--achb-card); border: 1px solid var(--achb-line); border-radius: 14px; padding: 16px 12px; text-align: center; }
.achb-discover svg { width: 28px; height: 28px; color: var(--achb-orange); margin: 0 auto 8px; display: block; }
.achb-discover b { display: block; font-family: var(--achb-head); font-style: italic; text-transform: uppercase; font-size: 21px; color: #fff; line-height: 1; }
.achb-discover small { color: var(--achb-muted); font-size: 13px; }
.achb-modal__online { display: flex; gap: 12px; align-items: center; padding: 14px 16px; border-radius: 12px; background: rgba(249, 128, 0, .1); border: 1px solid rgba(249, 128, 0, .3); color: #fff; font-size: 15px; margin-bottom: 22px; }
.achb-modal__online svg { width: 22px; height: 22px; color: var(--achb-orange); flex: none; }
.achb-modal__ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.achb-modal__ctas .achb-btn { flex: 1 1 200px; }
html.achb-lock { overflow: hidden; }

/* ---------- Blocs génériques ---------- */
.achb-card { background: var(--achb-card); border: 1px solid var(--achb-line); border-radius: var(--achb-radius); padding: clamp(22px, 3vw, 32px); }
.achb-section--light .achb-card { background: #fff; border-color: rgba(0, 0, 0, .06); box-shadow: 0 16px 40px -28px rgba(0, 0, 0, .4); color: var(--achb-light-ink); }
.achb-card h3 { font-size: 28px; margin-bottom: 14px; }
.achb-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.achb-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.achb-split { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.achb-grid-2 > *, .achb-grid-3 > *, .achb-split > * { min-width: 0; }
.achb-prose p { color: inherit; opacity: .85; }
.achb-prose strong { color: var(--achb-orange); }
.achb-section--light .achb-prose strong { color: var(--achb-orange-deep); }
.achb-checks { display: grid; gap: 10px; margin: 18px 0; }
.achb-checks li { display: flex; gap: 12px; align-items: flex-start; }
.achb-checks li::before { content: ""; flex: 0 0 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--achb-orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/14px no-repeat; }
.achb-quote { font-family: var(--achb-head); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: clamp(34px, 5vw, 60px); line-height: .95; color: #fff; }
.achb-quote em { color: var(--achb-orange); font-style: italic; }
.achb-sticky { position: sticky; top: 110px; }

/* ---------- Créneaux d'une équipe ---------- */
.achb-tslots { display: grid; gap: 12px; }
.achb-tslot { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: center; padding: 18px; border-radius: var(--achb-radius); background: var(--achb-card); border: 1px solid var(--achb-line); }
.achb-tslot__day { text-align: center; border-radius: 12px; background: var(--achb-orange); color: #fff; padding: 12px 6px; font-family: var(--achb-head); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 22px; line-height: 1; }
.achb-tslot__day small { display: block; font-family: var(--achb-body); font-style: normal; font-weight: 600; font-size: 11px; letter-spacing: .12em; opacity: .85; margin-top: 4px; }
.achb-tslot__time { font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 30px; color: #fff; line-height: 1; }
.achb-tslot__time span { color: var(--achb-orange); }
.achb-tslot__place { display: flex; align-items: center; gap: 6px; margin-top: 6px; color: var(--achb-muted); font-size: 15px; }
.achb-tslot__place svg { width: 16px; height: 16px; color: var(--achb-orange); flex: none; }
.achb-tslot__note { display: inline-block; margin-top: 8px; padding: 3px 10px; border-radius: 100px; background: rgba(249, 128, 0, .12); color: var(--achb-orange-hot); font-size: 13px; font-weight: 600; }

/* Fiche infos équipe */
.achb-facts { display: grid; gap: 0; }
.achb-facts li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--achb-line); font-size: 15.5px; }
.achb-facts li:last-child { border-bottom: 0; }
.achb-facts span { color: var(--achb-muted); }
.achb-facts b { color: #fff; text-align: right; }
.achb-card .achb-btn { width: 100%; margin-top: 12px; }

/* Autres équipes */
.achb-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.achb-chip { padding: 10px 16px; border-radius: 100px; border: 1px solid var(--achb-line); color: var(--achb-text); font-family: var(--achb-head); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 15px; transition: .2s; }
.achb-chip:hover, .achb-chip.is-current { background: var(--achb-orange); border-color: var(--achb-orange); color: #fff; }

/* Bandeau contact équipe */
.achb-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding: clamp(26px, 4vw, 40px); border-radius: calc(var(--achb-radius) * 1.4); background: linear-gradient(120deg, var(--achb-orange), var(--achb-orange-deep)); color: #fff; position: relative; overflow: hidden; }
.achb-band h2 { font-size: clamp(28px, 3.6vw, 44px); max-width: 640px; }
.achb-band > div:last-child { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Planning de la semaine ---------- */
.achb-week { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.achb-week__col { background: var(--achb-card); border: 1px solid var(--achb-line); border-radius: var(--achb-radius); padding: 12px; min-width: 0; }
.achb-week__col h3 { font-size: 24px; text-align: center; padding: 6px 0 12px; border-bottom: 2px solid var(--achb-orange); margin-bottom: 12px; }
.achb-week__col.is-today { border-color: var(--achb-orange); box-shadow: 0 0 0 1px var(--achb-orange); }
.achb-week__item { display: block; padding: 10px; border-radius: 10px; background: rgba(255, 255, 255, .04); margin-bottom: 8px; transition: background .2s, transform .2s; }
.achb-week__item:hover { background: rgba(249, 128, 0, .15); transform: translateY(-2px); }
.achb-week__item b { display: block; font-family: var(--achb-head); font-style: italic; font-size: 18px; color: var(--achb-orange); line-height: 1.1; }
.achb-week__item strong { display: block; color: #fff; font-size: 15px; line-height: 1.25; margin: 2px 0; }
.achb-week__item small { display: block; color: var(--achb-muted); font-size: 12.5px; line-height: 1.3; }
.achb-week__item.is-dim { opacity: .18; }
.achb-select { min-height: 48px; padding: 0 44px 0 16px; border-radius: 10px; border: 1px solid var(--achb-line); background: var(--achb-card); color: #fff; font: inherit; font-size: 16px; }
.achb-gyms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.achb-gym { display: block; padding: 24px; border-radius: var(--achb-radius); background: #fff; color: var(--achb-light-ink); box-shadow: 0 16px 40px -28px rgba(0, 0, 0, .4); transition: transform .3s var(--achb-ease); }
.achb-gym:hover { transform: translateY(-4px); }
.achb-gym svg { width: 30px; height: 30px; color: var(--achb-orange); margin-bottom: 12px; }
.achb-gym h3 { font-size: 26px; color: var(--achb-light-ink) !important; margin-bottom: 6px; }
.achb-gym p { color: #5f5f66; font-size: 15px; margin: 0 0 10px; }
.achb-gym span { font-family: var(--achb-head); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--achb-orange-deep); font-size: 15px; }

/* ---------- Image cadrée (calendrier, tarifs…) ---------- */
.achb-frame { display: block; border-radius: var(--achb-radius); overflow: hidden; background: #fff; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); position: relative; }
.achb-frame img { width: 100%; height: auto; }
.achb-frame__zoom { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 100px; background: var(--achb-black); color: #fff; font-size: 14px; font-weight: 600; }
.achb-frame__zoom svg { width: 16px; height: 16px; }

/* ---------- Bureau / personnes ---------- */
.achb-people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.achb-person { padding: 26px; border-radius: var(--achb-radius); background: var(--achb-card); border: 1px solid var(--achb-line); position: relative; overflow: hidden; }
.achb-person__init { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--achb-orange); color: #fff; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 26px; margin-bottom: 18px; }
.achb-person small { display: block; color: var(--achb-orange); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12.5px; }
.achb-person h3 { font-size: 30px; margin: 6px 0 12px; }
.achb-person a { display: inline-flex; align-items: center; gap: 8px; color: var(--achb-text); font-weight: 600; }
.achb-person a:hover { color: var(--achb-orange); }
.achb-person a svg { width: 16px; height: 16px; color: var(--achb-orange); }

/* ---------- Documents ---------- */
.achb-docs { display: grid; gap: 12px; }
.achb-doc { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 12px; background: #fff; color: var(--achb-light-ink); box-shadow: 0 10px 30px -24px rgba(0, 0, 0, .5); transition: .25s; }
.achb-section:not(.achb-section--light) .achb-doc { background: var(--achb-card); color: #fff; box-shadow: none; border: 1px solid var(--achb-line); }
.achb-doc:hover { transform: translateX(4px); }
.achb-doc i { flex: 0 0 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; background: var(--achb-black); color: var(--achb-orange); font-style: normal; font-family: var(--achb-head); font-weight: 800; font-size: 13px; }
.achb-doc b { display: block; font-size: 16px; }
.achb-doc small { color: #8b8b92; font-size: 13.5px; }
.achb-doc svg { width: 18px; height: 18px; margin-left: auto; color: var(--achb-orange); flex: none; }

/* ---------- Étapes détaillées (inscription) ---------- */
.achb-timeline { counter-reset: t; display: grid; gap: 16px; }
.achb-tstep { counter-increment: t; display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 24px; border-radius: var(--achb-radius); background: #fff; color: var(--achb-light-ink); box-shadow: 0 16px 40px -30px rgba(0, 0, 0, .45); }
.achb-tstep::before { content: counter(t, decimal-leading-zero); font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 44px; line-height: 1; color: var(--achb-orange); }
.achb-tstep h3 { font-size: 26px; color: var(--achb-light-ink) !important; margin-bottom: 8px; }
.achb-tstep p { color: #55555c; margin: 0; }
.achb-tstep .achb-mini { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.achb-mini a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 10px; background: var(--achb-light); font-weight: 600; color: var(--achb-light-ink); }
.achb-mini a:hover { background: var(--achb-black); color: #fff; }
.achb-mini svg { width: 16px; height: 16px; color: var(--achb-orange); }

/* Formulaire sur fond clair */
.achb-form--light { background: var(--achb-black); }
.achb-field--radio { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.achb-field--radio label.achb-radio { position: relative; }
.achb-radio input { position: absolute; opacity: 0; }
.achb-radio span { display: inline-block; padding: 10px 16px; border-radius: 100px; border: 1px solid var(--achb-line); background: var(--achb-card); color: var(--achb-text); cursor: pointer; font-size: 15px; letter-spacing: 0; text-transform: none; font-weight: 500; transition: .2s; }
.achb-radio input:checked + span { background: var(--achb-orange); border-color: var(--achb-orange); color: #fff; }
.achb-radio input:focus-visible + span { outline: 2px solid var(--achb-orange-hot); outline-offset: 2px; }
.achb-legend { width: 100%; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--achb-muted); }

/* ---------- Partenaires (logos) ---------- */
.achb-plogos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.achb-plogo { display: flex; flex-direction: column; border-radius: var(--achb-radius); overflow: hidden; background: #fff; color: var(--achb-light-ink); transition: transform .3s var(--achb-ease), box-shadow .3s; }
.achb-plogo:hover { transform: translateY(-5px); box-shadow: 0 24px 40px -24px rgba(249, 128, 0, .6); }
.achb-plogo__img { aspect-ratio: 16/10; display: grid; place-items: center; padding: 18px; }
.achb-plogo__img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.achb-plogo__txt { padding: 12px 16px 16px; border-top: 1px solid rgba(0, 0, 0, .06); }
.achb-plogo__txt b { display: block; font-family: var(--achb-head); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 20px; line-height: 1.05; }
.achb-plogo__txt small { color: #7a7a82; font-size: 13px; }
.achb-fiscal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.achb-fiscal div { padding: 20px; border-radius: 12px; background: var(--achb-card); border: 1px solid var(--achb-line); text-align: center; }
.achb-fiscal b { display: block; font-family: var(--achb-head); font-weight: 800; font-style: italic; font-size: 44px; color: #fff; line-height: 1; }
.achb-fiscal div:last-child { background: var(--achb-orange); border-color: var(--achb-orange); }
.achb-fiscal div:last-child small { color: #fff; }
.achb-fiscal small { color: var(--achb-muted); font-size: 14px; }

/* Bande partenaires du footer */
.achb-pstrip { background: #fff; padding: 34px 0; }
.achb-pstrip__in { display: flex; align-items: center; gap: 30px; }
.achb-pstrip h4 { color: var(--achb-light-ink) !important; font-size: 22px; flex: none; }
.achb-pstrip__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; flex: 1; }
.achb-pstrip__logos a { display: block; height: 64px; }
.achb-pstrip__logos img { height: 64px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: .8; transition: .3s; }
.achb-pstrip__logos a:hover img { filter: none; opacity: 1; }

/* ---------- Boutique ---------- */
.achb-iframe { border-radius: var(--achb-radius); overflow: hidden; background: #fff; }
.achb-iframe iframe { width: 100%; min-height: 900px; border: 0; display: block; }
.achb-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.achb-products ul { display: flex; flex-wrap: wrap; gap: 8px; }
.achb-products li { padding: 8px 14px; border-radius: 100px; background: rgba(255, 255, 255, .06); border: 1px solid var(--achb-line); font-size: 15px; }

/* ---------- Responsive V2 ---------- */
@media (max-width: 1100px) {
  .achb-week { grid-template-columns: repeat(3, 1fr); }
  .achb-plogos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .achb-pagehead { padding-top: 130px; }
  .achb-pagehead__grid { grid-template-columns: 1fr; }
  .achb-pagehead__logo { width: 150px; order: -1; }
  .achb-grid-2, .achb-split, .achb-people, .achb-gyms, .achb-grid-3 { grid-template-columns: 1fr; }
  .achb-sticky { position: static; }
  .achb-pstrip__in { flex-direction: column; align-items: flex-start; }
  .achb-products { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .achb-week { grid-template-columns: 1fr; }
  .achb-plogos { grid-template-columns: 1fr 1fr; }
  .achb-discover { grid-template-columns: 1fr; }
  .achb-discover div { display: grid; grid-template-columns: 34px 1fr; text-align: left; gap: 2px 12px; align-items: center; }
  .achb-discover svg { grid-row: span 2; margin: 0; }
  .achb-modal__top img { width: 64px; }
  .achb-tslot { grid-template-columns: 76px 1fr; gap: 14px; padding: 14px; }
  .achb-tslot__time { font-size: 24px; }
  .achb-tstep { grid-template-columns: 1fr; gap: 8px; }
  .achb-fiscal { grid-template-columns: 1fr; }
  .achb-pagehead__logo { width: 120px; }
  .achb-iframe iframe { min-height: 1100px; }
}

.achb-tslots { margin-top: 26px; }
.achb-slot { color: inherit; transition: border-color .2s, transform .2s; }
.achb-slot:hover { border-color: rgba(249, 128, 0, .6); transform: translateX(4px); }
.achb-timeline { margin-top: 28px; }
@media (max-width: 900px) {
  .achb-hero__badge { position: relative; left: auto; bottom: auto; display: inline-flex; margin: -10px 0 0; }
  .achb-hero__visual { text-align: center; }
  .achb-hero__visual img { margin: 0 auto; }
}
@media (max-width: 600px) {
  .achb-modal .achb-kicker { font-size: 12px; letter-spacing: .12em; }
  .achb-modal__box { padding-top: 34px; }
}

/* ---------- V2.1 · Mobile : logo ---------- */
@media (max-width: 900px) {
  /* Pages internes : le logo est déjà dans le menu */
  .achb .achb-pagehead__logo { display: none; }
  /* Accueil : logo en grand, à droite, derrière le titre */
  .achb-hero__grid { position: relative; }
  .achb-hero__grid > div:first-child { position: relative; z-index: 1; }
  .achb-hero__visual { position: absolute; top: 20px; right: -16%; width: 80vw; max-width: 480px; margin: 0; z-index: 0; pointer-events: none; opacity: .6; }
  .achb-hero__visual::before { width: 100%; }
  .achb-hero__badge { display: none; }
  .achb-hero h1 { text-shadow: 0 4px 30px rgba(0, 0, 0, .75); }
  .achb-hero__lead { text-shadow: 0 2px 12px rgba(0, 0, 0, .8); }
}

/* ---------- V2.2 · Compatibilité WebAcappella ---------- */
.achb.achb-portal { overflow: visible; background: none; position: static; }
/* Fond sombre permanent : le menu reste lisible même sur une page à fond clair */
.achb-header { background: linear-gradient(to bottom, rgba(11, 11, 12, .96), rgba(11, 11, 12, .82)); }

/* ==========================================================================
   V2.5 · Onglet fixe + panneau latéral du formulaire (mobile)
   ========================================================================== */
.achb-tab { display: none; }
.achb-drawer { display: none; }

@media (max-width: 900px) {
  .achb-tab {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 10040;
    padding: 18px 10px; border: 0; cursor: pointer;
    background: var(--achb-orange); color: #fff;
    border-radius: 14px 0 0 14px;
    font-family: var(--achb-head); font-weight: 800; font-style: italic;
    text-transform: uppercase; letter-spacing: .1em; font-size: 17px; line-height: 1;
    box-shadow: 0 10px 30px -6px rgba(249, 128, 0, .85);
    animation: achb-tab-pulse 1.9s ease-in-out infinite;
    transition: transform .3s var(--achb-ease), opacity .3s;
  }
  .achb-tab__txt { writing-mode: vertical-rl; }
  .achb-tab__dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; }
  .achb-tab:active { transform: translateY(-50%) scale(.96); }
  .achb-tab.is-hidden { opacity: 0; transform: translate(100%, -50%); pointer-events: none; }
  @keyframes achb-tab-pulse {
    50% { background: var(--achb-orange-hot); box-shadow: 0 10px 38px 2px rgba(249, 128, 0, 1); }
  }

  .achb-drawer { display: block; position: fixed; inset: 0; z-index: 10045; visibility: hidden; }
  .achb-drawer.is-open { visibility: visible; }
  .achb-drawer__scrim { position: absolute; inset: 0; background: rgba(5, 5, 6, .74); opacity: 0; transition: opacity .35s; }
  .achb-drawer.is-open .achb-drawer__scrim { opacity: 1; }
  .achb-drawer__box {
    position: absolute; right: 0; top: 0; bottom: 0; width: min(440px, 90%);
    background: var(--achb-ink); border-left: 3px solid var(--achb-orange);
    box-shadow: -24px 0 60px -12px #000;
    padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); transition: transform .4s var(--achb-ease);
  }
  .achb-drawer.is-open .achb-drawer__box { transform: none; }
  .achb-drawer__close {
    position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--achb-line); background: rgba(255, 255, 255, .05); color: #fff;
    display: grid; place-items: center; cursor: pointer;
  }
  .achb-drawer__close svg { width: 18px; height: 18px; }
  .achb-drawer .achb-form { background: transparent; padding: 0; border-radius: 0; }
  .achb-drawer .achb-form h3 { padding-right: 46px; }
}

/* ---------- V2.6 · Logos partenaires du footer, plus grands et centrés sur mobile ---------- */
@media (max-width: 900px) {
  .achb-pstrip { padding: 30px 0; }
  .achb-pstrip__in { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .achb-pstrip h4 { font-size: 24px; }
  .achb-pstrip__logos { justify-content: center; gap: 20px 26px; }
  .achb-pstrip__logos a { height: 78px; }
  .achb-pstrip__logos img { height: 78px; max-width: 160px; filter: none; opacity: 1; }
}
@media (max-width: 480px) {
  .achb-pstrip__logos { gap: 16px 20px; }
  .achb-pstrip__logos a { height: 66px; }
  .achb-pstrip__logos img { height: 66px; max-width: 132px; }
}
