/* ========================================================================
   SCBT BRON — Complete Stylesheet
   Direction Artistique: Verbatim + Montserrat, Navy/Gold/White
   Sharp edges, noise overlays, editorial design language
   ======================================================================== */

/* ========================================================================
   SECTION 1: RESET + VARIABLES + FONTS + GLOBAL UTILITIES
   ======================================================================== */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-Thin.woff2') format('woff2'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-ThinOblique.woff2') format('woff2'); font-weight: 100; font-style: oblique; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-LightOblique.woff2') format('woff2'); font-weight: 300; font-style: oblique; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-Oblique.woff2') format('woff2'); font-weight: 400; font-style: oblique; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-MediumOblique.woff2') format('woff2'); font-weight: 500; font-style: oblique; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-BoldOblique.woff2') format('woff2'); font-weight: 700; font-style: oblique; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Verbatim'; src: url('../fonts/Verbatim-BlackOblique.woff2') format('woff2'); font-weight: 900; font-style: oblique; font-display: swap; }

/* ── CSS Variables ── */
:root {
    --navy-deep: #0B1426;
    --navy: #132039;
    --blue-primary: #006DA6;
    --blue-accent: #006DA6;
    --blue-light: #3391C4;
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --gray-100: #F1F5F9;
    --gray-400: #94A3B8;
    --bg-main: #FFFFFF;
    --bg-alt: #EDF2F8;
    --bg-card: #F5F8FC;
    --white: #FFFFFF;
    --text-primary: #000000;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    --danger: #EF4444;
    --danger-light: #FEE2E2;
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --info: #3B82F6;
    --info-light: #DBEAFE;
    --font-heading: 'Verbatim', 'Arial Black', sans-serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
    --font-verbatim: 'Verbatim', 'Arial Black', sans-serif;
    --font-montserrat: 'Montserrat', system-ui, sans-serif;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 3px rgba(11,20,38,0.06);
    --shadow-md: 0 4px 16px rgba(11,20,38,0.08);
    --shadow-lg: 0 8px 32px rgba(11,20,38,0.12);
    --shadow-xl: 0 16px 48px rgba(11,20,38,0.16);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    background: var(--white);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Noise Overlay (pseudo-element) ── */
.noise-overlay { position: relative; }
.noise-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ── Noise overlay as separate div ── */
.noise-overlay-div {
    position: absolute; inset: 0;
    opacity: 0.04; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px;
}

/* ── Card Cut Corners (clip-path) ── */
.card-cut-corner {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.card-cut-lg {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}

/* ── Stripe Pattern ── */
.stripe-pattern {
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, var(--blue-primary) 8px, var(--blue-primary) 10px);
}

/* ── Lion Watermark ── */
.lion-watermark {
    background-image: url('../images/lion-watermark.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.lion-watermark-light {
    background-image: url('../images/lion-watermark.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(52%) sepia(15%) saturate(600%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* ── Scrollbar ── */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 4px; }

/* ── Animations ── */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.1; }
}
@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@keyframes skeleton-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes preloaderLogoIn {
    to { opacity: 1; transform: scale(1); }
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.1; }
}
@keyframes preloaderFadeIn {
    to { opacity: 1; }
}
@keyframes preloaderFadeHalf {
    to { opacity: 0.4; }
}
@keyframes preloaderLetterIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderScaleX {
    to { transform: scaleX(1); }
}
@keyframes preloaderScaleY {
    to { transform: scaleY(1); }
}
@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes fresqueReveal {
    0% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Stagger Children Animation ── */
.stagger-children > * {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.revealed > * { opacity: 1; transform: translateY(0); }

/* ── Utility Classes ── */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-secondary); font-size: 0.875rem; }
.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.6);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.font-heading { font-family: var(--font-heading); }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.1; }
.text-body { font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary); }
.text-small { font-size: 0.8rem; }
.text-detail { font-size: 0.85rem; line-height: 1.7; }
.link-primary { display: inline-block; color: var(--blue-primary); font-size: 0.85rem; }
.link-primary:hover { color: var(--navy-deep); }

/* ── Utility Spacing ── */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.py-6 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.w-full { width: 100%; }

/* GPU perf for marquees */
.marquee-track, .partners-track { will-change: transform; }


/* ========================================================================
   SECTION 2: HOMEPAGE-SPECIFIC STYLES
   ======================================================================== */

/* ── 2.1 PRELOADER ── */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; will-change: transform;
    background: var(--navy-deep);
}
.preloader.done { display: none; }

/* Fresque — blurred & zoomed, synced with JS */
.preloader-fresque {
    position: absolute; inset: 0; z-index: 1;
    will-change: filter, transform;
}
.preloader-fresque img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    display: block;
}

/* Navy overlay */
.preloader-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: var(--navy-deep);
    will-change: opacity;
}

/* Content */
.preloader-content {
    position: relative; z-index: 5;
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    will-change: opacity, transform;
}
.preloader-content.out {
    opacity: 0; transform: scale(0.9) translateY(-8px);
    transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

/* Logo */
.preloader-logo-wrap {
    position: relative; display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.7);
    animation: preloaderLogoIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.preloader-glow {
    position: absolute; inset: -30px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.25) 0%, transparent 70%);
    animation: preloaderPulse 2.5s ease-in-out infinite;
}
.preloader-logo {
    position: relative; z-index: 10;
    filter: drop-shadow(0 0 18px rgba(212, 168, 67, 0.3));
}

/* Progress Bar */
.preloader-bar-wrap {
    width: 16rem; display: flex; flex-direction: column;
    align-items: center; gap: 0.75rem;
    opacity: 0; animation: preloaderFadeIn 0.5s ease 0.5s forwards;
}
.preloader-bar-track {
    width: 100%; height: 2px; border-radius: 1px;
    background: rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
}
.preloader-bar-fill {
    position: absolute; top: 0; left: 0; bottom: 0; width: 0%;
    background: linear-gradient(90deg, var(--gold), #E8C96A);
    border-radius: 1px;
    box-shadow: 0 0 18px 3px rgba(212, 168, 67, 0.3);
}
.preloader-pct {
    font-size: 0.6rem; color: rgba(255,255,255,0.2);
    font-family: var(--font-body); font-variant-numeric: tabular-nums;
    letter-spacing: 0.2em;
    opacity: 0; animation: preloaderFadeIn 0.4s ease 0.7s forwards;
}

/* Club Name Letters */
.preloader-name {
    display: flex; flex-wrap: wrap; justify-content: center; max-width: 90vw;
    opacity: 0; animation: preloaderFadeIn 0.4s ease 0.6s forwards;
}
.preloader-name span {
    display: inline-block;
    font-size: 0.55rem; letter-spacing: 0.4em;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-heading); font-weight: 700;
    text-transform: uppercase;
    opacity: 0; transform: translateY(5px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.preloader-name span.visible { opacity: 1; transform: translateY(0); }

/* Corner accents */
.preloader-corner {
    position: absolute; background: rgba(212,168,67,0.12); z-index: 6;
}
.preloader-c1 { top: 2.5rem; left: 2.5rem; width: 2.5rem; height: 1px; transform: scaleX(0); transform-origin: left; animation: preloaderScaleX 0.8s ease 1s forwards; }
.preloader-c2 { top: 2.5rem; left: 2.5rem; height: 2.5rem; width: 1px; transform: scaleY(0); transform-origin: top; animation: preloaderScaleY 0.8s ease 1s forwards; }
.preloader-c3 { bottom: 2.5rem; right: 2.5rem; width: 2.5rem; height: 1px; transform: scaleX(0); transform-origin: right; animation: preloaderScaleX 0.8s ease 1.1s forwards; }
.preloader-c4 { bottom: 2.5rem; right: 2.5rem; height: 2.5rem; width: 1px; transform: scaleY(0); transform-origin: bottom; animation: preloaderScaleY 0.8s ease 1.1s forwards; }
.preloader-corner.out { opacity: 0; transition: opacity 0.3s ease; }


/* ── 2.2 HERO SECTION ── */
.hero-final {
    position: relative; height: 100svh; min-height: 600px;
    overflow: hidden; display: flex; flex-direction: column;
    justify-content: flex-end;
}
@media (min-width: 640px) {
    .hero-final { justify-content: center; }
}

/* Hero video/image background */
.hero-bg {
    position: absolute; inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    transform: scale(1);
}
.hero-video-wrap {
    position: absolute; inset: 0;
    transform: scale(1.1);
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-video-wrap.loaded { transform: scale(1); }
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(11, 20, 38, 0.65);
}

/* Hero Content */
.hero-content {
    position: relative; z-index: 20;
    display: flex; height: 100%; flex-direction: column;
    justify-content: flex-end;
    padding: 0 1.25rem 6rem;
}
@media (min-width: 640px) {
    .hero-content { padding: 0 2rem 8rem; }
}
@media (min-width: 768px) { .hero-content { padding: 0 4rem 9rem; } }
@media (min-width: 1024px) { .hero-content { padding: 0 6rem 10rem; } }
.hero-content-inner { max-width: 72rem; }

/* Hero Pretitle */
.hero-pretitle {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.75rem; overflow: hidden;
}
@media (min-width: 640px) { .hero-pretitle { margin-bottom: 1rem; gap: 1rem; } }
.gold-line {
    height: 2px; width: 2rem; background: var(--gold);
}
@media (min-width: 640px) { .gold-line { width: 3rem; } }
.hero-pretitle span:last-child {
    font-family: var(--font-heading);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
}
@media (min-width: 640px) {
    .hero-pretitle span:last-child { font-size: 0.75rem; letter-spacing: 0.4em; }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 9vw; text-transform: uppercase;
    line-height: 0.85; letter-spacing: -0.05em;
    background: linear-gradient(to bottom right, #FFFFFF 40%, rgba(212,168,67,0.5) 75%, rgba(212,168,67,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (min-width: 640px) { .hero-title { font-size: 8vw; } }
@media (min-width: 768px) { .hero-title { font-size: 7vw; } }
@media (min-width: 1024px) { .hero-title { font-size: 6.5vw; } }
/* letter animation removed — gradient bg-clip incompatible with child spans */

/* Hero Subtitle */
.hero-subtitle {
    margin-top: 0.75rem; max-width: 28rem;
    font-family: var(--font-body); font-size: 0.875rem;
    line-height: 1.625; color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) { .hero-subtitle { margin-top: 1rem; max-width: 32rem; font-size: 1rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.125rem; } }

/* Hero CTAs */
.hero-ctas {
    margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem;
}
@media (min-width: 640px) { .hero-ctas { margin-top: 1.25rem; gap: 1rem; } }

.btn-hero-primary {
    display: inline-block;
    background: var(--white); color: var(--navy-deep);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.025em;
    transition: background-color 0.3s;
}
.btn-hero-primary:hover { background: var(--gold); }
@media (min-width: 640px) {
    .btn-hero-primary { padding: 1rem 2.5rem; font-size: 0.875rem; }
}
.btn-hero-secondary {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.025em;
    transition: all 0.3s;
}
.btn-hero-secondary:hover { border-color: var(--white); color: var(--white); }
@media (min-width: 640px) {
    .btn-hero-secondary { padding: 1rem 2.5rem; font-size: 0.875rem; }
}

/* Hero Marquee */
.hero-marquee {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(11,20,38,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.625rem 0;
}
@media (min-width: 640px) { .hero-marquee { padding: 0.75rem 0; } }
.marquee-track {
    display: flex; align-items: center; white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    font-family: var(--font-heading); font-size: 10px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; color: rgba(255,255,255,0.15);
    margin: 0 1.5rem; flex-shrink: 0;
}
@media (min-width: 640px) {
    .marquee-track span { margin: 0 2rem; font-size: 0.875rem; letter-spacing: 0.3em; }
}

/* Hero Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 4rem; right: 2rem; z-index: 30;
    display: none; flex-direction: column; align-items: center; gap: 0.5rem;
}
@media (min-width: 768px) { .scroll-indicator { display: flex; right: 3rem; } }
.scroll-indicator span {
    font-family: var(--font-heading); font-size: 9px;
    text-transform: uppercase; letter-spacing: 0.4em;
    color: rgba(255,255,255,0.3); writing-mode: vertical-lr;
}
.scroll-indicator .scroll-line {
    height: 3rem; width: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: bounce-scroll 2s ease-in-out infinite;
}

/* Hero Year Text */
.hero-year {
    position: absolute; top: 1.5rem; right: 1.25rem; z-index: 30;
    font-family: var(--font-heading); font-size: 10px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.3em; color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) { .hero-year { top: 2rem; right: 2rem; font-size: 0.875rem; letter-spacing: 0.4em; } }
@media (min-width: 768px) { .hero-year { right: 3rem; } }


/* ── 2.3 MANIFESTO SECTION ── */
.manifesto {
    position: relative;
    height: 200vh;
}
.manifesto-sticky {
    position: sticky; top: 0;
    display: flex; align-items: center;
    height: 100vh; overflow: hidden;
}
.manifesto-bg {
    position: absolute; inset: 0;
    background: var(--white);
}
.manifesto-watermark {
    position: absolute; inset: 0;
    background-image: url('../images/lion-watermark.svg');
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: 85% center;
    opacity: 0.04;
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(52%) sepia(15%) saturate(600%) hue-rotate(180deg) brightness(95%) contrast(90%);
}
.manifesto-inner {
    position: relative; z-index: 10;
    max-width: 56rem; margin: 0 auto;
    padding: 0 2rem;
}
@media (min-width: 768px) { .manifesto-inner { padding: 0 4rem; } }
.manifesto-gold-line {
    height: 2px; width: 0%;
    background: var(--gold);
    margin-bottom: 2.5rem;
    transition: width 0.05s linear;
}
.manifesto-text {
    font-size: 1.875rem; line-height: 1.625;
}
@media (min-width: 768px) { .manifesto-text { font-size: 3rem; } }
@media (min-width: 1024px) { .manifesto-text { font-size: 3.75rem; } }
.mw {
    display: inline-block; margin-right: 0.3em;
    opacity: 0.15; transition: opacity 0.2s ease, transform 0.2s ease;
    font-family: var(--font-body); font-weight: 500;
    color: var(--navy-deep);
}
.mw.accent {
    font-family: var(--font-heading); font-weight: 900;
    color: var(--blue-primary);
}
.mw.revealed { opacity: 1; }

/* Manifesto signature — mobile only (hidden on desktop) */
.manifesto-signature { display: none; }


/* ── 2.4 STATS BANNER (MarqueeBanner) ── */
.stats-banner {
    position: relative; overflow: hidden;
    background: var(--navy-deep);
    padding: 2.5rem 0;
}
@media (min-width: 768px) { .stats-banner { padding: 3.5rem 0; } }

/* Ghost text rows — overflow handled by parent .stats-banner so the
   clip-rect doesn't move with the translate */
.stats-ghost-row {
    margin-bottom: 0.75rem; white-space: nowrap;
    will-change: transform;
}
.stats-ghost-text {
    display: inline-block;
    font-family: var(--font-heading); font-size: 8vw;
    font-weight: 900; text-transform: uppercase;
    line-height: 1; letter-spacing: -0.05em;
    color: rgba(255,255,255,0.04);
}
@media (min-width: 768px) { .stats-ghost-text { font-size: 6vw; } }
.stats-ghost-row-bottom { margin-top: 0.75rem; margin-bottom: 0; }

/* Center stats */
.stats-content {
    position: relative; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; padding: 0 2rem;
}
@media (min-width: 768px) { .stats-content { gap: 4rem; } }
.stats-divider {
    display: none; height: 1px; flex: 1;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1));
}
.stats-divider-right {
    background: linear-gradient(to left, transparent, rgba(255,255,255,0.1));
}
@media (min-width: 768px) { .stats-divider { display: block; } }
.stats-items { display: flex; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .stats-items { gap: 3rem; } }
.stat-block { text-align: center; }
.stat-value {
    display: block; font-family: var(--font-heading);
    font-weight: 900; font-size: 1.875rem;
    letter-spacing: -0.05em; color: var(--white);
}
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label {
    display: block; font-family: var(--font-heading);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
}
@media (min-width: 768px) { .stat-label { font-size: 10px; } }


/* ── 2.5 CALENDAR SECTION ── */
.calendar-section {
    position: relative; overflow: hidden;
    background: var(--navy-deep);
    padding: 4rem 1rem;
}
@media (min-width: 640px) { .calendar-section { padding: 6rem 1rem; } }
.calendar-inner { position: relative; z-index: 2; max-width: 80rem; margin: 0 auto; }
.calendar-deco-dots {
    position: absolute; top: 2rem; right: 2rem;
    width: 120px; height: 120px;
    opacity: 0.08; pointer-events: none; display: none;
}
@media (min-width: 768px) { .calendar-deco-dots { display: block; width: 160px; height: 160px; } }
.calendar-header {
    display: flex; flex-direction: column; gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) {
    .calendar-header {
        flex-direction: row; align-items: flex-end;
        justify-content: space-between; margin-bottom: 3rem;
    }
}
.calendar-header-left { display: flex; align-items: center; gap: 1.25rem; }
.calendar-deco-chevron { opacity: 0.15; display: none; width: 36px; height: 36px; }
@media (min-width: 768px) { .calendar-deco-chevron { display: block; } }
.calendar-label {
    display: block; margin-bottom: 0.5rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; color: var(--gold);
}
@media (min-width: 640px) { .calendar-label { font-size: 0.875rem; } }
.calendar-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 2.5rem; text-transform: uppercase;
    line-height: 0.85; letter-spacing: -0.025em;
    color: var(--white);
}
@media (min-width: 480px) { .calendar-title { font-size: 3rem; } }
@media (min-width: 640px) { .calendar-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .calendar-title { font-size: 4.5rem; } }

/* Calendar Dropdown */
.calendar-dropdown { position: relative; }
.calendar-dropdown-btn {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--navy-deep); color: var(--white);
    padding: 0.625rem 1rem; transition: background-color 0.2s;
}
@media (min-width: 640px) {
    .calendar-dropdown-btn { gap: 0.75rem; padding: 0.75rem 1.25rem; }
}
.calendar-dropdown-btn:hover { background: var(--blue-primary); }
.calendar-dropdown-label {
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (min-width: 640px) { .calendar-dropdown-label { font-size: 0.875rem; } }
.calendar-dropdown-count {
    font-size: 10px; color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) { .calendar-dropdown-count { font-size: 0.75rem; } }
.calendar-dropdown-arrow {
    color: rgba(255,255,255,0.6); transition: transform 0.2s;
    width: 1rem; height: 1rem;
}
.calendar-dropdown-arrow.open { transform: rotate(180deg); }
.calendar-dropdown-menu {
    display: none; position: absolute; right: 0; top: 100%;
    z-index: 20; margin-top: 0.5rem; width: 16rem;
    background: var(--navy-deep); box-shadow: var(--shadow-xl);
    padding: 0.25rem 0;
}
.calendar-dropdown-menu.open { display: block; }
.calendar-dropdown-menu button {
    display: flex; width: 100%; align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem; text-align: left;
    font-family: var(--font-heading); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: #d1d5db; transition: background-color 0.15s;
}
.calendar-dropdown-menu button:hover { background: rgba(255,255,255,0.05); }
.calendar-dropdown-menu button.active {
    background: rgba(0,109,166,0.2); font-weight: 700; color: var(--white);
}
.calendar-dropdown-menu button .cat-count {
    font-size: 0.75rem; color: #6b7280;
}

/* Match Cards */
.calendar-cards-wrap { position: relative; }
.calendar-cards {
    display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
}
.match-card {
    flex-shrink: 0; display: flex; flex-direction: column;
    min-width: 165px; width: 165px;
    border: 1px solid rgba(0,109,166,0.1);
    background: var(--white); box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}
@media (min-width: 640px) { .match-card { min-width: 300px; width: 300px; } }
.match-card:hover { transform: translateY(-6px); }
.match-card-inner {
    display: flex; flex-direction: column;
    gap: 0.75rem; padding: 0.75rem 0.75rem 1rem;
}
@media (min-width: 640px) {
    .match-card-inner { gap: 1.25rem; padding: 1.25rem 1.25rem 1.5rem; }
}
.match-card-header {
    display: flex; flex-direction: column; gap: 0.25rem;
}
@media (min-width: 640px) {
    .match-card-header { flex-direction: row; align-items: center; gap: 1rem; }
}
.match-badge {
    align-self: flex-start;
    border: 1px solid rgba(11,20,38,0.2);
    padding: 0.125rem 0.375rem;
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--navy-deep);
}
@media (min-width: 640px) { .match-badge { padding: 0.125rem 0.625rem; font-size: 11px; } }
.match-date {
    font-family: var(--font-heading); font-size: 11px;
    font-weight: 500; color: #6b7280;
}
@media (min-width: 640px) { .match-date { font-size: 13px; } }
.match-teams { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) { .match-teams { gap: 0.75rem; } }
.match-team {
    display: flex; align-items: center; gap: 0.5rem;
}
@media (min-width: 640px) { .match-team { gap: 0.75rem; } }
.match-team-logo {
    display: flex; align-items: center; justify-content: center;
    width: 1.75rem; height: 1.75rem; flex-shrink: 0;
    background: var(--gray-100); border-radius: 50%;
    font-size: 8px; font-weight: 700; color: var(--gray-400);
}
@media (min-width: 640px) { .match-team-logo { width: 2.5rem; height: 2.5rem; font-size: 10px; } }
.match-team-logo img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}
.match-team-name {
    flex: 1; font-family: var(--font-heading);
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.05em; line-height: 1.1;
    font-weight: 500; color: #4b5563;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (min-width: 640px) { .match-team-name { font-size: 1rem; } }
.match-team-name.is-scbt { font-weight: 700; color: var(--navy-deep); }

/* Calendar Empty State */
.calendar-empty {
    display: flex; height: 10rem; width: 100%;
    align-items: center; justify-content: center;
}
.calendar-empty p {
    font-family: var(--font-heading); font-size: 0.875rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--gray-400);
}

/* Skeleton loader */
.skeleton-pulse { animation: skeleton-pulse 2s ease-in-out infinite; }


/* ── 2.6 NEWS SECTION ── */
.news-section {
    position: relative; overflow: hidden;
    background: var(--bg-alt);
    padding: 2rem 1rem 6rem;
}
.news-diagonal-top {
    position: absolute; top: 0; left: 0; right: 0; z-index: 1;
    line-height: 0;
}
.news-deco-bottom {
    position: absolute; bottom: 3rem; right: 2rem;
    width: 80px; height: 60px;
    opacity: 0.1; pointer-events: none; display: none;
}
@media (min-width: 768px) { .news-deco-bottom { display: block; } }
.news-inner { position: relative; z-index: 2; max-width: 80rem; margin: 0 auto; padding-top: 0; }

/* News Header */
.news-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3rem;
}
.news-header-left { display: flex; align-items: center; gap: 1.25rem; }
.news-deco-chevron { opacity: 0.2; display: none; }
@media (min-width: 768px) { .news-deco-chevron { display: block; } }
.news-label {
    display: block; margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; color: var(--gold);
}
.news-title-giant {
    font-family: var(--font-heading);
    font-size: 3rem; font-weight: 900;
    text-transform: uppercase; line-height: 0.85;
    letter-spacing: -0.025em; color: var(--navy-deep);
}
@media (min-width: 768px) { .news-title-giant { font-size: 4.5rem; } }
.news-link {
    font-family: var(--font-heading);
    font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--blue-primary);
    text-decoration: none; white-space: nowrap;
    transition: color 0.2s;
}
.news-link:hover { color: var(--blue-light); }

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .news-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* News Card */
a.news-card-link { text-decoration: none; color: inherit; display: block; }
.news-card {
    display: block; text-decoration: none; color: inherit;
    position: relative; cursor: pointer; overflow: hidden;
    height: 220px;
    transition: transform 0.2s ease;
}
@media (min-width: 768px) { .news-card { height: 260px; } }
.news-card:hover { transform: translateY(-6px); }
.news-card.featured {
    min-height: 480px; height: 100%;
}
@media (min-width: 1024px) {
    .news-card-wrap.featured-wrap { grid-column: 1 / 3; grid-row: 1 / 3; }
    .news-card-wrap.featured-wrap .news-card { height: 100%; }
}

/* News Card Image */
.news-card-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-img { transform: scale(1.05); }

/* News Card Gradient Overlay (matches Next.js: from-navy-deep via-navy-deep/60 to-navy-deep/20) */
.news-card-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--navy-deep) 0%, rgba(11,20,38,0.6) 50%, rgba(11,20,38,0.2) 100%);
}

/* Noise on cards */
.news-card::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    opacity: 0.04; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* Stripe accent on featured */
.news-card-stripe {
    position: absolute; top: 0; right: 0; z-index: 2;
    width: 6rem; height: 6rem; opacity: 0.1;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, var(--blue-primary) 8px, var(--blue-primary) 10px);
}

/* Card content */
.news-card-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
    height: 100%; padding: 1.5rem;
}

/* News Badge Colors */
.news-card-badge {
    margin-bottom: 0.75rem; width: fit-content;
    padding: 0.25rem 0.75rem;
    font-size: 10px; font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.05em; color: white;
}
.news-card-badge.cat-match { background: var(--blue-primary); }
.news-card-badge.cat-club { background: var(--gold); }
.news-card-badge.cat-jeunes, .news-card-badge.cat-formation { background: #10b981; }
.news-card-badge.cat-partenaire { background: #8b5cf6; }
.news-card-badge.cat-general { background: var(--blue-primary); }

/* Card title */
.news-card-title {
    font-family: var(--font-heading);
    font-weight: 900; text-transform: uppercase;
    line-height: 0.95; letter-spacing: -0.025em;
    color: white; font-size: 1.125rem;
}
@media (min-width: 768px) { .news-card-title { font-size: 1.25rem; } }
.news-card.featured .news-card-title {
    font-size: 1.875rem;
}
@media (min-width: 768px) { .news-card.featured .news-card-title { font-size: 2.25rem; } }

/* Date line */
.news-card-date-line {
    display: flex; align-items: center; gap: 0.75rem;
    margin-top: 1rem;
}
.news-card-date-bar { width: 2rem; height: 2px; background: var(--gold); }
.news-card-date {
    font-family: var(--font-heading);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: rgba(255,255,255,0.5);
}

/* Hover overlay */
.news-card-hover {
    position: absolute; inset: 0; z-index: 3;
    background: transparent; transition: background 0.3s;
    pointer-events: none;
}
.news-card:hover .news-card-hover { background: rgba(0,109,166,0.15); }

/* Grid Wrappers */
.news-card-wrap { min-height: 0; }


/* ── 2.7 EVENTS SECTION ── */
.events-final {
    position: relative; overflow: hidden;
    background: var(--white);
    padding: 4rem 1rem;
}
@media (min-width: 640px) { .events-final { padding: 6rem 1.5rem; } }
@media (min-width: 768px) { .events-final { padding: 8rem 3rem; } }
.events-final-inner {
    position: relative; z-index: 10;
    max-width: 72rem; margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .events-final-inner { padding: 0 1.5rem; } }
@media (min-width: 768px) { .events-final-inner { padding: 0 3rem; } }

/* Ghost text */
.events-ghost {
    position: absolute; top: 50%; left: 0;
    transform: translateY(-50%);
    white-space: nowrap; pointer-events: none;
    will-change: transform;
}
.events-ghost span {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 20vw; font-weight: 900; text-transform: uppercase;
    line-height: 1; letter-spacing: -0.05em;
    color: rgba(11,20,38,0.02);
}

/* Deco dots */
.events-deco-dots {
    position: absolute; top: 4rem; right: 2rem;
    opacity: 0.04; pointer-events: none;
    display: none;
}
@media (min-width: 768px) { .events-deco-dots { display: block; } }

/* Events Header */
.events-header { margin-bottom: 2.5rem; }
@media (min-width: 640px) { .events-header { margin-bottom: 3.5rem; } }
@media (min-width: 768px) { .events-header { margin-bottom: 4rem; } }
.events-header-accent {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.events-gold-bar { width: 2rem; height: 2px; background: var(--gold); }
.events-label {
    font-family: var(--font-heading);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.3em; color: var(--gold);
}
.events-title-giant {
    font-family: var(--font-heading);
    font-size: 2.25rem; font-weight: 900;
    text-transform: uppercase; line-height: 0.85;
    letter-spacing: -0.05em; color: var(--navy-deep);
}
@media (min-width: 640px) { .events-title-giant { font-size: 3rem; } }
@media (min-width: 768px) { .events-title-giant { font-size: 3.75rem; } }
@media (min-width: 1024px) { .events-title-giant { font-size: 6rem; } }

/* Featured Event Card */
.evt-featured {
    cursor: pointer; perspective: 1000px;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .evt-featured { margin-bottom: 3rem; } }
.evt-featured-inner {
    position: relative; display: flex;
    flex-direction: column; overflow: hidden;
    min-height: 280px;
    transition: transform 0.15s ease;
    transform-style: preserve-3d;
}
@media (min-width: 640px) { .evt-featured-inner { min-height: 340px; } }
@media (min-width: 1024px) { .evt-featured-inner { flex-direction: row; min-height: 400px; } }

/* Event Featured Date Side */
.evt-featured-date {
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-alt);
    padding: 2.5rem 2rem;
}
@media (min-width: 1024px) { .evt-featured-date { width: 35%; padding: 0 2rem; } }
.evt-featured-day {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 80px; font-weight: 900; line-height: 1;
    letter-spacing: -0.05em; color: var(--navy-deep);
    display: block; text-align: center;
}
@media (min-width: 640px) { .evt-featured-day { font-size: 100px; } }
@media (min-width: 1024px) { .evt-featured-day { font-size: 140px; text-align: left; } }
.evt-featured-month {
    display: block;
    font-family: var(--font-verbatim), sans-serif;
    font-size: 1.25rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(11,20,38,0.3);
    text-align: center;
}
@media (min-width: 640px) { .evt-featured-month { font-size: 1.5rem; } }
@media (min-width: 1024px) { .evt-featured-month { font-size: 1.75rem; text-align: left; } }
.evt-featured-date-bar {
    width: 3rem; height: 2px; background: var(--gold);
    margin: 1rem auto 0;
}
@media (min-width: 1024px) { .evt-featured-date-bar { margin: 1rem 0 0; } }

/* Event Featured Content Side */
.evt-featured-content {
    position: relative; flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-deep) 60%, rgba(0,109,166,0.8) 100%);
    padding: 1.5rem;
    overflow: hidden;
}
@media (min-width: 640px) { .evt-featured-content { padding: 2rem; } }
@media (min-width: 1024px) { .evt-featured-content { padding: 3rem; } }
.evt-featured-content::after {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.evt-featured-content > * { position: relative; z-index: 2; }
.evt-featured-badge {
    display: inline-block; width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    font-family: var(--font-verbatim), sans-serif;
    font-size: 10px; font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--navy-deep);
}
@media (min-width: 640px) { .evt-featured-badge { margin-bottom: 1rem; } }
.evt-featured-title {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 1.5rem; font-weight: 900; text-transform: uppercase;
    line-height: 0.9; letter-spacing: -0.01em; color: white;
    margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .evt-featured-title { font-size: 1.75rem; margin-bottom: 1rem; } }
@media (min-width: 1024px) { .evt-featured-title { font-size: 2.5rem; } }
.evt-featured-desc {
    max-width: 28rem; margin-bottom: 1.25rem;
    font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) { .evt-featured-desc { margin-bottom: 1.5rem; } }
.evt-featured-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
    color: rgba(255,255,255,0.4);
}
.evt-featured-time {
    display: flex; align-items: center; gap: 0.5rem;
}
.evt-featured-time-bar { width: 1rem; height: 2px; background: var(--gold); }
.evt-featured-time span {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.evt-featured-location { font-size: 0.75rem; }

/* Featured Event Image */
.evt-featured-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}
.evt-featured:hover .evt-featured-img { opacity: 0.35; }

/* Featured Event Glow */
.evt-featured-glow {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(0,109,166,0); transition: background 0.5s;
}
.evt-featured:hover .evt-featured-glow { background: rgba(0,109,166,0.1); }

/* Event Rows */
.events-rows { display: flex; flex-direction: column; margin-top: 2rem; }
@media (min-width: 640px) { .events-rows { margin-top: 3rem; } }
.evt-row {
    display: flex; align-items: stretch; gap: 1rem;
    padding: 1.25rem 0; cursor: pointer;
    transition: background 0.2s;
}
.evt-row:hover { background: rgba(237,242,248,0.5); }
@media (min-width: 640px) { .evt-row { gap: 1.5rem; padding: 1.5rem 0; } }
@media (min-width: 768px) { .evt-row { gap: 2.5rem; padding: 2rem 0; } }

/* Event Row Date */
.evt-row-date { flex-shrink: 0; width: 4rem; }
@media (min-width: 640px) { .evt-row-date { width: 5rem; } }
@media (min-width: 768px) { .evt-row-date { width: 8rem; } }
.evt-row-day {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 40px; font-weight: 900; line-height: 1;
    letter-spacing: -0.05em; color: var(--navy-deep);
    transition: color 0.2s;
}
.evt-row:hover .evt-row-day { color: var(--blue-primary); }
@media (min-width: 640px) { .evt-row-day { font-size: 52px; } }
@media (min-width: 768px) { .evt-row-day { font-size: 72px; } }
.evt-row-month {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 8px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; color: rgba(11,20,38,0.3);
}
@media (min-width: 640px) { .evt-row-month { font-size: 10px; } }
@media (min-width: 768px) { .evt-row-month { font-size: 12px; } }
.evt-row-gold {
    width: 1.5rem; height: 2px; background: var(--gold);
    margin-top: 0.5rem;
    transition: width 0.3s ease;
}
.evt-row:hover .evt-row-gold { width: 3rem; }

/* Event Row Content */
.evt-row-content { flex: 1; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.evt-row-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.375rem; }
@media (min-width: 640px) { .evt-row-top { margin-bottom: 0.5rem; } }
.evt-row-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--navy-deep); color: white;
    font-family: var(--font-verbatim), sans-serif;
    font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em;
}
@media (min-width: 640px) { .evt-row-badge { font-size: 9px; } }
.evt-row-time {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 10px; font-weight: 500; color: #9ca3af;
}
@media (min-width: 640px) { .evt-row-time { font-size: 11px; } }
.evt-row-title {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 1rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: -0.01em; color: var(--navy-deep);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: color 0.2s;
}
.evt-row:hover .evt-row-title { color: var(--blue-primary); }
@media (min-width: 640px) { .evt-row-title { font-size: 1.125rem; } }
@media (min-width: 768px) { .evt-row-title { font-size: 1.25rem; } }
.evt-row-desc {
    display: none; margin-top: 0.25rem;
    font-size: 0.875rem; color: #9ca3af;
}
@media (min-width: 768px) { .evt-row-desc { display: block; } }
.evt-row-location {
    margin-top: 0.25rem;
    font-size: 11px; color: #9ca3af;
}
@media (min-width: 640px) { .evt-row-location { margin-top: 0.5rem; font-size: 12px; } }

/* Event Row Arrow */
.evt-row-arrow {
    display: flex; align-items: center;
    font-size: 1.125rem; color: #d1d5db;
    transition: transform 0.2s, color 0.2s;
}
.evt-row:hover .evt-row-arrow { transform: translateX(0.5rem); color: var(--gold); }

/* Event Divider */
.evt-divider {
    position: relative; height: 1px;
    background: #f3f4f6;
}
.evt-divider-dot {
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(212,168,67,0.4);
}


/* ── 2.8 PARTNERS SECTION ── */
.partners-section {
    position: relative; overflow: hidden;
    background: var(--white);
    padding: 3.5rem 0;
}
@media (min-width: 640px) { .partners-section { padding: 5rem 0; } }
.partners-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
}
@media (min-width: 640px) { .partners-header { margin-bottom: 3.5rem; } }
.partners-label {
    display: block; margin-bottom: 0.5rem;
    font-family: var(--font-verbatim), sans-serif;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.3em; color: var(--gold);
}
.partners-title {
    font-family: var(--font-verbatim), sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900;
    text-transform: uppercase; letter-spacing: -0.02em;
    color: var(--navy-deep);
}

/* Partners Marquee */
.partners-marquee { position: relative; }
.partners-fade {
    position: absolute; inset: 0; z-index: 2;
    pointer-events: none; width: 4rem;
}
@media (min-width: 640px) { .partners-fade { width: 8rem; } }
.partners-fade-left {
    left: 0; right: auto;
    background: linear-gradient(to right, white, transparent);
}
.partners-fade-right {
    right: 0; left: auto;
    background: linear-gradient(to left, white, transparent);
}
.partners-track {
    display: flex; width: max-content;
    gap: 2rem;
    animation: partnersScroll 25s linear infinite;
}
@media (min-width: 640px) { .partners-track { gap: 3rem; } }
.partner-item {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 8rem; height: 4rem;
    padding: 0 1rem;
    border: 1px solid var(--gray-100);
    background: var(--bg-alt);
    border-radius: 2px;
    font-family: var(--font-verbatim), sans-serif;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--partner-color, #333);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-item:hover {
    border-color: rgba(0,109,166,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.partner-name {
    text-align: center;
    transition: opacity 0.3s ease;
}
.partner-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: var(--bg-alt);
}
.partner-logo.loaded { opacity: 1; }
@media (min-width: 640px) {
    .partner-item { width: 11rem; height: 5rem; font-size: 12px; }
}


/* ── 2.9 GALLERY SECTION ── */
.gallery-final {
    position: relative; overflow: hidden;
    background: var(--navy-deep);
    padding: 8rem 0;
}

/* Gallery Ghost Text */
.gallery-ghost {
    position: absolute; top: 50%; left: 0;
    transform: translateY(-50%);
    white-space: nowrap; pointer-events: none;
    will-change: transform;
}
.gallery-ghost span {
    font-family: var(--font-verbatim), sans-serif;
    font-size: 25vw; font-weight: 900; text-transform: uppercase;
    line-height: 1; letter-spacing: -0.05em;
    color: rgba(255,255,255,0.02);
}

/* Gallery Header */
.gallery-final-inner {
    position: relative; z-index: 10;
    max-width: 80rem; margin: 0 auto;
    padding: 0 2rem;
}
@media (min-width: 768px) { .gallery-final-inner { padding: 0 4rem; } }
.gallery-header { margin-bottom: 4rem; }
.gallery-header-accent {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.gallery-gold-bar { width: 2rem; height: 2px; background: var(--gold); }
.gallery-label {
    font-family: var(--font-heading);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.3em; color: var(--gold);
}
.gallery-title-giant {
    font-family: var(--font-heading);
    font-size: 3.75rem; font-weight: 900;
    text-transform: uppercase; line-height: 0.82;
    letter-spacing: -0.05em; color: white;
}
@media (min-width: 768px) { .gallery-title-giant { font-size: 6rem; } }

/* Gallery Horizontal Scroll */
.gallery-scroll {
    position: relative; z-index: 10;
    display: flex; gap: 1.5rem;
    overflow-x: auto; padding: 0 2rem 2rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}
@media (min-width: 768px) { .gallery-scroll { padding: 0 4rem 2rem; } }

/* Gallery Card */
.gallery-card {
    position: relative; flex-shrink: 0;
    min-width: 320px; cursor: pointer;
    aspect-ratio: 3/4;
    overflow: hidden;
}
@media (min-width: 768px) { .gallery-card { min-width: 420px; } }

.gallery-card-img {
    position: absolute; inset: -10%;
    width: 120%; height: 120%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.7s ease, filter 0.7s ease;
}
.gallery-card:hover .gallery-card-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.gallery-card-bg { display: none; /* Not used — gradient handled by .gallery-card-gradient */ }

/* Gallery Card Year Watermark */
.gallery-card-year {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 80px; font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
}
@media (min-width: 768px) { .gallery-card-year { font-size: 100px; } }

/* Gallery Card Bottom Gradient */
.gallery-card-gradient {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, var(--navy-deep) 0%, transparent 60%);
}

/* Gallery Card Content */
.gallery-card-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem;
}
.gallery-card-date-line {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.gallery-card-bar {
    width: 1.5rem; height: 2px; background: var(--gold);
    transition: width 0.3s ease;
}
.gallery-card:hover .gallery-card-bar { width: 2.5rem; }
.gallery-card-date-line span {
    font-family: var(--font-heading);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; color: var(--gold);
}
.gallery-card-caption {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 700; text-transform: uppercase;
    line-height: 1.2; letter-spacing: 0.05em; color: white;
}
@media (min-width: 768px) { .gallery-card-caption { font-size: 1.125rem; } }

/* Gallery Card Hover Border */
.gallery-card-hover-border {
    position: absolute; inset: 0; z-index: 3;
    border: 1px solid transparent;
    transition: border-color 0.5s;
    pointer-events: none;
}
.gallery-card:hover .gallery-card-hover-border {
    border-color: rgba(255,255,255,0.2);
}

/* Gallery Deco */
.gallery-deco-slashes {
    position: absolute; bottom: 3rem; right: 3rem;
    width: 100px; height: 80px;
    opacity: 0.08; pointer-events: none;
    display: none; z-index: 2;
}
@media (min-width: 768px) { .gallery-deco-slashes { display: block; } }


/* ── 2.10 FAN TEAMS SECTION ── */
.fan-teams {
    position: relative;
    background: var(--bg-alt);
    height: 180vh;
}
@media (min-width: 768px) { .fan-teams { height: 200vh; } }

.fan-teams-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    overflow: hidden;
    padding-top: 5rem;
}
@media (min-width: 768px) { .fan-teams-sticky { gap: 4rem; } }
/* Lion watermark background */
.fan-teams-sticky::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('../images/lion-watermark.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45%;
    opacity: 0.02;
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(52%) sepia(15%) saturate(600%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Fan Deco */
.fan-deco-chevrons {
    position: absolute; top: 4rem; left: 2.5rem;
    width: 200px; height: 200px;
    opacity: 0.04; pointer-events: none;
    display: none;
}
@media (min-width: 768px) { .fan-deco-chevrons { display: block; } }
.fan-deco-dots {
    position: absolute; bottom: 4rem; right: 2.5rem;
    width: 160px; height: 160px;
    opacity: 0.04; pointer-events: none;
    display: none;
}
@media (min-width: 768px) { .fan-deco-dots { display: block; } }

/* Fan Header */
.fan-header {
    position: relative; z-index: 20;
    text-align: center;
    padding: 0 1.5rem;
}
.fan-header-dividers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.fan-gold-line {
    width: 2rem; height: 2px;
    background: var(--gold);
}
.fan-season {
    font-family: var(--font-verbatim);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
}
.fan-title-giant {
    font-family: var(--font-verbatim);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--navy-deep);
}
@media (min-width: 640px) { .fan-title-giant { font-size: 3.75rem; } }
@media (min-width: 768px) { .fan-title-giant { font-size: 6rem; } }

/* Fan Arc Container */
.fan-arc {
    position: relative; z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    perspective: 600px;
}
@media (min-width: 768px) {
    .fan-arc { height: 380px; perspective: 1200px; }
}

/* Fan Card */
.fan-card {
    position: absolute;
    will-change: transform;
    transition: z-index 0s;
}
.fan-card:hover { z-index: 50 !important; }

.fan-card-inner {
    position: relative;
    width: 120px; height: 200px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
@media (min-width: 768px) {
    .fan-card-inner { width: 220px; height: 340px; }
}
.fan-card:hover .fan-card-inner {
    transform: scale(1.1) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,168,67,0.25);
}

/* Fan Card Image */
.fan-card-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Fan Card Background Gradient */
.fan-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(11,20,38,0.5) 50%, var(--navy-deep) 100%);
}

/* Fan Card Noise */
.fan-card-noise {
    position: absolute; inset: 0;
    opacity: 0.06;
    pointer-events: none;
}
.fan-card-noise::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* Fan Card Number Watermark */
.fan-card-number {
    position: absolute; top: 0.5rem; right: 0.75rem;
    font-family: var(--font-verbatim);
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
    user-select: none;
}
@media (min-width: 768px) { .fan-card-number { font-size: 80px; } }

/* Fan Card Content */
.fan-card-content {
    position: relative; z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 0.75rem;
}
@media (min-width: 768px) { .fan-card-content { padding: 1.25rem; } }

.fan-card-gold-line {
    width: 20px; height: 2px;
    background: var(--gold);
    margin-bottom: 0.375rem;
    transition: width 0.3s ease;
}
@media (min-width: 768px) { .fan-card-gold-line { margin-bottom: 0.75rem; } }
.fan-card:hover .fan-card-gold-line { width: 40px; }

.fan-card-name {
    font-family: var(--font-verbatim);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    font-size: 0.875rem;
    margin: 0;
}
@media (min-width: 768px) { .fan-card-name { font-size: 1.875rem; } }

.fan-card-season {
    margin-top: 0.125rem;
    font-family: var(--font-verbatim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.3);
    font-size: 6px;
}
@media (min-width: 768px) { .fan-card-season { font-size: 9px; } }

/* Fan Card Gold Bottom Bar */
.fan-card-bottom-bar {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.fan-card:hover .fan-card-bottom-bar { transform: scaleX(1); }

/* Fan CTA */
.fan-cta {
    position: relative; z-index: 20;
    text-align: center;
    padding: 0 1.5rem;
}
.btn-fan-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--navy-deep);
    color: #fff;
    font-family: var(--font-verbatim);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
}
@media (min-width: 640px) { .btn-fan-cta { padding: 1rem 2rem; font-size: 0.875rem; } }
.btn-fan-cta:hover { background: var(--blue-primary); }
.fan-cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.btn-fan-cta:hover .fan-cta-arrow { transform: translateX(6px); }


/* ── 2.11 CTA JOIN SECTION ── */
.cta-join {
    position: relative; overflow: hidden;
    background: var(--navy-deep);
    padding: 5rem 1rem;
}
@media (min-width: 640px) { .cta-join { padding: 7rem 1.5rem; } }
@media (min-width: 768px) { .cta-join { padding: 9rem 3rem; } }
.cta-join .section-inner {
    position: relative; z-index: 10;
    max-width: 72rem; margin: 0 auto; text-align: center;
}
.cta-ghost-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading); font-weight: 900;
    font-size: 25vw; text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.02);
    white-space: nowrap; pointer-events: none; z-index: 0;
}
.cta-lion-watermark {
    position: absolute; inset: 0;
    background-image: url('../images/lion-watermark.svg');
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: 90% center;
    opacity: 0.03;
    pointer-events: none;
}
.cta-label-centered {
    display: flex; align-items: center; justify-content: center;
    gap: 0.75rem; margin-bottom: 2rem;
}
.cta-label-centered .gold-divider { width: 2rem; }
.cta-label-centered span {
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold);
}
@media (min-width: 640px) {
    .cta-label-centered { margin-bottom: 1.5rem; }
    .cta-label-centered span { font-size: 0.875rem; }
}
.cta-join-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(2rem, 5vw, 5rem);
    text-transform: uppercase; letter-spacing: -0.02em;
    line-height: 0.85; color: var(--white);
    margin-bottom: 1rem;
}
.cta-join-title .text-outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.4);
}
.cta-join-subtitle {
    font-size: 0.875rem; color: rgba(255,255,255,0.4);
    margin-bottom: 3rem; max-width: 32rem; margin-left: auto; margin-right: auto;
}
@media (min-width: 640px) { .cta-join-subtitle { font-size: 1rem; } }
@media (min-width: 768px) { .cta-join-subtitle { font-size: 1.125rem; } }

/* Audience Cards */
.audience-cards {
    display: grid; grid-template-columns: 1fr;
    gap: 1rem; margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .audience-cards { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
}
@media (min-width: 1024px) {
    .audience-cards { grid-template-columns: repeat(4, 1fr); }
}
.audience-card {
    position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    padding: 1.5rem; text-align: left;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 640px) { .audience-card { padding: 2rem; } }
@media (min-width: 768px) { .audience-card { padding: 2.5rem; } }
@media (min-width: 1024px) { .audience-card { padding: 1.5rem; } }
@media (min-width: 1280px) { .audience-card { padding: 1.75rem; } }
@media (min-width: 1600px) { .audience-card { padding: 2.25rem; } }
.audience-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}
.audience-card .card-watermark {
    position: absolute; top: -0.75rem; right: 0.5rem;
    font-family: var(--font-heading); font-weight: 900;
    font-size: 5rem; line-height: 1;
    color: rgba(255,255,255,0.03); pointer-events: none;
}
@media (min-width: 640px) { .audience-card .card-watermark { font-size: 6.25rem; } }
@media (min-width: 768px) { .audience-card .card-watermark { font-size: 7.5rem; } }
.audience-card h3 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.5rem; text-transform: uppercase;
    color: var(--white); margin-bottom: 0.25rem;
    white-space: nowrap;
}
@media (min-width: 640px) { .audience-card h3 { font-size: 1.875rem; } }
@media (min-width: 768px) { .audience-card h3 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .audience-card h3 { font-size: clamp(1.1rem, 2.1vw, 1.6rem); } }
@media (min-width: 1600px) { .audience-card h3 { font-size: 1.875rem; } }
.audience-card .card-subtitle {
    font-family: var(--font-heading); font-size: 10px;
    font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .audience-card .card-subtitle { font-size: 11px; letter-spacing: 0.2em; } }
.audience-card p {
    font-size: 0.875rem; line-height: 1.625;
    color: rgba(255,255,255,0.4);
}
.audience-card .gold-bottom-bar {
    position: absolute; bottom: 0; left: 0;
    height: 3px; width: 100%;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.audience-card:hover .gold-bottom-bar { transform: scaleX(1); }

.btn-cta-gold {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: var(--navy-deep);
    padding: 0.875rem 2rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.025em;
    transition: background-color 0.3s;
}
@media (min-width: 640px) { .btn-cta-gold { padding: 1rem 3rem; font-size: 0.875rem; } }
.btn-cta-gold:hover { background: var(--white); }
.cta-season-info {
    margin-top: 1.5rem;
    font-size: 11px; color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
}
@media (min-width: 640px) { .cta-season-info { font-size: 0.75rem; } }


/* ========================================================================
   SECTION 3: SHARED COMPONENT STYLES (Navigation, Footer, Cards)
   ======================================================================== */

/* ── 3.1 HEADER / NAVBAR ── */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
    transition: all 300ms ease;
    background: transparent;
}
.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.header-inner {
    max-width: 80rem; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem;
}
.logo a { display: flex; align-items: center; flex-shrink: 0; }
.header .logo a { position: relative; z-index: 50; }
.logo img { height: auto; width: 50px; object-fit: contain; }
@media (min-width: 768px) { .logo img { width: 55px; } }

/* Nav Main (desktop) */
.nav-main { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-main { display: flex; } }
.nav-list { display: flex; align-items: center; gap: 2rem; }
.nav-list a {
    font-family: var(--font-heading); font-size: 0.875rem;
    text-transform: uppercase; letter-spacing: 0.025em;
    color: rgba(255,255,255,0.8); transition: color 200ms;
}
.nav-list a:hover, .nav-list a.active { color: var(--white); }
.header.scrolled .nav-list a { color: var(--text-secondary); }
.header.scrolled .nav-list a:hover, .header.scrolled .nav-list a.active { color: var(--blue-primary); }

/* Nav CTA Button */
.nav-cta {
    display: none;
    background: var(--gold);
    padding: 0.625rem 1.25rem;
    font-family: var(--font-heading); font-size: 0.875rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.025em;
    color: var(--navy-deep);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: background-color 0.2s;
}
@media (min-width: 1024px) { .nav-cta { display: block; } }
.nav-cta:hover { background: rgba(212,168,67,0.9); }

/* Nav Toggle (hamburger) */
.nav-toggle {
    position: relative; z-index: 50;
    display: flex; height: 2.5rem; width: 2.5rem;
    align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
    display: block; width: 1.5rem; height: 2px;
    background: var(--white); transition: var(--transition);
    position: absolute;
}
.header.scrolled .nav-toggle span { background: var(--navy-deep); }
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }

/* Mobile Menu */
.mobile-overlay {
    position: fixed; inset: 0; z-index: 40;
    background: rgba(0,0,0,0.6);
    opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu {
    position: fixed; right: 0; top: 0; z-index: 40;
    height: 100vh; width: 280px;
    background: var(--navy-deep);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform 0.3s ease;
    display: flex; flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }
@media (min-width: 1024px) { .mobile-overlay, .mobile-menu { display: none; } }
.mobile-menu .nav-list {
    flex-direction: column; gap: 1.5rem; align-items: flex-start;
}
.mobile-menu .nav-list a {
    font-size: 1.125rem; color: var(--white);
}
.mobile-menu .nav-list a:hover { color: var(--blue-primary); }

/* ── Nav Dropdown (Équipes — desktop hover) ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    min-width: 180px; padding: 0.5rem 0;
    background: var(--navy-deep);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    opacity: 0; visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block; padding: 0.5rem 1.25rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: rgba(255,255,255,0.6) !important;
    transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--gold) !important;
}
.header.scrolled .nav-dropdown-menu {
    background: var(--white);
    border-color: var(--border-light);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.header.scrolled .nav-dropdown-menu a {
    color: var(--text-secondary) !important;
}
.header.scrolled .nav-dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--blue-primary) !important;
}

/* ── Light header (pages dont le hero est clair) ──
   Force le texte du nav en navy au top de la page (sinon blanc-sur-blanc).
   Au scroll, .header.scrolled reprend la main avec une spécificité plus forte. */
body.light-header .nav-list a { color: var(--navy-deep); }
body.light-header .nav-list a:hover,
body.light-header .nav-list a.active { color: var(--blue-primary); }
body.light-header .nav-toggle span { background: var(--navy-deep); }
body.light-header .nav-dropdown-menu {
    background: var(--white);
    border-color: var(--border-light);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
body.light-header .nav-dropdown-menu a { color: var(--text-secondary) !important; }
body.light-header .nav-dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--blue-primary) !important;
}

/* ── Mobile Accordion (Équipes) ── */
.mobile-accordion-btn {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-size: 1.125rem;
    text-transform: uppercase; letter-spacing: 0.025em;
    color: var(--white); background: none; border: none;
    cursor: pointer; padding: 0; width: 100%; text-align: left;
}
.mobile-accordion-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.mobile-accordion.open .mobile-accordion-btn svg {
    transform: rotate(180deg);
}
.mobile-accordion-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    padding-left: 1rem;
}
.mobile-accordion.open .mobile-accordion-panel {
    max-height: 300px;
}
.mobile-accordion-panel a {
    display: block; padding: 0.4rem 0;
    font-family: var(--font-heading); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.025em;
    color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.mobile-accordion-panel a:hover { color: var(--gold); }


/* ── 3.2 FOOTER ── */
.footer-final { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-final-inner {
    max-width: 80rem; margin: 0 auto;
    padding: 3rem 1rem;
    display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 640px) { .footer-final-inner { padding: 3rem 1.5rem; } }
@media (min-width: 768px) { .footer-final-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-final-inner { grid-template-columns: repeat(4, 1fr); padding: 3rem 2rem; } }
.footer-section { display: flex; flex-direction: column; gap: 1rem; }
.footer-section h4 {
    font-family: var(--font-heading); text-transform: uppercase;
    letter-spacing: 0.025em; font-size: 0.875rem;
    color: var(--gold); margin-bottom: 1rem;
}
.footer-section ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-section ul a {
    font-size: 0.875rem; color: var(--gray-400);
    transition: color 200ms;
}
.footer-section ul a:hover { color: var(--white); }
.footer-section p { font-size: 0.875rem; color: var(--gray-400); }
.footer-brand-name {
    font-family: var(--font-heading); font-size: 0.875rem;
    font-weight: 500; color: var(--white);
}
.footer-socials {
    display: flex; gap: 0.75rem; margin-top: 1rem;
}
.footer-socials a {
    color: var(--gray-400); transition: color 200ms;
}
.footer-socials a:hover { color: var(--white); }
.footer-socials a svg { height: 1.25rem; width: 1.25rem; }
.footer-bottom {
    margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem; text-align: center;
}
.footer-bottom p { font-size: 0.875rem; color: var(--gray-400); }
.footer-admin-link {
    font-size: 0.75rem; color: rgba(255,255,255,0.2);
    transition: color 200ms;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.5); }


/* ── 3.3 SHARED SECTION STYLES ── */

/* Section Label with Gold Line */
.section-label {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.section-label::before {
    content: ''; display: inline-block;
    width: 2rem; height: 2px; background: var(--gold);
}
.section-label span {
    font-family: var(--font-heading);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
}
@media (min-width: 640px) {
    .section-label span { font-size: 0.75rem; letter-spacing: 0.3em; }
}
.section-title-giant {
    font-family: var(--font-heading); font-weight: 900;
    text-transform: uppercase; letter-spacing: -0.02em;
    line-height: 0.85; color: var(--navy-deep);
    font-size: clamp(2.5rem, 6vw, 5rem);
}
.section-header-row {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.section-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-size: 0.875rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.025em; color: var(--text-secondary);
    transition: color 200ms;
}
.section-link:hover { color: var(--gold); }
.section-link::after { content: ' \203A'; }
.gold-divider { height: 2px; width: 2rem; background: var(--gold); }
.section-header { margin-bottom: 3rem; }

/* ── 3.4 SHARED CARD STYLES ── */
.card {
    background: var(--white); border: 1px solid var(--gray-100);
    overflow: hidden; transition: var(--transition);
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.card-body { padding: 1.5rem; }
.card-category {
    display: inline-block; font-family: var(--font-heading);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.card-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.125rem; text-transform: uppercase;
    line-height: 1.1; margin-bottom: 0.5rem;
}
.card-date {
    font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 0.5rem;
}
.card-image {
    aspect-ratio: 16/9; background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: var(--text-secondary); font-size: 0.875rem;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── 3.5 BUTTONS ── */
.btn {
    display: inline-block; padding: 0.75rem 2rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.025em;
    background: var(--navy-deep); color: var(--white);
    transition: var(--transition);
}
.btn:hover { background: var(--blue-primary); }
.btn-primary { background: var(--blue-primary); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--white); }
.btn-ghost {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--white); }
.btn-secondary {
    display: inline-block; padding: 0.5rem 1.25rem;
    font-family: var(--font-heading); font-size: 0.7rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-secondary);
    border: 1px solid var(--gray-100); background: var(--white);
    transition: var(--transition);
}
.btn-secondary:hover, .btn-secondary.active {
    background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep);
}
.btn-danger {
    background: var(--danger); color: #fff; border-color: var(--danger);
}
.btn-danger:hover { background: #DC2626; border-color: #DC2626; }
.btn-warning {
    background: var(--warning); color: #fff; border-color: var(--warning);
}
.btn-warning:hover { background: #D97706; border-color: #D97706; }
.btn-success {
    background: var(--success); color: #fff; border-color: var(--success);
}
.btn-success:hover { background: #059669; border-color: #059669; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled, .btn.btn-disabled {
    background: #f3f4f6; color: #9ca3af;
    border: 1px solid #d1d5db; cursor: not-allowed;
    opacity: 0.55; pointer-events: none;
}
.btn:disabled:hover, .btn.btn-disabled:hover {
    background: #f3f4f6; color: #9ca3af;
    border-color: #d1d5db;
}

/* ── 3.6 FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-family: var(--font-heading);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--navy-deep);
    margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--gray-100);
    background: var(--white); color: var(--text-primary);
    font-family: var(--font-body); font-size: 0.875rem;
    transition: border-color 200ms;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--blue-primary);
}
fieldset { border: none; padding: 0; }
legend {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1rem; text-transform: uppercase; color: var(--navy-deep);
    margin-bottom: 1rem;
}

/* ── 3.7 GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── 3.8 TABLES ── */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
    padding: 0.75rem 1rem; text-align: left;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}
.admin-table th {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-secondary);
}
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-muted);
    padding: 0.75rem 1rem; text-align: left;
    border-bottom: 2px solid var(--navy-deep);
}
.data-table td {
    padding: 0.75rem 1rem; font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-100);
}
.data-table tbody tr:hover { background: var(--bg-alt); }

/* ── 3.9 SEPARATOR ── */
hr {
    border: none; height: 1px; background: var(--gray-100);
    position: relative; margin: 3rem 0;
}
hr::after {
    content: ''; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
}


/* ========================================================================
   SECTION 4: OTHER PAGES STYLES
   ======================================================================== */

/* ── 4.1 PAGE HEADER (shared by all sub-pages) ── */
.page-header {
    position: relative; overflow: hidden;
    background: var(--navy-deep); color: var(--white);
    padding: 8rem 1.5rem 3rem; text-align: left;
}
.page-header::after {
    content: ""; position: absolute; inset: 0;
    opacity: 0.04; pointer-events: none; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px;
}
.page-header .section-label,
.page-header h1 { position: relative; z-index: 2; }
.page-header .partners-title { color: var(--white); }
@media (min-width: 640px) { .page-header { padding: 10rem 2rem 4rem; } }
.page-header h1 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase;
    line-height: 0.85; letter-spacing: -0.02em;
}
.page-content {
    max-width: 72rem; margin: 0 auto; padding: 4rem 1.5rem;
}
.section-light { background: var(--white); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-deep); color: var(--white); }
.section-dark .section-title-giant { color: var(--white); }
.section-dark .content-section h2 { color: var(--white); }
.main-content { padding-top: 0; }

/* ── 4.2 CONTENT SECTIONS ── */
.content-section { margin-bottom: 2rem; }
.content-section h2 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase;
    letter-spacing: -0.02em; line-height: 0.85; color: var(--navy-deep);
    margin-bottom: 1.5rem;
}
.content-section p.content-section { font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary); }
.content-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.content-section-header h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--navy-deep);
    margin: 0; padding: 0; border: 0;
}

/* ── 4.3 CONTACT PAGE ── */
.contact-item { margin-bottom: 2rem; }
.contact-item h3 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 0.875rem; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--navy-deep);
    margin-bottom: 0.5rem;
}
.contact-item p, .contact-item a { font-size: 0.875rem; color: var(--text-secondary); }
.contact-item a:hover { color: var(--blue-primary); }
.horaires-table { width: 100%; }
.horaires-table td { padding: 0.5rem 0; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid var(--gray-100); }
.horaires-table td:first-child { font-weight: 600; color: var(--navy-deep); }
.social-links-large { display: flex; gap: 1rem; }
.social-link { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-secondary); transition: color 200ms; }
.social-link:hover { color: var(--blue-primary); }
.social-icon { display: flex; }
.map-placeholder {
    height: 400px; background: var(--bg-alt);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 1rem;
    color: var(--text-secondary); font-size: 0.875rem;
}

/* ── 4.4 ACTUALITES PAGE ── */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
    padding: 0.5rem 1.25rem; font-family: var(--font-heading);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-secondary);
    border: 1px solid var(--gray-100); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep);
}
.article-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination button, .pagination a {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 2.5rem; height: 2.5rem; padding: 0 0.5rem;
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    border: 1px solid var(--gray-100); background: var(--white);
    color: var(--text-secondary); transition: var(--transition);
}
.pagination button:hover, .pagination a:hover,
.pagination button.active, .pagination a.active {
    background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep);
}
.pagination-info { text-align: center; margin-top: 1rem; font-size: 0.75rem; color: var(--text-secondary); }

/* ── 4.5 ARTICLE PAGE ── */
.article-wrapper { max-width: 48rem; margin: 0 auto; padding: 2rem 1.5rem; }
.article-content-area { line-height: 1.8; font-size: 1rem; color: var(--text-primary); }
.article-content-area h2, .article-content-area h3 {
    font-family: var(--font-heading); font-weight: 900;
    text-transform: uppercase; margin-top: 2rem; margin-bottom: 1rem;
}

/* ── 4.6 EQUIPES PAGE ── */
.equipes-selector {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 2rem;
}
.equipes-selector select {
    padding: 0.5rem 1rem; border: 1px solid var(--gray-100);
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; background: var(--white);
    color: var(--navy-deep);
}

/* ── 4.7 CLUB PAGE ── */
.value-card {
    position: relative; background: var(--white); border: 1px solid var(--gray-100);
    padding: 2rem; text-align: center; transition: var(--transition); overflow: hidden;
}
.value-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out);
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-card:hover::after { transform: scaleX(1); }
.value-icon {
    display: flex; align-items: center; justify-content: center;
    width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem;
    background: var(--bg-alt); color: var(--blue-primary);
}
.value-card h3 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1rem; text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.number-stat {
    text-align: center; padding: 1.5rem;
    background: var(--white); border: 1px solid var(--gray-100);
}
.number-stat .stat-value {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 2.5rem; color: var(--navy-deep); letter-spacing: -0.02em;
    line-height: 1; margin-bottom: 0.25rem;
}
.number-stat .stat-label {
    font-family: var(--font-heading); font-size: 0.65rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; color: var(--text-secondary);
}

/* ── 4.8 COMMUNAUTAIRE PAGE ── */
.joueur-visual {
    min-height: 400px;
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--blue-primary) 100%);
    display: flex; align-items: center; justify-content: center;
}
.joueur-info {
    display: flex; flex-direction: column; justify-content: center;
}
.joueur-info h3 {
    font-family: var(--font-heading); font-weight: 900;
    text-transform: uppercase; font-size: 1.5rem;
}
.joueur-stats { display: flex; gap: 1rem; flex-wrap: wrap; }
.stat-item {
    padding: 0.5rem 1rem; background: var(--bg-alt);
    font-family: var(--font-heading); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.sondage-box { background: var(--white); padding: 2rem; border: 1px solid var(--gray-100); }
.sondage-option { margin-bottom: 1rem; }
.sondage-option label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }
.progress-bar { height: 4px; background: var(--gray-100); overflow: hidden; margin-top: 0.5rem; }
.progress { height: 100%; background: var(--blue-primary); transition: width 0.3s; }
.sondage-stats { font-size: 0.75rem; color: var(--text-secondary); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
    aspect-ratio: 1; background: linear-gradient(160deg, var(--navy-deep) 0%, var(--blue-primary) 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.15); font-size: 0.875rem;
    font-family: var(--font-heading); font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.05em; transition: var(--transition); overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    opacity: 0.06; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px;
}
.gallery-item:hover { transform: scale(1.03); }
.highlight-main { margin-bottom: 2rem; }
.highlight-video {
    aspect-ratio: 16/9; background: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
}
.video-placeholder {
    color: rgba(255,255,255,0.3); font-size: 0.875rem;
    font-family: var(--font-heading);
}


/* ── 4.X ÉQUIPES VITRINE ── */
.page-header-subtitle {
    position: relative; z-index: 2;
    margin-top: 1.5rem; max-width: 36rem;
    font-size: 1rem; line-height: 1.6;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body); font-weight: 400;
}
@media (min-width: 768px) { .page-header-subtitle { font-size: 1.125rem; } }

.equipes-vitrine .page-content { padding: 4rem 1.5rem 6rem; }

.equipes-filters {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.equipes-filters .chip {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--navy-deep);
    border: 1px solid rgba(11,20,38,0.12);
    cursor: pointer;
    transition: all 200ms;
}
.equipes-filters .chip:hover {
    border-color: var(--navy-deep);
    background: rgba(11,20,38,0.04);
}
.equipes-filters .chip.is-active {
    background: var(--navy-deep);
    color: var(--white);
    border-color: var(--navy-deep);
}

.equipes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) { .equipes-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .equipes-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.equipe-card {
    position: relative; display: block;
    overflow: hidden;
    border-radius: 4px;
    background: var(--navy-deep);
    aspect-ratio: 3 / 4;
    color: var(--white);
    transition: transform 300ms cubic-bezier(0.22,1,0.36,1),
                box-shadow 300ms cubic-bezier(0.22,1,0.36,1);
}
.equipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.equipe-card-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.equipe-card:hover .equipe-card-img { transform: scale(1.06); }
.equipe-card-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to top, rgba(11,20,38,0.95) 0%, rgba(11,20,38,0.5) 50%, transparent 100%);
}
.equipe-card-content {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    padding: 1.5rem;
}
.equipe-card-bar {
    width: 1.75rem; height: 2px;
    background: var(--gold);
    margin-bottom: 0.75rem;
    transition: width 300ms;
}
.equipe-card:hover .equipe-card-bar { width: 3rem; }
.equipe-card-name {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.875rem; text-transform: uppercase;
    letter-spacing: -0.01em; line-height: 1;
    margin-bottom: 0.5rem;
}
.equipe-card-meta {
    display: flex; flex-direction: column; gap: 0.25rem;
    font-size: 0.8125rem; color: rgba(255,255,255,0.7);
}
.equipe-card-meta-row {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body);
}
.equipe-card-meta-row strong {
    font-family: var(--font-heading);
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--gold);
    font-weight: 700;
}
.equipe-card-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1rem;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--white);
    transition: gap 200ms;
}
.equipe-card:hover .equipe-card-cta { gap: 0.875rem; }


/* ──────────────────────────────────────────────────────────
   4.Y ÉQUIPE — FICHE DÉTAIL (magazine-style redesign)
   ────────────────────────────────────────────────────────── */

.team-page { background: var(--white); }

/* Common atoms */
.team-num {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 0.75rem; letter-spacing: 0.2em;
    color: var(--gold); display: block;
    margin-bottom: 0.5rem;
}
.team-eyebrow {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.25em; color: var(--text-secondary);
    display: block; margin-bottom: 1rem;
}
.team-eyebrow-light { color: rgba(255,255,255,0.55); }


/* ───────────── HERO ───────────── */
.team-hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 7rem 1.5rem 2.5rem;
    color: var(--white);
    background: var(--navy-deep);
    overflow: hidden;
}
@media (min-width: 768px) { .team-hero { padding: 9rem 3rem 3rem; min-height: 95vh; } }

.team-hero-bg {
    position: absolute; inset: 0; z-index: 1;
    overflow: hidden;
}
.team-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    opacity: 0.45;
    transform: scale(1.05);
    will-change: transform;
}
.team-hero-grad {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, var(--navy-deep) 0%, rgba(11,20,38,0.85) 30%, rgba(11,20,38,0.4) 65%, rgba(11,20,38,0.65) 100%);
}
.team-hero-noise {
    position: absolute; inset: 0;
    opacity: 0.05; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* Watermark of the category in giant typography */
.team-hero-watermark {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 2;
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(12rem, 35vw, 28rem);
    line-height: 0.85; letter-spacing: -0.05em;
    color: rgba(255,255,255,0.04);
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

.team-hero-content {
    position: relative; z-index: 3;
    max-width: 90rem; margin: 0 auto;
    width: 100%;
}

.team-hero-back {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3rem;
    transition: color 200ms, gap 200ms;
}
.team-hero-back:hover { color: var(--white); gap: 0.75rem; }

.team-hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.25em;
}
.team-hero-saison { color: rgba(255,255,255,0.55); }
.team-hero-cat { color: var(--gold); }
.team-hero-divider {
    width: 1.75rem; height: 1px;
    background: rgba(255,255,255,0.2);
}

.team-hero-name {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(3.5rem, 13vw, 11rem);
    line-height: 0.85; letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Stats row at bottom of hero */
.team-hero-stats {
    position: relative; z-index: 3;
    max-width: 90rem; margin: 3rem auto 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 640px) {
    .team-hero-stats { grid-template-columns: repeat(3, 1fr); }
}
.team-hero-stat {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 0.5rem;
}
@media (min-width: 640px) {
    .team-hero-stat {
        padding: 1.75rem 1.5rem;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.08);
    }
    .team-hero-stat:first-child { padding-left: 0; }
    .team-hero-stat:last-child { border-right: none; padding-right: 0; }
}
.team-hero-stat-label {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.625rem; text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.4);
}
.team-hero-stat-value {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}
@media (min-width: 768px) { .team-hero-stat-value { font-size: 1.875rem; } }

.team-hero-scroll {
    position: absolute;
    bottom: 1.5rem; right: 2rem;
    z-index: 4;
    display: none;
    align-items: center; gap: 0.75rem;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
@media (min-width: 1024px) { .team-hero-scroll { display: flex; } }


/* ───────────── INTRO (présentation) ───────────── */
.team-intro {
    padding: 6rem 1.5rem;
    background: var(--white);
}
@media (min-width: 768px) { .team-intro { padding: 9rem 3rem; } }

.team-intro-inner {
    max-width: 80rem; margin: 0 auto;
}

.team-intro-marker {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.75rem;
}
.team-intro-marker .team-num,
.team-intro-marker .team-eyebrow {
    margin-bottom: 0;
}

.team-intro-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 0.9; letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--navy-deep);
    margin: 0 0 3.5rem;
}
.team-intro-title .text-outline-navy {
    color: transparent;
    -webkit-text-stroke: 2px var(--navy-deep);
}

.team-intro-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    max-width: 56rem;
}
.team-intro-bar {
    width: 3px;
    background: var(--gold);
    align-self: stretch;
}
.team-intro-text {
    font-family: var(--font-body); font-weight: 400;
    font-size: 1.0625rem; line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}
@media (min-width: 768px) {
    .team-intro-text { font-size: 1.1875rem; line-height: 1.75; }
}


/* ───────────── SECTIONS (calendar / standings / palmarès) ───────────── */
.team-section {
    padding: 5rem 1.5rem;
    background: var(--white);
}
@media (min-width: 768px) { .team-section { padding: 7rem 3rem; } }
.team-section-alt { background: var(--bg-alt); }

.team-section-header {
    max-width: 80rem; margin: 0 auto 3rem;
    border-top: 1px solid rgba(11,20,38,0.1);
    padding-top: 2rem;
}
.team-section-header h2 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 0.9; letter-spacing: -0.02em;
    text-transform: lowercase;
    color: var(--navy-deep);
    margin: 0;
}
.team-empty {
    max-width: 80rem; margin: 0 auto;
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem 0;
}


/* Calendar list */
.team-calendar-list {
    max-width: 80rem; margin: 0 auto;
}
.team-match {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(11,20,38,0.1);
    transition: background 200ms;
}
.team-match:last-child { border-bottom: 1px solid rgba(11,20,38,0.1); }
.team-match:hover { background: rgba(11,20,38,0.02); }
.team-match-date {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    min-width: 5.5rem;
}
.team-match-teams {
    display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1rem; color: var(--navy-deep);
}
@media (min-width: 768px) { .team-match-teams { font-size: 1.125rem; } }
.team-match-score {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.125rem;
    padding: 0.4rem 0.85rem;
    color: var(--white);
    background: var(--navy-deep);
    letter-spacing: 0.02em;
}
.team-match-score.win { background: #1a7f3d; }
.team-match-score.loss { background: #b73838; }
.team-match-score.draw { background: var(--text-secondary); }
.team-match-result {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

/* Upcoming matches */
.team-upcoming-list { max-width: 80rem; margin: 0 auto; }
.team-match-upcoming .team-match-date {
    display: flex; flex-direction: column; gap: 0.25rem;
}
.team-match-time {
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--navy-deep);
}
.team-match-vs {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    padding: 0 0.5rem;
}
.team-match-upcoming .team-match-result {
    display: flex; flex-direction: column; gap: 0.25rem;
    align-items: flex-end; text-align: right;
}
.team-match-loc {
    display: inline-block;
    font-size: 0.625rem; font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.5rem;
    background: var(--navy-deep); color: var(--white);
}
.team-match-upcoming .team-match-result small {
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.75rem; text-transform: none;
    letter-spacing: 0;
    color: var(--text-secondary);
}
.team-match-venue {
    font-family: var(--font-body); font-weight: 400;
    font-size: 0.6875rem; text-transform: none;
    letter-spacing: 0;
    color: var(--text-secondary);
    font-style: italic;
}


/* Standings table — mobile first */
.team-standings-wrap {
    max-width: 80rem; margin: 0 auto;
    background: var(--white);
    border-top: 2px solid var(--navy-deep);
    border-bottom: 2px solid var(--navy-deep);
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.team-standings-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    font-family: var(--font-body);
    background: var(--white);
    table-layout: fixed;
}

/* Column widths — mobile (Pos chip + Équipe stretch + Pts + 4 stats compactes) */
.team-standings-table col.col-pos  { width: 2.5rem; }
.team-standings-table col.col-team { width: auto; }
.team-standings-table col.col-pts  { width: 2.5rem; }
.team-standings-table col.col-stat { width: 1.85rem; }

/* Header */
.team-standings-table thead tr { background: var(--navy-deep); }
.team-standings-table th {
    padding: 0.7rem 0.15rem;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.625rem; text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    text-align: center;
    border-bottom: 2px solid var(--gold);
    white-space: nowrap;
}
.team-standings-table th:first-child { padding-left: 0.6rem; }
.team-standings-table th:nth-child(2) { text-align: left; color: var(--white); padding-left: 0.4rem; }
.team-standings-table th:nth-child(3) { color: var(--gold); background: var(--navy); }

/* Body cells */
.team-standings-table td {
    padding: 0.6rem 0.15rem;
    border-bottom: 1px solid rgba(11,20,38,0.06);
    font-size: 0.8125rem;
    text-align: center;
    color: var(--navy-deep);
    vertical-align: middle;
}
.team-standings-table tbody tr { transition: background 200ms; }
.team-standings-table tbody tr:nth-child(even) td { background: rgba(11,20,38,0.018); }
.team-standings-table tbody tr:hover td { background: rgba(11,20,38,0.05); }
.team-standings-table tbody tr:last-child td { border-bottom: none; }

/* Position chip */
.team-standings-table td:first-child { padding-left: 0.6rem; }
.team-standings-pos {
    display: inline-flex; align-items: center; justify-content: center;
    width: 1.625rem; height: 1.625rem;
    font-family: var(--font-heading); font-weight: 900;
    font-size: 0.6875rem;
    line-height: 1;
    color: var(--text-secondary);
    background: var(--bg-alt);
    letter-spacing: 0;
}
.team-standings-table tr[data-pos="1"] .team-standings-pos { background: var(--gold);   color: var(--navy-deep); }
.team-standings-table tr[data-pos="2"] .team-standings-pos { background: #C0C7D2;       color: var(--navy-deep); }
.team-standings-table tr[data-pos="3"] .team-standings-pos { background: #C99463;       color: var(--white); }

/* Team name — tronquée en mobile */
.team-standings-table td:nth-child(2) {
    text-align: left;
    font-family: var(--font-heading); font-weight: 600;
    font-size: 0.8125rem;
    color: var(--navy-deep);
    padding-left: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Points column — accent */
.team-standings-table th:nth-child(3),
.team-standings-table td:nth-child(3) {
    border-left: 1px solid rgba(11,20,38,0.08);
    border-right: 1px solid rgba(11,20,38,0.08);
}
.team-standings-table td:nth-child(3) {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1rem;
    color: var(--navy-deep);
    background: rgba(212,168,67,0.05);
}
.team-standings-table tbody tr:nth-child(even) td:nth-child(3) {
    background: rgba(212,168,67,0.075);
}

/* J/G/N/P stats */
.team-standings-table td:nth-child(n+4) {
    font-family: var(--font-body); font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* Club row */
.team-standings-table tr.is-club td {
    background: linear-gradient(to right, rgba(212,168,67,0.18) 0%, rgba(212,168,67,0.06) 100%) !important;
    color: var(--navy-deep);
    font-weight: 700;
    border-bottom-color: rgba(212,168,67,0.3);
    box-shadow: inset 0 1px 0 rgba(212,168,67,0.25), inset 0 -1px 0 rgba(212,168,67,0.25);
}
.team-standings-table tr.is-club td:first-child {
    box-shadow: inset 4px 0 0 var(--gold),
                inset 0 1px 0 rgba(212,168,67,0.25),
                inset 0 -1px 0 rgba(212,168,67,0.25);
}
.team-standings-table tr.is-club td:nth-child(2) {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
}
.team-standings-table tr.is-club td:nth-child(3) {
    color: var(--gold);
    background: rgba(212,168,67,0.22) !important;
}
.team-standings-table tr.is-club td:nth-child(n+4) {
    color: var(--navy-deep);
}
.team-standings-table tr.is-club .team-standings-pos {
    background: var(--navy-deep); color: var(--gold);
}

/* ≥ 480px : un peu plus d'air */
@media (min-width: 480px) {
    .team-standings-table col.col-pos  { width: 3rem; }
    .team-standings-table col.col-pts  { width: 3rem; }
    .team-standings-table col.col-stat { width: 2.5rem; }
    .team-standings-table th  { padding: 0.85rem 0.3rem; font-size: 0.6875rem; letter-spacing: 0.13em; }
    .team-standings-table td  { padding: 0.75rem 0.3rem; font-size: 0.875rem; }
    .team-standings-table td:first-child,
    .team-standings-table th:first-child { padding-left: 1rem; }
    .team-standings-table td:nth-child(2),
    .team-standings-table th:nth-child(2) { padding-left: 0.6rem; font-size: 0.875rem; }
    .team-standings-table td:nth-child(3) { font-size: 1.0625rem; }
    .team-standings-table td:nth-child(n+4) { font-size: 0.8125rem; }
    .team-standings-pos { width: 1.75rem; height: 1.75rem; font-size: 0.75rem; }
    .team-standings-table tr.is-club td:nth-child(2) { font-size: 0.8125rem; }
}

/* ≥ 768px : layout tablette/desktop */
@media (min-width: 768px) {
    .team-standings-table { table-layout: auto; }
    .team-standings-table col.col-pos  { width: 3.5rem; }
    .team-standings-table col.col-pts  { width: 3.5rem; }
    .team-standings-table col.col-stat { width: 3rem; }
    .team-standings-table th { padding: 1rem 0.5rem; letter-spacing: 0.15em; }
    .team-standings-table td { padding: 0.85rem 0.5rem; font-size: 0.9375rem; }
    .team-standings-table td:first-child,
    .team-standings-table th:first-child { padding-left: 1.25rem; }
    .team-standings-table td:nth-child(2),
    .team-standings-table th:nth-child(2) { padding-left: 0.75rem; font-size: 0.9375rem; }
    .team-standings-table td:nth-child(3) { font-size: 1.125rem; }
    .team-standings-table td:nth-child(n+4) { font-size: 0.875rem; }
    .team-standings-pos { width: 1.875rem; height: 1.875rem; font-size: 0.8125rem; }
    .team-standings-table tr.is-club td:nth-child(2) { font-size: 0.875rem; }
}

/* ≥ 1024px : version cinématique pleine taille */
@media (min-width: 1024px) {
    .team-standings-table col.col-pos { width: 4rem; }
    .team-standings-table th { padding: 1.1rem 0.5rem; font-size: 0.6875rem; letter-spacing: 0.18em; }
    .team-standings-table td { padding: 0.9rem 0.5rem; }
    .team-standings-table td:first-child,
    .team-standings-table th:first-child { padding-left: 1.5rem; }
    .team-standings-table td:nth-child(3) { font-size: 1.25rem; }
    .team-standings-pos { width: 2rem; height: 2rem; font-size: 0.875rem; }
}


/* ───────────── EFFECTIFS (roster) ───────────── */
.team-roster-inner {
    max-width: 80rem; margin: 0 auto;
}

/* Coach pull card */
.team-roster-coach {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: var(--navy-deep);
    color: var(--white);
    border-left: 3px solid var(--gold);
    margin-bottom: 3.5rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
@media (min-width: 768px) {
    .team-roster-coach { padding: 2.25rem 2.75rem; gap: 2rem; }
}
.team-roster-coach-avatar {
    flex-shrink: 0;
    width: 4.5rem; height: 4.5rem;
    border-radius: 50%;
    background: var(--gold); color: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.25rem; letter-spacing: 0.02em;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .team-roster-coach-avatar { width: 5.5rem; height: 5.5rem; font-size: 1.5rem; }
}
.team-roster-coach-meta { flex: 1; min-width: 0; }
.team-roster-coach-role {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block; margin-bottom: 0.5rem;
}
.team-roster-coach-name {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.5rem; letter-spacing: -0.01em;
    color: var(--white);
    margin: 0;
}
@media (min-width: 768px) { .team-roster-coach-name { font-size: 1.875rem; } }
.team-roster-coach-tag {
    display: none;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.625rem; text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.4);
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.15);
}
@media (min-width: 640px) { .team-roster-coach-tag { display: inline-block; } }

/* Divider "Joueurs" */
.team-roster-divider {
    display: flex; align-items: center; gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.team-roster-divider-line {
    flex: 1; height: 1px;
    background: rgba(11,20,38,0.12);
}
.team-roster-divider-label {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.6875rem; text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
}

/* Players grid */
.team-roster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 640px)  { .team-roster-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 900px)  { .team-roster-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .team-roster-grid { grid-template-columns: repeat(6, 1fr); } }

.team-player-card {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 1.5rem 0.75rem 1.25rem;
    background: var(--bg-alt);
    border-top: 2px solid var(--gold);
    transition: transform 200ms, box-shadow 200ms;
}
.team-player-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11,20,38,0.08);
}
.team-player-number {
    position: absolute;
    top: 0.5rem; right: 0.65rem;
    font-family: var(--font-heading); font-weight: 900;
    font-size: 0.75rem; letter-spacing: 0.05em;
    color: var(--gold);
}
.team-player-avatar {
    width: 3.75rem; height: 3.75rem;
    border-radius: 50%;
    background: var(--navy-deep);
    color: rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.85rem;
}
.team-player-avatar svg { width: 1.75rem; height: 1.75rem; }
.team-player-name {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.8125rem; text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.team-player-role {
    font-family: var(--font-body); font-weight: 400;
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-style: italic;
}
.team-player-card.is-anonymous .team-player-name {
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.06em;
}

.team-roster-note {
    max-width: 80rem; margin: 2.5rem auto 0;
    text-align: center;
    font-family: var(--font-body); font-style: italic;
    font-size: 0.875rem;
    color: var(--text-muted);
}


/* ───────────── PALMARÈS (cards) ───────────── */
.team-palmares-grid {
    max-width: 80rem; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px)  { .team-palmares-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-palmares-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.team-palmares-card {
    position: relative;
    display: flex; flex-direction: column;
    padding: 2rem 1.75rem 1.75rem;
    background: var(--white);
    border: 1px solid rgba(11,20,38,0.08);
    border-top: 3px solid var(--gold);
    overflow: hidden;
    transition: transform 250ms, box-shadow 250ms;
}
.team-palmares-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(11,20,38,0.1);
}
.team-palmares-card::before {
    content: counter(palmares, decimal-leading-zero);
    counter-increment: palmares;
    position: absolute;
    top: -1.25rem; right: -0.5rem;
    font-family: var(--font-heading); font-weight: 900;
    font-size: 6.5rem; line-height: 1;
    color: rgba(212,168,67,0.08);
    pointer-events: none;
}
.team-palmares-grid { counter-reset: palmares; }
.team-palmares-icon {
    width: 2.5rem; height: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative; z-index: 1;
}
.team-palmares-icon svg { width: 100%; height: 100%; }
.team-palmares-card-title {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.35; letter-spacing: -0.01em;
    color: var(--navy-deep);
    margin: 0;
    position: relative; z-index: 1;
}
.team-palmares-card-bar {
    margin-top: 1.25rem;
    width: 2.5rem; height: 2px;
    background: var(--navy-deep);
}


/* ───────────── CTA ───────────── */
.team-cta {
    background: var(--navy-deep);
    color: var(--white);
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative; overflow: hidden;
}
@media (min-width: 768px) { .team-cta { padding: 9rem 3rem; } }
.team-cta::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url('/images/lion-watermark.svg');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}
.team-cta-inner {
    position: relative; z-index: 1;
    max-width: 40rem; margin: 0 auto;
}
.team-cta h2 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 0.95; letter-spacing: -0.02em;
    margin: 0.75rem 0 1.5rem;
}
.team-cta p {
    font-family: var(--font-body);
    font-size: 1.0625rem; line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0 0 2.5rem;
}
.team-cta-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    background: var(--gold); color: var(--navy-deep);
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.875rem; text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: gap 200ms, transform 200ms, box-shadow 200ms;
    border: none;
}
.team-cta-btn:hover {
    gap: 1.25rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,168,67,0.3);
}


/* ========================================================================
   SECTION 5: ADMIN STYLES
   ======================================================================== */

/* ── 5.1 ADMIN LOGIN ── */
.login-box {
    max-width: 380px;
    margin: 3rem auto;
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}
.login-box .form-group { margin-bottom: 1.5rem; }
.login-box .btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.75rem;
}
.login-box .btn:hover { background: var(--gold-light); }

/* ── 5.2 ADMIN LOGIN SCREEN (Standalone) ── */
.admin-login-screen {
    min-height: 100vh;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}
.admin-login-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, rgba(0,109,166,0.12) 100%);
}
.admin-login-inner {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.admin-login-card {
    background: var(--white);
    padding: 3.5rem 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-xl);
}
.admin-login-brand {
    text-align: center;
    margin-bottom: 3rem;
}
.admin-login-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-deep);
    line-height: 1;
}
.admin-login-brand p {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
}
.admin-login-card .form-group { margin-bottom: 1.75rem; }
.admin-login-card .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.admin-login-card .form-group input {
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
}
.btn-login {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}
.btn-login:hover { background: var(--gold-light); }
.admin-login-footer {
    text-align: center;
    margin-top: 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── 5.3 ADMIN LAYOUT ── */
body.admin-page { background: var(--bg-alt); }
body.admin-page .header,
body.admin-page .footer { display: none; }
body.admin-page .main-content { margin-top: 0; }
body.admin-page .admin-layout { min-height: 100vh; }
body.admin-page .admin-sidebar {
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 64px);
}

/* ── 5.4 ADMIN SIDEBAR ── */
.admin-sidebar {
    background: var(--navy-deep);
    color: var(--white);
    padding: 1.5rem;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
}
.admin-sidebar h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar-brand {
    padding-bottom: 1.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar-brand .brand-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    line-height: 1;
}
.admin-sidebar-brand .brand-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 0.25rem;
}
.admin-sidebar-bottom {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.btn-sidebar-logout {
    width: 100%;
    background: transparent;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.65rem;
    padding: 0.6rem 0.75rem;
    justify-content: center;
}
.btn-sidebar-logout:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

/* ── 5.5 ADMIN NAV ── */
.admin-nav { display: flex; flex-direction: column; gap: 0.15rem; }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.admin-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}
.admin-nav a.active {
    color: var(--white);
    background: rgba(0,109,166,0.2);
    border-left: 3px solid var(--gold);
    padding-left: calc(0.75rem - 3px);
}
.admin-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}
.admin-nav a:hover svg,
.admin-nav a.active svg { opacity: 1; }

/* ── 5.6 ADMIN MAIN ── */
.admin-main {
    padding: 2rem;
    background: var(--bg-alt);
    overflow-y: auto;
}

/* ── 5.7 ADMIN HEADER ── */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.admin-header h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--navy-deep);
}
.admin-date {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.admin-section-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}
.admin-sub-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ── 5.8 ADMIN STAT CARDS ── */
.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--navy-deep);
    line-height: 1;
    margin: 0.5rem 0;
}
.admin-section .card {
    border: 1px solid var(--border-light);
}
.admin-section .card .card-body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.admin-section .card .card-body p:not(.stat-number) {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.stat-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}
.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.stat-card-accent {
    width: 4px;
    flex-shrink: 0;
}
.stat-card-accent.accent-blue { background: var(--blue-primary); }
.stat-card-accent.accent-gold { background: var(--gold); }
.stat-card-accent.accent-green { background: var(--success); }
.stat-card-content {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.stat-card-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.stat-card .stat-number {
    font-size: 2rem;
    margin: 0.25rem 0;
}
.stat-card-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ── 5.9 ADMIN TABLE (admin context override) ── */
.admin-layout .admin-table {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-collapse: collapse;
}
.admin-layout .admin-table th,
.admin-layout .admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}
.admin-layout .admin-table th {
    background: var(--navy-deep);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.85rem 1rem;
}
.admin-layout .admin-table tr:hover td { background: var(--bg-card); }
.admin-layout .admin-table td { color: var(--text-primary); }
.admin-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ── 5.10 STATUS BADGES ── */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.status-badge.published { background: var(--success-light); color: #065F46; }
.status-badge.draft { background: var(--warning-light); color: #92400E; }
.status-badge.pending { background: var(--info-light); color: #1E40AF; }

/* ── 5.11 ADMIN ACTIONS ── */
.actions-cell { white-space: nowrap; display: flex; gap: 0.35rem; }
.actions-cell .btn { margin: 0; }
.has-image {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}

/* ── 5.12 IMAGE UPLOAD ── */
.image-upload-container {
    border: 2px dashed var(--border-medium);
    padding: 1.5rem;
    background: var(--bg-card);
    transition: var(--transition-fast);
}
.image-upload-container:hover { border-color: var(--blue-primary); }
.image-upload-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.upload-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.upload-option input[type="text"] { min-width: 250px; }
.upload-separator {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.file-info {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.image-preview {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.image-preview img {
    max-width: 180px;
    max-height: 120px;
    object-fit: cover;
}
.image-preview.hidden { display: none; }

/* ── 5.13 ADMIN SECTIONS (hidden state) ── */
.admin-section { display: block; }
.admin-section.hidden { display: none; }

/* ── 5.14 QUICK ACTION CARDS ── */
.quick-action {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.quick-action::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.quick-action:hover::after { transform: scaleX(1); }
.quick-action:hover {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}
.quick-action-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quick-action-icon.icon-blue { background: var(--info-light); color: var(--blue-primary); }
.quick-action-icon.icon-gold { background: var(--warning-light); color: var(--gold); }
.quick-action-icon.icon-navy { background: var(--bg-alt); color: var(--navy-deep); }
.quick-action-icon.icon-green { background: var(--success-light); color: var(--success); }
.quick-action h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy-deep);
}
.quick-action p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.1rem;
}

/* ── 5.15 ADMIN FORM CARD ── */
.admin-form-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.admin-form-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-alt);
}
.admin-form-card h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-alt);
}

/* ── 5.16 FORM ACTIONS / HELPERS ── */
.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}
.form-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.4rem 0;
}
.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--blue-primary);
    flex-shrink: 0;
}
.checkbox-label span {
    font-size: 0.85rem;
    color: var(--text-primary);
}
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

/* ── 5.17 OPTIONS STACK (sondage admin) ── */
.options-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.options-stack input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.options-stack input:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0,109,166,0.1);
}

/* ── 5.18 FORM DETAILS (collapsible) ── */
.form-details {
    margin-top: 1rem;
    border: 1px solid var(--border-light);
}
.form-details summary {
    padding: 0.85rem 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    background: var(--bg-card);
    user-select: none;
    transition: var(--transition-fast);
}
.form-details summary:hover {
    color: var(--navy-deep);
    background: var(--bg-alt);
}
.form-details[open] summary {
    border-bottom: 1px solid var(--border-light);
}
.form-details-content {
    padding: 1.25rem;
}

/* ── 5.19 EMPTY STATE ── */
.empty-state {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 2rem 1rem !important;
}

/* ── 5.20 ADMIN TOPBAR (mobile) ── */
.admin-topbar {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    background: var(--navy-deep);
    color: var(--white);
    z-index: 1001;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-topbar-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.admin-menu-btn {
    background: none;
    border: none;
    color: var(--white);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ── 5.21 ADMIN OVERLAY (mobile) ── */
.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,20,38,0.6);
    z-index: 998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.admin-overlay.active { display: block; }

/* ── 5.22 TOAST NOTIFICATIONS ── */
#toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}
.toast {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--navy-deep);
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
    opacity: 0;
    pointer-events: auto;
    max-width: 360px;
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); color: var(--navy-deep); }


/* ========================================================================
   SECTION 6: RESPONSIVE BREAKPOINTS
   ======================================================================== */

/* ── Small Screens (<480px) ── */
@media (max-width: 480px) {
    /* Nav toggle — larger touch target */
    .nav-toggle { height: 2.75rem; width: 2.75rem; }

    /* Mobile menu — fluid width */
    .mobile-menu { width: min(280px, 85vw); }

    /* Hero — tighter title */
    .hero-title { font-size: 12vw; }
    .btn-hero-primary, .btn-hero-secondary {
        padding: 0.875rem 1.75rem;
        min-height: 44px;
    }

    /* Manifesto mobile — same vibe as before, pillars stacked */
    .manifesto { height: 150vh; }
    .manifesto-sticky { align-items: flex-start; padding-top: 8rem; }
    .manifesto-text { font-size: 1.875rem; line-height: 1.45; }
    .manifesto-inner { padding: 0 1.5rem; }
    .manifesto-gold-line { margin-bottom: 1.5rem; }
    .mw { margin-right: 0.25em; }

    /* Watermark stronger on mobile to fill space */
    .manifesto-watermark {
        opacity: 0.07;
        background-size: 70%;
        background-position: center 75%;
    }

    /* The 3 first words = pillars, stacked vertically */
    .manifesto-text .mw:nth-child(-n+3) {
        display: block;
        margin-right: 0;
    }
    .manifesto-text .mw:nth-child(3) {
        margin-bottom: 1rem;
    }

    /* Signature visible on mobile */
    .manifesto-signature {
        display: block;
        margin-top: 2.5rem;
        font-family: var(--font-body);
        font-size: 0.7rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(11, 20, 38, 0.4);
        font-weight: 500;
    }

    /* Stats — wrap and reduce gaps */
    .stats-items { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
    .stats-content { padding: 0 1rem; }
    .stat-value { font-size: 1.5rem; }

    /* Ghost text — more visible on mobile */
    .stats-ghost-text { color: rgba(255,255,255,0.10); }


    /* News — smaller featured card */
    .news-card.featured { min-height: 320px; }

    /* Events — remove double padding */
    .events-final-inner { padding: 0; }

    /* Gallery — narrower cards */
    .gallery-card { width: 280px; }

    /* Fan teams — smaller cards */
    .fan-card-inner { width: 100px; height: 170px; }
    .fan-arc { height: 210px; }
    .fan-card-number { font-size: 32px; }
    .fan-card-name { font-size: 0.75rem; }
    .fan-card-season { font-size: 5px; }
    .fan-card-gold-line { margin-bottom: 0.25rem; }

    /* Footer — social touch targets + bottom padding */
    .footer-socials a {
        display: flex; align-items: center; justify-content: center;
        min-width: 44px; min-height: 44px;
    }
    .footer-bottom { padding: 1.5rem 1rem; }
}

/* ── Admin Responsive (standalone) ── */
@media (max-width: 768px) {
    body.admin-page .admin-topbar { display: flex; }

    body.admin-page .admin-layout {
        grid-template-columns: 1fr;
    }

    body.admin-page .admin-sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        width: 240px;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s var(--ease-out);
    }

    body.admin-page .admin-sidebar.open {
        left: 0;
        box-shadow: var(--shadow-xl);
    }

    body.admin-page .admin-main {
        margin-top: 56px;
        padding: 1rem;
    }

    .admin-login-card {
        padding: 2.5rem 2rem;
        max-width: 100%;
    }

    .stat-card-content { padding: 1rem; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .quick-action { padding: 1rem; }

    .admin-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .admin-header .btn {
        width: 100%;
        justify-content: center;
    }

    .actions-cell { flex-wrap: wrap; }
    .actions-cell .btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }

    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table { min-width: 600px; }
    .grid-2 { grid-template-columns: 1fr; }

    #toast-container {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .toast { max-width: 100%; }
}

@media (max-width: 480px) {
    .admin-login-inner { padding: 1rem; }
    .admin-login-card { padding: 2rem 1.5rem; }
    .admin-login-logo { font-size: 2.5rem; }

    body.admin-page .admin-main {
        padding: 0.75rem;
    }
}


/* ════════════════════════════════════════════════════════════════════
   SECTION 7: ADMIN v2 — UX repensée pour utilisateurs non-techniques
   ════════════════════════════════════════════════════════════════════ */

/* ── Login screen — chaleureux ── */
.admin-login-logo-img {
    display: block;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--bg-alt);
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.admin-login-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.625rem; letter-spacing: -0.01em;
    color: var(--navy-deep);
    text-align: center;
    margin: 0 0 0.5rem;
    text-transform: none;
}
.admin-login-subtitle {
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}
.admin-login-card .admin-login-brand { margin-bottom: 2.5rem; }
.admin-login-card label {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.admin-login-card input {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    transition: border-color 200ms, box-shadow 200ms;
}
.admin-login-card input:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(0,109,166,0.1);
    outline: none;
}
.admin-login-card .btn-login {
    border-radius: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding: 1.125rem;
    transition: transform 150ms, box-shadow 200ms;
}
.admin-login-card .btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(212,168,67,0.3);
}


/* ── Dashboard hero ── */
.dash-hero {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(11,20,38,0.08);
}
.dash-greeting {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
    color: var(--navy-deep);
    margin: 0 0 0.5rem;
    text-transform: none;
}
.dash-subtitle {
    font-family: var(--font-body); font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 36rem;
}

/* ── Dashboard action cards ── */
.dash-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) {
    .dash-actions { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

.dash-card {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 200ms cubic-bezier(0.22,1,0.36,1),
                box-shadow 200ms,
                border-color 200ms;
    font-family: var(--font-body);
}
.dash-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(11,20,38,0.08);
    border-color: rgba(11,20,38,0.06);
}
.dash-card:active { transform: translateY(0); }

.dash-card-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.dash-card-text {
    flex: 1;
    display: flex; flex-direction: column; gap: 0.2rem;
}
.dash-card-text strong {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.0625rem;
    color: var(--navy-deep);
    letter-spacing: -0.005em;
}
.dash-card-text em {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.dash-card-arrow {
    font-size: 1.5rem;
    color: rgba(11,20,38,0.3);
    transition: transform 200ms, color 200ms;
    flex-shrink: 0;
}
.dash-card:hover .dash-card-arrow {
    color: var(--navy-deep);
    transform: translateX(4px);
}

/* ── Dashboard meta strip ── */
.dash-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(11,20,38,0.06);
    border-radius: 12px;
}
@media (min-width: 768px) {
    .dash-meta { grid-template-columns: repeat(3, 1fr); padding: 1.75rem 2rem; }
}
.dash-meta-item {
    display: flex; flex-direction: column; gap: 0.25rem;
}
.dash-meta-label {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.dash-meta-value {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.625rem; line-height: 1;
    color: var(--navy-deep);
}


/* ── Form équipes — sections progressives ── */
.form-equipe-modern .form-section,
.admin-form-stepped .form-section {
    background: var(--white);
    border: 1px solid rgba(11,20,38,0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.form-equipe-modern .form-section-head,
.admin-form-stepped .form-section-head {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-alt);
    border-bottom: 1px solid rgba(11,20,38,0.06);
}
.form-equipe-modern .form-section-head h4,
.admin-form-stepped .form-section-head h4 {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.0625rem; letter-spacing: -0.005em;
    color: var(--navy-deep);
    margin: 0 0 0.15rem;
    text-transform: none;
}
.form-equipe-modern .form-section-head p,
.admin-form-stepped .form-section-head p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}
.form-section-num {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--navy-deep); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 900;
    font-size: 0.875rem;
}
.form-equipe-modern .form-section-body,
.admin-form-stepped .form-section-body {
    padding: 1.5rem;
}

/* Collapsible advanced section */
.form-section-collapse {
    cursor: default;
}
.form-section-collapse > summary {
    cursor: pointer;
    list-style: none;
    position: relative;
}
.form-section-collapse > summary::-webkit-details-marker { display: none; }
.form-section-toggle {
    margin-left: auto;
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 200ms;
}
.form-section-collapse[open] .form-section-toggle {
    transform: rotate(180deg);
}


/* ── Photo uploader — drag & drop visuel ── */
.photo-uploader {
    border: 2px dashed rgba(11,20,38,0.15);
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--bg-alt);
    transition: border-color 200ms, background 200ms;
}
.photo-uploader:hover { border-color: var(--blue-primary); background: rgba(0,109,166,0.02); }
.photo-uploader-drop {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    padding: 2rem 1rem;
    cursor: pointer;
    color: var(--text-secondary);
    text-align: center;
}
.photo-uploader-drop strong {
    font-family: var(--font-body); font-weight: 600;
    color: var(--navy-deep);
    font-size: 0.95rem;
}
.photo-uploader-drop span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.photo-uploader-drop svg {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.photo-uploader-url {
    margin-top: 0.75rem;
    border-top: 1px solid rgba(11,20,38,0.06);
    padding-top: 0.75rem;
}
.photo-uploader-url > summary {
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-secondary);
    list-style: none;
}
.photo-uploader-url > summary::-webkit-details-marker { display: none; }
.photo-uploader-url > summary::before {
    content: "+ ";
    color: var(--text-muted);
    font-weight: 700;
}
.photo-uploader-url[open] > summary::before { content: "− "; }
.photo-uploader-url input {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}


/* ── Help text ── */
.field-help {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.field-help code {
    background: var(--bg-alt);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
    color: var(--navy-deep);
}


/* ── Roster editor (admin équipe) ── */
.roster-editor {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.roster-editor[data-roster-empty="true"] {
    border: 1px dashed rgba(11,20,38,0.15);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}
.roster-empty {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}
.roster-row {
    display: grid;
    grid-template-columns: 2rem auto 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    background: var(--bg-alt);
    border: 1px solid rgba(11,20,38,0.06);
    border-radius: 8px;
    transition: background 150ms;
}
.roster-poste-input {
    padding: 0.4rem 0.55rem;
    border: 1px solid rgba(11,20,38,0.15);
    border-radius: 6px;
    font-size: 0.85rem;
    background: var(--white);
    font-family: var(--font-body);
    color: var(--navy-deep);
    cursor: pointer;
    min-width: 8rem;
}
.roster-poste-input:focus {
    outline: none;
    border-color: var(--navy-deep);
    box-shadow: 0 0 0 3px rgba(11,20,38,0.08);
}
.roster-row:hover { background: var(--white); border-color: rgba(11,20,38,0.12); }
.roster-row-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.roster-anon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
.roster-anon input[type="checkbox"] {
    width: 0.95rem;
    height: 0.95rem;
    accent-color: var(--navy-deep);
    cursor: pointer;
}
.roster-prenom-input {
    width: 100%;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(11,20,38,0.15);
    border-radius: 6px;
    font-size: 0.875rem;
    background: var(--white);
    font-family: var(--font-body);
}
.roster-prenom-input:disabled {
    background: transparent;
    color: var(--text-muted);
    font-style: italic;
}
.roster-prenom-input:focus {
    outline: none;
    border-color: var(--navy-deep);
    box-shadow: 0 0 0 3px rgba(11,20,38,0.08);
}
.roster-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: background 150ms, color 150ms;
}
.roster-remove:hover {
    background: rgba(204, 51, 51, 0.1);
    color: #c33;
}
.roster-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.roster-count {
    font-size: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
/* Direction editor — réutilise les styles roster avec un layout 4 colonnes */
.roster-row.direction-row {
    grid-template-columns: 2rem 1fr 1fr auto;
}
.direction-nom-input,
.direction-role-input {
    width: 100%;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(11,20,38,0.15);
    border-radius: 6px;
    font-size: 0.875rem;
    background: var(--white);
    font-family: var(--font-body);
}
.direction-nom-input:focus,
.direction-role-input:focus {
    outline: none;
    border-color: var(--navy-deep);
    box-shadow: 0 0 0 3px rgba(11,20,38,0.08);
}
@media (max-width: 540px) {
    .roster-row.direction-row {
        grid-template-columns: 1.75rem 1fr auto;
        grid-template-areas:
            "num nom remove"
            "num role remove";
        gap: 0.4rem 0.65rem;
    }
    .roster-row.direction-row .direction-nom-input { grid-area: nom; }
    .roster-row.direction-row .direction-role-input { grid-area: role; }
}
@media (max-width: 540px) {
    .roster-row {
        grid-template-columns: 1.75rem 1fr auto;
        grid-template-areas:
            "num anon remove"
            "num prenom remove"
            "num poste remove";
        gap: 0.4rem 0.65rem;
    }
    .roster-row-num { grid-area: num; align-self: start; padding-top: 0.4rem; }
    .roster-anon { grid-area: anon; }
    .roster-prenom-input { grid-area: prenom; }
    .roster-poste-input { grid-area: poste; width: 100%; }
    .roster-remove { grid-area: remove; align-self: center; }
}

/* ── Form actions sticky ── */
.form-actions-sticky {
    position: sticky;
    bottom: 0;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(11,20,38,0.08);
    border-radius: 12px;
    display: flex; gap: 0.75rem; justify-content: flex-end;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.04);
    z-index: 5;
}
@media (max-width: 640px) {
    .form-actions-sticky {
        flex-direction: column-reverse;
        gap: 0.5rem;
    }
    .form-actions-sticky .btn { width: 100%; justify-content: center; }
}
.btn-primary-large {
    background: var(--navy-deep);
    color: var(--white);
    padding: 0.95rem 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-family: var(--font-heading); font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: transform 150ms, background 200ms, box-shadow 200ms;
    border: none;
    cursor: pointer;
}
.btn-primary-large:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(11,20,38,0.2);
}


/* ── Liste équipes en cards photo ── */
.equipes-admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
@media (min-width: 640px) {
    .equipes-admin-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1280px) {
    .equipes-admin-grid { grid-template-columns: repeat(3, 1fr); }
}

.equipe-admin-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(11,20,38,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 200ms, box-shadow 200ms;
    display: flex; flex-direction: column;
}
.equipe-admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(11,20,38,0.08);
}

.equipe-admin-card-photo {
    aspect-ratio: 16 / 9;
    background: var(--navy-deep);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.equipe-admin-card-photo .no-photo {
    color: rgba(255,255,255,0.35);
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase;
}
.incomplete-badge {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: var(--gold); color: var(--navy-deep);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.equipe-admin-card.is-incomplete { border-color: rgba(212,168,67,0.4); }

.equipe-admin-card-body {
    padding: 1rem 1.25rem 0.75rem;
    flex: 1;
}
.equipe-admin-card-body h4 {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.125rem; letter-spacing: -0.005em;
    color: var(--navy-deep);
    margin: 0 0 0.4rem;
    text-transform: uppercase;
}
.equipe-admin-card-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    display: flex; flex-wrap: wrap; gap: 0.25rem;
}
.equipe-admin-card-meta .muted { color: var(--text-muted); font-style: italic; }

.equipe-admin-card-actions {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(11,20,38,0.04);
}
.btn-card-primary {
    flex: 1;
    background: var(--navy-deep); color: var(--white);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-family: var(--font-heading); font-weight: 700;
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background 200ms;
}
.btn-card-primary:hover { background: #000; }
.btn-card-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--bg-alt);
    color: var(--text-secondary);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 200ms, color 200ms;
}
.btn-card-icon:hover {
    background: rgba(11,20,38,0.08);
    color: var(--navy-deep);
}
.btn-card-icon.btn-card-danger:hover {
    background: rgba(183,56,56,0.1);
    color: #b73838;
}

.equipes-admin-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border: 2px dashed rgba(11,20,38,0.1);
    border-radius: 12px;
}
.equipes-admin-empty h4 {
    font-family: var(--font-heading); font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy-deep);
    margin: 1rem 0 0.5rem;
    text-transform: none;
}
.equipes-admin-empty p {
    color: var(--text-secondary);
    margin: 0;
}


/* ── Améliorations form labels & inputs (toutes sections admin) ── */
.form-equipe-modern label,
.admin-form-card label {
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.875rem;
    color: var(--navy-deep);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}
.form-equipe-modern input[type="text"],
.form-equipe-modern input[type="number"],
.form-equipe-modern input[type="url"],
.form-equipe-modern input[type="email"],
.form-equipe-modern textarea,
.form-equipe-modern select {
    border: 1.5px solid rgba(11,20,38,0.12);
    border-radius: 8px;
    padding: 0.75rem 0.95rem;
    font-size: 0.95rem;
    transition: border-color 200ms, box-shadow 200ms;
    font-family: var(--font-body);
}
.form-equipe-modern input:focus,
.form-equipe-modern textarea:focus,
.form-equipe-modern select:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(0,109,166,0.08);
    outline: none;
}


/* ── Mobile : améliorations sidebar / topbar ── */
@media (max-width: 1023px) {
    .dash-hero {
        flex-direction: column;
        align-items: flex-start;
    }
    .dash-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    .dash-card-icon { width: 48px; height: 48px; }
    .dash-card-icon svg { width: 24px; height: 24px; }
    .dash-card-text strong { font-size: 1rem; }
    .dash-card-text em { font-size: 0.8rem; }
}


/* ════════════════════════════════════════════════════════════════════
   ADMIN MODAL — formulaire en overlay centré
   ════════════════════════════════════════════════════════════════════ */

.admin-modal {
    position: fixed; inset: 0;
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 1.5rem 1rem;
}
.admin-modal.is-open { display: flex; }

.admin-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(11,20,38,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: modalFadeIn 200ms ease-out;
}
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.admin-modal-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 16px;
    max-width: 760px;
    width: 100%;
    margin: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    animation: modalSlideUp 250ms cubic-bezier(0.22,1,0.36,1);
    max-height: calc(100vh - 3rem);
    display: flex;
    flex-direction: column;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(11,20,38,0.06);
}
.admin-modal-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.25rem; letter-spacing: -0.01em;
    color: var(--navy-deep);
    margin: 0;
    text-transform: none;
}
.admin-modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-secondary);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 200ms, color 200ms, transform 150ms;
}
.admin-modal-close:hover {
    background: rgba(11,20,38,0.08);
    color: var(--navy-deep);
    transform: rotate(90deg);
}
.admin-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

/* Form à l'intérieur du modal : retire ses propres styles de carte */
.admin-modal-body .admin-form-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0;
}
.admin-modal-body .admin-form-card > h3 { display: none; } /* le titre est déjà dans admin-modal-title */

@media (max-width: 640px) {
    .admin-modal { padding: 0; }
    .admin-modal-card {
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    .admin-modal-header {
        padding: 1rem 1.25rem 0.75rem;
    }
    .admin-modal-body { padding: 1rem 1.25rem; }
}

/* ===========================================================
   INSCRIPTIONS — Page publique refondue (multi-step)
   =========================================================== */

/* Hero */
.insc-hero {
    position: relative;
    padding: 8rem 1.5rem 5rem;
    background:
        radial-gradient(ellipse at top, rgba(45, 91, 51, 0.08), transparent 60%),
        linear-gradient(180deg, #fafaf7 0%, #ffffff 100%);
    text-align: center;
    overflow: hidden;
}
.insc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(45, 91, 51, 0.03) 0 1px, transparent 1px 20px);
    pointer-events: none;
}
.insc-hero-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.insc-hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #2d5b33;
    background: rgba(45, 91, 51, 0.08);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.insc-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 0.95;
    margin: 0 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.insc-hero-title em {
    font-style: italic;
    color: #c9a04b;
    font-weight: 400;
}
.insc-hero-lead {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 2rem;
}
.insc-hero-cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.insc-hero-status {
    margin-top: 2rem;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}
.insc-hero-status.is-open {
    background: rgba(45, 91, 51, 0.08);
    color: #2d5b33;
    border: 1px solid rgba(45, 91, 51, 0.2);
}
.insc-hero-status.is-closed {
    background: rgba(180, 50, 50, 0.06);
    color: #b43232;
    border: 1px solid rgba(180, 50, 50, 0.18);
}

/* Section commune (inner + head) */
.insc-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.insc-section-head {
    text-align: center;
    margin-bottom: 3rem;
}
.insc-section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #c9a04b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.insc-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0;
    color: #1a1a1a;
    font-weight: 700;
}

/* Comment ça marche */
.insc-howto {
    background: #fafaf7;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}
.insc-howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.insc-howto-card {
    background: #fff;
    padding: 2.5rem 1.75rem 2rem;
    border-radius: 4px;
    border: 1px solid #ececec;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insc-howto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.insc-howto-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.25rem;
    color: #c9a04b;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 700;
}
.insc-howto-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}
.insc-howto-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Infos / Tarifs / Documents */
.insc-infos {
    background: #fff;
}
.insc-infos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.insc-infos-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    border-bottom: 2px solid #c9a04b;
    padding-bottom: 0.75rem;
    display: inline-block;
}
.insc-tarifs-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.insc-tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ececec;
}
.insc-tarif-row:last-child { border-bottom: none; }
.insc-tarif-cat {
    font-weight: 500;
    color: #1a1a1a;
}
.insc-tarif-prix {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d5b33;
}
.insc-tarifs-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: #777;
    line-height: 1.6;
}
.insc-docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.insc-docs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #ececec;
    color: #1a1a1a;
    line-height: 1.5;
}
.insc-docs-list li:last-child { border-bottom: none; }
.insc-docs-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2d5b33;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 1px;
}

/* Form section + wrap */
.insc-form-section {
    background: #fafaf7;
    border-top: 1px solid #ececec;
}
.insc-form-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Progress bar */
.insc-progress {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    position: relative;
}
.insc-progress::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #ececec;
    z-index: 0;
}
.insc-progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.insc-progress-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #aaa;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.insc-progress-step.is-done .insc-progress-dot {
    background: #2d5b33;
    border-color: #2d5b33;
    color: #fff;
}
.insc-progress-step.is-done .insc-progress-dot::after {
    content: '✓';
    font-size: 1rem;
}
.insc-progress-step.is-done .insc-progress-dot {
    font-size: 0;
}
.insc-progress-step.is-active .insc-progress-dot {
    background: #c9a04b;
    border-color: #c9a04b;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(201, 160, 75, 0.18);
}
.insc-progress-label {
    font-size: 0.78rem;
    color: #888;
    font-weight: 500;
}
.insc-progress-step.is-active .insc-progress-label,
.insc-progress-step.is-done .insc-progress-label {
    color: #1a1a1a;
}

/* Steps */
.insc-step {
    display: none;
    animation: inscFade 0.35s ease;
}
.insc-step.is-active {
    display: block;
}
@keyframes inscFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.insc-step-head {
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ececec;
}
.insc-step-head h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 0.4rem;
    color: #1a1a1a;
    font-weight: 700;
}
.insc-step-head p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Fields grid */
.insc-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.insc-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.insc-field-full {
    grid-column: 1 / -1;
}
.insc-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.insc-field label .req {
    color: #c9a04b;
}
.insc-field label .muted {
    text-transform: none;
    letter-spacing: 0;
    color: #999;
    font-weight: 400;
    font-size: 0.8rem;
}
.insc-field input,
.insc-field select,
.insc-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.insc-field input:focus,
.insc-field select:focus,
.insc-field textarea:focus {
    outline: none;
    border-color: #2d5b33;
    box-shadow: 0 0 0 3px rgba(45, 91, 51, 0.12);
}
.insc-field input.is-error,
.insc-field select.is-error,
.insc-field textarea.is-error {
    border-color: #b43232;
    box-shadow: 0 0 0 3px rgba(180, 50, 50, 0.1);
}
.insc-field textarea {
    resize: vertical;
    min-height: 100px;
}
.insc-hint {
    color: #2d5b33;
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Récap */
.insc-recap {
    background: #fafaf7;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
}
.insc-recap-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #ececec;
}
.insc-recap-row:last-child { border-bottom: none; }
.insc-recap-key {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    font-weight: 600;
    flex-shrink: 0;
}
.insc-recap-val {
    color: #1a1a1a;
    text-align: right;
    line-height: 1.5;
}

.insc-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fafaf7;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
.insc-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #2d5b33;
    flex-shrink: 0;
}

/* Erreur */
.insc-error {
    background: rgba(180, 50, 50, 0.06);
    border: 1px solid rgba(180, 50, 50, 0.2);
    color: #b43232;
    padding: 0.85rem 1.25rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Actions */
.insc-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ececec;
    flex-wrap: wrap;
}
.insc-actions .btn-ghost {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}
.insc-actions .btn-ghost:hover {
    border-color: #2d5b33;
    color: #2d5b33;
}
.insc-actions [data-action="next"],
.insc-actions [data-action="submit"] {
    margin-left: auto;
}

/* Confirmation */
.insc-confirm {
    text-align: center;
    padding: 2rem 1rem;
    animation: inscFade 0.4s ease;
}
.insc-confirm-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    background: rgba(45, 91, 51, 0.1);
    color: #2d5b33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.insc-confirm h3 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    margin: 0 0 1rem;
    color: #1a1a1a;
}
.insc-confirm p {
    color: #555;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 0.75rem;
}
.insc-confirm p.muted {
    color: #888;
    font-size: 0.9rem;
}
.insc-confirm .btn-ghost {
    margin-top: 1.75rem;
}

/* Help */
.insc-help {
    background: #1a1a1a;
    color: #fff;
}
.insc-help-inner {
    text-align: center;
    max-width: 720px;
}
.insc-help .insc-section-eyebrow {
    color: #c9a04b;
}
.insc-help h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0.75rem 0 1rem;
    font-weight: 700;
}
.insc-help p {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 540px;
}
.insc-help-cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.insc-help .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.insc-help .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .insc-howto-grid { grid-template-columns: 1fr; }
    .insc-infos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 700px) {
    .insc-section-inner { padding: 3.5rem 1.25rem; }
    .insc-form-wrap { padding: 1.5rem 1.25rem; }
    .insc-fields { grid-template-columns: 1fr; gap: 1rem; }
    .insc-progress-label { font-size: 0; }
    .insc-progress::before {
        left: 16%;
        right: 16%;
    }
    .insc-recap-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .insc-recap-val {
        text-align: left;
    }
    .insc-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .insc-actions .btn,
    .insc-actions [data-action="next"],
    .insc-actions [data-action="submit"] {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .insc-hero { padding: 6rem 1.25rem 4rem; }
    .insc-hero-cta { flex-direction: column; }
    .insc-hero-cta .btn { width: 100%; }
}

body.has-modal-open { overflow: hidden; }

/* ===========================================================
   CONTACT — Page publique refondue
   =========================================================== */

.contact-hero {
    position: relative;
    padding: 8rem 1.5rem 5rem;
    background:
        radial-gradient(ellipse at top right, rgba(212, 168, 67, 0.18), transparent 55%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 22px);
    pointer-events: none;
}
.contact-hero .partners-title,
.contact-hero-title { color: var(--white); }
.contact-hero-lead { color: rgba(255,255,255,0.75); }
.contact-hero-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.contact-hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #2d5b33;
    background: rgba(45, 91, 51, 0.08);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 0.95;
    margin: 0 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.contact-hero-title em {
    font-style: italic;
    color: #c9a04b;
    font-weight: 400;
}
.contact-hero-lead {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* Section main */
.contact-main {
    background: #fff;
}
.contact-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

/* Colonne infos */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    background: #fafaf7;
    border-radius: 6px;
    border: 1px solid #ececec;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-info-card:hover {
    transform: translateY(-2px);
    border-color: #c9a04b;
}
.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ececec;
    color: #2d5b33;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-card h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.35rem;
    color: #888;
    font-weight: 600;
}
.contact-info-card p {
    margin: 0;
    color: #1a1a1a;
    line-height: 1.5;
    font-size: 1rem;
}
.contact-info-card a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.contact-info-card a:hover {
    border-color: #c9a04b;
}

.contact-hours-block {
    flex: 1;
}
.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}
.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 0.9rem;
    color: #1a1a1a;
}
.contact-hours-list li:last-child { border-bottom: none; }
.contact-hours-list .closed {
    color: #b43232;
    font-style: italic;
}
.contact-hours-list .match {
    color: #2d5b33;
    font-weight: 600;
}

.contact-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.contact-social {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
}
.contact-social:hover {
    background: #c9a04b;
}

/* Colonne form */
.contact-form-wrap {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
}
.contact-form-head {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ececec;
}
.contact-form-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: #c9a04b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contact-form-head h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.contact-form-head p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.contact-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-field label .req { color: #c9a04b; }
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #2d5b33;
    box-shadow: 0 0 0 3px rgba(45, 91, 51, 0.12);
}
.contact-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1.15rem;
    background: #fafaf7;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.contact-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #2d5b33;
    flex-shrink: 0;
}

.contact-error {
    background: rgba(180, 50, 50, 0.06);
    border: 1px solid rgba(180, 50, 50, 0.2);
    color: #b43232;
    padding: 0.85rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-submit {
    width: 100%;
}

/* Confirm */
.contact-confirm {
    text-align: center;
    padding: 2rem 1rem;
    animation: inscFade 0.4s ease;
}
.contact-confirm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(45, 91, 51, 0.1);
    color: #2d5b33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-confirm h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 0 0 1rem;
    color: #1a1a1a;
}
.contact-confirm p {
    color: #555;
    line-height: 1.6;
    margin: 0 auto 1.5rem;
    max-width: 420px;
}

/* Map section */
.contact-map-section {
    background: #1a1a1a;
    color: #fff;
}
.contact-map-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    text-align: center;
}
.contact-map-head {
    margin-bottom: 2.5rem;
}
.contact-map-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0.75rem 0 0.5rem;
    color: #fff;
    font-weight: 700;
}
.contact-map-head p {
    color: #aaa;
    margin: 0;
    font-size: 1rem;
}
.contact-map {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}
.contact-map-btn {
    margin-top: 2rem;
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.contact-map-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive */
@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-wrap { position: static; }
}
@media (max-width: 700px) {
    .contact-hero { padding: 6rem 1.25rem 4rem; }
    .contact-main-inner { padding: 3.5rem 1.25rem; }
    .contact-form-wrap { padding: 1.5rem 1.25rem; }
    .contact-info-card { padding: 1rem; }
    .contact-socials { flex-direction: column; }
    .contact-map-inner { padding: 3.5rem 1.25rem; }
}

/* ===========================================================
   CLUB — Page magazine
   =========================================================== */

/* Hero */
.club-hero {
    position: relative;
    padding: 9rem 1.5rem 5rem;
    background:
        linear-gradient(180deg, #1a1a1a 0%, #222 100%);
    color: #fff;
    overflow: hidden;
}
.club-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(201, 160, 75, 0.18), transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 24px);
    pointer-events: none;
}
.club-hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    font-family: var(--font-heading);
    font-size: clamp(12rem, 28vw, 28rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.club-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}
.club-hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    color: #c9a04b;
    margin-bottom: 2rem;
    font-weight: 600;
}
.club-hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin: 0 0 1.75rem;
    color: #fff;
    max-width: 900px;
}
.club-hero-title em {
    font-style: italic;
    color: #c9a04b;
    font-weight: 400;
    font-size: 0.7em;
    display: inline-block;
    margin-top: 0.5rem;
    letter-spacing: 0;
}
.club-hero-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 3rem;
}
.club-hero-meta {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.club-hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.club-hero-meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}
.club-hero-meta-value {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #fff;
    font-weight: 600;
}

/* Sections */
.club-section {
    padding: 6rem 1.5rem;
}
.club-section-light { background: #fff; }
.club-section-alt { background: #fafaf7; border-top: 1px solid #ececec; border-bottom: 1px solid #ececec; }
.club-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.club-section-head {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}
.club-roman {
    display: block;
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: rgba(45, 91, 51, 0.08);
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: -2.5rem;
    user-select: none;
}
.club-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #c9a04b;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.club-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1;
    margin: 0;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.club-section-head h2 em {
    font-style: italic;
    color: #c9a04b;
    font-weight: 400;
}

/* Histoire */
.club-history {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.85;
    color: #333;
}
.club-history p {
    margin: 0 0 1.5rem;
}
.club-history p:last-child { margin-bottom: 0; }
.club-dropcap::first-letter {
    font-family: var(--font-heading);
    font-size: 4.75em;
    float: left;
    line-height: 0.85;
    margin: 0.05em 0.12em 0 0;
    color: #c9a04b;
    font-weight: 700;
}

/* Valeurs */
.club-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.club-value-card {
    padding: 2.5rem 1.75rem;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.club-value-card:hover {
    transform: translateY(-4px);
    border-color: #c9a04b;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}
.club-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(45, 91, 51, 0.08);
    color: #2d5b33;
    display: flex;
    align-items: center;
    justify-content: center;
}
.club-value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.club-value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Stats banner */
.club-stats {
    background: #2d5b33;
    color: #fff;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.club-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 22px);
    pointer-events: none;
}
.club-stats-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.club-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.club-stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    color: #c9a04b;
}
.club-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Installations */
.club-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.club-facility-card {
    background: #fafaf7;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 2.5rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.club-facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}
.club-facility-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ececec;
    color: #2d5b33;
    display: flex;
    align-items: center;
    justify-content: center;
}
.club-facility-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}
.club-facility-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Labels FFF */
.club-labels-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}
.club-labels-intro strong { color: #1a1a1a; font-weight: 600; }
.club-labels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.club-label-card {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.club-label-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--label-color, #c9a04b);
}
.club-label-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    border-color: var(--label-color, #c9a04b);
}
.club-label-argent { --label-color: #b9bcc4; }
.club-label-bronze { --label-color: #c08855; }
.club-label-shield {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--label-color, #c9a04b) 14%, transparent);
    color: var(--label-color, #c9a04b);
}
.club-label-tier {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    background: var(--label-color, #c9a04b);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.club-label-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 0.35rem;
    color: #1a1a1a;
    font-weight: 700;
}
.club-label-period {
    color: var(--label-color, #c9a04b);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}
.club-label-desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Direction (note placeholder) */
.club-direction-note {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px dashed #d4d4d4;
    border-radius: 8px;
}
.club-direction-note p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.75rem;
}

/* Direction (grille dynamique) */
.club-direction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1080px;
    margin: 0 auto;
}
.club-direction-card {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.club-direction-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold, #c9a04b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.club-direction-card:hover {
    transform: translateY(-4px);
    border-color: #d4b46a;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}
.club-direction-card:hover::before {
    transform: scaleX(1);
}
.club-direction-num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(26, 26, 26, 0.18);
}
.club-direction-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5efe1 0%, #ece1c5 100%);
    color: #8a6a2a;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 160, 75, 0.25);
}
.club-direction-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.club-direction-role {
    color: var(--gold, #c9a04b);
    font-size: 0.7rem;
}
.club-direction-nom {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.25;
}
.club-direction-skeleton {
    height: 168px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f3f3f3 0%, #ececec 50%, #f3f3f3 100%);
    background-size: 200% 100%;
    animation: club-direction-shimmer 1.4s infinite linear;
}
@keyframes club-direction-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.club-direction-empty {
    grid-column: 1 / -1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px dashed #d4d4d4;
    border-radius: 8px;
}
.club-direction-empty p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.75rem;
}
@media (max-width: 900px) {
    .club-direction-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .club-direction-grid { grid-template-columns: 1fr; }
}

/* CTA final */
.club-cta {
    background: #1a1a1a;
    color: #fff;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.club-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 0%, rgba(201, 160, 75, 0.15), transparent 50%);
    pointer-events: none;
}
.club-cta-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.club-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin: 1rem 0 1.5rem;
    color: #fff;
    font-weight: 700;
}
.club-cta h2 em {
    font-style: italic;
    color: #c9a04b;
    font-weight: 400;
}
.club-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    max-width: 540px;
}
.club-cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.club-cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.club-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive club */
@media (max-width: 900px) {
    .club-values-grid,
    .club-facilities-grid,
    .club-labels-grid { grid-template-columns: 1fr; }
    .club-hero-meta { grid-template-columns: 1fr; gap: 1rem; }
    .club-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}
@media (max-width: 700px) {
    .club-hero { padding: 7rem 1.25rem 4rem; }
    .club-section { padding: 4rem 1.25rem; }
    .club-section-head { margin-bottom: 3rem; }
    .club-roman { font-size: 4.5rem; margin-bottom: -2rem; }
    .club-history { font-size: 1rem; }
    .club-cta { padding: 4rem 1.25rem; }
    .club-cta-actions { flex-direction: column; }
    .club-cta-actions .btn { width: 100%; text-align: center; }
}

/* ===========================================================
   ACTUALITÉS — Page liste (featured + grid)
   =========================================================== */

.news-hero {
    padding: 8rem 1.5rem 3.5rem;
    background:
        radial-gradient(ellipse at top right, rgba(212, 168, 67, 0.18), transparent 55%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.news-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 22px);
    pointer-events: none;
}
.news-hero .partners-title,
.news-hero-title { color: var(--white); }
.news-hero-lead { color: rgba(255,255,255,0.75); }
.news-hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}
.news-hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #c9a04b;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.news-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.news-hero-lead {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section inner commune */
.news-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Featured */
.news-featured {
    background: #fff;
}
.news-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}
.news-featured-media {
    position: relative;
    aspect-ratio: 16 / 11;
    background: #f0f0ed;
    overflow: hidden;
}
.news-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-featured-card:hover .news-featured-media img {
    transform: scale(1.04);
}
.news-featured-fallback {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #2d5b33 0%, #1a3a1f 100%);
}
.news-featured-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-featured-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: #c9a04b;
    font-weight: 600;
    margin-bottom: 1rem;
}
.news-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.news-featured-resume {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.news-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d5b33;
    font-weight: 600;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: gap 0.2s ease;
}
.news-featured-card:hover .news-featured-cta {
    gap: 0.8rem;
}

/* Liste / toolbar */
.news-list {
    background: #fafaf7;
    border-top: 1px solid #ececec;
}
.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e0;
}
.news-toolbar-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: #888;
    font-weight: 600;
}
.news-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.news-filters .chip {
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.news-filters .chip:hover {
    border-color: #2d5b33;
    color: #2d5b33;
}
.news-filters .chip.is-active {
    background: #2d5b33;
    border-color: #2d5b33;
    color: #fff;
}

/* Grid — scopé à .news-list pour éviter de marcher sur les .news-card de l'accueil */
.news-list .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.news-list .news-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-list .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}
.news-list .news-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f0f0ed;
    overflow: hidden;
}
.news-list .news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-list .news-card:hover .news-card-media img {
    transform: scale(1.05);
}
.news-list .news-card-fallback {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #2d5b33 0%, #1a3a1f 100%);
}
.news-list .news-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.news-list .news-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-list .news-card-date {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.news-list .news-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}
.news-list .news-card-resume {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1rem;
    flex: 1;
}
.news-list .news-card-cta {
    color: #c9a04b;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.news-list .news-card:hover .news-card-cta {
    color: #2d5b33;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
    font-size: 1rem;
}
.news-loadmore-wrap {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive news */
@media (max-width: 900px) {
    .news-list .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-featured-card { grid-template-columns: 1fr; }
    .news-featured-body { padding: 2rem 1.75rem; }
}
@media (max-width: 600px) {
    .news-hero { padding: 6rem 1.25rem 3rem; }
    .news-section-inner { padding: 3rem 1.25rem; }
    .news-list .news-grid { grid-template-columns: 1fr; }
    .news-toolbar { flex-direction: column; align-items: flex-start; }
    .news-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
    .news-filters .chip { white-space: nowrap; }
}

/* ===========================================================
   ARTICLE — Layout magazine individuel
   =========================================================== */

/* Reading progress bar */
.article-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.06);
    z-index: 999;
    pointer-events: none;
}
.article-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #c9a04b, #2d5b33);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}

.article-magazine {
    background: #fff;
}

/* Hero */
.article-mag-hero {
    background: linear-gradient(180deg, #fafaf7 0%, #fff 100%);
    padding: 7rem 1.5rem 3.5rem;
    border-bottom: 1px solid #ececec;
    position: relative;
    overflow: hidden;
}
.article-mag-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(45, 91, 51, 0.025) 0 1px, transparent 1px 22px);
    pointer-events: none;
}
.article-mag-hero-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.article-mag-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #888;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}
.article-mag-back:hover {
    color: #2d5b33;
}
.article-mag-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #888;
}
.article-mag-cat {
    background: #2d5b33;
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    letter-spacing: 0.1em;
}
.article-mag-date {
    color: #c9a04b;
}
.article-mag-read {
    color: #888;
    border-left: 1px solid #d4d4d4;
    padding-left: 1rem;
}
.article-mag-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.05;
    margin: 0 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.article-mag-resume {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
    max-width: 720px;
    border-left: 3px solid #c9a04b;
    padding-left: 1.25rem;
}

/* Cover image */
.article-mag-cover {
    margin: 0;
    background: #fff;
}
.article-mag-cover img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    display: block;
}

/* Body : layout magazine avec sidebar share */
.article-mag-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    position: relative;
}
.article-mag-content {
    font-family: 'Source Serif Pro', Georgia, serif;
    font-size: 1.18rem;
    line-height: 1.85;
    color: #2a2a2a;
}
.article-mag-p {
    margin: 0 0 1.5rem;
}
.article-mag-p:last-child {
    margin-bottom: 0;
}
.article-mag-p-first::first-letter {
    font-family: var(--font-heading);
    font-size: 4.5em;
    float: left;
    line-height: 0.85;
    margin: 0.05em 0.12em 0 0;
    color: #c9a04b;
    font-weight: 700;
}

/* Share sticky */
.article-mag-share {
    position: fixed;
    left: max(1.5rem, calc(50vw - 510px));
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 999px;
    padding: 1rem 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    z-index: 5;
}
.article-mag-share-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
    font-weight: 600;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 0.5rem;
}
.article-mag-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ececec;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.article-mag-share-btn:hover {
    background: #2d5b33;
    border-color: #2d5b33;
    color: #fff;
}
.article-mag-share-btn.is-copied {
    background: #c9a04b;
    border-color: #c9a04b;
    color: #fff;
}

/* Navigation prev/next */
.article-mag-nav {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.article-mag-nav-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 1.75rem;
    background: #fafaf7;
    border: 1px solid #ececec;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.article-mag-nav-card:hover {
    transform: translateY(-3px);
    border-color: #c9a04b;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}
.article-mag-nav-card.next {
    text-align: right;
}
.article-mag-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a04b;
    font-weight: 600;
}
.article-mag-nav-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 700;
}

/* Not found */
.article-mag-notfound {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 8rem 1.5rem;
}
.article-mag-notfound h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 0 0 1rem;
    color: #1a1a1a;
}
.article-mag-notfound p {
    color: #666;
    margin: 0 0 2rem;
    line-height: 1.6;
}

/* Responsive article */
@media (max-width: 1100px) {
    .article-mag-share {
        position: static;
        flex-direction: row;
        transform: none;
        margin: 2rem auto 0;
        max-width: max-content;
        padding: 0.6rem 1.25rem;
        border-radius: 999px;
    }
    .article-mag-share-label {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}
@media (max-width: 700px) {
    .article-mag-hero { padding: 5.5rem 1.25rem 3rem; }
    .article-mag-body { padding: 3rem 1.25rem; }
    .article-mag-resume { font-size: 1.05rem; padding-left: 1rem; }
    .article-mag-content { font-size: 1.05rem; line-height: 1.75; }
    .article-mag-p-first::first-letter { font-size: 3.5em; }
    .article-mag-nav { grid-template-columns: 1fr; }
    .article-mag-nav-card.next { text-align: left; }
}

/* ===========================================================
   ÉVÉNEMENTS — Page liste (timeline + tabs)
   =========================================================== */

.evt-hero {
    padding: 8rem 1.5rem 3.5rem;
    background:
        radial-gradient(ellipse at top right, rgba(212, 168, 67, 0.18), transparent 55%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.evt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 22px);
    pointer-events: none;
}
.evt-hero .partners-title,
.evt-hero-title { color: var(--white); }
.evt-hero-lead { color: rgba(255,255,255,0.75); }
.evt-hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}
.evt-hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #c9a04b;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.evt-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.evt-hero-lead {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}
.evt-hero-stats {
    position: relative;
    max-width: 720px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.evt-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.evt-hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #c9a04b;
    font-weight: 700;
    line-height: 1;
}
.evt-hero-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    color: #c9a04b;
    font-weight: 600;
}

.evt-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.evt-section-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #c9a04b;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Featured card */
.evt-featured {
    background: #fff;
}
.evt-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.evt-featured-media {
    position: relative;
    aspect-ratio: 16 / 11;
    background: #f0f0ed;
    overflow: hidden;
}
.evt-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.evt-featured-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d5b33 0%, #1a3a1f 100%);
}
.evt-featured-date {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 0.85rem 1.1rem;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    min-width: 70px;
}
.evt-featured-date-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #2d5b33;
}
.evt-featured-date-month {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a04b;
    font-weight: 700;
    margin-top: 0.25rem;
}
.evt-featured-date-year {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-top: 0.15rem;
}
.evt-featured-body {
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.evt-featured-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: #c9a04b;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.evt-featured-body h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.evt-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}
.evt-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.evt-featured-meta svg { color: #c9a04b; }
.evt-featured-desc {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Tabs */
.evt-list {
    background: #fafaf7;
    border-top: 1px solid #ececec;
}
.evt-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e5e0;
    overflow-x: auto;
}
.evt-tab {
    background: transparent;
    border: none;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.evt-tab:hover { color: #2d5b33; }
.evt-tab.is-active {
    color: #1a1a1a;
    border-bottom-color: #c9a04b;
    font-weight: 700;
}
.evt-tab-count {
    background: #ececec;
    color: #888;
    font-size: 0.75rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-weight: 700;
    min-width: 26px;
    text-align: center;
}
.evt-tab.is-active .evt-tab-count {
    background: #c9a04b;
    color: #fff;
}
.evt-tab-panel { display: none; }
.evt-tab-panel.is-active { display: block; }

/* Timeline upcoming */
.evt-timeline-group {
    margin-bottom: 3rem;
}
.evt-timeline-group:last-child { margin-bottom: 0; }
.evt-timeline-month {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 0 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #c9a04b;
    text-transform: capitalize;
}
.evt-timeline-items {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-left: 5rem;
}
.evt-timeline-items::before {
    content: '';
    position: absolute;
    left: 3.4rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: #ececec;
}
.evt-timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}
.evt-timeline-item:last-child { margin-bottom: 0; }
.evt-timeline-date {
    position: absolute;
    left: -5rem;
    top: 0.25rem;
    width: 4.25rem;
    text-align: center;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 0.6rem 0.4rem;
    z-index: 1;
}
.evt-timeline-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #2d5b33;
}
.evt-timeline-month-short {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c9a04b;
    font-weight: 700;
    margin-top: 0.2rem;
}
.evt-timeline-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.evt-timeline-card:has(.evt-timeline-media + .evt-timeline-body):hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}
.evt-timeline-card:not(:has(.evt-timeline-media)) {
    grid-template-columns: 1fr;
}
.evt-timeline-media {
    aspect-ratio: 4 / 3;
    background: #f0f0ed;
    overflow: hidden;
}
.evt-timeline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.evt-timeline-body {
    padding: 1.25rem 1.5rem;
}
.evt-timeline-body h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.evt-timeline-meta {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.evt-timeline-body p {
    color: #555;
    line-height: 1.55;
    margin: 0;
    font-size: 0.95rem;
}

/* Past grid */
.evt-past-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.evt-past-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.evt-past-card:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.evt-past-media {
    aspect-ratio: 16 / 10;
    background: #f0f0ed;
    overflow: hidden;
}
.evt-past-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
}
.evt-past-fallback {
    background: linear-gradient(135deg, #ddd 0%, #aaa 100%);
}
.evt-past-body {
    padding: 1.25rem 1.4rem;
}
.evt-past-date {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c9a04b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.evt-past-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.evt-past-lieu {
    color: #888;
    font-size: 0.85rem;
}

.evt-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
    font-size: 1rem;
}

/* Responsive événements */
@media (max-width: 900px) {
    .evt-featured-card { grid-template-columns: 1fr; }
    .evt-featured-body { padding: 1.75rem; }
    .evt-past-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .evt-hero { padding: 6rem 1.25rem 3rem; }
    .evt-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .evt-hero-stat-value { font-size: 1.75rem; }
    .evt-section-inner { padding: 3rem 1.25rem; }
    .evt-timeline-items { padding-left: 4rem; }
    .evt-timeline-items::before { left: 2.5rem; }
    .evt-timeline-date { left: -4rem; width: 3.25rem; padding: 0.5rem 0.3rem; }
    .evt-timeline-day { font-size: 1.2rem; }
    .evt-timeline-card { grid-template-columns: 1fr; }
    .evt-timeline-media { aspect-ratio: 16 / 9; }
    .evt-past-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   COMMUNAUTAIRE — Page (Highlights, sondage, joueur)
   =========================================================== */

.comm-hero {
    padding: 8rem 1.5rem 3.5rem;
    background:
        radial-gradient(ellipse at center top, rgba(212, 168, 67, 0.2), transparent 55%),
        linear-gradient(180deg, var(--blue-light) 0%, var(--blue-primary) 100%);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.comm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 22px);
    pointer-events: none;
}
.comm-hero .partners-title,
.comm-hero-title { color: var(--white); }
.comm-hero-lead { color: rgba(255,255,255,0.85); }
.comm-hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}
.comm-hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #c9a04b;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.comm-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.comm-hero-lead {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.comm-section { padding: 5rem 1.5rem; }
.comm-section-light { background: #fff; }
.comm-section-alt { background: #fafaf7; border-top: 1px solid #ececec; border-bottom: 1px solid #ececec; }
.comm-section-dark { background: #1a1a1a; color: #fff; }
.comm-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.comm-section-head {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}
.comm-section-roman {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: rgba(45, 91, 51, 0.08);
    font-weight: 700;
    margin-bottom: -2rem;
    user-select: none;
}
.comm-section-roman-light { color: rgba(255, 255, 255, 0.06); }
.comm-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #c9a04b;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.comm-eyebrow-light { color: #c9a04b; }
.comm-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0;
    color: inherit;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.comm-section-dark .comm-section-head h2 { color: #fff; }

/* Highlights */
.comm-highlight-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.comm-highlight-video {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}
.comm-highlight-video iframe,
.comm-highlight-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.comm-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    color: #888;
    font-size: 0.9rem;
}
.comm-highlight-info {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.comm-highlight-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: #c9a04b;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.comm-highlight-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}
.comm-highlight-info p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.comm-highlight-date {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comm-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.comm-highlight-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comm-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.comm-highlight-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f0f0ed;
    overflow: hidden;
}
.comm-highlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comm-highlight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #2d5b33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding-left: 3px;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease;
}
.comm-highlight-card:hover .comm-highlight-play {
    transform: translate(-50%, -50%) scale(1.08);
}
.comm-highlight-card-body {
    padding: 1.25rem;
}
.comm-highlight-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}
.comm-highlight-card-body p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Sondage */
.comm-sondage-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.comm-sondage-head {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ececec;
}
.comm-sondage-head h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}
.comm-sondage-meta {
    color: #888;
    font-size: 0.85rem;
}
.comm-sondage-options {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.comm-sondage-option {
    background: #fafaf7;
    border: 1px solid #ececec;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}
.comm-sondage-option:hover { border-color: #c9a04b; }
.comm-sondage-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.comm-sondage-option-radio {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
}
.comm-sondage-option-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}
.comm-sondage-option input:checked ~ .comm-sondage-option-radio .comm-sondage-option-mark {
    border-color: #2d5b33;
}
.comm-sondage-option input:checked ~ .comm-sondage-option-radio .comm-sondage-option-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #2d5b33;
}
.comm-sondage-option input:checked ~ .comm-sondage-option-radio {
    color: #1a1a1a;
}
.comm-sondage-option-label {
    flex: 1;
    color: #1a1a1a;
    font-size: 0.95rem;
}
.comm-sondage-option.is-result {
    background: #fff;
    padding: 1rem 1.25rem;
}
.comm-sondage-option-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.comm-sondage-option-pct {
    color: #2d5b33;
    font-weight: 700;
    font-family: var(--font-heading);
}
.comm-sondage-bar {
    width: 100%;
    height: 6px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
}
.comm-sondage-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #c9a04b, #2d5b33);
    transition: width 0.5s ease;
}
.comm-sondage-vote {
    width: 100%;
}
.comm-sondage-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    color: #888;
    font-size: 0.85rem;
}
.comm-sondage-voted {
    color: #2d5b33;
    font-weight: 600;
}
.comm-sondage-empty {
    text-align: center;
    padding: 3rem 1rem;
}
.comm-sondage-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}
.comm-sondage-empty p {
    color: #666;
    margin: 0;
}

/* Joueur de la semaine */
.comm-joueur-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.comm-joueur-photo {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #f59e3b 0%, #b04a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.comm-joueur-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comm-joueur-photo-fallback {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}
.comm-joueur-info {
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.comm-joueur-week {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: #c9a04b;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.comm-joueur-info h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1;
    margin: 0 0 0.5rem;
    color: #fff;
    font-weight: 700;
}
.comm-joueur-team {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.comm-joueur-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin: 0 0 1.75rem;
}
.comm-joueur-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.comm-joueur-stats > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.comm-joueur-stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #c9a04b;
    font-weight: 700;
    line-height: 1;
}
.comm-joueur-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}
.comm-joueur-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.comm-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
}

/* Responsive communautaire */
@media (max-width: 900px) {
    .comm-highlight-main { grid-template-columns: 1fr; }
    .comm-highlight-info { padding: 1.75rem; }
    .comm-highlight-grid { grid-template-columns: 1fr; }
    .comm-joueur-card { grid-template-columns: 1fr; }
    .comm-joueur-photo { aspect-ratio: 16 / 11; }
    .comm-joueur-info { padding: 1.75rem; }
}
@media (max-width: 700px) {
    .comm-hero { padding: 6rem 1.25rem 3rem; }
    .comm-section { padding: 3.5rem 1.25rem; }
    .comm-sondage-card { padding: 1.75rem 1.25rem; }
    .comm-section-roman { font-size: 4rem; margin-bottom: -1.5rem; }
}

/* ===========================================================
   ADMIN — Inscriptions cards
   =========================================================== */

.insc-admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(11, 20, 38, 0.08);
}
.insc-admin-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.insc-admin-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.65rem 1rem;
    background: var(--bg-alt, #fafaf7);
    border: 1px solid rgba(11, 20, 38, 0.08);
    border-radius: 8px;
    min-width: 90px;
}
.insc-admin-stat.is-new { border-color: rgba(0, 109, 166, 0.25); background: rgba(0, 109, 166, 0.04); }
.insc-admin-stat.is-validated { border-color: rgba(34, 139, 84, 0.3); background: rgba(34, 139, 84, 0.05); }
.insc-admin-stat.is-refused { border-color: rgba(180, 50, 50, 0.25); background: rgba(180, 50, 50, 0.04); }
.insc-admin-stat-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy-deep, #0b1426);
    font-weight: 700;
    line-height: 1;
}
.insc-admin-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    color: var(--text-muted, #888);
    font-weight: 600;
}

.insc-admin-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.insc-admin-filters .chip {
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.12);
    color: var(--text-secondary, #555);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.insc-admin-filters .chip:hover {
    border-color: var(--navy-deep, #0b1426);
    color: var(--navy-deep, #0b1426);
}
.insc-admin-filters .chip.is-active {
    background: var(--navy-deep, #0b1426);
    border-color: var(--navy-deep, #0b1426);
    color: var(--gold, #c9a04b);
}

.insc-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1rem;
}
.insc-admin-card {
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.insc-admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.insc-admin-card.is-validee { border-left: 3px solid #228b54; }
.insc-admin-card.is-refusee { border-left: 3px solid #b43232; opacity: 0.85; }
.insc-admin-card.is-nouvelle { border-left: 3px solid #006da6; }

.insc-admin-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(11, 20, 38, 0.06);
    background: var(--bg-alt, #fafaf7);
}
.insc-admin-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-deep, #0b1426);
    color: var(--gold, #c9a04b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.insc-admin-card-id {
    flex: 1;
    min-width: 0;
}
.insc-admin-card-id h4 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    color: var(--navy-deep, #0b1426);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.insc-admin-card-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted, #888);
    font-weight: 600;
}
.insc-admin-status {
    flex-shrink: 0;
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.insc-admin-status.status-nouvelle { background: rgba(0, 109, 166, 0.12); color: #006da6; }
.insc-admin-status.status-validee { background: rgba(34, 139, 84, 0.12); color: #228b54; }
.insc-admin-status.status-refusee { background: rgba(180, 50, 50, 0.12); color: #b43232; }

.insc-admin-card-body {
    padding: 1rem 1.25rem;
    flex: 1;
}
.insc-admin-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px dashed rgba(11, 20, 38, 0.06);
    font-size: 0.88rem;
}
.insc-admin-row:last-of-type { border-bottom: none; }
.insc-admin-row-key {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #888);
    font-weight: 600;
    flex-shrink: 0;
}
.insc-admin-row a {
    color: var(--navy-deep, #0b1426);
    text-decoration: none;
    font-weight: 500;
    text-align: right;
    word-break: break-all;
}
.insc-admin-row a:hover { text-decoration: underline; }
.insc-admin-msg {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(11, 20, 38, 0.06);
}
.insc-admin-msg summary {
    cursor: pointer;
    color: var(--text-muted, #888);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.insc-admin-msg p {
    margin: 0.5rem 0 0;
    color: var(--text-secondary, #555);
    line-height: 1.5;
    font-size: 0.9rem;
}

.insc-admin-card-actions {
    display: flex;
    gap: 0.4rem;
    padding: 0.85rem 1.25rem;
    background: var(--bg-alt, #fafaf7);
    border-top: 1px solid rgba(11, 20, 38, 0.06);
}
.insc-admin-card-actions .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.55rem 0.65rem;
}
.insc-admin-card-actions .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Params form */
.insc-params-form {
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}

@media (max-width: 700px) {
    .insc-admin-toolbar { flex-direction: column; align-items: stretch; }
    .insc-admin-stats { gap: 0.5rem; }
    .insc-admin-stat { min-width: 0; flex: 1; padding: 0.5rem 0.65rem; }
    .insc-admin-stat-value { font-size: 1.25rem; }
    .insc-admin-grid { grid-template-columns: 1fr; }
    .insc-admin-card-actions { flex-wrap: wrap; }
}

/* ===========================================================
   ADMIN — Preview cards (sondage actuel, joueur actuel)
   =========================================================== */

.admin-empty-card {
    padding: 1.75rem;
    background: var(--bg-alt, #fafaf7);
    border: 1px dashed rgba(11, 20, 38, 0.15);
    border-radius: 10px;
    text-align: center;
    color: var(--text-secondary, #555);
}
.admin-empty-card p { margin: 0 0 0.4rem; font-size: 0.95rem; }
.admin-empty-card .muted {
    color: var(--text-muted, #888);
    font-size: 0.85rem;
}

/* Sondage actuel */
.admin-sondage-card {
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}
.admin-sondage-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 20, 38, 0.06);
}
.admin-sondage-card-head h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy-deep, #0b1426);
    font-weight: 700;
}
.admin-sondage-total {
    color: var(--text-muted, #888);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.admin-sondage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.admin-sondage-row-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}
.admin-sondage-pct {
    color: var(--text-muted, #888);
    font-weight: 600;
    font-size: 0.85rem;
}
.admin-sondage-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-alt, #ececec);
    border-radius: 999px;
    overflow: hidden;
}
.admin-sondage-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold, #c9a04b), var(--navy-deep, #0b1426));
    transition: width 0.5s ease;
}

/* Joueur actuel */
.admin-joueur-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    align-items: center;
}
.admin-joueur-card > .btn {
    align-self: center;
    white-space: nowrap;
}
.admin-joueur-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy-deep, #0b1426);
    color: var(--gold, #c9a04b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
}
.admin-joueur-info h4 {
    margin: 0 0 0.3rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy-deep, #0b1426);
    font-weight: 700;
}
.admin-joueur-team {
    display: inline-block;
    color: var(--gold, #c9a04b);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.admin-joueur-info p {
    margin: 0.5rem 0 0;
    color: var(--text-secondary, #555);
    line-height: 1.55;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .admin-joueur-card { grid-template-columns: 1fr; text-align: center; }
    .admin-joueur-avatar { margin: 0 auto; }
    .admin-joueur-card > .btn { justify-self: center; }
}

/* Admin info card (Paramètres) */
.admin-info-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 109, 166, 0.04);
    border: 1px solid rgba(0, 109, 166, 0.18);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}
.admin-info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 109, 166, 0.1);
    color: #006da6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.admin-info-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--navy-deep, #0b1426);
    font-weight: 600;
}
.admin-info-card p {
    margin: 0;
    color: var(--text-secondary, #555);
    line-height: 1.55;
    font-size: 0.92rem;
}
.admin-info-card code {
    background: rgba(0, 0, 0, 0.06);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
    font-family: 'Menlo', 'Consolas', monospace;
}

@media (max-width: 600px) {
    .admin-info-card { grid-template-columns: 1fr; text-align: center; }
    .admin-info-card-icon { margin: 0 auto; }
}
