/* ===================================================================
   VOYANCE-ARYELLE.COM — INDEX
   Direction : "Velours Botanique"
   ================================================================= */

/* ============ TOKENS ============ */
:root {
    /* Palette Velours Botanique */
    --c-night: #0E1726;
    --c-night-2: #1A2438;
    --c-ivory: #FAF6EF;
    --c-ivory-2: #EDE3D2;
    --c-burgundy: #5C2030;
    --c-burgundy-2: #7A2E40;
    --c-gold: #C8A467;
    --c-gold-2: #D4AF7A;
    --c-gold-soft: #E8D5AE;
    --c-sage: #5A6B52;
    --c-sage-2: #6F7E66;
    --c-terracotta: #C77B5C;
    --c-ink: #2A2520;
    --c-ink-soft: #4A413A;
    --c-line: rgba(200, 164, 103, 0.18);
    --c-line-strong: rgba(200, 164, 103, 0.42);

    /* Typo */
    --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --f-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    /* Échelle fluide */
    --fs-xs: clamp(0.75rem, 0.74rem + 0.05vw, 0.78rem);
    --fs-sm: clamp(0.875rem, 0.86rem + 0.07vw, 0.92rem);
    --fs-base: clamp(1rem, 0.98rem + 0.1vw, 1.06rem);
    --fs-lg: clamp(1.125rem, 1.09rem + 0.18vw, 1.25rem);
    --fs-xl: clamp(1.35rem, 1.27rem + 0.4vw, 1.6rem);
    --fs-2xl: clamp(1.7rem, 1.55rem + 0.75vw, 2.2rem);
    --fs-3xl: clamp(2.2rem, 1.95rem + 1.25vw, 3.1rem);
    --fs-4xl: clamp(2.7rem, 2.3rem + 2vw, 4rem);

    /* Espaces */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.5rem;
    --sp-6: 2rem;
    --sp-7: 3rem;
    --sp-8: 4rem;
    --sp-9: 6rem;
    --sp-10: 8rem;

    /* Layout */
    --container: 1240px;
    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* Effets */
    --shadow-soft: 0 4px 24px rgba(14, 23, 38, 0.06), 0 1px 3px rgba(14, 23, 38, 0.04);
    --shadow-mid: 0 14px 48px rgba(14, 23, 38, 0.10), 0 4px 12px rgba(14, 23, 38, 0.06);
    --shadow-strong: 0 28px 80px rgba(14, 23, 38, 0.18), 0 8px 24px rgba(14, 23, 38, 0.10);
    --shadow-gold: 0 16px 50px rgba(200, 164, 103, 0.22);

    /* Transitions */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--c-ink);
    background: var(--c-ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; border-radius: 3px; }

/* ============ UTIL ============ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
    padding: clamp(4rem, 9vw, 8rem) 0;
    position: relative;
}

.section-head {
    max-width: 760px;
    margin-bottom: var(--sp-8);
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-burgundy);
    margin-bottom: var(--sp-4);
    position: relative;
    padding-left: 28px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--c-gold);
    transform: translateY(-50%);
}
.center .section-tag::before { display: none; }
.center .section-tag { padding-left: 0; }
.center .section-tag::after {
    content: '✦';
    margin-left: 0.5rem;
    color: var(--c-gold);
}

.section-title {
    font-family: var(--f-display);
    font-size: var(--fs-3xl);
    line-height: 1.08;
    font-weight: 500;
    color: var(--c-night);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-5);
    font-variation-settings: "opsz" 144;
}

.section-lead {
    font-size: var(--fs-lg);
    line-height: 1.6;
    color: var(--c-ink-soft);
    max-width: 65ch;
}
.center .section-lead { margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--f-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-burgundy);
    margin-bottom: var(--sp-5);
}
.eyebrow-line {
    width: 32px; height: 1px;
    background: var(--c-gold);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.6rem;
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: all 0.45s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.45s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--c-night);
    color: var(--c-ivory);
    border: 1px solid var(--c-night);
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(200, 164, 103, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s var(--ease);
}
.btn-primary:hover {
    background: var(--c-burgundy);
    border-color: var(--c-burgundy);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-ghost {
    background: transparent;
    color: var(--c-night);
    border: 1px solid var(--c-line-strong);
}
.btn-ghost:hover {
    background: var(--c-night);
    color: var(--c-ivory);
    border-color: var(--c-night);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--c-ivory);
    border: 1px solid rgba(250, 246, 239, 0.3);
}
.btn-ghost-light:hover {
    background: var(--c-ivory);
    color: var(--c-night);
    border-color: var(--c-ivory);
}

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }

/* ============ HEADER / NAV ============ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 246, 239, 0.78);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease);
}
.site-header.scrolled {
    background: rgba(250, 246, 239, 0.92);
    border-bottom-color: var(--c-line);
    box-shadow: 0 1px 0 var(--c-line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1rem, 4vw, 2.5rem);
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}
.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 38px; height: 38px;
    background: var(--c-night);
    color: var(--c-gold);
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50%;
    letter-spacing: -0.02em;
    transition: transform 0.6s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-12deg); }
.logo-name {
    font-family: var(--f-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--c-night);
    letter-spacing: 0.01em;
}
.logo-light .logo-name { color: var(--c-ivory); }

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--c-ink-soft);
    position: relative;
    transition: color 0.3s var(--ease);
    padding: 0.4rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--c-gold);
    transition: width 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--c-night); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.btn { color: var(--c-ivory); }
.nav-link.btn::after { display: none; }

.nav-toggle {
    display: none;
    width: 38px; height: 38px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--c-night);
    transition: all 0.4s var(--ease);
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--c-ivory);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease);
        border-bottom: 1px solid var(--c-line);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
    }
    .nav-menu li { width: 100%; }
    .nav-link.btn { justify-content: center; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ============ DUST PARTICLES BACKGROUND ============ */
.dust-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.dust-canvas::before, .dust-canvas::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(200, 164, 103, 0.55) 50%, transparent 100%),
        radial-gradient(1px 1px at 28% 76%, rgba(200, 164, 103, 0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 47% 35%, rgba(200, 164, 103, 0.5) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65% 60%, rgba(200, 164, 103, 0.35) 50%, transparent 100%),
        radial-gradient(1px 1px at 82% 22%, rgba(200, 164, 103, 0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 91% 88%, rgba(200, 164, 103, 0.4) 50%, transparent 100%),
        radial-gradient(0.5px 0.5px at 8% 50%, rgba(200, 164, 103, 0.6) 50%, transparent 100%),
        radial-gradient(0.5px 0.5px at 73% 12%, rgba(200, 164, 103, 0.55) 50%, transparent 100%);
    background-size: 100% 100%;
    animation: dust-drift 60s linear infinite;
    opacity: 0.7;
}
.dust-canvas::after {
    animation-duration: 90s;
    animation-direction: reverse;
    opacity: 0.4;
}
@keyframes dust-drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-25%, -10%); }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: calc(110px + clamp(2rem, 5vw, 4rem)) 0 clamp(4rem, 8vw, 7rem);
    background: linear-gradient(180deg, var(--c-ivory) 0%, var(--c-ivory-2) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 103, 0.18), transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(92, 32, 48, 0.12), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { position: relative; }

.hero-title {
    font-family: var(--f-display);
    font-size: var(--fs-4xl);
    line-height: 1.04;
    font-weight: 500;
    color: var(--c-night);
    letter-spacing: -0.025em;
    margin-bottom: var(--sp-6);
    font-variation-settings: "opsz" 144;
}
.hero-title-em {
    font-style: italic;
    color: var(--c-burgundy);
    position: relative;
    display: inline-block;
    font-weight: 400;
}
.hero-title-em::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0.04em;
    width: 100%; height: 4px;
    background: var(--c-gold);
    opacity: 0.45;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 1.4s var(--ease-out) 0.6s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero-lead {
    font-size: var(--fs-lg);
    line-height: 1.6;
    color: var(--c-ink-soft);
    max-width: 50ch;
    margin-bottom: var(--sp-7);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: var(--sp-7);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: var(--sp-6);
    border-top: 1px solid var(--c-line);
}
.hero-stats li {
    padding-right: 1rem;
    border-right: 1px solid var(--c-line);
}
.hero-stats li:last-child { border-right: 0; padding-right: 0; }
.hero-stats li:not(:first-child) { padding-left: 1rem; }
.stat-num {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem);
    font-weight: 500;
    color: var(--c-night);
    line-height: 1;
    margin-bottom: 0.35rem;
    font-variation-settings: "opsz" 144;
}
.stat-label {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--c-ink-soft);
    letter-spacing: 0.03em;
}

/* HERO MEDIA */
.hero-media {
    position: relative;
}
.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 4 / 5;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.hero-media:hover .hero-image img { transform: scale(1.03); }

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, transparent 50%, rgba(14, 23, 38, 0.18));
    pointer-events: none;
}

.hero-card {
    position: absolute;
    background: var(--c-ivory);
    border-radius: var(--radius);
    box-shadow: var(--shadow-mid);
    padding: 1rem 1.2rem;
    border: 1px solid var(--c-line);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-card-quote {
    bottom: -25px;
    left: -30px;
    max-width: 270px;
    background: var(--c-night);
    color: var(--c-ivory);
    border-color: var(--c-night-2);
    animation-delay: -3s;
}
.hero-card-quote .quote-mark {
    display: block;
    font-family: var(--f-display);
    font-size: 2.5rem;
    line-height: 0.5;
    color: var(--c-gold);
    margin-bottom: 0.6rem;
}
.hero-card-quote p {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.hero-card-quote .quote-author {
    font-size: 0.75rem;
    color: var(--c-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card-trust {
    top: 30px;
    right: -25px;
    text-align: center;
}
.trust-stars {
    color: var(--c-gold);
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}
.trust-label {
    display: block;
    font-size: 0.75rem;
    color: var(--c-ink-soft);
    margin-top: 0.25rem;
}
.trust-label strong { color: var(--c-night); font-weight: 600; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
    .hero-card-quote { left: -10px; max-width: 230px; }
    .hero-card-trust { right: -10px; }
}
@media (max-width: 540px) {
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.25rem 0; }
    .hero-stats li { border-right: 0; padding: 0; }
    .hero-stats li:nth-child(odd) { border-right: 1px solid var(--c-line); padding-right: 1rem; }
    .hero-stats li:nth-child(even) { padding-left: 1rem; }
    .hero-stats li:nth-child(3) { grid-column: 1 / -1; padding: 1rem 0 0; border-right: 0; border-top: 1px solid var(--c-line); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 1px solid var(--c-line-strong);
    border-radius: 999px;
    display: grid;
    place-items: start center;
    padding-top: 7px;
}
.scroll-indicator span {
    display: block;
    width: 3px; height: 8px;
    background: var(--c-gold);
    border-radius: 2px;
    animation: scroll-dot 2s var(--ease) infinite;
}
@keyframes scroll-dot {
    0% { transform: translateY(0); opacity: 1; }
    80%, 100% { transform: translateY(14px); opacity: 0; }
}

/* ============ MARQUEE ============ */
.marquee-section {
    background: var(--c-night);
    color: var(--c-ivory);
    padding: 1.4rem 0;
    overflow: hidden;
    border-top: 1px solid var(--c-night-2);
    border-bottom: 1px solid var(--c-night-2);
}
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}
.marquee-item {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--c-gold-soft);
    letter-spacing: 0.03em;
    white-space: nowrap;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ PHILOSOPHY ============ */
.philosophy {
    position: relative;
    background: var(--c-ivory);
}

.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.flip-card {
    perspective: 1400px;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    isolation: isolate;
}
.flip-inner {
    position: relative;
    width: 100%; height: 100%;
    transition: transform 0.95s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}
.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner,
.flip-card.is-flipped .flip-inner {
    transform: rotateY(180deg);
}
.flip-front, .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* translateZ force la séparation des plans 3D et corrige le bleed-through Chromium */
    transform: translateZ(0.01px);
    -webkit-transform: translateZ(0.01px);
}
.flip-front {
    background:
        linear-gradient(165deg, #122039 0%, #0E1726 60%, #0A0F1B 100%);
    color: var(--c-ivory);
    border: 1px solid rgba(200, 164, 103, 0.18);
    box-shadow: var(--shadow-mid), inset 0 1px 0 rgba(200, 164, 103, 0.12);
    transition: border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.flip-front::before {
    /* halo doré supérieur droit */
    content: '';
    position: absolute;
    top: -30%; right: -25%;
    width: 75%; height: 75%;
    background: radial-gradient(circle, rgba(200, 164, 103, 0.22), transparent 65%);
    pointer-events: none;
}
.flip-front::after {
    /* trame botanique discrète bas-gauche */
    content: '';
    position: absolute;
    bottom: -30px; left: -10px;
    width: 140px; height: 140px;
    background-image: radial-gradient(circle, rgba(200, 164, 103, 0.08) 1px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.6;
    pointer-events: none;
    transform: rotate(-12deg);
}
.flip-card:hover .flip-front {
    border-color: rgba(200, 164, 103, 0.45);
    box-shadow: 0 30px 60px rgba(14, 23, 38, 0.4), inset 0 1px 0 rgba(200, 164, 103, 0.2);
}

/* coin haut : numéro + icône */
.flip-front-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.flip-num {
    font-family: var(--f-display);
    font-size: 0.78rem;
    color: var(--c-gold);
    letter-spacing: 0.22em;
    font-style: italic;
    text-transform: uppercase;
    padding-left: 0.5rem;
    border-left: 2px solid var(--c-gold);
}
.flip-icon {
    width: 52px; height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(200, 164, 103, 0.28), rgba(200, 164, 103, 0.08));
    color: var(--c-gold);
    border: 1px solid rgba(200, 164, 103, 0.35);
    transition: transform 0.6s var(--ease), background 0.6s var(--ease);
}
.flip-icon svg {
    width: 28px; height: 28px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.flip-card:hover .flip-icon {
    transform: rotate(-8deg) scale(1.06);
    background: radial-gradient(circle at 30% 30%, rgba(200, 164, 103, 0.45), rgba(200, 164, 103, 0.12));
}

/* divider ornemental */
.flip-divider {
    position: relative;
    margin: 1.4rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 103, 0.45), transparent);
    z-index: 2;
}
.flip-divider span {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px; height: 7px;
    background: var(--c-gold);
    border: 1px solid var(--c-night);
    box-shadow: 0 0 0 3px rgba(200, 164, 103, 0.12);
}

/* corps : titre + teaser */
.flip-front-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
    position: relative;
    z-index: 2;
}
.flip-front h3 {
    font-family: var(--f-display);
    font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.6rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--c-ivory);
    letter-spacing: -0.01em;
    margin-bottom: 0.7rem;
    font-variation-settings: "opsz" 144;
}
.flip-teaser {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(232, 213, 174, 0.88);
    font-weight: 400;
}

/* footer : hint */
.flip-hint {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold-soft);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(200, 164, 103, 0.25);
    position: relative;
    z-index: 2;
    transition: color 0.4s var(--ease);
}
.flip-hint::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1px solid currentColor;
    background-image: radial-gradient(circle at center, var(--c-gold) 1px, transparent 1.5px);
    background-size: 5px 5px;
    flex-shrink: 0;
    transition: transform 0.6s var(--ease);
}
.flip-card:hover .flip-hint::before {
    transform: rotate(180deg);
}

/* face arrière */
.flip-back {
    background:
        radial-gradient(circle at 20% 20%, rgba(200, 164, 103, 0.15), transparent 55%),
        linear-gradient(160deg, var(--c-burgundy) 0%, var(--c-burgundy-2) 100%);
    color: var(--c-ivory);
    transform: rotateY(180deg) translateZ(0.01px);
    -webkit-transform: rotateY(180deg) translateZ(0.01px);
    justify-content: center;
    align-items: flex-start;
    border: 1px solid rgba(200, 164, 103, 0.3);
    box-shadow: var(--shadow-strong);
}
.flip-back-glyph {
    font-size: 1.5rem;
    color: var(--c-gold);
    margin-bottom: 1rem;
    line-height: 1;
}
.flip-back p {
    font-family: var(--f-display);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* ============ STORY ============ */
.story {
    background: var(--c-night);
    color: var(--c-ivory);
    position: relative;
    overflow: hidden;
}
.story::before {
    content: '';
    position: absolute;
    bottom: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200, 164, 103, 0.10), transparent 65%);
    pointer-events: none;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}
.story-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 1.5s var(--ease);
}
.story-media:hover img { transform: scale(1.04); }

.story-badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: var(--c-ivory);
    color: var(--c-night);
    padding: 1rem 1.3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-mid);
    border: 1px solid var(--c-line);
}
.story-badge-num {
    display: block;
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--c-burgundy);
}
.story-badge-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
}

.story-content .section-tag { color: var(--c-gold); }
.story-content .section-title { color: var(--c-ivory); }
.story-intro {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--c-gold-soft);
    margin-bottom: var(--sp-6);
    max-width: 50ch;
    padding-left: 1.25rem;
    border-left: 2px solid var(--c-gold);
}

.story-block {
    margin-top: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(200, 164, 103, 0.18);
}
.story-block:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: var(--sp-7);
}
.story-block h3 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-ivory);
    margin-bottom: var(--sp-3);
    line-height: 1.2;
}
.story-block p {
    color: rgba(250, 246, 239, 0.78);
    line-height: 1.7;
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: var(--lines, 3);
    line-clamp: var(--lines, 3);
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
.truncate.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
}

.read-more {
    margin-top: var(--sp-3);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0;
    transition: color 0.3s var(--ease);
}
.read-more::after {
    content: '↓';
    transition: transform 0.4s var(--ease);
}
.read-more.expanded::after { transform: rotate(180deg); }
.read-more:hover { color: var(--c-gold-soft); }

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; }
}

/* ============ WHY-PAID ============ */
.why-paid {
    background: linear-gradient(180deg, var(--c-ivory) 0%, var(--c-ivory-2) 100%);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.compare-grid::before {
    content: 'VS';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-display);
    font-style: italic;
    font-size: 2rem;
    color: var(--c-gold);
    background: var(--c-ivory);
    width: 64px; height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-mid);
    border: 1px solid var(--c-line-strong);
    z-index: 2;
}

.compare-card {
    padding: 2.2rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
    background: var(--c-ivory);
    transition: all 0.5s var(--ease);
}
.compare-card header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--c-line);
}
.compare-icon {
    display: grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
}
.compare-card h3 {
    font-family: var(--f-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--c-night);
}
.compare-card ul li {
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--c-line);
    line-height: 1.5;
    color: var(--c-ink-soft);
    position: relative;
    padding-left: 1.5rem;
}
.compare-card ul li:last-child { border-bottom: 0; }
.compare-card ul li::before {
    position: absolute;
    left: 0; top: 0.7rem;
}

.compare-bad {
    opacity: 0.8;
}
.compare-bad .compare-icon {
    background: rgba(122, 46, 64, 0.1);
    color: var(--c-burgundy);
}
.compare-bad ul li::before { content: '✕'; color: var(--c-burgundy); }

.compare-good {
    background: linear-gradient(160deg, var(--c-night) 0%, var(--c-night-2) 100%);
    color: var(--c-ivory);
    border-color: var(--c-night-2);
    box-shadow: var(--shadow-strong);
    transform: scale(1.02);
}
.compare-good h3 { color: var(--c-ivory); }
.compare-good header { border-bottom-color: rgba(200, 164, 103, 0.25); }
.compare-good .compare-icon {
    background: rgba(200, 164, 103, 0.18);
    color: var(--c-gold);
}
.compare-good ul li {
    color: rgba(250, 246, 239, 0.85);
    border-bottom-color: rgba(200, 164, 103, 0.2);
}
.compare-good ul li::before { content: '✦'; color: var(--c-gold); }

@media (max-width: 760px) {
    .compare-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .compare-grid::before { left: 50%; top: 50%; }
    .compare-good { transform: none; }
}

/* ============ CONSULTATIONS / TABS ============ */
.consultations { background: var(--c-ivory); }

.tabs {
    max-width: 1100px;
    margin: 0 auto;
}

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--c-ivory-2);
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
    border: 1px solid var(--c-line);
}
.tab-btn {
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-ink-soft);
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease);
    flex-wrap: wrap;
    text-align: center;
    position: relative;
}
.tab-num {
    font-family: var(--f-display);
    font-style: italic;
    color: var(--c-gold);
    font-size: 1rem;
}
.tab-tag {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--c-burgundy);
    color: var(--c-ivory);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}
.tab-tag-alt { background: var(--c-sage); }
.tab-btn.active {
    background: var(--c-night);
    color: var(--c-ivory);
    box-shadow: var(--shadow-mid);
}
.tab-btn.active .tab-num { color: var(--c-gold); }
.tab-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--c-night);
}

.tab-panel {
    animation: panel-in 0.5s var(--ease-out);
}
@keyframes panel-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.panel-text h3 {
    font-family: var(--f-display);
    font-size: var(--fs-2xl);
    line-height: 1.15;
    font-weight: 500;
    color: var(--c-night);
    margin-bottom: var(--sp-5);
    letter-spacing: -0.01em;
}
.panel-text > p {
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--c-ink-soft);
    margin-bottom: var(--sp-6);
}

.panel-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--c-line);
}
.panel-features li {
    font-size: 0.85rem;
    color: var(--c-ink-soft);
    line-height: 1.4;
}
.panel-features strong {
    display: block;
    font-family: var(--f-display);
    font-size: 0.95rem;
    color: var(--c-burgundy);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.panel-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 4 / 3;
}
.panel-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.panel-media:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
    .panel-grid { grid-template-columns: 1fr; }
    .tabs-nav { grid-template-columns: 1fr; }
    .panel-features { grid-template-columns: 1fr; gap: 0.5rem; padding-top: 1rem; }
    .panel-features li { padding: 0.4rem 0; border-bottom: 1px dashed var(--c-line); }
}

/* ============ PAIN POINTS / BENTO ============ */
.pain-points {
    background: var(--c-ivory-2);
    position: relative;
}
.pain-points::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(200, 164, 103, 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(92, 32, 48, 0.06), transparent 50%);
}
.pain-points > .container { position: relative; z-index: 2; }

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: 1rem;
    margin-bottom: var(--sp-7);
}
.bento-card {
    background: var(--c-ivory);
    padding: 1.6rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--c-line);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
    border-color: var(--c-line-strong);
}
.bento-icon {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(200, 164, 103, 0.18), rgba(200, 164, 103, 0.05));
    color: var(--c-burgundy);
    border-radius: 50%;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.bento-card h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--c-night);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.bento-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--c-ink-soft);
}

.bento-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.bento-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.bento-3 {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    padding: 0;
    background: var(--c-night);
    color: var(--c-ivory);
    border: 0;
    overflow: hidden;
    position: relative;
}
.bento-3 img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.bento-3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(14, 23, 38, 0.92));
}
.bento-feature-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.8rem 1.6rem;
    z-index: 2;
}
.bento-feature-text h3 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--c-gold-soft);
    margin-bottom: 0.5rem;
}
.bento-feature-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(250, 246, 239, 0.85);
}
.bento-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.bento-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.bento-6 { grid-column: 1 / 3; grid-row: 3 / 4; }
.bento-7 { grid-column: 3 / 5; grid-row: 3 / 4; }

.cta-inline {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--c-line);
}
.cta-inline p {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--c-night);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-1, .bento-2, .bento-4, .bento-5 { grid-column: span 1; grid-row: auto; }
    .bento-3 { grid-column: 1 / -1; grid-row: auto; min-height: 280px; }
    .bento-6, .bento-7 { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 540px) {
    .bento { grid-template-columns: 1fr; }
    .bento > * { grid-column: 1; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--c-night);
    color: var(--c-ivory);
    overflow: hidden;
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: -200px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200, 164, 103, 0.10), transparent 65%);
}
.testimonials .section-tag { color: var(--c-gold); }
.testimonials .section-title { color: var(--c-ivory); }
.testimonials .section-lead { color: rgba(250, 246, 239, 0.7); }

.testimonials-carousel { position: relative; z-index: 2; }

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.7s var(--ease);
    will-change: transform;
}
.testimonial {
    flex: 0 0 calc(33.333% - 1rem);
    background: linear-gradient(160deg, rgba(250, 246, 239, 0.05), rgba(250, 246, 239, 0.02));
    border: 1px solid rgba(200, 164, 103, 0.18);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease);
}
.testimonial:hover {
    border-color: rgba(200, 164, 103, 0.45);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: var(--c-gold);
    letter-spacing: 0.1em;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.testimonial blockquote {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--c-ivory);
    margin-bottom: 1.5rem;
    quotes: '“' '”';
}
.testimonial blockquote::before {
    content: open-quote;
    color: var(--c-gold);
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.1em;
}
.testimonial footer {
    font-size: 0.85rem;
    color: rgba(250, 246, 239, 0.6);
    padding-top: 1.2rem;
    border-top: 1px solid rgba(200, 164, 103, 0.15);
}
.testimonial footer strong {
    color: var(--c-gold-soft);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}
.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 103, 0.3);
    color: var(--c-gold);
    display: grid;
    place-items: center;
    transition: all 0.4s var(--ease);
}
.carousel-btn:hover {
    background: var(--c-gold);
    color: var(--c-night);
    border-color: var(--c-gold);
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots {
    display: flex;
    gap: 0.5rem;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(200, 164, 103, 0.25);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 0;
}
.carousel-dot.active {
    background: var(--c-gold);
    width: 24px;
    border-radius: 999px;
}

@media (max-width: 900px) {
    .testimonial { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 600px) {
    .testimonial { flex: 0 0 100%; }
}

/* ============ FAQ ============ */
.faq { background: var(--c-ivory); }

.accordion {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--c-line);
}
.accordion-item {
    border-bottom: 1px solid var(--c-line);
    transition: background 0.4s var(--ease);
}
.accordion-item summary {
    padding: 1.5rem 1rem 1.5rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--c-night);
    transition: color 0.3s var(--ease);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::marker { content: ''; }
.accordion-item summary:hover { color: var(--c-burgundy); }

.acc-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--c-line-strong);
    display: grid;
    place-items: center;
    position: relative;
    transition: all 0.4s var(--ease);
}
.acc-icon::before, .acc-icon::after {
    content: '';
    position: absolute;
    background: var(--c-burgundy);
    border-radius: 1px;
    transition: transform 0.4s var(--ease);
}
.acc-icon::before { width: 12px; height: 1.5px; }
.acc-icon::after { width: 1.5px; height: 12px; }

.accordion-item[open] .acc-icon {
    background: var(--c-night);
    border-color: var(--c-night);
}
.accordion-item[open] .acc-icon::before,
.accordion-item[open] .acc-icon::after { background: var(--c-gold); }
.accordion-item[open] .acc-icon::after { transform: rotate(90deg); }

.acc-content {
    padding: 0 0 1.75rem 0;
    color: var(--c-ink-soft);
    line-height: 1.7;
    max-width: 65ch;
    animation: acc-in 0.5s var(--ease-out);
}
@keyframes acc-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ CTA FINAL ============ */
.cta-final { padding-bottom: 4rem; }

.cta-final-box {
    background: linear-gradient(160deg, var(--c-night) 0%, var(--c-night-2) 50%, var(--c-burgundy) 130%);
    color: var(--c-ivory);
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}
.cta-final-box::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200, 164, 103, 0.18), transparent 65%);
}
.cta-final-box::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200, 164, 103, 0.12), transparent 65%);
}
.cta-final-box > * { position: relative; z-index: 2; }
.cta-final-box .section-tag { color: var(--c-gold); margin-bottom: 1rem; }
.cta-final-box .section-tag::after { color: var(--c-gold); }
.cta-final-box .section-title {
    color: var(--c-ivory);
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}
.cta-final-lead {
    font-size: var(--fs-lg);
    line-height: 1.6;
    color: rgba(250, 246, 239, 0.8);
    max-width: 56ch;
    margin: 0 auto var(--sp-7);
}
.cta-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: var(--sp-5);
}
.cta-final-foot {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: rgba(200, 164, 103, 0.7);
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--c-night);
    color: rgba(250, 246, 239, 0.7);
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    border-top: 1px solid var(--c-night-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 3rem 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(200, 164, 103, 0.18);
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 36ch;
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}
.footer-trust strong { color: var(--c-gold-soft); font-weight: 500; }

.footer-col h4 {
    font-family: var(--f-display);
    font-size: 1.05rem;
    color: var(--c-gold-soft);
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col a {
    font-size: 0.9rem;
    color: rgba(250, 246, 239, 0.65);
    transition: color 0.3s var(--ease);
    position: relative;
}
.footer-col a:hover { color: var(--c-gold); }

.footer-cta-text {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(250, 246, 239, 0.45);
}
.footer-disclaimer { font-style: italic; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ LEGAL PAGE ============ */
.legal { background: var(--c-ivory); }

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--c-ink);
    line-height: 1.75;
}
.legal-content h2 {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.7rem);
    font-weight: 500;
    color: var(--c-night);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
    padding-left: 1rem;
    border-left: 2px solid var(--c-gold);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
    margin-bottom: 1rem;
    color: var(--c-ink-soft);
}
.legal-list {
    margin: 0 0 1.25rem;
    padding-left: 0;
}
.legal-list li {
    list-style: none;
    padding: 0.4rem 0 0.4rem 1.5rem;
    border-bottom: 1px dashed var(--c-line);
    color: var(--c-ink-soft);
    position: relative;
}
.legal-list li:last-child { border-bottom: 0; }
.legal-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--c-gold);
}
.legal-list li strong {
    color: var(--c-night);
    font-weight: 500;
    margin-right: 0.4rem;
}
.legal-content a {
    color: var(--c-burgundy);
    text-decoration: underline;
    text-decoration-color: var(--c-line-strong);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s var(--ease);
}
.legal-content a:hover { text-decoration-color: var(--c-gold); }
.legal-update {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-line);
    font-size: 0.85rem;
    color: var(--c-ink-soft);
    text-align: right;
}

/* ============ HERO SUB (pages secondaires) ============ */
.hero-sub {
    padding: calc(110px + clamp(1.5rem, 4vw, 3rem)) 0 clamp(3rem, 6vw, 5rem);
}

/* ============ REVEAL ON SCROLL ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
