:root {
    --orange: #ff7a00;
    --orange-soft: #ff9a40;
    --green: #1bbd68;
    --green-dark: #159653;
    --ink: #1a1f2e;
    --ink-soft: #2c3448;
    --surface: rgba(255, 255, 255, 0.12);
    --surface-strong: rgba(255, 255, 255, 0.18);
    --border: rgba(255, 255, 255, 0.22);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    --radius: 20px;
    --radius-sm: 12px;
    --nav-h: 72px;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: #fff;
    background: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fond animé */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 122, 0, 0.55), transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 10%, rgba(27, 189, 104, 0.45), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 154, 64, 0.25), transparent 55%),
        linear-gradient(160deg, #1a1f2e 0%, #243044 45%, #1e3d32 100%);
}

.bg-mesh::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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
}

/* Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: rgba(26, 31, 46, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.is-scrolled {
    background: rgba(26, 31, 46, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.site-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.site-nav__brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    object-fit: contain;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
    color: #fff;
    background: var(--surface);
}

.site-nav__cta {
    background: linear-gradient(135deg, var(--orange), var(--green)) !important;
    color: #fff !important;
    margin-left: 0.35rem;
}

.site-nav__cta:hover {
    filter: brightness(1.08);
    background: linear-gradient(135deg, var(--orange), var(--green)) !important;
}

.site-nav__toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.15rem;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: calc(var(--nav-h) + 4rem) 1.25rem 5rem;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s ease both;
}

.hero__badge i {
    color: var(--orange-soft);
}

.hero__logo {
    width: clamp(120px, 22vw, 168px);
    border-radius: 50%;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.75rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero__title {
    font-size: clamp(1.85rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero__title span {
    background: linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, 0.75));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__lead {
    max-width: 720px;
    margin: 0 auto 2rem;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    animation: fadeUp 0.7s 0.25s ease both;
}

/* Boutons */
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn-home--primary {
    background: #fff;
    color: var(--green-dark);
}

.btn-home--ghost {
    background: var(--surface);
    color: #fff;
    border: 1px solid var(--border);
}

.btn-home--gradient {
    background: linear-gradient(135deg, var(--orange), var(--green));
    color: #fff;
}

/* Piliers */
.pillars {
    padding: 0 1.25rem 4rem;
    max-width: 1140px;
    margin: 0 auto;
}

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

.pillar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.25s, border-color 0.25s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.35);
}

.pillar-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.25), rgba(27, 189, 104, 0.25));
}

.pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.pillar-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

/* Sections */
.section {
    padding: 5rem 1.25rem;
}

.section__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.section__head {
    text-align: center;
    margin-bottom: 3rem;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-soft);
    margin-bottom: 0.65rem;
}

.section__title {
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
}

.section__subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

/* Événements */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
}

.event-card__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 520px;
    overflow: hidden;
    background: #1a1f2e;
    isolation: isolate;
}

.event-card__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event-card__zoom {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
}

.event-card__zoom img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform: scale(1.04);
    transform-origin: top center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card__zoom-hint {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 3;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.event-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-height: 58%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    padding: 2rem 1.35rem 1.35rem;
    background: linear-gradient(
        180deg,
        rgba(30, 36, 51, 0) 0%,
        rgba(30, 36, 51, 0.72) 14%,
        rgba(30, 36, 51, 0.94) 26%,
        rgba(30, 36, 51, 0.98) 34%,
        #1e2433 42%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
    .event-card:hover .event-card__zoom img {
        transform: scale(1.07);
    }

    .event-card:hover .event-card__body {
        transform: translateY(100%);
    }

    .event-card:hover .event-card__zoom-hint {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (hover: none) {
    .event-card__zoom-hint {
        opacity: 0.9;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .event-card__body,
    .event-card__zoom img,
    .event-card__zoom-hint {
        transition: none;
    }

    .event-card:hover .event-card__body {
        transform: none;
    }
}

.event-card--upcoming {
    border-color: rgba(27, 189, 104, 0.35);
    box-shadow: 0 8px 28px rgba(27, 189, 104, 0.15);
}

.event-card--past .event-card__zoom img {
    filter: grayscale(100%) brightness(0.65);
    opacity: 0.65;
}

.event-card__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.65rem;
}

.event-card__badge--past {
    background: rgba(0, 0, 0, 0.35);
}

.event-card__badge--upcoming {
    background: rgba(27, 189, 104, 0.25);
    color: #b8f5d0;
}

.event-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.event-card__meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.event-card__meta i {
    width: 1rem;
    margin-top: 0.15rem;
    color: var(--green);
    flex-shrink: 0;
}

.event-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.event-card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

/* Modal affiche événement */
.event-poster-modal {
    background: #151922;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.event-poster-modal__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-poster-modal__body {
    padding: 0.75rem;
    text-align: center;
    background: #0d1018;
}

.event-poster-modal__img {
    max-width: 100%;
    max-height: min(82vh, 900px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* À propos */
.about-panel {
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: var(--shadow);
}

.about-panel .section__eyebrow {
    color: var(--orange);
}

.about-panel .section__title {
    color: var(--ink);
    text-align: center;
}

.about-panel .section__subtitle {
    color: #5a6478;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.team-chip {
    background: #f4f6f9;
    border-radius: var(--radius-sm);
    padding: 1rem 1.1rem;
    border: 1px solid #e8ecf2;
}

.team-chip__role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.team-chip__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
}

.about-text {
    color: #4a5568;
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.15rem;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-panel .btn-home--gradient {
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    padding: 3.5rem 1.25rem 0;
    border-top: 1px solid var(--border);
}

.site-footer__grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.site-footer h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange-soft);
    margin: 0 0 0.85rem;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin: 0;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.site-footer__item i {
    color: var(--green);
    margin-top: 0.2rem;
    width: 1.1rem;
}

.copyright {
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
    padding: 1.1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.copyright__link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.copyright__link:hover {
    color: #7dffb0;
}

/* Modales */
.modal-home .modal-content {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--ink-soft);
    color: #fff;
}

.modal-home--gradient .modal-content {
    background: linear-gradient(145deg, #2a3144 0%, #1e3d32 100%);
}

.modal-home .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
}

.modal-home .modal-title {
    font-weight: 700;
    font-size: 1.15rem;
}

.modal-home .modal-body {
    padding: 1.5rem;
}

.modal-home .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.modal-home .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
}

.modal-home .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(27, 189, 104, 0.2);
}

.modal-home .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.adhesion-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.85rem 1rem 0.65rem;
    margin: 0;
}

.adhesion-fieldset legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
}

.adhesion-fieldset__hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.65rem;
    clear: both;
}

.adhesion-check {
    margin-bottom: 0.55rem;
    padding-left: 1.65rem;
}

.adhesion-check .form-check-input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.adhesion-check .form-check-input:checked {
    background-color: var(--green);
    border-color: var(--green);
}

.adhesion-check .form-check-label {
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}

.adhesion-check--consent {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.75rem 0.85rem 0.75rem 1.65rem;
    margin-bottom: 0;
}

.adhesion-privacy-link {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: #7dffb0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.adhesion-privacy-link:hover {
    color: #fff;
}

.adhesion-form-intro {
    text-align: center;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.5;
}

.modal-home .alert-feedback {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.modal-home .alert-feedback--ok {
    background: rgba(27, 189, 104, 0.2);
    color: #7dffb0;
    border: 1px solid rgba(27, 189, 104, 0.35);
}

.modal-home .alert-feedback--err {
    background: rgba(255, 122, 0, 0.15);
    color: #ffc48a;
    border: 1px solid rgba(255, 122, 0, 0.35);
}

.modal-home .forgot-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    text-decoration: none;
}

.modal-home .forgot-link:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .site-nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav__menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(26, 31, 46, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 1.25rem 1.25rem 1.5rem;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .site-nav__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .site-nav__links li {
        width: 100%;
    }

    .site-nav__links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 3rem;
        padding: 0.9rem 1.15rem;
        border-radius: 12px;
    }

    .site-nav__cta {
        margin-left: 0;
        margin-top: 0.35rem;
        text-align: center;
        justify-content: center;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-bottom: 3.5rem;
    }

    .section {
        padding: 3.5rem 1rem;
    }
}

.adhesion-enfant-row {
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.adhesion-enfant-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.adhesion-enfant-row .form-label.small {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.3rem;
}

.modal-home .adhesion-enfant-input,
.adhesion-standalone .adhesion-enfant-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 8px;
}

.modal-home .adhesion-enfant-input:focus,
.adhesion-standalone .adhesion-enfant-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(27, 189, 104, 0.2);
}

.modal-home .adhesion-enfant-select,
.adhesion-standalone .adhesion-enfant-select {
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #1a1f2e;
    border-radius: 8px;
    padding: 0.4rem 2rem 0.4rem 0.65rem;
    font-size: 0.86rem;
    color-scheme: light;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a1f2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.55rem center;
    background-size: 14px 10px;
}

.modal-home .adhesion-enfant-select option,
.adhesion-standalone .adhesion-enfant-select option {
    background-color: #fff;
    color: #1a1f2e;
}

.modal-home .adhesion-enfant-select:focus,
.adhesion-standalone .adhesion-enfant-select:focus {
    background-color: #fff;
    border-color: var(--green);
    color: #1a1f2e;
    box-shadow: 0 0 0 3px rgba(27, 189, 104, 0.35);
}

.adhesion-enfant-remove {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.2);
    color: #ff9a9a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
    margin-bottom: 0.15rem;
}

.adhesion-enfant-remove:hover {
    background: rgba(220, 53, 69, 0.45);
    color: #fff;
    transform: scale(1.05);
}

.adhesion-enfant-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.adhesion-enfant-add-btn:hover {
    background: rgba(27, 189, 104, 0.15);
    border-color: rgba(27, 189, 104, 0.5);
    color: #fff;
}

.adhesion-suppression-p6 {
    background: rgba(255, 122, 0, 0.08);
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
}

/* Page autonome — formulaire d'adhésion (QR code rentrée) */
.adhesion-standalone {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.adhesion-standalone__header {
    padding: 1rem 1.25rem;
    position: relative;
    z-index: 2;
}

.adhesion-standalone__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
}

.adhesion-standalone__brand:hover {
    color: #7dffb0;
}

.adhesion-standalone__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem 2rem;
    position: relative;
    z-index: 1;
}

.adhesion-standalone__card {
    width: 100%;
    max-width: 640px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.adhesion-standalone__card-head {
    padding: 1.5rem 1.5rem 0.5rem;
    text-align: center;
}

.adhesion-standalone__card-head h1 {
    margin: 0;
    font-size: clamp(1.25rem, 4vw, 1.55rem);
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.adhesion-standalone__card-head p {
    margin: 0.5rem 0 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.adhesion-standalone__card-body {
    padding: 0.5rem 1.5rem 1.75rem;
}

.adhesion-standalone__footer {
    text-align: center;
    padding: 0 1.25rem 1.5rem;
    position: relative;
    z-index: 2;
}

.adhesion-standalone__footer p {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
}

.adhesion-standalone__footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.adhesion-standalone__footer a:hover {
    color: #7dffb0;
}

.adhesion-standalone__footer small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
}
