/* =========================================================
   ABSM — Les Diables Rouges
   Design tokens
   ========================================================= */
:root {
    /* Couleurs */
    --ink: #141414;
    --ink-soft: #2b2222;
    --paper: #faf7f5;
    --white: #ffffff;
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-deep: #7f1212;
    --accent: #ffcc00;
    --accent-dark: #e6b800;
    --text: #2b2626;
    --text-light: #5f5757;
    --text-on-dark: #f3ebe8;
    --text-on-dark-soft: #cdbfbb;
    --border: #e8e0dd;

    /* Typographie */
    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

    /* Divers */
    --shadow: 0 2px 12px rgba(20, 14, 14, 0.08);
    --shadow-lift: 0 12px 30px rgba(20, 14, 14, 0.14);
    --radius: 6px;
    --transition: 0.25s ease;
    --notch: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

/* =========================================================
   Fontes (self-hostées)
   ========================================================= */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bebas-neue-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/barlow-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/barlow-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/barlow-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/barlow-700.woff2') format('woff2');
}

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

html {
    scroll-padding-top: 6rem;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--paper);
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--ink);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    padding: 0.75rem 1.25rem;
    background: var(--ink);
    color: var(--accent);
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================================
   Header
   ========================================================= */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--primary);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img {
    height: 58px;
    width: auto;
}

.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--ink);
    letter-spacing: 0.04em;
}

.logo-subtitle {
    font-size: 0.78rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.efb-badge {
    height: 54px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

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

.nav-list a {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-list a:not(.nav-cta):hover::after,
.nav-list a.active:not(.nav-cta)::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--accent);
    color: var(--ink) !important;
    padding: 0.6rem 1.2rem !important;
    clip-path: var(--notch);
    transition: background var(--transition);
}

.nav-cta:hover {
    background: var(--accent-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   Hero (accueil)
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--text-on-dark);
    background:
        radial-gradient(ellipse 70% 90% at 78% 20%, rgba(211, 47, 47, 0.38), transparent 60%),
        radial-gradient(ellipse 50% 60% at 15% 85%, rgba(127, 18, 18, 0.5), transparent 65%),
        linear-gradient(160deg, #1d0f0f 0%, var(--ink) 55%, #1a0c0c 100%);
    padding: clamp(4rem, 10vw, 7rem) 0 clamp(6rem, 12vw, 9rem);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(2rem, 5vw, 4rem)), 0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0,
        transparent 28px,
        rgba(255, 255, 255, 0.018) 28px,
        rgba(255, 255, 255, 0.018) 56px
    );
    pointer-events: none;
}

.hero .container {
    position: relative;
    max-width: 56rem;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(3rem, 7.5vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-text {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--text-on-dark);
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.75rem;
    list-style: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-on-dark);
    margin-bottom: 2.25rem;
    justify-content: center;
}

.hero-proof li {
    position: relative;
}

.hero-proof li + li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 5px;
    height: 5px;
    transform: translateY(-50%) rotate(45deg);
    background: var(--accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* =========================================================
   Boutons
   ========================================================= */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--ink);
    clip-path: var(--notch);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--ink);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    clip-path: var(--notch);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* =========================================================
   Bande de chiffres clés
   ========================================================= */
.stats-band {
    background: var(--ink);
    color: var(--text-on-dark);
    padding: calc(1.75rem + clamp(2rem, 5vw, 4rem)) 0 2.5rem;
    margin-top: calc(clamp(2rem, 5vw, 4rem) * -1);
}

.stats-band .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    line-height: 1;
    color: var(--accent);
}

.stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-on-dark-soft);
}

/* =========================================================
   Sections
   ========================================================= */
.section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: linear-gradient(160deg, #1d0f0f, var(--ink));
    color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

/* =========================================================
   Cartes créneaux (accueil)
   ========================================================= */
.slot-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.slot-card {
    background: var(--white);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow);
    padding: 1.75rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.slot-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
}

.slot-card ul {
    list-style: none;
}

.slot-card li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.95rem;
}

.slot-card li:last-child {
    border-bottom: none;
}

.slot-day {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.slot-time {
    color: var(--text-light);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* =========================================================
   Features (pourquoi nous rejoindre)
   ========================================================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature {
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    background: var(--primary);
    color: var(--white);
    clip-path: var(--notch);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
}

/* =========================================================
   Étapes d'inscription
   ========================================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding-top: 0.5rem;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.section-dark .step-number {
    -webkit-text-stroke: 2px var(--accent);
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

.section-dark .step p {
    color: var(--text-on-dark-soft);
}

/* =========================================================
   Bande CTA finale
   ========================================================= */
.cta-band {
    background:
        radial-gradient(ellipse 60% 100% at 80% 50%, rgba(255, 204, 0, 0.12), transparent 60%),
        linear-gradient(160deg, var(--primary-dark), var(--primary-deep));
    color: var(--white);
    text-align: center;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    clip-path: polygon(0 clamp(1.5rem, 3vw, 2.5rem), 100% 0, 100% 100%, 0 100%);
}

.cta-band h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: var(--text-on-dark);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.cta-band .hero-actions {
    justify-content: center;
}

/* =========================================================
   Page header (pages internes)
   ========================================================= */
.page-header {
    background:
        radial-gradient(ellipse 60% 120% at 85% 10%, rgba(211, 47, 47, 0.35), transparent 60%),
        linear-gradient(160deg, #1d0f0f, var(--ink));
    color: var(--white);
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(1.25rem, 3vw, 2.5rem)), 0 100%);
}

.page-header-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.page-header h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    color: var(--white);
}

.page-header p {
    margin-top: 0.75rem;
    color: var(--text-on-dark-soft);
    max-width: 40rem;
}

/* =========================================================
   Blocs de contenu
   ========================================================= */
.content-block {
    margin-bottom: 3.5rem;
}

.content-block h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
    border-image: linear-gradient(90deg, var(--primary) 0, var(--primary) 80px, var(--border) 80px) 1;
}

.content-block p {
    margin-bottom: 1rem;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.content-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-block ul li {
    margin-bottom: 0.5rem;
}

/* Liste des valeurs */
.values-list {
    list-style: none;
    margin-left: 0 !important;
}

.values-list li {
    padding: 0.7rem 0 0.7rem 2.1rem;
    position: relative;
}

.values-list li svg {
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 1.3rem;
    height: 1.3rem;
    color: var(--primary);
}

.values-list strong {
    color: var(--ink);
}

/* Deux colonnes */
.two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .two-columns {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.column-left,
.column-right {
    min-width: 0;
}

/* Stats internes (le club) */
.stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.stats-grid .stat {
    text-align: center;
}

.stats-grid .stat-number {
    color: var(--primary);
}

.stats-grid .stat-label {
    color: var(--text-light);
}

/* =========================================================
   Équipe / bureau
   ========================================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.team-grid--2cols {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-member {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    text-align: left;
}

.team-member h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.team-member p {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--ink);
}

/* =========================================================
   Tableau des créneaux + cartes mobiles
   ========================================================= */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
    box-shadow: var(--shadow);
}

.schedule-table caption {
    caption-side: bottom;
    text-align: left;
    padding-top: 0.5rem;
}

.schedule-table th,
.schedule-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.schedule-table thead th {
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
}

.schedule-table tbody th[scope="row"] {
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    background: var(--paper);
}

.schedule-table tbody tr:hover td {
    background: #fdf3f3;
}

.schedule-cards {
    display: none;
}

@media (max-width: 700px) {
    .schedule-table {
        display: none;
    }

    .schedule-cards {
        display: grid;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .schedule-day-card {
        background: var(--white);
        box-shadow: var(--shadow);
        border-top: 4px solid var(--primary);
        padding: 1.25rem;
    }

    .schedule-day-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .schedule-day-card ul {
        list-style: none;
    }

    .schedule-day-card li {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.45rem 0;
        border-bottom: 1px dashed var(--border);
        font-size: 0.95rem;
    }

    .schedule-day-card li:last-child {
        border-bottom: none;
    }

    .schedule-day-card .slot-time {
        font-weight: 600;
        color: var(--ink);
    }
}

/* =========================================================
   Tarifs
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lift);
    transform: translateY(-3px);
}

.pricing-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lift);
}

.pricing-badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    clip-path: var(--notch);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pricing-features {
    list-style: none;
    margin: 0 !important;
    font-size: 0.92rem;
    color: var(--text-light);
}

.pricing-features li {
    padding: 0.3rem 0;
    margin-bottom: 0 !important;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.faq details {
    background: var(--white);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.faq summary {
    cursor: pointer;
    padding: 1.1rem 3rem 1.1rem 1.25rem;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    position: relative;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq details > p {
    padding: 0 1.25rem 1.1rem;
    color: var(--text-light);
}

/* =========================================================
   Divers
   ========================================================= */
.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.text-center {
    text-align: center;
}

.u-mt {
    margin-top: 2.5rem;
}

.u-mt-sm {
    margin-top: 1.5rem;
}

.address-card {
    background: var(--white);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
}

.address-card p {
    margin-bottom: 1rem;
}

.map-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: var(--white);
    padding: 0.7rem 1.4rem;
}

.social-links .btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: var(--ink);
    color: var(--text-on-dark);
    padding: 3.5rem 0 1.25rem;
    border-top: 4px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-on-dark-soft);
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-address {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--text-on-dark-soft);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    color: var(--text-on-dark-soft);
}

/* =========================================================
   Reveals au scroll (CSS pur, progressif)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
        .reveal {
            animation: reveal both;
            animation-timeline: view();
            animation-range: entry 0% entry 35%;
        }
    }
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
    .efb-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 48px;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .logo-subtitle {
        font-size: 0.62rem;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 1rem 1rem;
        gap: 0;
        box-shadow: var(--shadow-lift);
        display: none;
        z-index: 100;
        border-bottom: 3px solid var(--primary);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border);
    }

    .nav-list li:last-child {
        border-bottom: none;
        padding-top: 0.75rem;
    }

    .nav-list a {
        display: block;
        padding: 1rem 0.5rem;
    }

    .nav-cta {
        text-align: center;
        clip-path: var(--notch);
    }

    .team-grid,
    .team-grid--2cols {
        grid-template-columns: 1fr;
    }
}
