/* ══════════════════════════════════════════════
   MYVOYANCE.NET — Template "Brume Graphite"
   Palette : #1A1A1F (graphite) / #C4985A (or antique) / #E8E0D4 (ivoire clair)
   Fonts  : Cinzel (headings) + DM Sans (body)
   ══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --bg: #1A1A1F;
    --bg-light: #242426;
    --bg-card: #232325;
    --bg-card-hover: #2A2A2C;

    --accent: #C4985A;
    --accent-light: #D4B87A;
    --accent-dark: #A07840;
    --accent-glow: rgba(196, 152, 90, 0.3);

    --silver: #A09890;
    --silver-light: #C0B8A8;
    --silver-muted: #787068;

    --white: #E8E0D4;
    --white-muted: #A09890;
    --text: #D0C8BC;
    --text-muted: #706860;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url('../img/fondfog.jpg') center/cover no-repeat;
    opacity: 0.16;
}

main {
    position: relative;
    z-index: 1;
    background: #1A1A1F;
}

main::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url('../img/fondfog.jpg') center/cover no-repeat;
    opacity: 0.25;
}

/* Fondu hero → contenu */
.hero-fade-bridge {
    position: relative;
    z-index: 2;
    height: 150px;
    margin-top: -1px;
    background: linear-gradient(to bottom, #1A1A1F 0%, rgba(26, 26, 31, 0.5) 50%, transparent 100%);
    pointer-events: none;
}

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

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: var(--white);
    line-height: 1.2;
    font-weight: 600;
}

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

/* ── Canvas nébuleuse (désactivé) ── */
#nebula-canvas {
    display: none;
}

/* ── Cartes flottantes — désactivées ── */

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(196, 152, 90, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
    transition: transform var(--transition);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.logo-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--accent-dark);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-logo--has-img .logo-name,
.nav-logo--has-img .logo-sub {
    display: none;
}

.footer-brand .nav-logo .logo-name {
    font-size: 1.7rem;
}

.footer-brand .nav-logo .logo-sub {
    font-size: 0.65rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link {
    color: var(--white-muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-cta {
    background: var(--accent);
    color: #FFFFFF !important;
    padding: 0.55rem 1.3rem !important;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════
   HERO — 100vh avec image + smog
   ══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    padding: 0 2rem;
}

/* ── Hero Image Background ── */
.hero-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.5) brightness(0.45) sepia(0.2) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(26, 26, 31, 0.2) 0%, rgba(26, 26, 31, 0.5) 50%, rgba(26, 26, 31, 0.9) 90%),
        linear-gradient(180deg, rgba(26, 26, 31, 0.1) 0%, transparent 30%, rgba(26, 26, 31, 0.7) 85%, #1A1A1F 100%);
    z-index: 1;
}

/* Smoke overlay layer — désactivé */
.hero-smoke {
    display: none;
}

/* Hero inner — 2 colonnes : texte + portrait */
.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
}

.hero-content {
    flex: 1;
    text-align: left;
    background: radial-gradient(ellipse at center, rgba(26, 26, 31, 0.85) 0%, rgba(26, 26, 31, 0.6) 50%, rgba(26, 26, 31, 0.2) 75%, transparent 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
}

.hero-portrait {
    flex: 0 0 500px;
    position: relative;
    z-index: 5;
}

.hero-portrait > img,
.hero-portrait > picture > img {
    width: 82%;
    height: auto;
    max-height: 85vh;
    object-fit: cover;
    object-position: top center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 25% 25% 4px 4px;
}

.hero-portrait > picture {
    display: block;
    text-align: center;
}

.hero-portrait .frame-overlay {
    position: absolute;
    inset: -15px;
    z-index: 2;
    pointer-events: none;
}

.hero-portrait .frame-overlay img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 0 20px rgba(196, 152, 90, 0.25));
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 15px rgba(196, 152, 90, 0.5);
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow:
        0 0 20px rgba(26, 26, 31, 0.8),
        0 0 40px rgba(26, 26, 31, 0.6);
}

.hero-title .hero-line {
    display: block;
    opacity: 0;
    transform: scale(0.5);
}

.hero-title .hero-accent {
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
    text-shadow: 0 0 30px rgba(196, 152, 90, 0.4);
}

/* Hero title reveal — slow zoom from depth */
.hero.revealed .hero-title .hero-line:nth-child(1) {
    animation: titleDepth 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero.revealed .hero-title .hero-line:nth-child(2) {
    animation: titleDepth 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes titleDepth {
    0% { opacity: 0; transform: scale(0.5); }
    30% { opacity: 1; }
    100% { opacity: 1; transform: scale(1); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero reveal animation */
.hero.revealed .hero-badge {
    animation: heroReveal 0.8s ease forwards 0.2s;
}
.hero.revealed .hero-subtitle {
    animation: heroReveal 0.8s ease forwards 0.6s;
}
.hero.revealed .hero-buttons {
    animation: heroReveal 0.8s ease forwards 0.8s;
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: heroReveal 0.8s ease forwards 1.2s;
}

.hero-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Fondu bas du hero vers le contenu */
/* Bordure dorée bas du hero avec footsec.png */
.hero-bottom-border {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 6;
    pointer-events: none;
    line-height: 0;
    overflow: hidden;
    height: 20px;
}

.hero-bottom-border img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    filter: brightness(1.1);
}

/* ══════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.3;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #FFFFFF;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(196, 152, 90, 0.45);
    color: #FFFFFF;
}

.btn-outline {
    background: transparent;
    color: var(--silver-light);
    border: 1px solid rgba(196, 152, 90, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--white);
    background: rgba(196, 152, 90, 0.08);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 1.1em;
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-text {
    display: inline;
}

/* ══════════════════════════════════════════════
   SECTIONS — Commun
   ══════════════════════════════════════════════ */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.5rem, 2.5vw, 1.8125rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--white-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-padding {
    padding: 6rem 0;
    margin-top: 100px;
}

/* ══════════════════════════════════════════════
   DIVISEUR — Séparateur doré céleste
   ══════════════════════════════════════════════ */
.fog-divider {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.25rem 0;
    pointer-events: none;
}

.fog-divider img {
    display: inline-block;
    max-width: 780px;
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Fog divider juste après le hero */
.hero + .fog-divider {
    position: relative;
    z-index: 4;
}

/* Première section après le hero */
.hero + .fog-divider + .split-section,
.hero + .fog-divider + section {
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.hero + .fog-divider + .split-section::before,
.hero + .fog-divider + section::before {
    content: none;
}

/* ══════════════════════════════════════════════
   SPLIT SECTIONS — Alternance 50/50
   ══════════════════════════════════════════════ */
.split-section {
    padding: 5rem 0;
    margin-top: 100px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.split-section.layout-reverse .split-grid {
    direction: rtl;
}

.split-section.layout-reverse .split-grid > * {
    direction: ltr;
}

.split-grid .split-content {
    margin-top: 0;
}

/* Première section après hero */

/* Bloc texte pleine largeur sous le grid */
.split-fullwidth {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-fullwidth .split-text {
    max-width: 100%;
}

.split-fullwidth .btn {
    align-self: flex-start;
}

.split-section.layout-reverse .split-grid .split-content {
    margin-top: 0;
    align-self: center;
}

.split-section.layout-reverse .split-grid .split-visual {
    margin-top: 5rem;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-content .btn {
    align-self: center;
}

.split-content .section-tag {
    margin-bottom: 0;
}

.split-content .section-title {
    text-align: left;
    margin-bottom: 0;
}

.split-text {
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.split-text strong {
    color: var(--white);
    font-weight: 600;
}

.split-visual {
    position: relative;
    border-radius: 10px;
    overflow: visible;
    padding: 5px;
    background: linear-gradient(145deg,
        var(--accent) 0%,
        var(--accent-light) 15%,
        rgba(196, 152, 90, 0.2) 30%,
        rgba(212, 184, 122, 0.5) 50%,
        rgba(196, 152, 90, 0.2) 70%,
        var(--accent-light) 85%,
        var(--accent) 100%);
    box-shadow:
        0 0 10px rgba(196, 152, 90, 0.25),
        0 0 30px rgba(196, 152, 90, 0.15),
        0 0 60px rgba(196, 152, 90, 0.08),
        inset 0 0 20px rgba(196, 152, 90, 0.1),
        0 15px 50px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.split-visual:hover {
    box-shadow:
        0 0 15px rgba(196, 152, 90, 0.4),
        0 0 45px rgba(196, 152, 90, 0.2),
        0 0 80px rgba(196, 152, 90, 0.1),
        inset 0 0 25px rgba(196, 152, 90, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.split-visual img {
    width: 100%;
    border-radius: 6px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Lueur et ornements — désactivés */
.split-visual::before,
.split-visual::after {
    content: none;
}

/* Image sans cadre */
.split-visual.split-visual-naked {
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    transform: scale(1.25);
    transform-origin: center center;
}

.split-visual.split-visual-naked:hover {
    box-shadow: none;
    transform: none;
}

.split-visual.split-visual-naked::before,
.split-visual.split-visual-naked::after {
    content: none;
}

.split-visual.split-visual-naked img {
    border-radius: 0;
}

/* ══════════════════════════════════════════════
   FLIP CARDS
   ══════════════════════════════════════════════ */
.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.flip-card {
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 4px;
    border-radius: var(--radius);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flip-card-front {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15), 0 0 8px rgba(196, 152, 90, 0.1), inset 0 0 8px rgba(196, 152, 90, 0.05);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 2px solid rgba(196, 152, 90, 0.4);
    transform: rotateY(180deg);
}

.flip-card-back p {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.7;
}

.flip-icon {
    margin-bottom: 1.2rem;
    color: var(--accent-light);
    transition: color var(--transition);
}

.flip-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(1) invert(0) sepia(0) saturate(1);
    transition: filter var(--transition);
}

.flip-card:hover .flip-icon img,
.flip-card:focus .flip-icon img {
    filter: brightness(1.2);
}

.flip-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.flip-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* ══════════════════════════════════════════════
   TIMELINE / PROCESSUS
   ══════════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(196, 152, 90, 0.1));
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 0 15px var(--accent-glow);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), 0 0 8px rgba(196, 152, 90, 0.1), inset 0 0 8px rgba(196, 152, 90, 0.05);
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ACCORDÉONS
   ══════════════════════════════════════════════ */
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--white-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 0.6rem 0 0;
    transition: color var(--transition);
    text-align: left;
}

.accordion-trigger:hover {
    color: var(--accent-light);
}

.accordion-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition);
}

.accordion-icon::before {
    top: 50%;
    left: 3px;
    right: 3px;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    left: 50%;
    top: 3px;
    bottom: 3px;
    width: 2px;
    transform: translateX(-50%);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-panel.open {
    max-height: 500px;
    padding-top: 0.8rem;
}

.accordion-panel p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CARDS SPÉCIALITÉS
   ══════════════════════════════════════════════ */
.specialites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), 0 0 8px rgba(196, 152, 90, 0.1), inset 0 0 8px rgba(196, 152, 90, 0.05);
}

.spec-card:hover {
    border-color: rgba(196, 152, 90, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 152, 90, 0.12);
}

.spec-icon {
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.spec-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(1) invert(0) sepia(0) saturate(1);
}

.spec-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.spec-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--accent-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem 0 0;
    transition: color var(--transition);
}

.spec-toggle:hover {
    color: var(--accent);
}

.spec-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.spec-detail.open {
    max-height: 300px;
    padding-top: 0.8rem;
}

.spec-detail p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ENGAGEMENTS
   ══════════════════════════════════════════════ */
.engagements-grid,
.engagements-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.engagement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), 0 0 8px rgba(196, 152, 90, 0.1), inset 0 0 8px rgba(196, 152, 90, 0.05);
}

.engagement-item:hover {
    border-color: rgba(196, 152, 90, 0.2);
}

.engagement-check {
    color: var(--accent-light);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.engagement-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.2rem;
}

.engagement-item p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SECTION FINALE / CTA
   ══════════════════════════════════════════════ */
.final-cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(196, 152, 90, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.final-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 3rem;
    align-items: center;
}

.final-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.final-price {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--accent-light);
    margin: 1.5rem 0;
    text-shadow: 0 0 30px rgba(196, 152, 90, 0.35);
}

.final-text {
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.final-text strong {
    color: var(--white);
}

.final-portrait {
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-portrait img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}

.final-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 0 8px rgba(196, 152, 90, 0.1), inset 0 0 8px rgba(196, 152, 90, 0.05);
}

.faq-item:hover {
    border-color: rgba(196, 152, 90, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.faq-question h3 {
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem;
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(196, 152, 90, 0.1);
}

.footer-top {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--silver-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(196, 152, 90, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 0.78rem !important;
    margin-top: 0.4rem;
    opacity: 0.7;
}

/* ══════════════════════════════════════════════
   STICKY CTA
   ══════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #FFFFFF;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(196, 152, 90, 0.35);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition);
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(196, 152, 90, 0.45);
    color: #FFFFFF;
}

.sticky-cta-pulse {
    display: none;
}

.sticky-cta-icon {
    font-size: 1.1rem;
}

/* ══════════════════════════════════════════════
   ANIMATIONS - Scroll reveal
   ══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.glow-text {
    text-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(196, 152, 90, 0.15);
}

/* ══════════════════════════════════════════════
   CADRE MYSTIQUE — Overlay sur images
   ══════════════════════════════════════════════ */
.split-visual-framed {
    position: relative;
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.split-visual-framed:hover {
    box-shadow: none;
    transform: none;
}

.split-visual-framed::before,
.split-visual-framed::after {
    content: none;
}

.split-visual-framed .frame-overlay {
    position: absolute;
    inset: -30px;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 0 15px rgba(196, 152, 90, 0.3));
}

.split-visual-framed .frame-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.split-visual-framed > img:first-child {
    border-radius: 12px;
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 10% auto;
}

/* ── Section encadrée — désactivé ── */

/* ── Section atmosphère — désactivé ── */

/* ══════════════════════════════════════════════
   FOOTER LOGO
   ══════════════════════════════════════════════ */
.footer-brand .nav-logo--has-img .logo-name,
.footer-brand .nav-logo--has-img .logo-sub {
    display: none;
}

.footer-brand .nav-logo img {
    height: 45px;
}

/* ══════════════════════════════════════════════
   MENTIONS LÉGALES
   ══════════════════════════════════════════════ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--silver-light);
}

.legal-content p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--white);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split-section.layout-reverse .split-grid {
        direction: ltr;
    }

    .split-content .section-title {
        text-align: center;
    }

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

    .split-grid .split-content,
    .split-section.layout-reverse .split-grid .split-content,
    .split-grid .split-visual,
    .split-section.layout-reverse .split-grid .split-visual {
        margin-top: 0;
    }

    .section-padding,
    .split-section {
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 31, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-portrait {
        flex: 0 0 auto;
        max-width: 280px;
    }

    .hero-portrait > img,
    .hero-portrait > picture > img {
        width: 65%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .final-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .final-buttons {
        justify-content: center;
    }

    .section-padding {
        padding: 4rem 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-scroll {
        display: none;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta-text {
        display: none;
    }

    .sticky-cta {
        padding: 1rem;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .sticky-cta-icon {
        font-size: 1.3rem;
    }
}
