/* ============================================================
   Tennis Padel Club Plainchamp — Design System 2026
   Charte : blanc & bleu (logo) · chaleureux & moderne
   ============================================================ */

:root {
  /* ---- Blues (from the club logo #104080) ---- */
  --navy-950: #050d24;
  --navy-900: #07112e;
  --navy-800: #0a1c44;
  --navy-700: #103a86;   /* logo blue */
  --blue-600: #1a54c4;   /* primary */
  --blue-500: #2f6bf3;
  --blue-400: #5e90ff;
  --sky:      #9cc1ff;
  --cyan:     #34d0ff;   /* electric accent / glow */

  /* ---- Cool neutrals (white & blue, no cream) ---- */
  --paper:    #f5f8fe;   /* cool near-white page bg */
  --sand:     #e9f0fb;   /* cool light-blue panel */
  --panel:    #e9f0fb;
  --cream:    #ffffff;   /* card surface */
  --ink:      #0c1730;   /* deep navy text */
  --muted:    #5a6a8c;
  --line:     rgba(16, 40, 92, .10);

  /* ---- Accent (cyan pop; overridden to coral on École) ---- */
  --amber:    #1fb6e3;   /* legacy alias → now cyan-teal pop */
  --accent:   #34d0ff;

  --white:    #ffffff;

  /* ---- Type ---- */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* ---- Layout ---- */
  --container: 1220px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;

  /* Warm-tinted layered shadows */
  --shadow-sm: 0 6px 22px rgba(16, 36, 80, .08), 0 2px 6px rgba(120, 90, 60, .05);
  --shadow-md: 0 20px 48px rgba(16, 36, 80, .14), 0 6px 14px rgba(120, 90, 60, .06);
  --shadow-lg: 0 40px 90px rgba(10, 28, 68, .26);
  --glow-blue: 0 18px 50px rgba(26, 84, 196, .45);

  --grad-blue: linear-gradient(120deg, var(--blue-600), var(--cyan));
  --grad-warm: linear-gradient(120deg, var(--blue-500), var(--amber));
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---- École page: S'Cube Academy palette (navy + coral) ---- */
body[data-page="ecole"] {
  --blue-700: #b6566a;
  --blue-600: #d96c84;
  --blue-500: #e58a96;
  --blue-400: #efa6ae;
  --cyan:     #f3b4b4;
  --accent:   #f3b4b4;
  --amber:    #e08a93;
  --grad-blue: linear-gradient(120deg, #d96c84, #f3b4b4);
  --glow-blue: 0 18px 50px rgba(217, 108, 132, .42);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blue-500); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.04; font-weight: 700; letter-spacing: -.02em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(26, 84, 196, .08);
  padding: .5rem 1rem; border-radius: 100px;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(239,154,93,.22); }
.eyebrow.light { color: #cfe0ff; background: rgba(255, 255, 255, .1); }
.eyebrow.light::before { background: var(--cyan); box-shadow: 0 0 0 4px rgba(52,208,255,.25); }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section-head { max-width: 660px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); margin: 1.1rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.lead { font-size: 1.15rem; color: var(--muted); }
.grid { display: grid; gap: 1.7rem; }

/* warm decorative blobs */
.section .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none; }
.section > .container { position: relative; z-index: 1; }

/* ============================================================
   Buttons — magnetic, glow, shine sweep
   ============================================================ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.85rem; border-radius: 100px;
  font-weight: 600; font-size: .98rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn::after { /* shine sweep */
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--glow-blue); background-size: 160% 160%; }
.btn-primary:hover { box-shadow: 0 24px 60px rgba(26,84,196,.55); }
.btn-light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-light:hover { color: var(--blue-600); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-900); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn-outline { border: 1.5px solid var(--blue-600); color: var(--blue-600); }
.btn-outline:hover { background: var(--blue-600); color: #fff; }
/* legacy aliases */
.btn-lime { background: var(--grad-blue); color: #fff; box-shadow: var(--glow-blue); }

/* ============================================================
   Scroll progress + custom cursor (injected by JS)
   ============================================================ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200; background: transparent; pointer-events: none; }
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--grad-blue); box-shadow: 0 0 14px rgba(52,208,255,.7); transition: width .1s linear; }

.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 300; transform: translate(-50%, -50%); }
.cursor-dot { width: 7px; height: 7px; background: var(--blue-500); transition: opacity .3s; }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(47,107,243,.55); transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s, opacity .3s; }
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(47,107,243,.1); border-color: var(--cyan); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 1.05rem 0; transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease); }
.site-header.scrolled { background: rgba(255, 255, 255, .82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: .55rem 0; box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .75rem; }
.brand-badge { position: relative; width: 46px; height: 46px; flex: none; display: grid; place-items: center; }
.brand-badge img { width: 100%; height: 100%; object-fit: contain; }
.logo-on-light { display: none; }
.scrolled .brand .logo-on-dark, .header-solid .brand .logo-on-dark { display: none; }
.scrolled .brand .logo-on-light, .header-solid .brand .logo-on-light { display: block; }
.brand-txt { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: #fff; transition: color .4s; line-height: 1; }
.scrolled .brand-txt, .header-solid .brand-txt { color: var(--navy-800); }
.brand-txt small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; opacity: .82; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { position: relative; padding: .55rem .9rem; border-radius: 100px; font-size: .93rem; font-weight: 500; color: rgba(255,255,255,.92); transition: color .3s, background .3s; }
.scrolled .nav-links a, .header-solid .nav-links a { color: var(--navy-800); }
.nav-links a::after { content: ""; position: absolute; left: 50%; bottom: .35rem; transform: translateX(-50%); width: 0; height: 2px; background: var(--amber); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 18px; }
.nav-links a.active { color: var(--cyan); }
.scrolled .nav-links a.active, .header-solid .nav-links a.active { color: var(--blue-600); }
.nav-cta { margin-left: .6rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: .35s var(--ease); }
.scrolled .nav-toggle span, .header-solid .nav-toggle span { background: var(--navy-800); }
.nav-toggle.open span { background: var(--navy-800); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Announcement bar + Marquee
   ============================================================ */
.announce { background: var(--navy-900); color: #dfeaff; text-align: center; font-size: .82rem; letter-spacing: .04em; padding: .55rem 1rem; position: relative; z-index: 90; }
.announce strong { color: var(--cyan); }
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.marquee { overflow: hidden; background: var(--navy-800); color: #fff; padding: 1.1rem 0; }
.marquee-track { display: inline-flex; gap: 2.4rem; white-space: nowrap; animation: marquee 28s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.7rem); font-weight: 700; display: inline-flex; align-items: center; gap: 2.4rem; opacity: .95; }
.marquee-track span::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--navy-900); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; mix-blend-mode: luminosity; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(120% 90% at 80% 10%, rgba(52,208,255,.16), transparent 45%),
  linear-gradient(115deg, var(--navy-950) 8%, rgba(10,28,68,.72) 52%, rgba(7,17,46,.4) 100%); }
/* animated aurora */
.hero .aurora { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 1; pointer-events: none; }
.hero .a1 { width: 540px; height: 540px; background: rgba(26,84,196,.55); top: -120px; right: -80px; animation: float1 16s ease-in-out infinite; }
.hero .a2 { width: 460px; height: 460px; background: rgba(52,208,255,.32); bottom: -160px; left: -100px; animation: float2 19s ease-in-out infinite; }
.hero .a3 { width: 320px; height: 320px; background: rgba(239,154,93,.22); top: 40%; left: 55%; animation: float1 22s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translate(-40px, 50px) scale(1.12); } }
@keyframes float2 { 50% { transform: translate(60px, -40px) scale(1.1); } }

/* Tennis ball bouncing on the court (page-hero bottom) */
.ball-traj { position: absolute; z-index: 2; left: 50%; bottom: 1.6rem; transform: translateX(-50%); width: 640px; height: 130px; pointer-events: none; }
.ball-traj svg { position: absolute; inset: 0; width: 640px; height: 130px; overflow: visible; }
.ball-traj .traj { opacity: .65; animation: trajPulse 4s linear infinite; }
.ball-traj .ball { position: absolute; top: 0; left: 0; width: 19px; height: 19px; border-radius: 50%; margin: -9.5px 0 0 -9.5px;
  background: radial-gradient(circle at 34% 30%, #f3ff8a, #cdee3a 55%, #a9cf16);
  box-shadow: 0 0 0 1px rgba(255,255,255,.35) inset, 0 6px 16px rgba(180,224,0,.5);
  offset-path: path("M10 118 Q 70 18 130 118 Q 190 52 250 118 Q 310 78 370 118 Q 430 94 490 118 Q 550 108 610 118");
  offset-rotate: 0deg; animation: ballRoll 4s cubic-bezier(.36,0,.5,1) infinite, ballSpin 1.1s linear infinite; }
.ball-traj .ball::before { content: ""; position: absolute; inset: 3px; border-radius: 50%; border: 1.4px solid rgba(255,255,255,.6); border-right-color: transparent; border-bottom-color: transparent; }
@keyframes ballRoll { 0% { offset-distance: 0%; opacity: 0; } 6% { opacity: 1; } 88% { offset-distance: 100%; opacity: 1; } 96%, 100% { offset-distance: 100%; opacity: 0; } }
@keyframes ballSpin { to { transform: rotate(360deg); } }
@keyframes trajPulse { to { stroke-dashoffset: -44; } }
/* On tablet/phone, scale the whole 640px animation down so the ball and its
   trajectory stay aligned (both share the same coordinate space) and fit the screen */
@media (max-width: 1024px) { .ball-traj { transform: translateX(-50%) scale(.62); transform-origin: center bottom; bottom: 1.1rem; }
  .ball-traj .ball { width: 30px; height: 30px; margin: -15px 0 0 -15px; } }
@media (max-width: 480px)  { .ball-traj { transform: translateX(-50%) scale(.54); bottom: .9rem; }
  .ball-traj .ball { width: 34px; height: 34px; margin: -17px 0 0 -17px; } }
@media (prefers-reduced-motion: reduce) { .ball-traj { display: none; } }

.hero-inner { position: relative; z-index: 2; padding: 6rem 0 6.5rem; max-width: none; width: min(100% - 2.6rem, var(--container)); }
.hero h1 { font-size: clamp(2.9rem, 8vw, 6rem); margin: 1.5rem 0; letter-spacing: -.035em; }
.hero h1 .accent { background: linear-gradient(100deg, var(--sky), var(--cyan) 55%, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.32rem); max-width: 560px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.8rem; margin-top: 3.6rem; }
.hero-stats .stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem); background: linear-gradient(100deg,#fff,var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats .stat span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); }

/* floating logo badge */
.hero-badge { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); z-index: 2; width: clamp(180px, 24vw, 320px); animation: bob 6s ease-in-out infinite; }
.hero-badge img { width: 100%; filter: drop-shadow(0 24px 50px rgba(0,0,0,.5)); }
.hero-badge::before { content: ""; position: absolute; inset: -12%; border-radius: 50%; background: radial-gradient(closest-side, rgba(52,208,255,.35), transparent 70%); z-index: -1; }
@keyframes bob { 50% { transform: translateY(calc(-50% - 18px)); } }
@media (max-width: 1080px) { .hero-badge { display: none; } }

.scroll-hint { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.scroll-hint .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--cyan); border-radius: 3px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,12px); } }

/* Page hero (inner) */
.page-hero { position: relative; padding: 12rem 0 6rem; color: #fff; overflow: hidden; background: var(--navy-900); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; mix-blend-mode: luminosity; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(110% 80% at 85% 0%, rgba(52,208,255,.16), transparent 45%),
  linear-gradient(120deg, var(--navy-950), rgba(10,28,68,.55)); }
.page-hero .aurora { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 1; pointer-events: none; }
.page-hero .a1 { width: 420px; height: 420px; background: rgba(26,84,196,.5); top: -120px; right: -60px; animation: float1 18s ease-in-out infinite; }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); margin: 1.1rem 0 .8rem; }
.page-hero p { max-width: 580px; color: rgba(255,255,255,.88); font-size: 1.12rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.72); }
.breadcrumb a:hover { color: var(--cyan); }

/* ============================================================
   Cards & components (glass + spotlight + tilt)
   ============================================================ */
[data-tilt] { transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)); transition: transform .4s var(--ease), box-shadow .45s var(--ease); transform-style: preserve-3d; }

.feature-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.feature { position: relative; overflow: hidden; background: var(--cream); border-radius: var(--radius-lg); padding: 2.3rem 1.9rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(16,36,80,.06); }
.feature::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s; background: radial-gradient(260px circle at var(--mx,50%) var(--my,0%), rgba(47,107,243,.12), transparent 60%); }
.feature:hover::before { opacity: 1; }
.feature:hover { box-shadow: var(--shadow-md); }
.feature .ic { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; margin-bottom: 1.2rem; box-shadow: var(--glow-blue); }
.feature .ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* Split / about */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.8rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.5; object-fit: cover; }
.split-media .floater { position: absolute; bottom: -26px; right: -16px; background: var(--navy-800); color: #fff; padding: 1.2rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: 230px; overflow: hidden; }
.split-media .floater::before { content: ""; position: absolute; inset: 0; background: var(--grad-blue); opacity: .25; }
.split-media .floater strong { position: relative; font-family: var(--font-display); font-size: 2rem; color: var(--cyan); display: block; }
.split-media .floater span { position: relative; font-size: .85rem; opacity: .9; }
.split-body h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin: 1.1rem 0 1.2rem; }
.split-body p { color: var(--muted); margin-bottom: 1rem; }
.partner-badge { display: inline-flex; align-items: center; gap: 1.1rem; background: var(--cream); border: 1px solid rgba(16,36,80,.1); border-radius: 18px; padding: .85rem 1.3rem; box-shadow: var(--shadow-sm); margin: .3rem 0 1.5rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.partner-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.partner-badge img { height: 72px; width: auto; display: block; border-radius: 8px; }
.partner-badge .pb-label { display: flex; flex-direction: column; line-height: 1.25; }
.partner-badge .pb-label small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.partner-badge .pb-label strong { font-family: var(--font-display); font-size: 1.02rem; color: var(--navy-800); }
.checklist { margin: 1.6rem 0; display: grid; gap: .85rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; }
.checklist .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: grid; place-items: center; margin-top: 2px; box-shadow: var(--glow-blue); }
.checklist .tick svg { width: 14px; height: 14px; }

/* Court / offer cards */
.cards { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card { position: relative; background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; border: 1px solid rgba(16,36,80,.05); }
.card:hover { box-shadow: var(--shadow-lg); }
.card-img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.card:hover .card-img img { transform: scale(1.09); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,46,.5), transparent 45%); }
.card-tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--blue-700); padding: .38rem .95rem; border-radius: 100px; font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.card-body { padding: 1.7rem 1.7rem 1.9rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.card-body p { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; flex: 1; }
.card-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid rgba(16,36,80,.08); font-size: .85rem; color: var(--blue-600); font-weight: 600; }
.card-meta span { display: inline-flex; align-items: center; gap: .4rem; }

/* Stats band (dark) */
.band { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -20%, rgba(26,84,196,.5), transparent 60%); }
.band .container { position: relative; z-index: 1; }
.band .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: center; }
.band .stat strong { font-family: var(--font-display); font-size: clamp(2.4rem, 5.4vw, 3.8rem); background: linear-gradient(100deg,#fff,var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.band .stat span { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

/* Values pills */
.values { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.value-pill { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.6rem; background: var(--cream); border-radius: 100px; box-shadow: var(--shadow-sm); font-weight: 600; border: 1px solid rgba(16,36,80,.05); }
.value-pill .dot { width: 12px; height: 12px; border-radius: 50%; }

/* Timeline */
.timeline { position: relative; max-width: 780px; margin-inline: auto; padding-left: 2.4rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--grad-blue); }
.t-item { position: relative; padding-bottom: 2.6rem; }
.t-item::before { content: ""; position: absolute; left: -2.4rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-600); border: 3px solid var(--paper); box-shadow: 0 0 0 2px var(--blue-600), 0 0 14px rgba(47,107,243,.6); }
.t-item:last-child { padding-bottom: 0; }
.t-item .year { font-family: var(--font-display); color: var(--blue-600); font-size: 1.05rem; font-weight: 700; letter-spacing: .04em; }
.t-item h3 { font-size: 1.22rem; margin: .2rem 0 .4rem; }
.t-item p { color: var(--muted); }

/* Pricing */
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.price-card { position: relative; overflow: hidden; background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shadow-sm); border: 1.5px solid rgba(16,36,80,.07); display: flex; flex-direction: column; }
.price-card.featured { border-color: transparent; background: var(--navy-900); color: #fff; }
.price-card.featured::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 0%, rgba(26,84,196,.55), transparent 60%); }
.price-card.featured > * { position: relative; z-index: 1; }
.price-card.featured .price-sub, .price-card.featured .price-list li { color: rgba(255,255,255,.85); }
.popular { position: absolute; top: 0; right: 0; z-index: 2; background: var(--grad-blue); color: #fff; padding: .35rem 1.1rem; border-radius: 0 var(--radius-lg) 0 var(--radius); font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.price-card h3 { font-size: 1.35rem; }
.price-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }
.price { font-family: var(--font-display); font-size: 2.9rem; line-height: 1; margin-bottom: .3rem; color: var(--blue-600); }
.price-card.featured .price { background: linear-gradient(100deg,#fff,var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price small { font-size: .85rem; font-weight: 500; color: var(--muted); }
.price-card.featured .price small { color: rgba(255,255,255,.7); }
.price-list { margin: 1.6rem 0 2rem; display: grid; gap: .8rem; flex: 1; }
.price-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .94rem; }
.price-list .tick { flex: none; width: 21px; height: 21px; border-radius: 50%; background: rgba(26,84,196,.12); color: var(--blue-600); display: grid; place-items: center; margin-top: 2px; }
.price-card.featured .price-list .tick { background: rgba(255,255,255,.16); color: var(--cyan); }
.price-list .tick svg { width: 12px; height: 12px; }

/* Gallery */
.gallery { columns: 3; column-gap: 1rem; }
.gallery .g-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow-sm); }
.gallery .g-item img { width: 100%; transition: transform .8s var(--ease); }
.gallery .g-item:hover img { transform: scale(1.08); }
.gallery .g-item::after { content: "\2197"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.7rem; color: #fff; background: linear-gradient(120deg, rgba(26,84,196,.55), rgba(7,17,46,.5)); opacity: 0; transition: opacity .4s; }
.gallery .g-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 250; background: rgba(5,13,36,.95); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 2rem; opacity: 0; transition: opacity .35s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; color: #fff; font-size: 2.4rem; line-height: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; padding: 1rem; opacity: .75; transition: opacity .3s; }
.lightbox .lb-nav:hover { opacity: 1; }
.lightbox .lb-prev { left: 1rem; } .lightbox .lb-next { right: 1rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.info-list { display: grid; gap: 1.2rem; margin: 2rem 0; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--grad-blue); color: #fff; display: grid; place-items: center; box-shadow: var(--glow-blue); }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item strong { display: block; font-family: var(--font-display); }
.info-item a, .info-item span { color: var(--muted); }
.info-item a:hover { color: var(--blue-600); }

.form { background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(16,36,80,.05); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.field input, .field select, .field textarea { width: 100%; padding: .9rem 1rem; border: 1.5px solid rgba(16,36,80,.12); border-radius: 12px; font-family: inherit; font-size: .95rem; background: var(--paper); transition: border .3s, box-shadow .3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(47,107,243,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 1rem; font-size: .85rem; color: var(--muted); }
.form-success { display: none; padding: 1rem 1.2rem; background: rgba(26,84,196,.1); color: var(--blue-700); border-radius: 12px; font-weight: 600; margin-top: 1rem; }
.form-success.show { display: block; }

.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(.45) saturate(.8) contrast(1.04) brightness(1.02); }
.map-wrap::after { content: ""; position: absolute; inset: 0; background: var(--blue-700); mix-blend-mode: soft-light; opacity: .55; pointer-events: none; }

/* CTA */
.cta { position: relative; color: #fff; text-align: center; overflow: hidden; border-radius: var(--radius-xl); min-height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(3.4rem, 6vw, 5rem) 2rem; background: var(--navy-900); }
.cta h2 { margin-top: 0; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; mix-blend-mode: luminosity; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(75% 120% at 50% 0%, rgba(26,84,196,.5), transparent 60%),
  linear-gradient(120deg, rgba(7,17,46,.82), rgba(10,28,68,.72)); }
.cta .aurora { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; }
.cta .a1 { width: 360px; height: 360px; background: rgba(52,208,255,.3); top: -120px; left: -60px; animation: float2 18s ease-in-out infinite; }
.cta > * { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.cta p { max-width: 540px; margin: 0 auto 2rem; color: rgba(255,255,255,.9); font-size: 1.1rem; }
.cta .hero-actions { justify-content: center; }

/* Coaches */
.coach-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.coach { text-align: center; }
.coach-img { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 1rem; }
.coach-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.coach:hover .coach-img img { transform: scale(1.06); }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--cream); border-radius: var(--radius); margin-bottom: 1rem; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(16,36,80,.05); }
.faq-q { width: 100%; text-align: left; padding: 1.35rem 1.6rem; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); }
.faq-q .plus { flex: none; transition: transform .35s var(--ease); color: var(--blue-600); font-size: 1.5rem; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 1.6rem 1.4rem; color: var(--muted); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { position: relative; background: var(--navy-950); color: rgba(255,255,255,.78); padding: 4.8rem 0 2rem; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 100% 0%, rgba(26,84,196,.35), transparent 55%); }
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.6rem; margin-bottom: 3rem; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; }
.site-footer a:hover { color: var(--cyan); }
.footer-links { display: grid; gap: .65rem; }
.footer-links a { font-size: .94rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-txt { color: #fff; }
.footer-brand p { font-size: .94rem; max-width: 290px; }
.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s, transform .3s; }
.socials a:hover { background: var(--grad-blue); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .8rem; font-size: .94rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(36px); filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  /* Slide-in panel — full height, structured list with dividers */
  .nav-links { position: fixed; top: 0; right: 0; bottom: auto; height: 100dvh; width: min(86vw, 360px); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; background: #ffffff; padding: 5rem 1.6rem 1.6rem; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .45s var(--ease); z-index: 106; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links > li.has-sub { padding-bottom: .2rem; }
  .nav-links a { color: var(--navy-800) !important; font-size: 1.12rem; font-weight: 600; width: 100%; padding: .95rem .35rem; display: flex; align-items: center; }
  .nav-links a::after { display: none !important; }
  .nav-links a.active { color: var(--blue-600) !important; }
  /* Réserver CTA — separated, prominent, no divider */
  .nav-links > li:last-child { border-bottom: none; margin-top: 1.3rem; }
  .nav-links .nav-cta { margin: 0; width: 100%; justify-content: center; padding: 1rem; font-size: 1.05rem; }
  /* Overlay sits BELOW the header's stacking context (header is z-index:100),
     so the menu panel inside the header renders above it — otherwise the overlay
     greyed the panel out and intercepted every tap. */
  .nav-overlay { position: fixed; inset: 0; background: rgba(5,13,36,.5); opacity: 0; visibility: hidden; transition: .4s; z-index: 99; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .floater { right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .band .stats { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 560px) {
  .gallery { columns: 1; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.7rem 1.2rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
/* On mobile, drop the decorative caption boxes attached to photos — keep the visuals clean */
@media (max-width: 768px) {
  .split-media .floater { display: none; }
  /* Taller crop + bias toward the top so people's heads aren't cut off */
  .split-media img { aspect-ratio: 4/3.6; object-position: center top; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none !important; }
}

/* ============================================================
   CREATIVE COMPONENTS (2026)
   ============================================================ */

/* ---- Hero : copy + photo collage + bottom stats bar ---- */
.hero-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 4.8vw, 4.1rem); margin: 1.1rem 0; }
.hero-copy p { margin-top: .4rem; }
.hero-visual { position: relative; justify-self: center; width: min(100%, 540px); }
.hv-photo { position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.12); }
.hv-photo img { width: 100%; aspect-ratio: 3/2.2; object-fit: cover; object-position: center; display: block; }
.hv-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, transparent 55%, rgba(26,84,196,.4)); z-index: 1; }
.hv-photo .sheen { position: absolute; top: -10%; bottom: -10%; left: -80%; width: 55%; z-index: 2; pointer-events: none; transform: skewX(-18deg); background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); animation: sheen 6s ease-in-out infinite; }
@keyframes sheen { 0%, 14% { left: -80%; } 46%, 100% { left: 150%; } }
.hero-visual { animation: floaty 7.5s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-13px); } }
.hv-photo { z-index: 1; }
.hv-photo img { animation: kenburns 20s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero-visual, .hv-photo .sheen, .hv-photo img { animation: none; } }
.hv-badge { position: absolute; top: -26px; left: -26px; width: 104px; height: 104px; padding: 16px; border-radius: 26px; background: rgba(7,17,46,.55); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow-md); animation: bob 6s ease-in-out infinite; }
.hv-badge img { width: 100%; height: 100%; object-fit: contain; }
.hv-chip { position: absolute; bottom: -20px; right: -18px; background: rgba(255,255,255,.95); color: var(--navy-800); border-radius: 18px; padding: .8rem 1.1rem; box-shadow: var(--shadow-md); }
.hv-chip strong { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--blue-600); }
.hv-chip span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.hero-bar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; background: linear-gradient(to top, rgba(5,13,36,.78), rgba(5,13,36,.18)); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,.12); padding: 1.15rem 0; }
.hb-inner { display: flex; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
.hb-stat { display: flex; align-items: baseline; gap: .6rem; color: #fff; }
.hb-stat strong { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); background: linear-gradient(100deg,#fff,var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hb-stat span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72); }

/* ---- Statement intro + photo strip ---- */
.statement h2 { font-size: clamp(2.2rem, 6vw, 4rem); max-width: 14ch; }
.statement .accent-line { color: transparent; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.shots .shot { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.shots .shot img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .8s var(--ease); }
.shots .shot:hover img { transform: scale(1.07); }
.shots .shot span { position: absolute; left: .9rem; bottom: .8rem; z-index: 2; color: #fff; font-weight: 600; font-size: .9rem; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.shots .shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,46,.6), transparent 50%); }

/* ---- DUO : Tennis | Padel split ---- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.duo-side { position: relative; min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.4rem; color: #fff; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.duo-side > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1s var(--ease); }
.duo-side::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(5,13,36,.9), rgba(5,13,36,.2) 70%); transition: background .4s; }
.duo-side:hover > img { transform: scale(1.07); }
.duo-side:hover::after { background: linear-gradient(to top, rgba(8,30,80,.92), rgba(26,84,196,.25) 70%); }
.duo-side > * { position: relative; z-index: 2; }
.duo-tag { align-self: flex-start; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); padding: .4rem 1rem; border-radius: 100px; font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: auto; }
.duo-side h3 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 1.2rem 0 .5rem; }
.duo-side p { color: rgba(255,255,255,.85); margin-bottom: 1.2rem; max-width: 38ch; }
.duo-meta { display: flex; gap: 1.6rem; margin-bottom: 1.4rem; }
.duo-meta b { font-family: var(--font-display); font-size: 1.7rem; color: var(--cyan); display: block; line-height: 1; }
.duo-meta span { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.duo-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: #fff; }
.duo-link svg { width: 18px; transition: transform .4s var(--ease); }
.duo-side:hover .duo-link svg { transform: translateX(5px); }

/* ---- Immersive numbers over a real photo ---- */
.band-bg { position: absolute; inset: 0; z-index: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; mix-blend-mode: luminosity; }

/* ---- Showcase : full-bleed clubhouse ---- */
.showcase { position: relative; min-height: 64vh; display: flex; align-items: center; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.showcase > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.showcase::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(5,13,36,.85), rgba(5,13,36,.15) 75%); }
.sc-card { position: relative; z-index: 2; color: #fff; max-width: 480px; margin: 0 6%; padding: clamp(1.6rem, 3vw, 2.4rem); }
.sc-card h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 1rem 0; }
.sc-card p { color: rgba(255,255,255,.88); margin-bottom: 1.6rem; }

/* ---- Big typographic values ---- */
.bigvalues { display: flex; flex-direction: column; }
.bv { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(.9rem, 2vw, 1.6rem) 0; border-top: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.bv:last-child { border-bottom: 1px solid var(--line); }
.bv-word { font-family: var(--font-display); font-size: clamp(2rem, 7vw, 5.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--blue-500); transition: all .45s var(--ease); }
.bv-desc { flex: 0 1 340px; text-align: right; color: var(--muted); font-size: clamp(.95rem, 1.2vw, 1.1rem); line-height: 1.5; }
.bv:hover { padding-left: 14px; }
.bv:hover .bv-word { -webkit-text-stroke: 0 transparent; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; }
@media (max-width: 640px) { .bv { flex-direction: column; align-items: flex-start; gap: .4rem; } .bv-desc { text-align: left; flex-basis: auto; } }

@media (max-width: 1080px) {
  .hero-visual { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  /* Stop forcing a full-height centered hero, and let the stats bar flow
     BELOW the content instead of overlapping the buttons (absolute -> static). */
  .hero { min-height: auto; display: block; }
  .hero-inner { padding: 7rem 0 2.4rem; }
  /* No background of its own — the hero's gradient flows straight through, so
     there's no seam. relative+z-index keeps the white KPIs above the aurora glows. */
  .hero-bar { position: relative; z-index: 5; backdrop-filter: none; -webkit-backdrop-filter: none; background: transparent; border-top: none; padding: 1rem 0 2.8rem; }
}
@media (max-width: 860px) {
  .duo { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr 1fr; }
  /* KPI bar: 2x2 grid, number above label, each on a single line */
  .hb-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.2rem; }
  .hb-stat { flex: none; flex-direction: column; align-items: flex-start; gap: .15rem; }
  /* Solid bright text so the KPIs read clearly (the gradient-clip was too faint on the blue) */
  .hb-stat strong { white-space: nowrap; font-size: 2.1rem; background: none; -webkit-text-fill-color: #fff; color: #fff; }
  .hb-stat span { line-height: 1.25; color: rgba(255,255,255,.9); }
  .showcase { min-height: 0; }
  .sc-card { margin: 0; background: var(--navy-900); border-radius: var(--radius-xl); }
}
@media (max-width: 520px) {
  .hb-stat strong { font-size: 1.5rem; }
}
@media (max-width: 860px) {
  .shots { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .shots .shot { margin-top: 0 !important; }
  .shots .shot:last-child { grid-column: 1 / -1; }
  .shots .shot:last-child img { aspect-ratio: 16 / 9; }
}

/* ---- Contact card (info panel + integrated map) ---- */
.page-hero.short { padding: 10rem 0 4.5rem; }
.contact-card { display: grid; grid-template-columns: 1.05fr 1fr; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); min-height: 560px; }
.cc-info { position: relative; background: var(--navy-900); color: #fff; padding: clamp(2.2rem, 4vw, 3.6rem); display: flex; flex-direction: column; overflow: hidden; }
.cc-info::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(52,208,255,.16); filter: blur(80px); top: -120px; right: -100px; pointer-events: none; }
.cc-logo { height: 52px; width: 52px; object-fit: contain; align-self: flex-start; margin-bottom: 1.3rem; position: relative; }
.cc-info h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.05; position: relative; }
.cc-tag { color: rgba(255,255,255,.72); font-size: .96rem; margin: .9rem 0 0; max-width: 38ch; position: relative; }
.cc-rows { display: flex; flex-direction: column; margin: 1.6rem 0 auto; position: relative; }
.cc-row { display: flex; flex-direction: column; gap: .15rem; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.12); transition: padding-left .3s var(--ease); }
.cc-row:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.cc-row .k { font-family: var(--font-display); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cyan); }
.cc-row .v { font-size: clamp(1rem, 1.5vw, 1.18rem); color: #fff; word-break: break-word; }
.cc-row:hover { padding-left: 9px; }
.cc-row:hover .v { color: var(--sky, #9cd0ff); }
.cc-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.9rem; flex-wrap: wrap; position: relative; }
.cc-foot .socials a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; transition: background .3s, transform .3s; }
.cc-foot .socials a:hover { background: var(--cyan); color: var(--navy-900); transform: translateY(-2px); }
.cc-map { position: relative; min-height: 560px; background: var(--sand); }
.cc-map #club-map { position: absolute; inset: 0; }
.cc-map::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(16,64,128,.08); background: linear-gradient(120deg, rgba(26,84,196,.06), transparent 40%); }
@media (max-width: 820px) {
  .contact-card { grid-template-columns: 1fr; min-height: 0; }
  .cc-map { min-height: 340px; order: 2; }
}

/* ---- Justified body copy ---- */
.split-body p, .statement p, .sc-card p, .feature p, .card-body p, .faq-a p,
.duo-side p, .hero-copy p, .page-hero p, .lead, .info-item span, .t-item p, .coach p { text-align: justify; }
@media (max-width: 560px) { .hero-copy p, .duo-side p { text-align: left; } }

/* ===== Nav dropdown (Terrains → Tennis / Padel) ===== */
.has-sub { position: relative; }
.has-sub > a { display: inline-flex; align-items: center; gap: .3rem; }
.chev { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.subnav { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 200px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: .45rem; display: flex; flex-direction: column; gap: .1rem; opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s; z-index: 60; }
/* Desktop-only hover dropdown. On touch, hovering "Terrains" must NOT re-apply
   these (the translateX shoved the open mobile submenu off-screen). */
@media (min-width: 861px) {
  .has-sub:hover .chev { transform: rotate(180deg); }
  .has-sub:hover .subnav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}
.subnav a { color: var(--navy-800) !important; padding: .6rem .9rem !important; border-radius: 11px; font-size: .92rem; font-weight: 500; white-space: nowrap; }
.subnav a::after { display: none !important; }
.subnav a:hover { background: var(--paper); color: var(--blue-600) !important; }

/* ===== Hero hand-drawn underline (bespoke signature) ===== */
.scribble { display: block; width: min(58%, 300px); height: auto; margin: .4rem 0 0; overflow: visible; }
.scribble path { stroke-dasharray: 340; stroke-dashoffset: 340; animation: draw 1.2s var(--ease) .55s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .scribble path { animation: none; stroke-dashoffset: 0; } }

@media (max-width: 860px) {
  .nav-links .has-sub { width: 100%; }
  .nav-links .subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--line); background: transparent; padding: 0 0 .4rem; margin: 0 0 .2rem .6rem; min-width: 0; }
  .nav-links .subnav a { font-size: 1rem !important; font-weight: 500; color: var(--blue-600) !important; padding: .5rem .9rem !important; }
  .has-sub > a .chev { display: none; }
}
