/* ============================================================
   OBERNAI ÉCHECS — Styles partagés
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

:root {
    --cream: #FAFAF7;
    --cream-dark: #EDF5EE;
    --gold: #22C55E;
    --gold-dark: #16A34A;
    --mahogany: #15803D;
    --dark: #111111;
    --dark-soft: #1D1D1D;
    --royal: #111111;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream);
    color: var(--dark-soft);
    overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 0; width: 100%; z-index: 100;
    padding: 0.9rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.22);
    transition: padding 0.4s, box-shadow 0.4s, background 0.4s, border-color 0.4s;
}

nav.nav-hero {
    padding: 1.4rem 4rem;
    background: transparent;
    border-bottom-color: transparent;
}

nav.scrolled {
    padding: 0.9rem 4rem !important;
    background: rgba(17, 17, 17, 0.97) !important;
    box-shadow: 0 2px 40px rgba(0,0,0,0.45);
    border-bottom-color: rgba(34, 197, 94, 0.22) !important;
}

.nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; flex-shrink: 0;
}

.nav-logo-piece { font-size: 1.9rem; color: var(--gold); line-height: 1; }

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; color: var(--cream); letter-spacing: 0.04em;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
    display: flex; gap: 2rem; list-style: none; align-items: center;
}

.nav-links a {
    color: var(--cream); text-decoration: none;
    font-size: 0.79rem; font-weight: 500;
    letter-spacing: 0.13em; text-transform: uppercase;
    opacity: 0.7; transition: opacity 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 0.5rem 1.3rem !important;
    opacity: 1 !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-dark) !important; color: var(--dark) !important; }

/* Hamburger */
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; background: none; border: none;
}

.nav-hamburger span {
    display: block; width: 24px; height: 2px; background: var(--cream);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 17, 17, 0.99); z-index: 99;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 600;
    color: var(--cream); text-decoration: none;
    transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--gold); }

/* ── PAGE HERO (pages intérieures) ── */
.page-hero {
    min-height: 44vh;
    background: var(--dark);
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute; inset: 0;
    background-image: repeating-conic-gradient(rgba(255, 255, 255, 0.05) 0% 25%, transparent 0% 50%);
    background-size: 64px 64px;
}

.page-hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(130deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.75) 60%, rgba(17,17,17,0.3) 100%);
}

.page-hero-content {
    position: relative; z-index: 2;
    max-width: 1400px; margin: 0 auto; width: 100%;
    padding: 4rem;
}

.page-hero-eyebrow {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
}

.page-hero-eyebrow::before {
    content: ''; display: inline-block;
    width: 30px; height: 1px; background: var(--gold); flex-shrink: 0;
}

.page-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700; color: var(--cream); line-height: 1.1;
    margin-bottom: 1rem;
}

.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-desc {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.55);
    max-width: 540px; line-height: 1.85;
}

/* ── SECTIONS ── */
.section-wrap {
    max-width: 1400px; margin: 0 auto; padding: 7rem 4rem;
}

.section-wrap-dark {
    background: var(--dark);
    padding: 7rem 0;
    position: relative; overflow: hidden;
}

.section-wrap-dark::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-conic-gradient(rgba(255,255,255,0.025) 0% 25%, transparent 0% 50%);
    background-size: 44px 44px; pointer-events: none;
}

.section-wrap-alt { background: var(--cream-dark); padding: 7rem 0; }

.section-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 4rem;
    position: relative; z-index: 2;
}

.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header.left { text-align: left; }

.section-eyebrow {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.9rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--dark); line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--mahogany); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold); }

.section-lead {
    font-size: 0.97rem; color: #666; line-height: 1.85;
    max-width: 620px; margin: 1.2rem auto 0;
}

.section-lead.light { color: rgba(245, 240, 232, 0.55); }

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
}

/* ── BOUTONS ── */
.btn-primary {
    background: var(--gold); color: var(--dark);
    padding: 0.95rem 2.1rem;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.2s;
    border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 8px;
}

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-secondary {
    border: 1px solid rgba(34, 197, 94, 0.45); color: var(--cream);
    padding: 0.95rem 2.1rem;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: border-color 0.2s, color 0.2s;
    background: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 8px;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
    border: 1px solid rgba(22, 101, 52, 0.35); color: var(--dark-soft);
    padding: 0.95rem 2.1rem;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: border-color 0.2s, color 0.2s;
    background: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 8px;
}

.btn-outline:hover { border-color: var(--mahogany); color: var(--mahogany); }

/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 5rem 4rem 3rem;
    border-top: 1px solid rgba(34, 197, 94, 0.12);
}

.footer-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem; color: var(--cream);
    display: flex; align-items: center; gap: 0.65rem;
    margin-bottom: 1rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 0.84rem; color: rgba(245, 240, 232, 0.4);
    line-height: 1.8; max-width: 260px;
}

.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem; font-weight: 600; color: var(--cream);
    margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-links a {
    font-size: 0.83rem; color: rgba(245, 240, 232, 0.4);
    text-decoration: none; transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1400px; margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    display: flex; justify-content: space-between; align-items: center;
}

.footer-copy { font-size: 0.72rem; color: rgba(245, 240, 232, 0.26); letter-spacing: 0.04em; }
.footer-ornament { color: rgba(34, 197, 94, 0.35); letter-spacing: 0.6em; }

/* ── ANIMATIONS ── */
.animate { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.animate.visible { opacity: 1; transform: none; }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    nav, nav.nav-hero, nav.scrolled { padding: 1rem 2.5rem !important; }
    .section-wrap { padding: 5rem 2.5rem; }
    .section-inner { padding: 0 2.5rem; }
    .section-wrap-dark, .section-wrap-alt { padding: 5rem 0; }
    .page-hero-content { padding: 3rem 2.5rem; }
    footer { padding: 4rem 2.5rem 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    nav, nav.nav-hero, nav.scrolled { padding: 1rem 1.5rem !important; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .section-wrap { padding: 4rem 1.5rem; }
    .section-inner { padding: 0 1.5rem; }
    .section-wrap-dark, .section-wrap-alt { padding: 4rem 0; }
    .page-hero { min-height: 36vh; }
    .page-hero-content { padding: 2.5rem 1.5rem; }
    footer { padding: 3.5rem 1.5rem 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ============================================================
   PAGE INDEX
   ============================================================ */

.hero {
    min-height: 100vh;
    background-color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(17,17,17,0.97) 0%, rgba(17,17,17,0.95) 40%, rgba(17,17,17,0.72) 65%, rgba(17,17,17,0.45) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    width: 100%; max-width: 1400px; margin: 0 auto;
    padding: 0 4rem; padding-top: 90px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 5rem;
}

.hero-eyebrow {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
}

.hero-eyebrow::before {
    content: ''; display: block;
    width: 36px; height: 1px; background: var(--gold); flex-shrink: 0;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 700; color: var(--cream); line-height: 1.06; margin-bottom: 1.6rem;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
    font-size: 0.97rem; color: rgba(245,240,232,0.82);
    line-height: 1.85; margin-bottom: 2.5rem; max-width: 440px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 3rem;
    margin-top: 3.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(34, 197, 94, 0.14);
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 700; color: var(--gold);
}

.hero-stat-label {
    font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(245,240,232,0.65); margin-top: 0.2rem;
}

.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-photo-frame { position: relative; width: clamp(300px, 34vw, 500px); }

.hero-photo-frame::before {
    content: ''; position: absolute; inset: -12px;
    border: 1px solid rgba(255,255,255,0.28); z-index: 0; pointer-events: none;
}

.hero-photo-frame::after {
    content: ''; position: absolute; inset: -6px;
    border: 1px solid rgba(255,255,255,0.1); z-index: 0; pointer-events: none;
}

.hero-photo {
    width: 100%; height: 520px; object-fit: cover;
    display: block; position: relative; z-index: 1;
    filter: saturate(0.9) brightness(0.95);
}

.hero-photo-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(17,17,17,0.2) 0%, transparent 60%, rgba(17,17,17,0.1) 100%);
    pointer-events: none;
}

.hero-photo-badge {
    position: absolute; bottom: -1px; left: -1px; z-index: 3;
    background: var(--gold); padding: 0.5rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}

.hero-photo-badge::before { content: '♟'; color: var(--dark); font-size: 0.9rem; }

.hero-photo-badge span {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark);
}

.ticker { background: var(--gold); padding: 0.8rem 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 28s linear infinite; }

.ticker-item {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--dark); padding: 0 2.5rem;
}

.ticker-item::after { content: '♟'; margin-left: 2.5rem; opacity: 0.5; }

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.about { padding: 8rem 4rem; max-width: 1400px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.about-card {
    padding: 2.5rem 2rem;
    border: none;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
    position: relative; overflow: hidden;
    transition: box-shadow 0.35s, transform 0.35s;
}

.about-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    width: 100%; height: 3px; background: var(--gold);
}

.about-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.12); transform: translateY(-6px); }

.about-icon { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 1.4rem; }

.about-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 0.85rem;
}

.about-card-text { font-size: 0.88rem; line-height: 1.85; color: #666; }

.about-card-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); text-decoration: none;
    margin-top: 1.2rem; transition: gap 0.2s;
}

.about-card-link:hover { gap: 0.7rem; }
.about-card-link::after { content: '→'; }

.gallery-wrap { background: var(--cream-dark); padding: 8rem 4rem; }
.gallery-inner { max-width: 1400px; margin: 0 auto; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 340px 240px;
    gap: 0.75rem;
}

.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: saturate(0.92) brightness(0.97);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }

.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1rem 1.25rem 0.9rem;
    background: linear-gradient(transparent, rgba(17,17,17,0.75));
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
    color: rgba(245,240,232,0.85); text-transform: uppercase;
    transform: translateY(100%); transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    border: 0px solid var(--gold); transition: border-width 0.3s; pointer-events: none;
}

.gallery-item:hover::after { border-width: 2px; }

.events-wrap { background: var(--dark); padding: 8rem 0; position: relative; overflow: hidden; }

.events-wrap::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-conic-gradient(rgba(255,255,255,0.03) 0% 25%, transparent 0% 50%);
    background-size: 44px 44px;
}

.events { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.events .section-title { color: var(--cream); }
.events .section-title em { color: var(--gold); font-style: italic; }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.event-card {
    border: 1px solid rgba(34, 197, 94, 0.18);
    padding: 2.2rem; position: relative; overflow: hidden;
    border-radius: 14px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.event-card::after {
    content: attr(data-piece); position: absolute;
    bottom: -0.5rem; right: 1rem; font-size: 5rem;
    color: rgba(34, 197, 94, 0.07); line-height: 1;
    user-select: none; pointer-events: none;
}

.event-card:hover { border-color: rgba(34, 197, 94, 0.55); background: rgba(34, 197, 94, 0.05); transform: translateY(-3px); }

.event-date {
    display: inline-block; background: var(--gold); color: var(--dark);
    font-size: 0.67rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.3rem 0.85rem; margin-bottom: 1.2rem; border-radius: 4px;
}

.event-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 600; color: var(--cream);
    margin-bottom: 0.75rem; line-height: 1.3;
}

.event-desc { font-size: 0.84rem; color: rgba(245,240,232,0.55); line-height: 1.75; margin-bottom: 1.5rem; }

.event-link {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.2s;
}

.event-link:hover { gap: 0.9rem; }
.event-link::after { content: '→'; }

/* Événement à la une */
.event-featured {
    display: grid;
    grid-template-columns: 210px 1fr;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 16px 50px rgba(0,0,0,0.35);
    border: 1px solid rgba(34,197,94,0.15);
}

.event-featured-left {
    background: var(--gold);
    padding: 3rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.event-featured-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.event-featured-weekday {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(0,0,0,0.55);
}

.event-featured-day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.event-featured-month {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
}

.event-featured-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0,0,0,0.12);
    color: rgba(0,0,0,0.75);
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
}

.event-featured-right {
    background: #161616;
    padding: 2.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-featured-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}

.event-featured-intro {
    font-size: 0.9rem;
    color: rgba(250,250,247,0.65);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.event-featured-intro strong { color: var(--cream); }

.event-featured-times {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-featured-times li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.eft-hour {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 56px;
    flex-shrink: 0;
}

.eft-label {
    font-size: 0.88rem;
    color: rgba(250,250,247,0.75);
}

.event-featured-body {
    font-size: 0.86rem;
    color: rgba(250,250,247,0.55);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.event-featured-body strong { color: rgba(250,250,247,0.85); }

.event-featured-access {
    font-size: 0.78rem;
    color: rgba(250,250,247,0.38);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-featured-cta { display: inline-block; }

/* Grille secondaire */
.events-grid-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.facts-band {
    background: var(--dark-soft);
    border-top: 1px solid rgba(34, 197, 94, 0.14);
    border-bottom: 1px solid rgba(34, 197, 94, 0.14);
}

.facts-band-inner { max-width: 1400px; margin: 0 auto; padding: 0 4rem; display: flex; align-items: stretch; }

.fact-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.8rem 2.5rem; flex: 1;
    border-right: 1px solid rgba(34, 197, 94, 0.12);
}

.fact-item:last-child { border-right: none; }
.fact-icon { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }

.fact-label {
    display: block; font-size: 0.63rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(245,240,232,0.38); margin-bottom: 0.25rem;
}

.fact-value { display: block; font-size: 0.9rem; font-weight: 600; color: var(--cream); }

.join { padding: 9rem 4rem; background: var(--cream-dark); position: relative; overflow: hidden; }

.join::before {
    content: '♞'; position: absolute; font-size: 30rem;
    color: rgba(22, 101, 52, 0.05); top: 50%; right: -4rem;
    transform: translateY(-50%); pointer-events: none; user-select: none; line-height: 1;
}

.join-layout {
    position: relative; z-index: 2; max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 400px; gap: 6rem; align-items: start;
}

.join-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
    color: var(--dark); margin-bottom: 1.2rem; line-height: 1.15;
}

.join-title em { font-style: italic; color: var(--mahogany); }
.join-text { font-size: 0.97rem; color: #6a6060; line-height: 1.85; margin-bottom: 2.5rem; }
.join-infos { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.8rem; }
.join-info-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.join-info-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.join-info-text { font-size: 0.87rem; line-height: 1.65; color: #666; }

.join-info-text strong {
    display: block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.35rem;
}

.join-schedule {
    border-collapse: collapse;
    font-size: 0.82rem;
    margin-top: 0.3rem;
    width: 100%;
}

.join-schedule td {
    padding: 0.18rem 0.6rem 0.18rem 0;
    color: #555;
    vertical-align: top;
}

.join-schedule td:first-child {
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.join-schedule td:last-child {
    color: var(--gold-dark);
    font-weight: 600;
    white-space: nowrap;
}

.join-map-link {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.join-map-link:hover { text-decoration: underline; }

.join-card {
    background: var(--dark);
    border: 1px solid rgba(34, 197, 94, 0.22); border-top: 4px solid var(--gold);
    padding: 2.5rem 2.2rem; border-radius: 16px; overflow: hidden;
}

.join-card-trial {
    display: inline-block; background: rgba(34,197,94,0.12); color: var(--gold);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    padding: 0.35rem 0.9rem; margin-bottom: 2rem; border: 1px solid rgba(34,197,94,0.35);
    border-radius: 4px;
}

.join-card-price { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.3rem; }

.join-card-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem; font-weight: 700; color: var(--cream); line-height: 1;
}

.join-card-unit { font-size: 1.6rem; color: var(--gold); font-weight: 300; margin-left: 0.1rem; }

.join-card-sublabel {
    font-size: 0.78rem; color: rgba(245,240,232,0.38);
    margin-bottom: 2rem; padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.12);
}

.join-card-includes { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.2rem; }

.join-card-includes li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.86rem; color: rgba(245,240,232,0.58); line-height: 1.4;
}

.join-card-includes li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

@media (max-width: 1100px) {
    .hero-content { padding: 0 2.5rem; padding-top: 90px; gap: 3rem; }
    .about { padding: 6rem 2.5rem; }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .gallery-wrap { padding: 6rem 2.5rem; }
    .gallery-grid { grid-template-rows: 260px 180px; }
    .facts-band-inner { padding: 0 2.5rem; }
    .fact-item { padding: 1.5rem 1.8rem; }
    .events { padding: 0 2.5rem; }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .event-featured { grid-template-columns: 170px 1fr; }
    .event-featured-right { padding: 2rem 2.5rem; }
    .event-featured-title { font-size: 1.4rem; }
    .join { padding: 7rem 2.5rem; }
    .join-layout { gap: 4rem; grid-template-columns: 1fr 360px; }
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; padding: 0 1.5rem; padding-top: 90px; gap: 2.5rem; }
    .hero-visual { display: none; }
    .hero-stats { gap: 1.5rem; }
    .about { padding: 5rem 1.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .gallery-wrap { padding: 5rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 2; }
    .facts-band-inner { flex-direction: column; padding: 0; }
    .fact-item { border-right: none; border-bottom: 1px solid rgba(34, 197, 94, 0.12); padding: 1.2rem 1.5rem; }
    .fact-item:last-child { border-bottom: none; }
    .events-wrap { padding: 5rem 0; }
    .events { padding: 0 1.5rem; }
    .events-grid { grid-template-columns: 1fr; }
    .event-featured { grid-template-columns: 1fr; }
    .event-featured-left { flex-direction: row; justify-content: flex-start; padding: 1.75rem; gap: 2rem; }
    .event-featured-day { font-size: 3.5rem; }
    .event-featured-right { padding: 1.75rem; }
    .events-grid-secondary { grid-template-columns: 1fr; }
    .join { padding: 6rem 1.5rem; }
    .join::before { display: none; }
    .join-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 1rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 240px 200px 200px 200px; }
    .gallery-item:first-child { grid-column: 1; grid-row: 1; }
}

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

.infos-pratiques { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.info-block {
    padding: 2.5rem 2rem;
    border: none; background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s, transform 0.3s;
}

.info-block:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.11); transform: translateY(-4px); }

.info-block-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 1.2rem; }

.info-block-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 1.2rem;
}

.info-block-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.info-block-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.88rem; line-height: 1.5; color: #555;
}

.info-block-list li::before { content: '♟'; color: var(--gold); flex-shrink: 0; margin-top: 0.05rem; }
.info-block-list li strong { color: var(--dark); font-weight: 600; }

.horaires-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.horaires-table tr { border-bottom: 1px solid rgba(0,0,0,0.07); }
.horaires-table tr:last-child { border-bottom: none; }
.horaires-table td { padding: 0.65rem 0; font-size: 0.87rem; color: #555; }
.horaires-table td:first-child { font-weight: 600; color: var(--dark); width: 40%; }
.horaires-table td:last-child { color: var(--gold); font-weight: 500; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }

.contact-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem; font-weight: 700; color: var(--dark);
    margin-bottom: 1.5rem; line-height: 1.2;
}

.contact-info-title em { font-style: italic; color: var(--gold); }
.contact-info-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-text { font-size: 0.88rem; line-height: 1.75; color: #555; }
.contact-info-text strong { color: var(--dark); display: block; font-weight: 600; margin-bottom: 0.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

.form-label {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark-soft);
}

.form-input, .form-select, .form-textarea {
    background: #ffffff; border: 1px solid rgba(0,0,0,0.14); color: var(--dark);
    padding: 0.85rem 1rem; font-size: 0.88rem; font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%; outline: none; border-radius: 8px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}

.form-input::placeholder, .form-textarea::placeholder { color: #aaa; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #fff; color: var(--dark); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; margin-top: 0.5rem; text-align: center; }

.liens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.lien-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600; color: var(--dark);
    margin-bottom: 1rem; padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(34,197,94,0.3);
}

.lien-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.lien-list a {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.87rem; color: #555; text-decoration: none;
    transition: color 0.2s; line-height: 1.4;
}

.lien-list a::before { content: '→'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.lien-list a:hover { color: var(--mahogany); }

@media (max-width: 1100px) { .liens-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 768px) {
    .infos-pratiques { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .liens-grid { grid-template-columns: 1fr; }
}

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

.timeline-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.timeline-intro { position: sticky; top: 120px; }

.timeline-intro-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 1.2rem;
}

.timeline-intro-title em { font-style: italic; color: var(--mahogany); }
.timeline-intro-text { font-size: 0.92rem; line-height: 1.85; color: #666; }

.timeline-item {
    position: relative; padding-left: 3rem; padding-bottom: 2.8rem;
    margin-left: 0.5rem; border-left: 1px solid rgba(34, 197, 94, 0.3);
}

.timeline-item:last-child { padding-bottom: 0; border-left-color: transparent; }

.timeline-item::before {
    content: ''; position: absolute; left: -5px; top: 4px;
    width: 9px; height: 9px; background: var(--gold); border-radius: 50%;
}

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.35rem;
}

.timeline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 0.55rem;
}

.timeline-text { font-size: 0.88rem; line-height: 1.8; color: #666; }

.timeline-photo {
    margin-top: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    max-width: 220px;
}

.timeline-photo img {
    width: 100%;
    display: block;
    filter: grayscale(30%);
    border-radius: 10px;
}

.timeline-photo figcaption {
    font-size: 0.72rem;
    color: #999;
    margin-top: 0.4rem;
    font-style: italic;
}

.comite-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.comite-card {
    padding: 2rem 1.5rem; border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px; text-align: center;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.comite-card:hover { border-color: rgba(34, 197, 94, 0.4); background: rgba(34, 197, 94, 0.05); transform: translateY(-3px); }

.comite-icon { font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 1rem; }

.comite-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.4rem;
}

.comite-role {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem;
}

.comite-note { font-size: 0.8rem; color: rgba(245,240,232,0.4); line-height: 1.5; }

.joueurs-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }

.joueur-stat {
    text-align: center; padding: 2.5rem 2rem;
    border: none; background: #ffffff;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.joueur-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.5rem;
}

.joueur-stat-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #888; }

.joueurs-cta {
    text-align: center; padding: 3rem;
    border: none; background: #ffffff;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.joueurs-cta p { font-size: 0.92rem; color: #666; line-height: 1.7; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

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

@media (max-width: 768px) {
    .timeline-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .timeline-intro { position: static; }
    .comite-grid { grid-template-columns: repeat(2, 1fr); }
    .joueurs-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) { .comite-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE JEUNES
   ============================================================ */

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.benefit-card {
    padding: 2.5rem 2rem; border: none; background: #ffffff;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    position: relative; overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    width: 100%; height: 3px; background: var(--gold);
}

.benefit-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.12); transform: translateY(-5px); }

.benefit-icon { font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 1.2rem; }

.benefit-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 0.8rem;
}

.benefit-text { font-size: 0.88rem; line-height: 1.85; color: #666; }
.benefit-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.benefit-tag {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mahogany); background: rgba(22,101,52,0.08); padding: 0.25rem 0.6rem; border-radius: 4px;
}

.cours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.cours-card {
    display: grid; grid-template-columns: auto 1fr;
    border: 1px solid rgba(34, 197, 94, 0.18); border-radius: 12px;
    overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}

.cours-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.cours-level {
    background: var(--gold); padding: 2rem 1.5rem;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 100px; text-align: center;
}

.cours-level-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 700; color: var(--dark); display: block; line-height: 1;
}

.cours-level-label {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(17,17,17,0.65); margin-top: 0.3rem;
}

.cours-body { padding: 1.8rem; background: #ffffff; }

.cours-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem;
}

.cours-horaire {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}

.cours-desc { font-size: 0.85rem; line-height: 1.75; color: #666; }

.cejca-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cejca-photo { position: relative; }

.cejca-photo img {
    width: 100%; height: 380px; object-fit: cover; display: block;
    filter: saturate(0.9) brightness(0.95);
}

.cejca-photo::before {
    content: ''; position: absolute; inset: -10px;
    border: 1px solid rgba(34, 197, 94, 0.3); z-index: 0; pointer-events: none;
}

.cejca-photo::after {
    content: ''; position: absolute; inset: -5px;
    border: 1px solid rgba(34, 197, 94, 0.12); z-index: 0; pointer-events: none;
}

.cejca-photo img { position: relative; z-index: 1; }
.cejca-text .section-title, .cejca-text .section-eyebrow { text-align: left; }
.cejca-desc { font-size: 0.92rem; line-height: 1.85; color: #666; margin-top: 1.2rem; margin-bottom: 2rem; }

.cejca-stat { display: flex; gap: 2.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(34, 197, 94, 0.15); }

.cejca-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 700; color: var(--mahogany); display: block;
}

.cejca-stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #999; }

.cta-rejoindre {
    text-align: center; padding: 8rem 4rem;
    background: var(--dark); position: relative; overflow: hidden;
}

.cta-rejoindre::before {
    content: '♟'; position: absolute; font-size: 28rem;
    color: rgba(34, 197, 94, 0.04); top: 50%; left: 50%;
    transform: translate(-50%,-50%); pointer-events: none; user-select: none; line-height: 1;
}

.cta-rejoindre-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.cta-rejoindre-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
    color: var(--cream); margin-bottom: 1.2rem; line-height: 1.2;
}

.cta-rejoindre-title em { font-style: italic; color: var(--gold); }
.cta-rejoindre-text { font-size: 0.95rem; color: rgba(245,240,232,0.65); line-height: 1.85; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1100px) {
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .cejca-content { gap: 2.5rem; }
    .cta-rejoindre { padding: 6rem 2.5rem; }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .cours-grid { grid-template-columns: 1fr; }
    .cejca-content { grid-template-columns: 1fr; }
    .cejca-photo { display: none; }
    .cta-rejoindre { padding: 5rem 1.5rem; }
    .cta-rejoindre::before { font-size: 16rem; }
}

/* ============================================================
   PAGE COMPÉTITIONS
   ============================================================ */

#equipes.section-wrap-dark {
    background: var(--dark-soft);
}

#equipes.section-wrap-dark::before {
    display: none;
}

.equipes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.equipe-card {
    border: 1px solid rgba(34, 197, 94, 0.18); border-radius: 12px;
    overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}

.equipe-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.equipe-header {
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.04));
    padding: 2rem; display: flex; align-items: center; gap: 1.5rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.equipe-icon { font-size: 2.8rem; color: var(--gold); line-height: 1; flex-shrink: 0; }

.equipe-num {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem;
}

.equipe-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: var(--cream);
}

.equipe-body { padding: 2rem; }

.equipe-division {
    display: inline-block; background: var(--gold); color: var(--dark);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.35rem 0.9rem; margin-bottom: 1.2rem; border-radius: 4px;
}

.equipe-desc { font-size: 0.87rem; line-height: 1.75; color: rgba(245,240,232,0.6); margin-bottom: 1.5rem; }

.equipe-link {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.2s;
}

.equipe-link:hover { gap: 0.9rem; }
.equipe-link::after { content: '→'; }

.indiv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.indiv-card {
    padding: 2.5rem 2rem; border: none; background: #ffffff;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    position: relative; overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.indiv-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    width: 100%; height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.indiv-card:hover::before { transform: scaleX(1); }
.indiv-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.12); transform: translateY(-4px); }

.indiv-icon { font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 1.2rem; }

.indiv-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem;
}

.indiv-desc-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-dark); margin-bottom: 0.6rem;
}

.indiv-text { font-size: 0.87rem; line-height: 1.8; color: #666; }

.indiv-link {
    display: inline-block; margin-top: 1rem;
    font-size: 0.82rem; font-weight: 600; color: var(--gold-dark);
    text-decoration: none; letter-spacing: 0.02em;
}

.indiv-link:hover { text-decoration: underline; }

.ffe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.ffe-card {
    padding: 2rem 1.5rem; border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px; text-align: center; text-decoration: none; display: block;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.ffe-card:hover { border-color: var(--gold); background: rgba(34, 197, 94, 0.04); transform: translateY(-3px); }

.ffe-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 1rem; }

.ffe-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.4rem;
}

.ffe-desc { font-size: 0.8rem; color: rgba(245,240,232,0.5); line-height: 1.6; }

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

@media (max-width: 768px) {
    .equipes-grid { grid-template-columns: 1fr; }
    .indiv-grid { grid-template-columns: 1fr; }
    .ffe-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE OPEN
   ============================================================ */

.open-hero {
    min-height: 100vh; background: var(--dark);
    position: relative; display: flex; align-items: center;
    justify-content: center; overflow: hidden; text-align: center;
}

.open-hero-bg {
    position: absolute; inset: 0;
    background-image: repeating-conic-gradient(rgba(255,255,255,0.05) 0% 25%, transparent 0% 50%);
    background-size: 72px 72px;
}

.open-hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(34,197,94,0.08) 0%, rgba(17,17,17,0.92) 60%, rgba(17,17,17,0.98) 100%);
}

.open-hero-piece {
    position: absolute; font-size: 50vw; color: rgba(34, 197, 94, 0.04);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    line-height: 1; user-select: none; pointer-events: none;
}

.open-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 4rem; padding-top: 80px; }

.open-hero-edition {
    display: inline-block; border: 1px solid rgba(34, 197, 94, 0.4); color: var(--gold);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase;
    padding: 0.5rem 1.5rem; margin-bottom: 2.5rem; border-radius: 4px;
}

.open-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem); font-weight: 700; color: var(--cream);
    line-height: 0.95; margin-bottom: 1.5rem;
}

.open-hero-title em { font-style: italic; color: var(--gold); display: block; }

.open-hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; font-style: italic;
    color: rgba(245,240,232,0.6); margin-bottom: 3rem;
}

.open-hero-meta { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem; }
.open-hero-meta-item { text-align: center; }

.open-hero-meta-label {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.3rem;
}

.open-hero-meta-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem; font-weight: 600; color: var(--cream);
}

.open-hero-status {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 0.75rem 1.5rem; border-radius: 6px;
    font-size: 0.82rem; font-weight: 500; color: var(--gold); letter-spacing: 0.05em;
}

.open-hero-status::before {
    content: ''; display: block; width: 8px; height: 8px;
    background: var(--gold-dark); border-radius: 50%;
}

.infos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.info-card {
    padding: 2.5rem 2rem; border: none; background: #ffffff;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s, transform 0.3s;
}

.info-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.11); transform: translateY(-4px); }

.info-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 1.2rem; }

.info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem;
}

.info-text { font-size: 0.87rem; line-height: 1.8; color: #666; }

.partenaires-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }

.partenaire-card {
    padding: 2rem 2.5rem; border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 12px; text-align: center; min-width: 180px;
    transition: border-color 0.3s, background 0.3s;
}

.partenaire-card:hover { border-color: rgba(34, 197, 94, 0.4); background: rgba(34, 197, 94, 0.04); }

.partenaire-icon { font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 0.75rem; }

.partenaire-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600; color: var(--cream);
}

.next-edition {
    text-align: center; padding: 8rem 4rem;
    background: var(--cream-dark); position: relative; overflow: hidden;
}

.next-edition::before {
    content: '♞'; position: absolute; font-size: 30rem;
    color: rgba(22, 101, 52, 0.05); top: 50%; left: 50%;
    transform: translate(-50%,-50%); pointer-events: none; user-select: none; line-height: 1;
}

.next-edition-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.next-edition-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
    color: var(--dark); margin-bottom: 1.2rem; line-height: 1.2;
}

.next-edition-title em { font-style: italic; color: var(--mahogany); }
.next-edition-text { font-size: 0.95rem; color: #666; line-height: 1.85; margin-bottom: 2.5rem; }

@media (max-width: 768px) {
    .open-hero-content { padding: 0 1.5rem; padding-top: 80px; }
    .open-hero-meta { gap: 1.5rem; }
    .infos-grid { grid-template-columns: 1fr; }
    .next-edition { padding: 5rem 1.5rem; }
    .next-edition::before { font-size: 16rem; }
}
