/* ============================================================
   FAVORIA — Landing Page CSS
   Palette : #FFFFFF | #B8972A (or) | #1A1A2E (sombre) | #F8F7F4 (gris clair)
   Fonts : Cormorant Garamond (titres) + Montserrat (corps)
   ============================================================ */

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

:root {
    --gold:    #B8972A;
    --dark:    #1A1A2E;
    --white:   #FFFFFF;
    --cream:   #F8F7F4;
    --text:    #444444;
    --text-light: #888888;
    --radius:  16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Fade-in-up animation ── */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: scale(1.02); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(184,151,42,0.35);
}
.btn-gold:hover {
    background: #a07d20;
    border-color: #a07d20;
    box-shadow: 0 6px 28px rgba(184,151,42,0.5);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #f0ece4;
    height: 70px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}
#navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-brand { display: flex; flex-direction: column; }
.nav-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.nav-brand .logo-sub {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: -2px;
}
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.nav-login {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 24px;
    border: 2px solid var(--dark);
    border-radius: 50px;
    background: transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-login:hover { background: var(--dark); color: var(--white); }

.nav-cta-orange {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    padding: 10px 24px;
    background: #E8651A;
    border: none;
    border-radius: 50px;
    transition: background 0.2s, transform 0.18s;
    white-space: nowrap;
}
.nav-cta-orange:hover { background: #c9541a; transform: scale(1.02); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 8px 0;
    border-bottom: 1px solid #f0ece4;
    transition: color 0.2s;
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO — blanc, orange #E8651A, card 3D, 2 colonnes
   ============================================================ */

/* Animations entrée */
@keyframes slideRight {
    from { opacity:0; transform: translateX(-40px); }
    to   { opacity:1; transform: translateX(0); }
}
@keyframes slideLeft {
    from { opacity:0; transform: translateX(40px); }
    to   { opacity:1; transform: translateX(0); }
}
@keyframes floatBlob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}
@keyframes pulseDot {
    0%, 100% { opacity:1; }
    50%       { opacity:0.4; }
}

.hero-slide-right { animation: slideRight 0.7s ease both; }
.hero-slide-left  { animation: slideLeft  0.7s ease 0.2s both; }

/* Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 24px 72px;
}

/* Blobs flous */
.hero-blob-tr,
.hero-blob-bl {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-blob-tr {
    width: 500px;
    height: 500px;
    background: #E8651A;
    opacity: 0.12;
    top: -100px;
    right: -100px;
    filter: blur(80px);
    animation: floatBlob 7s ease-in-out infinite;
}
.hero-blob-bl {
    width: 400px;
    height: 400px;
    background: #B8972A;
    opacity: 0.08;
    bottom: -50px;
    left: -80px;
    filter: blur(60px);
    animation: floatBlob 9s ease-in-out infinite reverse;
}

/* Grille 2 colonnes */
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 54% 46%;
    gap: 56px;
    align-items: center;
}

/* ── Colonne gauche ── */
.hero-left { display: flex; flex-direction: column; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    background: #FFF3E8;
    border: 1px solid #E8651A;
    color: #E8651A;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.badge-dot { animation: pulseDot 2s ease-in-out infinite; }

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #1A1A2E;
    margin-bottom: 20px;
}
.hero-title em {
    font-style: italic;
    color: #E8651A;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 400;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 36px;
}

/* CTA boutons */
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hcta-primary,
.hcta-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}
.hcta-primary {
    background: #E8651A;
    color: #fff;
    box-shadow: 0 8px 24px rgba(232,101,26,0.35);
}
.hcta-primary:hover {
    background: #c9541a;
    box-shadow: 0 12px 32px rgba(232,101,26,0.5);
    transform: translateY(-2px) scale(1.02);
}
.hcta-secondary {
    background: #1A1A2E;
    color: #fff;
}
.hcta-secondary:hover { background: #2d2d4e; transform: translateY(-2px) scale(1.02); }

/* Stats avec icônes */
.hero-stats {
    display: flex;
    align-items: center;
}
.hstat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}
.hstat:first-child { padding-left: 0; }
.hstat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hstat-icon svg { width: 18px; height: 18px; }
.hstat-orange { background: #FFF3E8; color: #E8651A; }
.hstat-orange svg { stroke: #E8651A; }
.hstat-gold   { background: #FDF6E3; color: var(--gold); }
.hstat-gold svg { stroke: var(--gold); }
.hstat-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1.2;
}
.hstat-sub {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-top: 2px;
}
.hstat-sep {
    width: 1px;
    height: 32px;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* ── Colonne droite ── */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card-wrap {
    position: relative;
    width: 360px;
}

/* Card principale 3D */
.hero-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 28px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(232,101,26,0.15);
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.4s ease;
    will-change: transform;
}

/* En-tête card */
.hcard-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.hcard-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E8651A;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.hcard-head-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.hcard-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1;
}
.hcard-member {
    display: inline-block;
    background: #FFF3E8;
    color: #E8651A;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.hcard-crown {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Wallet */
.hcard-wallet {
    background: #F8F8F8;
    border-radius: 14px;
    padding: 16px;
    margin: 16px 0;
}
.hwallet-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}
.hwallet-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #E8651A;
    line-height: 1;
    margin-bottom: 6px;
}
.hwallet-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #22c55e;
    font-weight: 600;
}

/* Prochaine prestation */
.hcard-next-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 8px;
}
.hcard-prestation {
    background: #FFF8F3;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hprest-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hprest-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.hprest-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1A2E;
    flex: 1;
}
.hprest-badge {
    background: #D1FAE5;
    color: #065F46;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.hprest-date {
    font-size: 0.75rem;
    color: #888;
    padding-left: 28px;
}

/* Badge flottant Majordome — haut droite */
.card-float-top {
    position: absolute;
    top: -16px;
    right: -24px;
    background: #1A1A2E;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 10;
}
.cfloat-icon {
    width: 32px;
    height: 32px;
    background: rgba(232,101,26,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cfloat-icon svg { width: 16px; height: 16px; }
.cfloat-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.cfloat-role {
    display: block;
    font-size: 0.7rem;
    color: #B8972A;
    margin-top: 2px;
}

/* Badge flottant Cashback — bas gauche */
.card-float-bottom {
    position: absolute;
    bottom: -16px;
    left: -24px;
    background: #E8651A;
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(232,101,26,0.35);
    z-index: 10;
}
.cfloat-cashback-main {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
}
.cfloat-cashback-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */
section { padding: 96px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    text-align: center;
    color: var(--dark);
    margin-bottom: 16px;
}
.section-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--text);
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.7;
}
.section-bg-cream { background: var(--cream); }
.section-bg-dark  { background: var(--dark); }

/* ============================================================
   SECTION SERVICES
   ============================================================ */
.sap-badge {
    background: linear-gradient(135deg, #fffaed, #fff5d6);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 16px 24px;
    margin: 0 auto 56px;
    max-width: 780px;
    text-align: center;
    font-size: 0.88rem;
    color: #7a6010;
    font-weight: 500;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.service-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}
.service-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.service-card ul li {
    font-size: 0.82rem;
    color: var(--text);
    padding-left: 14px;
    position: relative;
}
.service-card ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    top: 1px;
}
.services-phrase {
    text-align: center;
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
    margin-top: 48px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

/* ============================================================
   SECTION HISTOIRE
   ============================================================ */
.histoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.histoire-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}
.histoire-text p:first-child { font-size: 1.05rem; }
.video-placeholder {
    background: var(--dark);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
}
.play-btn {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 24px; height: 24px; fill: white; margin-left: 4px; }
.video-placeholder span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   SECTION COMMENT ÇA MARCHE
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 64px;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.6% + 20px);
    right: calc(16.6% + 20px);
    height: 1px;
    border-top: 2px dashed var(--gold);
    opacity: 0.5;
}
.step {
    text-align: center;
    padding: 0 24px;
}
.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.step p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
}

.cashback-block {
    background: var(--dark);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}
.cashback-icon {
    width: 52px;
    height: 52px;
    color: var(--gold);
    flex-shrink: 0;
}
.cashback-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}
.cashback-block .cashback-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.cashback-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cashback-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.cashback-point::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   SECTION POURQUOI FAVORIA
   ============================================================ */
.pourquoi-intro {
    font-size: 1rem;
    color: var(--text);
    max-width: 780px;
    margin: 0 auto 56px;
    line-height: 1.8;
    text-align: center;
}
.avantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.avantage-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid #f0ece4;
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}
.avantage-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.avantage-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.avantage-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.avantage-card p { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

.citation-block {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 32px 40px;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
}

/* ============================================================
   SECTION ENGAGEMENTS
   ============================================================ */
.engagements-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 820px;
    margin: 0 auto 48px;
}
.engagement-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.engagement-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}
.engagement-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    padding-top: 6px;
}
.engagement-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 4px;
}
.engagements-phrase {
    text-align: center;
    font-style: italic;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    margin-top: 24px;
}

/* ============================================================
   SECTION FAVORIA FAMILY CLUB
   ============================================================ */
.club-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.club-text .section-title { text-align: left; }
.club-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
}
.club-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 28px;
}
.club-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.club-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
}
.club-services li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23B8972A'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd' /%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}
.club-encadre {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 24px 28px;
}
.club-encadre h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.club-encadre p { font-size: 0.85rem; color: var(--text); line-height: 1.7; }
.club-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.club-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SECTION CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: sticky;
    top: 100px;
}
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-wrap h2.section-title { text-align: left; }
.contact-form-sub {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ── Forms ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid #e0dbd0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,151,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
}
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}
.form-check a { color: var(--gold); text-decoration: underline; }

.alert-success {
    background: #f0faf0;
    border: 1px solid #4caf50;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #2e7d32;
    margin-bottom: 20px;
}
.alert-error {
    background: #fff5f5;
    border: 1px solid #ef5350;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.85rem;
    color: #c62828;
    margin-bottom: 20px;
}
.alert-error ul { margin: 8px 0 0 16px; }

/* ============================================================
   SECTION REJOINDRE
   ============================================================ */
.rejoindre-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
}
.rejoindre-sub {
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin-bottom: 56px;
}
.rejoindre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.rejoindre-card-white {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
}
.rejoindre-card-white h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ece4;
}
.rejoindre-card-outline {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rejoindre-card-outline h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.rejoindre-card-outline p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
}
.rejoindre-card-outline .btn {
    align-self: flex-start;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #111111;
    padding: 64px 24px 32px;
    color: #aaa;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer-brand .logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: #888;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: #888;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-col .contact-info span {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}
.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 0 0 24px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #666; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
    font-size: 0.8rem;
    color: #666;
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Hero tablette : card visible sans effet 3D */
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-card-wrap { width: 300px; }
    .hero-card { transform: none !important; }
    .hero-title { font-size: clamp(2.2rem, 4vw, 3rem); }
}

@media (max-width: 768px) {
    section { padding: 64px 20px; }

    .nav-cta-orange { display: none; }

    /* Hero mobile — 1 colonne, card masquée */
    .hero-section { padding: 90px 20px 56px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 0; }
    .hero-right { display: none; }
    .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
    .hero-badge { font-size: 0.68rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-ctas { flex-direction: column; }
    .hcta-primary, .hcta-secondary { width: 100%; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 8px; }
    .hstat { padding: 8px 12px; }
    .hstat-sep { display: none; }
    .hero-blob-tr { width: 280px; height: 280px; top: 0; right: -60px; }
    .hero-blob-bl { width: 200px; height: 200px; }

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

    .histoire-grid { grid-template-columns: 1fr; gap: 40px; }
    .histoire-grid .video-placeholder { order: -1; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .steps-grid::before { display: none; }
    .step { padding: 0; }

    .cashback-block {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }
    .cashback-icon { margin: 0 auto; }
    .cashback-point { justify-content: flex-start; }

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

    .club-grid { grid-template-columns: 1fr; gap: 40px; }
    .club-image { aspect-ratio: 16/9; }
    .club-text .section-title { text-align: center; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-image { display: none; }
    .contact-form-wrap h2.section-title { text-align: center; }
    .contact-form-sub { text-align: center; }

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

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }

    .form-row { grid-template-columns: 1fr; }

    .engagements-list { gap: 24px; }
    .engagement-num { font-size: 2.2rem; min-width: 45px; }
}

@media (max-width: 480px) {
    .nav-login { display: none; }
    .btn { padding: 12px 24px; font-size: 0.8rem; }
}
