/* =================================================
   RAQUETTES CLUB DU PAYS MÉNIGOUTAIS
   Premium Tennis & Pickleball Website
   Design by Figlify — figlify.fr
   ================================================= */

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* PAS de scroll-behavior: smooth ici — Lenis gère le lissage.
       Les deux ensemble = scroll qui saccade. */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0A0A;
    color: #F5F5F0;
    overflow-x: hidden;
    line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }

/* ===== ROOT VARIABLES ===== */
:root {
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-light: #F5F5F0;
    --bg-cream: #EDE9DD;
    --bg-warm: #1A1715;
    --text-light: #F5F5F0;
    --text-dark: #0A0A0A;
    --text-muted: #8A8A85;
    /* Identité de marque : BLANC / NOIR / JAUNE (jaune de la balle du logo) */
    --accent-green: #FFD400;      /* nom historique conservé — vaut désormais le JAUNE de marque */
    --accent-green-dark: #E0BB00;
    --accent-yellow: #FFD400;
    --accent-yellow-soft: #FBE34D; /* jaune balle, plus doux */
    --accent-yellow-dark: #E0BB00;
    --accent-yellow-deep: #C99700;
    --accent: #FFD400;
    --accent-orange: #FFB300;     /* ambre chaud, reste dans la famille jaune */
    --accent-clay: #B8801F;       /* ocre/terre, accent secondaire discret */
    --glow-yellow: rgba(255,212,0,0.45);
    --line: rgba(255,255,255,0.1);
    --line-dark: rgba(0,0,0,0.1);
    --serif: 'Bodoni Moda', serif;
    --display: 'Syne', sans-serif;
    --body: 'Inter', sans-serif;
}

/* ===== LENIS SMOOTH SCROLL ===== */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* ===== SECTION LABEL ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.section-label-light { color: var(--text-light); }
.section-label-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.pickleball-dot { background: var(--accent-orange); }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* =================================================
   LOADER
   ================================================= */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.loader-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 42%, #FFFFFF 0%, #F4F2EB 60%, #ECE9DE 100%);
}
.loader-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 40%, rgba(255,212,0,0.16) 0%, transparent 42%),
        radial-gradient(circle at 82% 82%, rgba(255,179,0,0.10) 0%, transparent 48%);
}
/* Lignes type court de tennis (noir très léger sur le blanc) */
.loader-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(to right, rgba(10,10,10,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10,10,10,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 70%);
    opacity: 0.7;
}
.loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
}

/* ----- Logo + anneau + balle ----- */
.loader-logo-wrapper {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.loader-ring-fill {
    filter: drop-shadow(0 0 6px rgba(255,212,0,0.6));
}
/* Balle qui orbite le long de l'anneau */
.loader-orbit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.loader-ball {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, #FFEB7A 0%, #FFD400 45%, #E0BB00 100%);
    box-shadow: 0 0 14px 2px rgba(255,212,0,0.8);
}
.loader-ball::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.55);
    border-top-color: transparent;
    border-bottom-color: transparent;
}
/* Médaillon clair qui révèle le logo dans ses vraies couleurs */
.loader-medallion {
    position: relative;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, #FFFFFF 0%, #F3EFE3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 50px rgba(0,0,0,0.14), inset 0 0 0 1px rgba(0,0,0,0.05);
    transform: scale(0.6);
    opacity: 0;
}
.loader-logo {
    width: 122px;
    height: 122px;
    object-fit: contain;
    transform: scale(1.04);
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* ----- Texte ----- */
.loader-text-wrapper {
    text-align: center;
}
.loader-line {
    overflow: hidden;
    line-height: 1.05;
}
.loader-line span {
    display: inline-block;
    transform: translateY(120%);
    font-family: var(--serif);
    font-size: clamp(26px, 4.6vw, 50px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #0A0A0A;
}
.loader-line:nth-child(2) span {
    font-size: clamp(11px, 1.5vw, 13px);
    letter-spacing: 5px;
    font-family: var(--body);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-yellow-deep);
    margin-top: 16px;
    font-style: normal;
}

.loader-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 340px;
    max-width: 80vw;
}
.loader-progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(10,10,10,0.12);
    overflow: hidden;
    border-radius: 2px;
}
.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-yellow-dark), var(--accent-yellow));
    box-shadow: 0 0 12px rgba(255,212,0,0.7);
}
.loader-percent {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: 0.5px;
    min-width: 54px;
    text-align: right;
}
.loader-percent span { font-variant-numeric: tabular-nums; }

.loader-tagline {
    position: fixed;            /* ancré au bas de l'écran, plus de chevauchement */
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 4px;
    color: #6a6a66;
    font-weight: 600;
    white-space: nowrap;
}

/* =================================================
   CURSOR CUSTOM
   ================================================= */
.cursor-dot, .cursor-circle {
    display: none !important;   /* curseur custom retiré — curseur natif */
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    transform: translate(-50%, -50%);
}
.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.6);
    transform: translate(-50%, -50%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s, height 0.3s, background 0.3s;
}
.cursor-circle.hover {
    width: 80px;
    height: 80px;
    background: rgba(255,212,0,0.15);
    border-color: var(--accent-green);
}

@media (max-width: 1024px) {
    body { cursor: auto; }
    button, a { cursor: pointer; }
    .cursor-dot, .cursor-circle { display: none; }
}

/* =================================================
   WEBGL BACKGROUND
   ================================================= */
.webgl-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* =================================================
   NAVBAR
   ================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: padding 0.4s ease, background 0.4s ease;
    background: linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0) 100%);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo-img {
    width: auto;
    height: 54px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), height 0.4s ease;
}
.navbar.scrolled .nav-logo-img { height: 46px; }
.nav-logo-dark { display: none; }                 /* navbar toujours en blanc */
.nav-logo-white { position: static; opacity: 1; }
.nav-logo:hover .nav-logo-white { transform: rotate(-6deg) scale(1.05); }
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0A0A0A;
    transition: color 0.4s ease;
}
.nav-logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #8a8a85;
    text-transform: uppercase;
}
.navbar.scrolled .nav-logo-name { color: #fff; }

/* Navbar toujours en blanc (barre translucide sombre) */
.nav-trigger { color: rgba(245,245,240,0.85); }
.nav-item:hover .nav-trigger { color: #fff; background: rgba(255,255,255,0.08); }
.nav-burger span { background: var(--text-light); }

/* ----- Méga-menu ----- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item { position: relative; }
.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: rgba(245,245,240,0.85);
    border-radius: 100px;
    transition: color 0.3s, background 0.3s;
}
.nav-item:hover .nav-trigger { color: #fff; background: rgba(255,255,255,0.08); }
.nav-chev { width: 11px; height: 8px; transition: transform 0.35s ease; opacity: 0.6; }
.nav-item:hover .nav-chev { transform: rotate(180deg); opacity: 1; }

/* Panneau */
.mega {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 18px;               /* pont invisible pour le survol */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.2,0.8,0.2,1), visibility 0.3s;
    pointer-events: none;
}
.mega-right { left: auto; right: 0; }
.nav-item:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}
.mega-inner {
    display: flex;
    gap: 10px;
    padding: 14px;
    width: 540px;
    background: rgba(18,18,18,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.mega-links { flex: 1.25; display: flex; flex-direction: column; gap: 2px; }
.mega-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 13px;
    transition: background 0.25s ease, transform 0.25s ease;
}
.mega-link:hover { background: rgba(255,212,0,0.08); transform: translateX(3px); }
.mega-ic {
    flex-shrink: 0;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--display);
    font-weight: 700;
    color: var(--accent-yellow);
}
.mega-tx { display: flex; flex-direction: column; gap: 2px; }
.mega-tx strong { font-size: 14.5px; font-weight: 600; color: #fff; }
.mega-tx em { font-style: normal; font-size: 12px; color: var(--text-muted); }

.mega-feature {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    padding: 18px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 190px;
    isolation: isolate;
}
.mega-feature::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.88) 100%);
}
.mega-feature-club { background-image: url('../images/tennisdehors.jpeg'); }
.mega-feature-tennis { background-image: url('../images/tennisphoto.jpg'); }
.mega-feature-pickle { background-image: url('../images/pickleball2.jpg'); }
.mega-feature-join { background-image: url('../images/tennisphoto4.jpg'); }
.mega-feature-fb { background-image: url('../images/pickleballequipe.jpeg'); }
.mega-feature-k {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent-yellow); font-weight: 600;
}
.mega-feature-t {
    font-family: var(--serif); font-size: 19px; line-height: 1.15; color: #fff;
}
.mega-feature-cta {
    margin-top: 8px; font-size: 13px; font-weight: 600; color: #fff;
    display: inline-flex; align-items: center; gap: 6px;
}
.mega-feature-cta span { transition: transform 0.3s; }
.mega-feature:hover .mega-feature-cta span { transform: translateX(5px); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--accent-yellow);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    background: transparent;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--accent-yellow); color: #0A0A0A; border-color: var(--accent-yellow); transform: translateY(-2px); }
.nav-cta-arrow { transition: transform 0.3s; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

.nav-burger {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.nav-burger span {
    width: 24px;
    height: 1.5px;
    background: var(--text-light);
    transition: transform 0.4s, opacity 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 1180px) {
    .nav-menu, .nav-cta { display: none; }
}

/* =================================================
   MENU FULLSCREEN
   ================================================= */
.menu-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    overflow: hidden;
}
.menu-fullscreen.active { pointer-events: all; }
.menu-fullscreen.active { background: #070707; }   /* socle plein : zéro transparence */
.menu-bg-layer {
    position: absolute;
    inset: 0;
    background: #0F0F0F;
    transform: translateY(-100%);
}
.menu-bg-layer:nth-child(1) { background: var(--accent-yellow); }
.menu-bg-layer:nth-child(2) { background: #1A1715; }
.menu-bg-layer:nth-child(3) {
    background:
        radial-gradient(120% 90% at 80% 10%, rgba(255,212,0,0.10) 0%, transparent 50%),
        radial-gradient(80% 80% at 0% 100%, rgba(255,179,0,0.06) 0%, transparent 55%),
        #0A0A0A;
}
.menu-bg-layer:nth-child(3)::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 70% 40%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 70% 40%, #000, transparent 75%);
}

.menu-inner {
    position: absolute;
    inset: 0;
    padding: 120px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
}
.menu-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: start;
    padding-top: 40px;
}
.menu-logo {
    width: 140px;
    height: auto;
    opacity: 1;
}
.menu-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.menu-info-block { display: flex; flex-direction: column; gap: 8px; }
.menu-info-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-green);
    font-weight: 500;
}
.menu-info p {
    font-size: 14px;
    color: rgba(245,245,240,0.7);
    line-height: 1.6;
}
.menu-socials { display: flex; flex-direction: column; gap: 6px; }
.menu-socials a {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s;
}
.menu-socials a:hover { color: var(--accent-green); }

.menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.menu-link {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}
.menu-num {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-green);
    letter-spacing: 2px;
    flex-shrink: 0;
    transition: transform 0.5s;
}
.menu-text {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 110px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-light);
    transition: color 0.4s, transform 0.5s;
    display: inline-block;
}
.menu-link:hover .menu-text {
    font-style: italic;
    color: var(--accent-green);
    transform: translateX(20px);
}
.menu-link:hover .menu-num {
    transform: translateX(20px);
}

.menu-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    padding: 22px 0;
    background: linear-gradient(90deg, rgba(255,212,0,0.06), rgba(255,212,0,0.02));
    border-top: 1px solid rgba(255,212,0,0.25);
}
.menu-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: marquee 34s linear infinite;
}
.menu-marquee-track span {
    display: inline-flex;
    align-items: center;
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 30px);
    font-style: italic;
    color: rgba(245,245,240,0.92);
    letter-spacing: 0.01em;
}
.mq-dot {
    display: inline-block;
    width: 9px; height: 9px;
    margin: 0 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, #FFEB7A, #FFD400 60%, #E0BB00);
    box-shadow: 0 0 10px var(--glow-yellow);
    flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
    .menu-inner {
        grid-template-columns: 1fr;
        padding: 100px 24px 40px;
        gap: 30px;
    }
    .menu-left { display: none; }
}

/* =================================================
   HERO
   ================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 14%, #1b1b1b 0%, #0c0c0c 52%, #060606 100%);
}
/* ----- Court de tennis stylisé en perspective (net, vectoriel) ----- */
.hero-court {
    position: absolute; inset: 0;
    overflow: hidden;
    perspective: 700px;
    perspective-origin: 50% 42%;
}
.hero-court-floor {
    position: absolute;
    left: 50%; top: 56%;
    width: 760px; height: 1100px;
    margin-left: -380px;
    transform: rotateX(70deg);
    transform-origin: 50% 0%;
    border: 3px solid rgba(255,255,255,0.10);
}
.hcl { position: absolute; background: rgba(255,255,255,0.09); }
.hcl-out { } /* le cadre = border du floor */
.hcl-single { top: 0; bottom: 0; left: 11%; width: 3px; box-shadow: 632px 0 0 rgba(255,255,255,0.09); } /* lignes de simple (2 verticales) */
.hcl-service { left: 11%; right: 11%; top: 33%; height: 3px; box-shadow: 0 384px 0 rgba(255,255,255,0.09); } /* lignes de service */
.hcl-center { left: 50%; top: 33%; width: 3px; height: 34%; margin-left: -1.5px; background: rgba(255,255,255,0.09); } /* ligne centrale */
.hero-court-net {
    position: absolute;
    left: 50%; top: 55%;
    width: 1160px; height: 64px;
    margin-left: -580px;
    transform: translateY(-50%);
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.10) 0 2px, transparent 2px 9px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.10) 0 2px, transparent 2px 9px);
    border-top: 2px solid rgba(255,255,255,0.22);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    opacity: 0.5;
}
.hero-cover-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 50% at 50% 40%, rgba(255,212,0,0.14) 0%, transparent 60%),
        radial-gradient(120% 90% at 50% 120%, rgba(0,0,0,0.6) 0%, transparent 55%),
        linear-gradient(180deg, rgba(8,8,8,0.5) 0%, transparent 28%, transparent 70%, rgba(6,6,6,0.65) 100%);
}
.hero-cover-ball {
    position: absolute; top: 15%; right: 13%;
    width: 64px; height: 64px; border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #FFEB7A 0%, #FFD400 48%, #E0BB00 100%);
    box-shadow: 0 12px 34px rgba(255,212,0,0.5); z-index: 2;
    animation: floatY 6s ease-in-out infinite;
}
.hero-cover-ball::before, .hero-cover-ball::after {
    content:''; position:absolute; inset:4px; border-radius:50%;
    border: 2px solid rgba(255,255,255,0.85); clip-path: inset(0 50% 0 0);
}
.hero-cover-ball::after { clip-path: inset(0 0 0 50%); transform: rotate(8deg); }

.hero-cover-content {
    position: relative; z-index: 3; text-align: center;
    padding: 90px 24px 0;
    display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow-c {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 18px; border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px; background: rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    color: #fff; font-weight: 600; font-size: 12.5px;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-yellow); box-shadow: 0 0 8px var(--glow-yellow); }
.hero-cover-logo {
    width: min(540px, 82vw); height: auto;
    margin: 38px 0 16px;
    filter: drop-shadow(0 24px 50px rgba(0,0,0,0.55));
}
.hero-cover-tag {
    font-family: var(--body); font-size: clamp(17px, 1.9vw, 22px);
    font-weight: 500; line-height: 1.5; color: rgba(255,255,255,0.92);
    max-width: 600px;
}
.hero-cover-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-cover {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 17px 32px; border-radius: 100px;
    font-family: var(--body); font-size: 15px; font-weight: 700;
    transition: transform .35s cubic-bezier(0.34,1.56,0.64,1), background .35s, color .35s, box-shadow .35s;
}
.btn-cover-solid { background: var(--accent-yellow); color: #0A0A0A; box-shadow: 0 14px 34px rgba(255,212,0,0.4); }
.btn-cover-solid:hover { transform: translateY(-3px); background: #fff; }
.btn-cover-arrow { transition: transform .35s; }
.btn-cover-solid:hover .btn-cover-arrow { transform: translateX(5px); }
.btn-cover-ghost { color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-cover-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-cover-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-yellow); box-shadow: 0 0 10px var(--glow-yellow); }

.hero-scrollhint {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.hero-scroll-line {
    width: 1px; height: 46px;
    background: linear-gradient(to bottom, var(--accent-yellow), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

@media (max-width: 600px) {
    .hero-cover-logo { width: 86vw; margin-top: 28px; }
    .hero-cover-actions { width: 100%; }
    .btn-cover { flex: 1; justify-content: center; }
    .hero-cover-ball { display: none; }
}



/* =================================================
   HUB EXPLORER (accueil court)
   ================================================= */
.explore {
    position: relative;
    background: #FBFAF6;
    padding: 110px 0 130px;
    border-top: 1px solid rgba(10,10,10,0.06);
}
.explore .container { position: relative; z-index: 2; }
.explore-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.explore-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: #6a6a66; font-weight: 600; margin-bottom: 20px;
}
.explore-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-yellow); box-shadow: 0 0 8px var(--glow-yellow); }
.explore-title {
    font-family: var(--serif);
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.0; font-weight: 500; letter-spacing: -0.02em; color: #0A0A0A;
}
.explore-title em { font-style: italic; color: var(--accent-yellow-dark); }
.explore-lead { margin-top: 20px; color: #5a5a56; font-size: 17px; line-height: 1.6; }

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.explore-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 26px;
    background: #fff;
    border: 1px solid rgba(10,10,10,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s, border-color 0.4s;
}
.explore-card::before {
    content: attr(data-x);
    position: absolute; top: 18px; right: 22px;
    font-family: var(--display); font-size: 13px; font-weight: 700;
    color: rgba(10,10,10,0.18); letter-spacing: 1px;
}
.explore-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(0,0,0,0.12);
    border-color: rgba(255,212,0,0.6);
}
.explore-card-k {
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent-yellow-dark); font-weight: 700; margin-bottom: 12px;
}
.explore-card-t {
    font-family: var(--serif); font-size: 25px; line-height: 1.1; color: #0A0A0A; font-weight: 500;
}
.explore-card-d { margin-top: 10px; font-size: 14px; line-height: 1.5; color: #6a6a66; flex: 1; }
.explore-card-go {
    margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 700; color: #0A0A0A;
}
.explore-card-go i { font-style: normal; transition: transform 0.35s ease; color: var(--accent-yellow-dark); }
.explore-card:hover .explore-card-go i { transform: translateX(6px); }
/* Carte mise en avant (Tennis) */
.explore-card-feat {
    background: linear-gradient(160deg, #0A0A0A 0%, #1a1a1a 100%);
    border-color: #0A0A0A;
}
.explore-card-feat::before { color: rgba(255,212,0,0.35); }
.explore-card-feat .explore-card-k { color: var(--accent-yellow); }
.explore-card-feat .explore-card-t { color: #fff; }
.explore-card-feat .explore-card-d { color: rgba(245,245,240,0.7); }
.explore-card-feat .explore-card-go { color: #fff; }
.explore-card-feat:hover { box-shadow: 0 26px 60px rgba(0,0,0,0.4); border-color: var(--accent-yellow); }

@media (max-width: 900px) {
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .explore { padding: 80px 0 90px; }
    .explore-grid { grid-template-columns: 1fr; }
    .explore-card { min-height: 0; }
}

/* =================================================
   EN-TÊTE PAGE DÉTAIL (decouvrir.html)
   ================================================= */
.page-head {
    position: relative;
    background: #F4F2EB;
    padding: 170px 0 90px;
    overflow: hidden;
    border-bottom: 1px solid rgba(10,10,10,0.07);
}
.page-head-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(80% 60% at 90% 0%, rgba(255,212,0,0.16) 0%, transparent 50%),
        linear-gradient(180deg, #FBFAF6, #F0EEE6);
}
.page-head-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at 75% 30%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 75% 30%, #000, transparent 70%);
}
.page-head .container { position: relative; z-index: 2; }
.page-head-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: #5a5a56; font-weight: 600; margin-bottom: 22px;
}
.page-head-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6.5vw, 88px);
    line-height: 0.98; font-weight: 500; letter-spacing: -0.03em; color: #0A0A0A;
}
.page-head-title em { font-style: italic; color: var(--accent-yellow-dark); }
.page-head-lead { margin-top: 24px; max-width: 620px; font-size: 18px; line-height: 1.6; color: #4a4a47; }
.page-head-chips { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.page-head-chips a {
    padding: 11px 20px;
    border: 1px solid rgba(10,10,10,0.16);
    border-radius: 100px;
    font-size: 13.5px; font-weight: 600; color: #0A0A0A;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.page-head-chips a:hover {
    background: #0A0A0A; color: #fff; border-color: #0A0A0A; transform: translateY(-2px);
}
@media (max-width: 600px) {
    .page-head { padding: 140px 0 70px; }
}

/* =================================================
   MARQUEE SECTION
   ================================================= */
.marquee-section {
    position: relative;
    background: #050505;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    overflow: hidden;
}
.marquee {
    display: flex;
    overflow: hidden;
}
.marquee-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    gap: 60px;
    padding-right: 60px;
    flex-shrink: 0;
}
.marquee-item {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    font-style: italic;
}
.marquee-outline {
    -webkit-text-stroke: 1px var(--text-light);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* =================================================
   INTRO / CLUB SECTION
   ================================================= */
.intro {
    position: relative;
    padding: 160px 0;
    background: var(--bg-dark);
    overflow: hidden;
}
.intro-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}
.intro-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.2vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 40px;
}
.intro-title em {
    font-style: italic;
    color: var(--accent-green);
    font-weight: 400;
}
.intro-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245,245,240,0.75);
    margin-bottom: 24px;
    max-width: 540px;
}
.intro-paragraph strong { color: var(--text-light); font-weight: 600; }

.intro-signature {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}
.intro-signature-line { width: 80px; height: 1px; background: var(--accent-green); }
.intro-signature-name {
    display: block;
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
}
.intro-signature-role {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.intro-visual { position: relative; }
.intro-img-stack {
    position: relative;
    width: 100%;
    height: 600px;
}
.intro-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
}
.intro-img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 1;
}
.intro-img-2 {
    width: 60%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 6px solid var(--bg-dark);
}
.intro-img-3 {
    width: 45%;
    height: 40%;
    top: 30%;
    left: 30%;
    z-index: 3;
    border: 6px solid var(--bg-dark);
}

.intro-badge {
    position: absolute;
    width: 130px;
    height: 130px;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-green);
}
.intro-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: rotate 20s linear infinite; }
.intro-badge img { width: 40px; height: 40px; }

@media (max-width: 980px) {
    .intro { padding: 100px 0; }
    .intro-grid { grid-template-columns: 1fr; gap: 60px; }
    .intro-img-stack { height: 400px; }
}

/* =================================================
   VALUES
   ================================================= */
.values {
    position: relative;
    padding: 160px 0;
    background: var(--bg-cream);
    color: var(--text-dark);
}
.values-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: end;
}
.values-header .section-label { color: var(--text-dark); margin-bottom: 0; }
.values-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}
.values-title em {
    font-style: italic;
    color: var(--accent-clay);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    position: relative;
    padding: 50px 36px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: background 0.6s, color 0.6s;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.7,0,0.3,1);
}
.value-card > * { position: relative; z-index: 1; transition: color 0.4s; }
.value-card:hover::before { transform: translateY(0); }
.value-card:hover { color: var(--text-light); border-color: var(--bg-dark); }
.value-card:hover .value-num { color: var(--accent-green); }

.value-num {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 60px;
}
.value-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.value-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
    flex: 1;
}
.value-arrow {
    margin-top: 40px;
    font-size: 24px;
    color: var(--accent-clay);
    transition: transform 0.4s;
}
.value-card:hover .value-arrow {
    transform: translateX(8px);
    color: var(--accent-green);
}

@media (max-width: 1100px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .values-header { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 640px) {
    .values-grid { grid-template-columns: 1fr; }
}

/* =================================================
   TENNIS SECTION
   ================================================= */
.tennis-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background: #050505;
}
.tennis-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: brightness(0.5) saturate(1.4);
}
.tennis-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #050505 0%, rgba(5,5,5,0.85) 50%, #050505 100%);
}
.tennis-section .container { position: relative; z-index: 1; }

.tennis-header { text-align: center; margin-bottom: 100px; }
.tennis-header .section-label { justify-content: center; }
.tennis-pretitle {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-weight: 500;
}
.tennis-title {
    font-family: var(--serif);
    font-size: clamp(56px, 9vw, 160px);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.04em;
}
.tennis-title span { display: block; }
.tennis-title .italic { font-style: italic; font-weight: 400; }
.tennis-title .accent { color: var(--accent-green); }

.tennis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.tennis-lead {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.4;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 32px;
}
.tennis-paragraph {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245,245,240,0.7);
    margin-bottom: 20px;
}
.tennis-paragraph strong { color: var(--accent-green); font-weight: 600; }

.tennis-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tennis-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: rgba(245,245,240,0.85);
}

.tennis-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: 600px;
}
.tennis-gallery-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}
.tennis-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.tennis-gallery-item:hover img { transform: scale(1.08); }
.tennis-gallery-1 { grid-row: 1 / 2; }
.tennis-gallery-2 { grid-row: 1 / 3; grid-column: 2; }
.tennis-gallery-3 { grid-row: 2 / 3; }

/* BTN PRIMARY */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: var(--accent-green);
    color: var(--bg-dark);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,212,0,0.3); }
.btn-primary-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-primary-arrow { transform: translateX(4px); }
.btn-large { padding: 24px 44px; font-size: 14px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 24px 44px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s, border-color 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--text-light); }

@media (max-width: 980px) {
    .tennis-section { padding: 100px 0; }
    .tennis-content { grid-template-columns: 1fr; gap: 60px; }
    .tennis-gallery { height: 500px; }
}

/* =================================================
   CLASSEMENT TENNIS
   ================================================= */
.classement-section {
    position: relative;
    padding: 160px 0;
    background: var(--bg-darker);
    overflow: hidden;
}
.clt-glow {
    position: absolute;
    top: 8%;
    left: 50%;
    width: 720px;
    height: 720px;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--glow-yellow) 0%, transparent 62%);
    opacity: 0.18;
    pointer-events: none;
    filter: blur(20px);
}
.clt-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 100%;
    pointer-events: none;
}
.classement-section .container { position: relative; z-index: 2; }

.clt-header { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.clt-header .section-label { justify-content: center; }
.clt-pretitle {
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 18px;
}
.clt-title {
    font-family: var(--serif);
    font-size: clamp(40px, 7vw, 92px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-light);
}
.clt-title .italic { font-style: italic; }
.clt-title .accent { color: var(--accent-yellow); }
.clt-intro {
    margin: 28px auto 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
}
.clt-intro strong { color: var(--text-light); font-weight: 600; }

/* ----- Onglets ----- */
.clt-tabs {
    position: relative;
    display: inline-flex;
    margin-top: 40px;
    padding: 5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 100px;
}
.clt-tab {
    position: relative;
    z-index: 2;
    padding: 12px 34px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-radius: 100px;
    transition: color 0.35s ease;
}
.clt-tab.is-active { color: #0A0A0A; }
.clt-tab-indicator {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: 120px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    border-radius: 100px;
    box-shadow: 0 6px 20px var(--glow-yellow);
    transition: transform 0.45s cubic-bezier(0.65,0,0.35,1), width 0.45s cubic-bezier(0.65,0,0.35,1);
}

/* ----- Panneaux ----- */
.clt-panels { position: relative; }
.clt-panel { display: none; }
.clt-panel.is-active { display: block; }

/* ----- Podium ----- */
.clt-podium {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: end;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 28px;
}
.clt-pod {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 34px 24px 28px;
    text-align: center;
    overflow: hidden;
}
.clt-pod-1 {
    background: linear-gradient(180deg, rgba(255,212,0,0.16) 0%, rgba(255,212,0,0.03) 100%);
    border-color: rgba(255,212,0,0.5);
    padding-top: 48px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,212,0,0.15) inset;
}
.clt-pod-2, .clt-pod-3 { margin-bottom: 26px; }
.clt-pod-crown {
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    color: var(--accent-yellow);
    font-size: 22px;
    filter: drop-shadow(0 0 8px var(--glow-yellow));
}
.clt-pod-step {
    position: absolute;
    top: 14px; right: 18px;
    font-family: var(--serif);
    font-size: 70px;
    line-height: 1;
    font-weight: 600;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
}
.clt-pod-1 .clt-pod-step { color: rgba(255,212,0,0.18); }
.clt-pod-rank {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-yellow);
    margin-bottom: 14px;
}
.clt-pod-name {
    font-family: var(--serif);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.1;
}
.clt-pod-cat {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.3px;
}
.clt-pod-badge {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 22px;
    font-family: var(--display);
    font-size: 24px;
    font-weight: 800;
    color: #0A0A0A;
    background: linear-gradient(135deg, var(--accent-yellow-soft), var(--accent-yellow));
    border-radius: 10px;
    box-shadow: 0 8px 22px var(--glow-yellow);
}
.clt-pod-2 .clt-pod-badge, .clt-pod-3 .clt-pod-badge {
    color: var(--text-light);
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    border: 1px solid var(--line);
}
.clt-pod-trend {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.clt-pod-trend.up, .clt-row-trend.up { color: var(--accent-yellow); }
.clt-pod-trend.down, .clt-row-trend.down { color: #FF5A4D; }
.clt-pod-trend.eq, .clt-row-trend.eq { color: var(--text-muted); }

/* ----- Liste ----- */
.clt-list {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}
.clt-row {
    display: grid;
    grid-template-columns: 64px 1fr 150px 90px 40px;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease, padding-left 0.3s ease;
}
.clt-row:last-child { border-bottom: none; }
.clt-row:hover { background: rgba(255,212,0,0.05); padding-left: 36px; }
.clt-row-pos {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
}
.clt-row-name {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--text-light);
}
.clt-row-cat { font-size: 13px; color: var(--text-muted); }
.clt-row-badge {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-yellow);
    text-align: center;
}
.clt-row-trend { font-size: 14px; text-align: center; }

/* ----- Bande de stats ----- */
.clt-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 70px auto 0;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.clt-stat { text-align: center; }
.clt-stat-num {
    display: block;
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 600;
    color: var(--accent-yellow);
    line-height: 1;
}
.clt-stat-num.clt-rank { font-family: var(--display); font-weight: 800; }
.clt-stat-label {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.clt-note {
    text-align: center;
    margin-top: 40px;
    font-size: 12.5px;
    color: rgba(138,138,133,0.7);
    font-style: italic;
}

@media (max-width: 980px) {
    .classement-section { padding: 100px 0; }
    .clt-podium { grid-template-columns: 1fr; gap: 16px; max-width: 420px; }
    .clt-pod-1 { order: -1; }
    .clt-pod-2, .clt-pod-3 { margin-bottom: 0; }
    .clt-pod-step { font-size: 56px; }
    .clt-row { grid-template-columns: 44px 1fr 70px 30px; }
    .clt-row-cat { display: none; }
    .clt-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
}
@media (max-width: 480px) {
    .clt-tab { padding: 11px 26px; }
}

/* =================================================
   PICKLEBALL SECTION
   ================================================= */
.pickleball-section {
    position: relative;
    padding: 160px 0;
    background: var(--bg-cream);
    color: var(--text-dark);
    overflow: hidden;
}
.pickleball-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.pickleball-decor-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,179,0,0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}
.pickleball-decor-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,212,0,0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
}
.pickleball-section .container { position: relative; z-index: 1; }

.pickleball-header {
    text-align: center;
    margin-bottom: 80px;
}
.pickleball-header .section-label { justify-content: center; color: var(--text-dark); }
.pickleball-pretitle {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-weight: 600;
}
.pickleball-title {
    font-family: var(--serif);
    font-size: clamp(48px, 8vw, 140px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--text-dark);
}
.pickleball-title span { display: inline-block; }
.pb-line-1, .pb-line-2, .pb-line-4 { display: block; }
.pb-italic { font-style: italic; color: var(--accent-orange); }
.pb-circle-wrap {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    font-style: italic;
    color: var(--accent-orange);
}
.pb-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 130%;
    transform: translate(-50%, -50%);
    overflow: visible;
}

.pickleball-hero-image {
    position: relative;
    margin: 100px -40px 100px;
    height: 60vh;
    min-height: 480px;
    overflow: hidden;
    border-radius: 4px;
}
.pickleball-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pickleball-hero-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--accent-orange);
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

.pickleball-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 120px;
}
.pickleball-h3 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}
.pickleball-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0,0,0,0.7);
    margin-bottom: 20px;
}
.pickleball-text-lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-dark);
}
.pickleball-text strong { color: var(--accent-orange); font-weight: 600; }

.pickleball-rules { margin-bottom: 120px; }
.pickleball-rules .pickleball-h3 { margin-bottom: 50px; text-align: center; }
.pickleball-rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rule-card {
    background: white;
    padding: 36px 30px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s, box-shadow 0.4s;
}
.rule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.rule-num {
    display: inline-block;
    font-family: var(--serif);
    font-size: 14px;
    color: var(--accent-orange);
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 600;
}
.rule-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.rule-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,0.7);
}

.pickleball-why {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.pickleball-why-left img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 4px;
}
.pickleball-why-right .pickleball-h3 { margin-bottom: 30px; }
.pickleball-why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.pickleball-why-list li {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pb-bullet {
    font-size: 24px;
    color: var(--accent-orange);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.3;
}
.pickleball-why-list strong {
    display: block;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.pickleball-why-list p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,0.65);
}

.btn-pickleball {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 36px;
    background: var(--accent-orange);
    color: white;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-pickleball:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,179,0,0.4);
}
.btn-pickleball-arrow { transition: transform 0.3s; }
.btn-pickleball:hover .btn-pickleball-arrow { transform: translateX(4px); }

.pickleball-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pb-gallery-item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}
.pb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}
.pb-gallery-item:hover img { transform: scale(1.1); }

@media (max-width: 980px) {
    .pickleball-section { padding: 100px 0; }
    .pickleball-intro, .pickleball-why { grid-template-columns: 1fr; gap: 40px; }
    .pickleball-rules-grid { grid-template-columns: 1fr; }
    .pickleball-gallery { grid-template-columns: 1fr; }
}

/* =================================================
   COURTS SECTION
   ================================================= */
.courts-section {
    padding: 160px 0;
    background: var(--bg-dark);
    position: relative;
}
.courts-header { text-align: center; margin-bottom: 80px; }
.courts-header .section-label { justify-content: center; }
.courts-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 88px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.courts-title em { font-style: italic; color: var(--accent-green); }
.courts-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: rgba(245,245,240,0.7);
    line-height: 1.6;
}

.courts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.court-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #0F0F0F;
    border: 1px solid var(--line);
    transition: transform 0.5s;
}
.court-card:hover { transform: translateY(-6px); }
.court-card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    font-family: var(--serif);
    font-size: 14px;
    color: var(--accent-green);
    letter-spacing: 1px;
    font-weight: 600;
}
.court-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) saturate(1.2);
    transition: filter 0.5s, transform 0.6s;
}
.court-card:hover .court-card-img { filter: brightness(0.9); transform: scale(1.05); }
.court-card-body { padding: 24px 20px; }
.court-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 12px;
}
.court-tag-covered { background: var(--accent-green); color: var(--bg-dark); }
.court-tag-pickle { background: var(--accent-orange); color: white; }
.court-card-body h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.court-card-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .courts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .courts-grid { grid-template-columns: 1fr; }
}

/* =================================================
   PRICING
   ================================================= */
.pricing {
    padding: 160px 0;
    background: var(--bg-warm);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.pricing-header { text-align: center; margin-bottom: 80px; }
.pricing-header .section-label { justify-content: center; color: var(--text-light); }
.pricing-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 88px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.pricing-title em { font-style: italic; color: var(--accent-green); }
.pricing-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: rgba(245,245,240,0.7);
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.price-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s, background 0.5s;
}
.price-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.06);
}
.price-card-featured {
    background: linear-gradient(180deg, rgba(255,212,0,0.08) 0%, rgba(255,212,0,0.02) 100%);
    border-color: var(--accent-green);
}
.price-card-dark {
    background: var(--bg-dark);
    border-color: rgba(255,255,255,0.05);
}
.price-card-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.price-card-top { margin-bottom: 32px; }
.price-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.price-tag-pickle { background: var(--accent-orange); color: white; }
.price-tag-light { background: var(--accent-green); color: var(--bg-dark); }
.price-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-currency {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--accent-green);
}
.price-num {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}
.price-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 6px;
}
.price-list {
    margin-bottom: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-list li {
    font-size: 14px;
    color: rgba(245,245,240,0.85);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-list-light li { color: rgba(245,245,240,0.85); }
.price-btn {
    display: flex;
    justify-content: center;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.price-btn:hover {
    background: var(--accent-green);
    color: var(--bg-dark);
    border-color: var(--accent-green);
}
.price-btn-featured { background: var(--accent-green); color: var(--bg-dark); border-color: var(--accent-green); }
.price-btn-featured:hover { background: transparent; color: var(--accent-green); }
.price-btn-light { background: var(--accent-green); color: var(--bg-dark); border-color: var(--accent-green); }

.pricing-note {
    text-align: center;
    margin-top: 60px;
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 980px) {
    .pricing { padding: 100px 0; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* =================================================
   SCHEDULE & TEAM
   ================================================= */
.schedule-section {
    padding: 140px 0;
    background: var(--bg-dark);
}
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.schedule-block { padding: 40px 0; }
.schedule-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.schedule-list, .team-list {
    margin-bottom: 30px;
}
.schedule-row, .team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.schedule-day, .team-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}
.schedule-time, .team-role {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-green);
    font-weight: 500;
}
.schedule-row-highlight {
    background: rgba(255,212,0,0.04);
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom-color: var(--accent-green);
}
.team-row .team-role { color: var(--text-muted); }

.schedule-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
}

@media (max-width: 980px) {
    .schedule-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* =================================================
   ACTUALITÉS
   ================================================= */
.actu-section {
    padding: 160px 0;
    background: var(--bg-cream);
    color: var(--text-dark);
}
.actu-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 80px;
    gap: 40px;
}
.actu-header .section-label { color: var(--text-dark); margin-bottom: 0; }
.actu-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 88px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}
.actu-title em { font-style: italic; color: var(--accent-clay); }
.actu-fb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid var(--text-dark);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-dark);
    justify-self: end;
    transition: background 0.3s, color 0.3s;
}
.actu-fb-link:hover { background: var(--text-dark); color: var(--text-light); }

.actu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.actu-card {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s;
    display: flex;
    flex-direction: column;
}
.actu-card:hover { transform: translateY(-6px); }
.actu-card-large { grid-column: 1 / 3; grid-row: 1 / 3; flex-direction: row; }
.actu-card-large .actu-card-img { width: 50%; height: 100%; min-height: 400px; }
.actu-card-large .actu-card-content { width: 50%; padding: 50px 40px; justify-content: center; }
.actu-card-large h3 { font-size: 32px; }

.actu-card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}
.actu-card:hover .actu-card-img { transform: scale(1.04); }

.actu-card-content {
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.actu-date {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}
.actu-cat {
    display: inline-block;
    padding: 4px 10px;
    background: var(--text-dark);
    color: var(--bg-cream);
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 4px;
}
.actu-cat-pickle { background: var(--accent-orange); color: white; }
.actu-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.actu-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,0.65);
    flex: 1;
}
.actu-readmore {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--accent-clay);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 16px;
    transition: gap 0.3s;
}
.actu-card:hover .actu-readmore { color: var(--text-dark); }

@media (max-width: 980px) {
    .actu-header { grid-template-columns: 1fr; align-items: start; }
    .actu-fb-link { justify-self: start; }
    .actu-grid { grid-template-columns: 1fr; }
    .actu-card-large { grid-column: auto; grid-row: auto; flex-direction: column; }
    .actu-card-large .actu-card-img,
    .actu-card-large .actu-card-content { width: 100%; }
    .actu-card-large h3 { font-size: 24px; }
}

/* =================================================
   CTA SECTION
   ================================================= */
.cta-section {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
}
.cta-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(1.4);
    transform: scale(1.05);
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.8) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}
.cta-section .section-label { justify-content: center; margin-bottom: 30px; }
.cta-title {
    font-family: var(--serif);
    font-size: clamp(56px, 9vw, 160px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}
.cta-title span { display: block; }
.cta-title .italic { font-style: italic; font-weight: 400; }
.cta-title .accent { color: var(--accent-green); font-style: italic; }
.cta-sub {
    font-size: 18px;
    color: rgba(245,245,240,0.75);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================================
   CONTACT
   ================================================= */
.contact {
    padding: 160px 0;
    background: var(--bg-dark);
}
.contact-header { margin-bottom: 80px; }
.contact-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 88px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}
.contact-title em { font-style: italic; color: var(--accent-green); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.contact-info-block h3 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 14px;
    font-weight: 600;
}
.contact-info-block p {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.4;
    color: var(--text-light);
}
.contact-info-block a { transition: color 0.3s; }
.contact-info-block a:hover { color: var(--accent-green); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-field label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    color: var(--text-light);
    font-family: var(--body);
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-green);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--bg-dark); color: var(--text-light); }

.form-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 36px;
    background: var(--accent-green);
    color: var(--bg-dark);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,212,0,0.3); }

@media (max-width: 980px) {
    .contact { padding: 100px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .form-row { grid-template-columns: 1fr; }
}

/* =================================================
   FOOTER
   ================================================= */
.footer {
    position: relative;
    background: var(--bg-darker);
    color: var(--text-light);
    overflow: hidden;
}
.footer-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-top {
    padding: 100px 0 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}
.footer-tagline {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.4;
    font-style: italic;
    color: rgba(245,245,240,0.8);
    max-width: 320px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 10px;
    font-weight: 600;
}
.footer-col a, .footer-col p {
    font-size: 14px;
    color: rgba(245,245,240,0.7);
    line-height: 1.5;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--text-light); }

.footer-marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    overflow: hidden;
}
.footer-marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 60px;
    padding-right: 60px;
    white-space: nowrap;
}
.footer-marquee-track span {
    font-family: var(--serif);
    font-size: clamp(28px, 4.5vw, 64px);
    font-weight: 500;
    font-style: italic;
    color: var(--text-light);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 30px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-legal { margin-top: 6px; }
.footer-legal a { color: var(--text-muted); margin: 0 4px; transition: color 0.3s; }
.footer-legal a:hover { color: var(--accent-green); }
.footer-bottom-right p { display: flex; align-items: center; gap: 6px; }
.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
    font-weight: 600;
    transition: color 0.3s;
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
}
.footer-credit svg { transition: transform 0.3s; }
.footer-credit:hover svg { transform: translate(2px, -2px); }

@media (max-width: 980px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr; padding: 60px 0 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =================================================
   REVEAL ANIMATIONS HELPER
   ================================================= */
.reveal-text {
    overflow: hidden;
}
.reveal-line {
    display: block;
    overflow: hidden;
}

/* =================================================
   SCROLLBAR
   ================================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0F0F0F; }
::-webkit-scrollbar-thumb { background: var(--accent-green); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-green-dark); }

::selection { background: var(--accent-green); color: var(--bg-dark); }

/* =================================================
   MOBILE FIXES
   ================================================= */
@media (max-width: 640px) {
    .container { padding: 0 24px; }
    .navbar-inner { padding: 0 24px; }
    .hero-inner { padding: 120px 24px 40px; }
    .hero-stats { gap: 30px; flex-wrap: wrap; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .menu-link { gap: 16px; }
    .pickleball-hero-image { margin: 60px -24px; }
    .footer-marquee-track { gap: 30px; }
}
