/* ============================================================
   BURGER QUEEN — Global Stylesheet
   Premium Fast-Food Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --gold: #D4A017;
    --gold-light: #F5C842;
    --gold-dark: #A07810;
    --red: #C0392B;
    --red-dark: #96281B;
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-card2: #222222;
    --text-white: #F5F5F0;
    --text-muted: #9A9A8A;
    --border: rgba(212, 160, 23, .25);
    --radius: 16px;
    --shadow: 0 8px 40px rgba(0, 0, 0, .6);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ── Selection ─────────────────────────────────────────────── */
::selection {
    background: var(--gold);
    color: #000;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 13, 13, .85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 60px;
    background: rgba(13, 13, 13, .97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.navbar__logo {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.navbar__logo:hover {
    transform: scale(1.05);
}

.navbar__name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .5px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.navbar__link {
    padding: .5rem 1rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: left var(--transition), right var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--text-white);
    background: rgba(212, 160, 23, .1);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    left: 12px;
    right: 12px;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    border: none;
    background: none;
}

.navbar__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile-menu {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, .98);
    backdrop-filter: blur(18px);
    padding: 1.5rem;
    flex-direction: column;
    gap: .5rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    animation: slideDown .3s ease;
}

.navbar__mobile-menu.open {
    display: flex;
}

.navbar__mobile-menu .navbar__link {
    text-align: center;
    padding: .9rem;
    font-size: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
    padding-top: 74px;
    min-height: 100vh;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 160, 23, .12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(192, 57, 43, .08) 0%, transparent 60%),
        linear-gradient(180deg, #0D0D0D 0%, #141414 50%, #0D0D0D 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: .6;
    }

    90% {
        opacity: .2;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__logo {
    width: min(220px, 60vw);
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 40px rgba(212, 160, 23, .4));
    animation: logoReveal .9s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: scale(.7) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero__badge {
    display: inline-block;
    padding: .35rem 1.1rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    animation: fadeUp .7s .3s both;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    animation: fadeUp .7s .45s both;
}

.hero__title span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    animation: fadeUp .7s .6s both;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeUp .7s .75s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Scroll indicator ── */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: var(--text-muted);
    font-size: .75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2rem;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: .3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    box-shadow: 0 4px 24px rgba(212, 160, 23, .35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 160, 23, .55);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, .25);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(212, 160, 23, .08);
}

.btn-red {
    background: linear-gradient(135deg, #E74C3C, var(--red));
    color: #fff;
    box-shadow: 0 4px 24px rgba(192, 57, 43, .35);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(192, 57, 43, .55);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--gold);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    font-weight: 300;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin: 1.25rem 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow), 0 0 40px rgba(212, 160, 23, .1);
    border-color: rgba(212, 160, 23, .4);
}

.card:hover::before {
    opacity: 1;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow), 0 0 50px rgba(212, 160, 23, .12);
    border-color: rgba(212, 160, 23, .45);
}

.team-card:hover::after {
    opacity: 1;
}

.team-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    box-shadow: 0 0 30px rgba(212, 160, 23, .3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover .team-card__avatar {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(212, 160, 23, .5);
}

.team-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.team-card__role {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding: .3rem .8rem;
    background: rgba(212, 160, 23, .1);
    border: 1px solid rgba(212, 160, 23, .25);
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Styles pour les cartes d'équipe générées dynamiquement */
.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.member-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow), 0 0 50px rgba(212, 160, 23, .12);
    border-color: rgba(212, 160, 23, .45);
}

.member-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    box-shadow: 0 0 30px rgba(212, 160, 23, .3);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.member-avatar i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.member-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 160, 23, .4);
    margin-bottom: 1rem;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.member-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    background: rgba(212, 160, 23, .1);
    border: 1px solid rgba(212, 160, 23, .25);
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-white) !important;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 23, 0.1);
}

.member-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 160, 23, .05);
    border: 1px solid rgba(212, 160, 23, .15);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.achievement i {
    color: var(--gold);
    font-size: 0.8rem;
}

.source-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.source-utilisateur {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.source-equipe {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.team-member[data-source="utilisateur"] .member-card {
    border-left: 4px solid #17a2b8;
}

.team-member[data-source="equipe"] .member-card {
    border-left: 4px solid #ffc107;
}

.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-white);
    font-size: 1.1rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #E74C3C;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.btn-secondary {
    background: var(--bg-card2);
    color: var(--text-white);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================================
   MENU CARDS
   ============================================================ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow), 0 0 40px rgba(212, 160, 23, .15);
    border-color: rgba(212, 160, 23, .4);
}

.menu-card__header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 160, 23, .08), rgba(212, 160, 23, .03));
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.menu-card__emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: .75rem;
    transition: transform var(--transition);
}

.menu-card:hover .menu-card__emoji {
    transform: scale(1.15) rotate(-5deg);
}

.menu-card__name {
    font-size: 1.2rem;
    font-weight: 700;
}

.menu-card__body {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card__desc {
    color: var(--text-muted);
    font-size: .9rem;
}

.menu-card__price {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* ============================================================
   SECTIONS (shared layout)
   ============================================================ */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section--full {
    max-width: none;
    padding: 6rem 0;
}

.section--center {
    text-align: center;
}

.section--center .section-divider {
    margin: 1.25rem auto;
}

.section--center .section-desc {
    margin: 0 auto;
}

/* ============================================================
   LOCALISATION
   ============================================================ */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* .location-info styles are inherited from parent */

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 2rem;
}

.location-address__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.location-address__text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.location-address__text p {
    color: var(--text-muted);
    font-size: .95rem;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.location-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   RECRUITMENT
   ============================================================ */
.recruitment-notice {
    background: linear-gradient(135deg, rgba(192, 57, 43, .12), rgba(192, 57, 43, .06));
    border: 1px solid rgba(192, 57, 43, .35);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recruitment-notice__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.recruitment-notice__title {
    font-size: 1rem;
    font-weight: 700;
    color: #E74C3C;
    margin-bottom: .4rem;
}

.recruitment-notice__text {
    color: var(--text-muted);
    font-size: .95rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1.6rem;
    background: #5865F2;
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    margin-top: 1.25rem;
}

.discord-link:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(88, 101, 242, .4);
}

.form-container {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.form-container iframe {
    width: 100%;
    height: 720px;
    border: none;
    display: block;
}

/* ============================================================
   STATS BAR (Accueil)
   ============================================================ */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem;
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat__number {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat__label {
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 500;
    margin-top: .35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   FEATURES GRID (Présentation)
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 160, 23, .35);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 160, 23, .1);
    border: 1px solid rgba(212, 160, 23, .2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
}

.feature-card:hover .feature-card__icon {
    background: rgba(212, 160, 23, .2);
}

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.feature-card__text {
    color: var(--text-muted);
    font-size: .9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 2rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer__logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer__tagline {
    color: var(--text-muted);
    font-size: .9rem;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
}

.footer__nav a {
    color: var(--text-muted);
    font-size: .9rem;
    transition: color var(--transition);
}

.footer__nav a:hover {
    color: var(--gold);
}

.footer__right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
}

.footer__bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    color: var(--text-muted);
    font-size: .85rem;
}

.footer__powered {
    font-size: .8rem;
    color: var(--text-muted);
}

.footer__powered span {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 160, 23, .1), transparent 70%);
    border-bottom: 1px solid var(--border);
}

.page-hero__eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.page-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero__title span {
    color: var(--gold);
}

.page-hero__sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   ANIMATIONS (scroll reveal)
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
    transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .navbar__nav {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__right {
        align-items: center;
        text-align: center;
    }

    .footer__bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section {
        padding: 4rem 1.25rem;
    }
}

/* ============================================================
   GOLD GLOW DIVIDER
   ============================================================ */
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .4;
    margin: 0;
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.75rem;
    background: rgba(212, 160, 23, .05);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-white);
    font-size: 1.05rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(212, 160, 23, .4);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 500;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(212, 160, 23, .6);
}