/* ─────────────────────────────────────────────
   WC26 GUIDE — Premium Minimal
   ───────────────────────────────────────────── */

:root {
    --gold:       #c99635;
    --gold-light: #e0b45b;
    --gold-dim:   rgba(201,150,53,.12);
    --black:      #0a0a0a;
    --off:        #f5f4f0;
    --white:      #ffffff;
    --text:       #1a1a1a;
    --muted:      #666;
    --border:     rgba(0,0,0,.08);

    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --ease:       cubic-bezier(.22,1,.36,1);
    --r-sm:       12px;
    --r-md:       20px;
    --r-lg:       28px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--off);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
nav a { -webkit-appearance: none; appearance: none; background: none; border: none; }
img { display: block; max-width: 100%; }

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }

/* ── Scroll offset pour header sticky ── */
#bars, #inscription, #partner, #matchs, #faq {
    scroll-margin-top: 80px;
}
@media (max-width: 768px) {
    #bars, #inscription, #partner, #matchs, #faq {
        scroll-margin-top: 110px;
    }
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--off);
    transition: box-shadow .3s var(--ease), background .3s;
    overflow: visible;
}
.header.scrolled {
    background: rgba(245,244,240,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(0,0,0,.06);
}

.header-inner {
    height: 72px;
    padding: 8px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: visible;
}

.logo { display: flex; align-items: center; padding-top: 4px; }
.logo img { width: 150px; display: block; }

.nav {
    display: flex;
    gap: 36px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nav a {
    position: relative;
    color: var(--muted);
    transition: color .2s;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}
.lang-toggle .divider { color: var(--border); user-select: none; }
.lang-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    font-family: var(--font-body);
    color: var(--muted);
    transition: color .2s;
    padding: 2px 0;
}
.lang-toggle button.active { color: var(--text); border-bottom: 1.5px solid var(--gold); }

.cta-pill {
    background: var(--black);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s, transform .2s var(--ease);
}
.cta-pill:hover { background: #222; transform: translateY(-1px); }

.mobile-nav { display: none; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 0 5% 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/vitrine1.png') center right / cover no-repeat;
    transition: transform 8s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            var(--off) 0%,
            rgba(245,244,240,.97) 30%,
            rgba(245,244,240,.85) 52%,
            rgba(245,244,240,.3) 70%,
            transparent 100%
        );
}

.hero-body {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
    animation: fadeUp .8s var(--ease) both;
}
.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,150,53,.5); }
    50% { box-shadow: 0 0 0 6px rgba(201,150,53,0); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(72px, 9vw, 128px);
    line-height: .9;
    letter-spacing: .01em;
    color: var(--text);
    animation: fadeUp .8s var(--ease) .1s both;
}
.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-meta {
    margin-top: 36px;
    animation: fadeUp .8s var(--ease) .25s both;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
}
.hero-tagline b { color: var(--gold); font-weight: 700; }

.hero-desc {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
    color: #444;
    max-width: 460px;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 4px;
    border-bottom: 1px solid var(--border);
    transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--gold); }

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 5%;
    z-index: 2;
    animation: fadeUp .8s var(--ease) .5s both;
}
.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════ */
.stats-band {
    background: var(--black);
    padding: 24px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
}
.stat strong {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
    letter-spacing: .02em;
}
.stat span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
    text-align: center;
}
.stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════════════
   MATCHES SECTION
═══════════════════════════════════════════════ */
.matches-section {
    padding: 80px 5%;
    background: var(--off);
    border-top: 1px solid var(--border);
}
.matches-inner { max-width: 1200px; margin: auto; }
.matches-header { margin-bottom: 28px; }
.matches-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: .95;
    margin-bottom: 8px;
}
.matches-header p { font-size: 15px; font-weight: 300; color: var(--muted); }

/* ── Calendrier semaine ── */
.cal-nav {
    margin-bottom: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 14px 16px;
}
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.cal-week-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .01em;
}
.cal-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    transition: all .15s;
    font-family: var(--font-body);
    padding: 0;
}
.cal-arrow:hover:not(:disabled) { border-color: var(--text); color: var(--text); }
.cal-arrow:disabled { opacity: .3; cursor: default; }
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: var(--r-sm);
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .15s;
}
.cal-day:hover:not(:disabled):not(.active) { background: var(--gold-dim); }
.cal-day.active { background: var(--black); }
.cal-day.no-match { opacity: .25; cursor: default; }
.cal-day-name {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}
.cal-day.active .cal-day-name { color: rgba(255,255,255,.5); }
.cal-day-num {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}
.cal-day.active .cal-day-num { color: var(--white); }
.cal-day-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
}
.cal-day-dot.live {
    background: #e74c3c;
    animation: pulse-live 1.2s ease-in-out infinite;
}
.cal-day.active .cal-day-dot { background: rgba(255,255,255,.5); }


/* ── Onglets filtres discrets ── */
.match-filters {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.match-filters::-webkit-scrollbar { display: none; }
.match-filter {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    padding: 10px 18px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
    margin-bottom: -1px;
}
.match-filter.active {
    color: var(--text);
    border-bottom-color: var(--gold);
    font-weight: 700;
}
.match-filter:hover:not(.active) { color: var(--text); }

/* ── Grid ── */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

/* ── Card ── */
.match-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
}
.match-card:hover {
    border-color: rgba(0,0,0,.15);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.match-card.is-live { border: 1px solid rgba(231,76,60,.3); }
.match-card.is-done { opacity: .72; }

.match-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 0;
}
.match-round {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}
.match-time-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    background: var(--gold-dim);
    padding: 3px 10px;
    border-radius: 999px;
}
.match-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #e74c3c;
}
.live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #e74c3c;
    animation: pulse-live 1.2s ease-in-out infinite;
}
@keyframes pulse-live {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}
.match-done {
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    background: rgba(0,0,0,.05);
    padding: 3px 10px;
    border-radius: 999px;
}

/* ── Corps magazine ── */
.match-body {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 8px;
    padding: 14px 16px 10px;
}
.match-team-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
}
.team-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.team-logo-wrap img { width: 36px; height: 36px; object-fit: contain; }
.team-logo-placeholder { font-family: var(--font-display); font-size: 20px; color: var(--muted); }
.team-name-mag {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.match-center-col { text-align: center; }
.score-mag {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: .02em;
    color: var(--text);
    line-height: 1;
}
.score-mag span { color: var(--muted); font-weight: 300; margin: 0 1px; }
.score-is-live { color: #e74c3c !important; }
.vs-mag {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: .08em;
    color: #ccc;
}

/* ── Footer card ── */
.match-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 12px;
    border-top: 0.5px solid var(--border);
}
.match-venue-new {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--muted);
}
.match-venue-new svg { flex-shrink: 0; stroke: var(--muted); }
.match-cta-new {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    transition: color .15s;
    white-space: nowrap;
}
.match-cta-new:hover { color: var(--black); }

.matches-empty { text-align: center; color: var(--muted); font-size: 15px; padding: 40px 0; }

@media (max-width: 768px) {
    .matches-section { padding: 52px 18px; }
    .matches-grid { grid-template-columns: 1fr; gap: 10px; }
    .match-card-top { padding: 10px 14px 0; }
    .match-body { padding: 12px 14px 8px; }
    .match-card-footer { padding: 8px 14px 10px; }
}


/* ═══════════════════════════════════════════════
   BARS SECTION
═══════════════════════════════════════════════ */
.bars {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    border-top: 1px solid var(--border);
}

.label-chip {
    display: inline-block;
    background: var(--gold-dim);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.label-chip.light {
    background: rgba(255,255,255,.1);
    color: var(--gold-light);
}

.bars-text h2 {
    font-family: var(--font-display);
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.bars-text p {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
}

.bars-visual {}

.bar-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 32px 64px rgba(0,0,0,.2);
    transform: rotate(-1.5deg);
    transition: transform .4s var(--ease);
}
.bar-card:hover { transform: rotate(0deg) scale(1.01); }

.bar-card-image {
    height: 380px;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.1)),
                url('../assets/vitrine_fans.png') center / cover no-repeat;
}

.bar-card-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 32px;
}
.bar-card-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: .04em;
    color: var(--white);
    line-height: 1;
}
.bar-card-text span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: 0 20px 48px rgba(0,0,0,.07);
}
.partner-card h3 {
    font-family: var(--font-display);
    font-size: 38px;
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: .95;
}
.partner-card > p {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}
.partner-card ul {
    list-style: none;
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.partner-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.partner-card li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   INSCRIPTION
═══════════════════════════════════════════════ */
.inscription {
    background:
        radial-gradient(ellipse at 80% 10%, rgba(201,150,53,.18), transparent 40%),
        var(--black);
    color: var(--white);
    padding: 100px 5%;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 64px;
    align-items: start;
}

.form-left h2 {
    font-family: var(--font-display);
    font-size: clamp(42px, 4.5vw, 64px);
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: .95;
    margin-bottom: 16px;
}
.form-left p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
}

.trust-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
}

/* Form wrapper */
.form-wrap {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 10px;
    box-shadow: 0 40px 80px rgba(0,0,0,.35);
}

form {
    border: 1px solid #ede5d8;
    border-radius: calc(var(--r-lg) - 4px);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fdfcf9;
}

.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }

.field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 2px;
}
.type-option {
    position: relative;
    cursor: pointer;
}
.type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.type-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 100%;
    border: 1.5px solid #e5ddd0;
    border-radius: var(--r-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
    letter-spacing: .03em;
    cursor: pointer;
    user-select: none;
}
.type-option input[type="radio"]:checked + span {
    border-color: var(--gold);
    background: var(--gold-dim);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(201,150,53,.12);
}
.type-option:hover span {
    border-color: #c5b89a;
    color: var(--text);
}

.field input,
.field select {
    height: 52px;
    border: 1.5px solid #e5ddd0;
    border-radius: var(--r-sm);
    padding: 0 18px;
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.field input:focus,
.field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,150,53,.12);
}

form button[type=submit] {
    grid-column: 1 / -1;
    height: 56px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity .2s, transform .2s var(--ease), box-shadow .2s;
    margin-top: 4px;
}
form button[type=submit]:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(201,150,53,.35);
}

/* ── Messages formulaire ── */
.form-message {
    grid-column: 1 / -1;
    padding: 14px 18px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}
.form-message.error {
    background: #fff2f2;
    border: 1px solid #fcc;
    color: #c0392b;
}

/* ── Succès pleine carte ── */
.form-success-full {
    border: 1px solid #ede5d8;
    border-radius: calc(var(--r-lg) - 4px);
    padding: 48px 36px;
    background: #fdfcf9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #edf7f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.form-success-full h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--text);
}
.form-success-full p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    max-width: 380px;
}

/* ── Nearby bars hero ── */
.nearby-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.nearby-label svg { stroke: var(--gold); flex-shrink: 0; }
.nearby-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.85);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    margin-bottom: 6px;
    backdrop-filter: blur(4px);
    transition: border-color .15s, background .15s;
    text-decoration: none;
}
.nearby-pill:hover { border-color: var(--gold); background: rgba(255,255,255,.95); }
.nearby-icon { flex-shrink: 0; display: flex; align-items: center; }
.nearby-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    flex: 1;
}
.nearby-city {
    font-size: 12px;
    color: var(--muted);
}
.nearby-dist {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

/* ── Hero guide (index_test) ── */
.hero-guide {
    min-height: 75vh;
    align-items: center;
    padding: 60px 5% 80px;
}
.hero-guide h1 {
    font-size: clamp(56px, 7vw, 96px);
    margin-bottom: 18px;
}
.hero-guide .hero-desc {
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-search {
    display: flex;
    gap: 10px;
    align-items: stretch;
    max-width: 620px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 180px;
    height: 52px;
    background: var(--white);
    border: 1.5px solid #e5ddd0;
    border-radius: var(--r-sm);
    padding: 0 16px;
    transition: border-color .2s, box-shadow .2s;
}
.search-field:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,150,53,.1);
}
.search-field input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    width: 100%;
}
.search-btn {
    height: 52px;
    padding: 0 22px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    white-space: nowrap;
}
.search-btn:hover { background: #222; }

.hero-matches {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 620px;
}
.hero-match-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.8);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 16px;
    backdrop-filter: blur(4px);
}
.hero-match-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 52px;
}
.hero-match-teams {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}
.hero-match-teams b { color: var(--muted); font-weight: 400; }
.hero-match-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .06em;
    white-space: nowrap;
    transition: color .2s;
}
.hero-match-link:hover { color: var(--black); }

@media (max-width: 768px) {
    .hero-guide { min-height: auto; padding: 40px 18px 52px; }
    .hero-search { flex-direction: column; }
    .search-field { min-width: 100%; }
    .search-btn { width: 100%; justify-content: center; }
    .hero-match-pill { flex-wrap: wrap; gap: 6px; }
}

/* ── Countdown ── */
.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    min-width: 58px;
}
.countdown-item span {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
    color: var(--text);
    letter-spacing: .02em;
}
.countdown-item em {
    font-style: normal;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}
.countdown-sep {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 14px;
}

/* ── FAQ ── */
.faq-section {
    padding: 80px 5%;
    background: var(--off);
    border-top: 1px solid var(--border);
}
.faq-inner {
    max-width: 760px;
    margin: auto;
}
.faq-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: .95;
    margin-bottom: 36px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    gap: 16px;
    transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold); }
.faq-item p {
    padding: 0 4px 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
}

/* ── Social links ── */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s var(--ease);
}
.social-links a:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .countdown { gap: 5px; justify-content: center; }
    .countdown-item { min-width: 48px; padding: 8px 10px; }
    .countdown-item span { font-size: 24px; }
    .faq-section { padding: 56px 18px; }
    .social-links { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 999;
    width: calc(100% - 40px);
    max-width: 560px;
    opacity: 0;
    transition: transform .5s var(--ease), opacity .5s var(--ease);
    pointer-events: none;
}
.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}
.cookie-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    gap: 20px;
}
.cookie-text { flex: 1; }
.cookie-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.cookie-text p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--muted);
}
.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-actions button {
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s, color .2s, border-color .2s;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
}
.cookie-actions button:hover {
    border-color: #aaa;
    color: var(--text);
}
.cookie-actions button.accept {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.cookie-actions button.accept:hover {
    background: #333;
    border-color: #333;
}

@media (max-width: 768px) {
    .cookie-banner { bottom: 16px; }
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
    }
    .cookie-actions { width: 100%; }
    .cookie-actions button { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
    background: var(--off);
    border-top: 1px solid var(--border);
    padding: 36px 5%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 40px;
}

.footer-brand img { width: 140px; }
.footer-brand p {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}
.footer-brand p b { color: var(--black); }

.footer-nav {
    display: flex;
    gap: 28px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.footer-nav a { transition: color .2s; }
.footer-nav a:hover { color: var(--text); }

.footer small {
    font-size: 11px;
    color: #aaa;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .nav { display: none; }
    .bars { grid-template-columns: 1fr; gap: 36px; }
    .inscription { grid-template-columns: 1fr; gap: 40px; }
    .footer { grid-template-columns: 1fr; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-brand img { margin: auto; }
    .stat { padding: 0 28px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Header ── */
    .header-inner {
        height: auto;
        padding: 10px 18px 8px;
    }
    .logo { padding-top: 0; }
    .logo img { width: 90px; }
    .cta-pill { display: none; }

    /* ── Mobile nav — liens simples, zéro pill ── */
    .mobile-nav {
        display: flex !important;
        gap: 0;
        overflow-x: auto;
        padding: 0;
        scrollbar-width: none;
        border-top: 1px solid var(--border);
    }
    .mobile-nav::-webkit-scrollbar { display: none; }
    .mobile-nav a {
        /* reset complet */
        -webkit-appearance: none;
        appearance: none;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        background: transparent !important;
        border: none !important;
        border-right: 1px solid var(--border) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 11px 18px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--muted);
        transition: color .2s;
        outline: none;
    }
    .mobile-nav a:last-child { border-right: none !important; }
    .mobile-nav a:hover,
    .mobile-nav a:active { color: var(--gold); background: transparent !important; }

    /* ── Hero ── */
    .hero {
        min-height: 92svh;
        padding: 36px 18px 52px;
        align-items: flex-end;
        background-position: 65% center;
    }
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(245,244,240,.4) 0%,
            rgba(245,244,240,.75) 40%,
            rgba(245,244,240,.96) 68%,
            var(--off) 100%
        );
    }
    .hero-label { margin-bottom: 14px; font-size: 10px; }
    .hero h1 { font-size: clamp(52px, 15vw, 72px); }
    .hero-meta { margin-top: 24px; }
    .hero-tagline { font-size: 11px; }
    .hero-desc { font-size: 14px; max-width: 100%; margin-top: 10px; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 24px;
    }
    .countdown { margin-top: 24px; justify-content: center; }
    .btn-primary { justify-content: center; }
    .btn-ghost {
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 14px 28px;
        width: 100%;
    }
    .hero-scroll-hint { display: none; }

    /* ── Stats band ── */
    .stats-band {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        justify-content: unset;
    }
    .stat-sep { display: none; }
    .stat {
        padding: 20px 16px;
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .stat:nth-child(4n) { border-right: none; }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
    .stat strong { font-size: 34px; }
    .stat span { font-size: 9px; }

    /* ── Bars section ── */
    .bars { padding: 52px 18px; gap: 28px; }
    .bars-text h2 { font-size: 34px; }
    .bar-card { transform: none; }
    .bar-card-image { height: 230px; }
    .partner-card { padding: 22px; }
    .partner-card h3 { font-size: 28px; }

    /* ── Inscription ── */
    .inscription { padding: 52px 18px; gap: 28px; }
    .form-left h2 { font-size: 34px; }
    .trust-row { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .trust-item { font-size: 12px; }
    .form-wrap { border-radius: var(--r-md); padding: 6px; }
    form {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: calc(var(--r-md) - 2px);
        gap: 14px;
    }
    .field.full { grid-column: auto; }
    .type-toggle { grid-template-columns: 1fr 1fr; }

    /* ── Footer ── */
    .footer { padding: 28px 18px; gap: 16px; }
    .footer-nav { gap: 14px; flex-wrap: wrap; }
}