/* ============================================================
   BRUNO DAVID — Voyant · Médium · Numérologue · Magnétiseur
   Charte graphique premium | Version 1.0
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Arizonia&display=swap");


/* ── Variables ─────────────────────────────────────────── */
:root {
    --navy: #1a2744;
    --midnight: #0f1a35;
    --gold: #c8a45a;
    --gold-light: #e2c98a;
    --ivory: #f5f0e8;
    --ivory-dark: #ede7d9;
    --slate: #5c7a8c;
    --slate-light: #8ca8b8;
    --text-dark: #1a2744;
    --text-mid: #4a5568;
    --text-light: #718096;
    --white: #ffffff;

    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "DM Sans", system-ui, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 12px rgba(26, 39, 68, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 39, 68, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 39, 68, 0.18);

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

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

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ── Typography ────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    font-weight: 700;
}
h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
}
h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
}
h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    line-height: 1.8;
    color: var(--text-mid);
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
}

.gold-text {
    color: var(--gold);
}
.serif {
    font-family: var(--font-serif);
}

/* ── Layout ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gold);
    color: var(--midnight);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 90, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1.5px solid rgba(245, 240, 232, 0.5);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(26, 39, 68, 0.25);
}
.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 164, 90, 0.06);
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.12);
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition);
}
.btn-icon:hover {
    background: var(--gold);
    color: var(--midnight);
}

/* ── Section header ────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-header h2 {
    margin-bottom: 1rem;
}
.section-header p {
    max-width: 540px;
    margin: 0 auto;
}

.divider-gold {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.2rem auto 0;
}

/* ============================================================
   01 · HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition:
        background var(--transition),
        box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(15, 26, 53, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav-logo .name {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ivory);
    letter-spacing: 0.02em;
}
.nav-logo .tagline {
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.75);
    transition: color var(--transition);
    letter-spacing: 0.03em;
}
.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    margin-left: 1rem;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: transparent;
    border: none;
    z-index: 1001; /* Above mobile menu if needed */
    appearance: none;
    -webkit-appearance: none;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--ivory);
    transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--midnight);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--ivory);
    transition: color var(--transition);
}
.mobile-menu a:hover {
    color: var(--gold);
}
.mobile-close {
    position: absolute;
    top: 28px;
    right: 28px;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   02 · HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    background: var(--midnight);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 90, 0.12);
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 90, 0.08);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 70% 40%,
            rgba(92, 122, 140, 0.15) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 20% 80%,
            rgba(200, 164, 90, 0.06) 0%,
            transparent 50%
        );
}

/* Stars decoration */
.hero-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.4);
    animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 120px 0 0px;
}

.hero-content {
}

.hero-overline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.hero-overline .line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.hero-overline span {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.hero h1 {
    color: var(--ivory);
    margin-bottom: 1rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* Specialties pills */
.hero-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.5rem;
}
.specialty-pill {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(200, 164, 90, 0.3);
    color: rgba(200, 164, 90, 0.85);
    background: rgba(200, 164, 90, 0.06);
    letter-spacing: 0.05em;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 90%;
    margin: auto;
    padding: 20px 0;
}
.trust-item {
    display: flex;
    flex-direction: column;
}
.trust-item .num {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ivory);
    line-height: 1;
    text-align: center;
}
.trust-item .label {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
	text-align:center;
}
.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(200, 164, 90, 0.25);
}

/* Hero image side */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 380px;
    height: 480px;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    background: linear-gradient(
        135deg,
        rgba(92, 122, 140, 0.3),
        rgba(26, 39, 68, 0.8)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 164, 90, 0.2);
    gap: 1rem;
    overflow: hidden;
    position: relative;
}
.hero-image-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 30%,
        rgba(200, 164, 90, 0.1),
        transparent 70%
    );
}
.photo-icon {
    font-size: 4rem;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}
.hero-image-placeholder p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.4);
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
    font-style: italic;
}

/* Floating badge */
.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--navy);
    border: 1px solid rgba(200, 164, 90, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}
.badge-icon {
    font-size: 1.6rem;
}
.badge-text {
}
.badge-text .num {
    font-family: 'Arizonia';
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 400;
}
.badge-text .desc {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.55);
}

/* Decorative ring */
.hero-ring {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 440px;
    height: 540px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(200, 164, 90, 0.15);
    pointer-events: none;
}

/* ── Scroll indicator ──────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 3;
}
.scroll-indicator span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
}
.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(245, 240, 232, 0.25);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-mouse::before {
    content: "";
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ============================================================
   03 · RÉASSURANCE BANDE
   ============================================================ */
.trust-band {
    background: var(--navy);
    padding: 32px 0;
    border-top: 1px solid rgba(200, 164, 90, 0.15);
    border-bottom: 1px solid rgba(200, 164, 90, 0.15);
}

.trust-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.trust-stat-text .val {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.trust-stat-text .desc {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 2px;
}

.trust-band-sep {
    width: 1px;
    height: 40px;
    background: rgba(200, 164, 90, 0.15);
}

/* Media logos */
.media-logos {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.media-logo {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}
.media-logo:hover {
    color: rgba(245, 240, 232, 0.6);
}

/* ============================================================
   04 · À PROPOS / PRÉSENTATION BRUNO
   ============================================================ */
.about {
    padding: 100px 0;
    background: var(--ivory);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--slate) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 40% 60%,
        rgba(200, 164, 90, 0.08),
        transparent
    );
}
.about-image-placeholder-text {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.3);
    font-style: italic;
    text-align: center;
    padding: 0 1.5rem;
}

/* Experience ribbon */
.about-exp-ribbon {
    position: absolute;
    right: -24px;
    top: 40px;
    background: var(--gold);
    color: var(--midnight);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-exp-ribbon .years {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.about-exp-ribbon .ans {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Quote block */
.about-quote {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    max-width: 220px;
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--gold);
}
.about-quote p {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    margin: 0;
}

/* Image sticky pendant le défilement du texte (page d'accueil) */
.about .about-inner {
    align-items: start;
}

.about .about-image-wrap {
    position: sticky;
    top: 120px;
}

/* Content side */
.about-content {
}
.about-content .overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.about-content h2 {
    margin-bottom: 1.2rem;
}
.about-content .lead {
    margin-bottom: 1.5rem;
}
.about-content p {
    margin-bottom: 1.2rem;
}

/* Skills list */
.about-skills {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 1.8rem 0 2rem;
}
.about-skills li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-mid);
}
.about-skills li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.15);
    border: 1.5px solid var(--gold);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23C8A45A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================================
   05 · SERVICES
   ============================================================ */
.services {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 90, 0.06);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(26, 39, 68, 0.6);
    border: 1px solid rgba(200, 164, 90, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
/* .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at top left,
        rgba(200, 164, 90, 0.06),
        transparent 60%
    );
    opacity: 0;
    transition: var(--transition);
} */
.service-card:hover {
    border-color: rgba(200, 164, 90, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(200, 164, 90, 0.1);
    border: 1px solid rgba(200, 164, 90, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: rgba(200, 164, 90, 0.18);
    border-color: var(--gold);
}

.service-card h3 {
    color: var(--ivory);
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
}
.service-card p {
    color: rgba(245, 240, 232, 0.55);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: gap var(--transition);
}
.service-card:hover .service-link {
    gap: 10px;
}

/* Sous-liste domaines dans les service-cards */
.service-card {
    display: flex;
    flex-direction: column;
}

.domain-sub-list {
    list-style: none;
    flex: 1;
    margin-bottom: 1.6rem;
    margin-top: 0.3rem;
}

.domain-sub-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.58);
    padding: 7px 0;
    border-bottom: 1px solid rgba(200, 164, 90, 0.07);
    line-height: 1.4;
}

.domain-sub-list li:last-child {
    border-bottom: none;
}

.domain-sub-list li::before {
    content: "✓";
    color: var(--gold);
    font-size: 0.55rem;
    flex-shrink: 0;
    opacity: 0.8;
}

/* CTA sous la grille des domaines */
.services-cta-wrap {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   06 · PROCESSUS / COMMENT ÇA MARCHE
   ============================================================ */
.process {
    padding: 100px 0;
    background: var(--ivory);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting line */
.process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 1px;
    background: linear-gradient(
        to right,
        var(--gold),
        rgba(200, 164, 90, 0.2),
        var(--gold)
    );
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    border: 1px solid rgba(200, 164, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}
.process-step p {
    font-size: 0.88rem;
    max-width: 200px;
    margin: 0 auto;
}

/* ============================================================
   07 · TÉMOIGNAGES
   ============================================================ */
.testimonials {
    padding: 100px 0;
    background: var(--ivory-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '"';
    position: absolute;
    bottom: -60px;
    right: 5%;
    font-family: var(--font-serif);
    font-size: 30rem;
    color: rgba(200, 164, 90, 0.06);
    line-height: 1;
    pointer-events: none;
}

/* ── Carrousel wrapper ────────────────────────────────────── */
.carousel {
    position: relative;
    padding: 0 50px;
}

.carousel-window {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

/* ── Flèches prev / next ───────────────────────────────── */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.12);
    border: 1px solid rgba(200, 164, 90, 0.25);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
}
.carousel-btn:hover {
    background: var(--gold);
    color: var(--midnight);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(200, 164, 90, 0.3);
}
.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.carousel-prev {
    left: 0;
}
.carousel-next {
    right: 0;
}

/* ── Indicateurs (dots) ───────────────────────────────── */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.carousel-dot.active {
    width: 26px;
    border-radius: 4px;
    background: var(--gold);
}

.testi-card {
    background: var(--navy);
    border: 1px solid rgba(200, 164, 90, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.testi-card:hover {
    background: var(--navy);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.18);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}
.testi-stars span {
    font-size: 0.85rem;
    color: var(--gold);
}

.testi-quote {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.82);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(200, 164, 90, 0.15);
    padding-top: 1rem;
}
.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--slate), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}
.testi-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ivory);
}
.testi-city {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.45);
}

/* Voir tous les avis */
.testi-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   08 · FAQ
   ============================================================ */
.faq {
    padding: 100px 0;
    background: var(--ivory-dark);
}

.faq-inner {
    max-width: 740px;
    margin: 0 auto;
}

.faq-list {
    list-style: none;
}

.faq-item {
    border-bottom: 1px solid rgba(26, 39, 68, 0.1);
}
.faq-item:first-child {
    border-top: 1px solid rgba(26, 39, 68, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    cursor: pointer;
    gap: 1rem;
}
.faq-question span {
    font-weight: 500;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.4;
}
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 0.85rem;
    color: var(--gold);
}
.faq-item.open .faq-icon {
    background: var(--gold);
    color: var(--midnight);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.4rem;
}
.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ============================================================
   09 · CTA FINAL
   ============================================================ */
.cta-section {
    padding: 120px 0;
    background: var(--midnight);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(200, 164, 90, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 20% 100%,
            rgba(92, 122, 140, 0.08) 0%,
            transparent 50%
        );
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.cta-overline .line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.cta-overline span {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.cta-section h2 {
    color: var(--ivory);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section p {
    color: rgba(245, 240, 232, 0.55);
    margin-bottom: 2.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--gold);
    color: var(--midnight);
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: var(--transition);
    margin-bottom: 1.2rem;
}
.cta-phone:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 164, 90, 0.3);
}
.cta-phone-icon {
    font-size: 1.3rem;
}

.cta-sub {
    font-size: 0.82rem !important;
    color: rgba(245, 240, 232, 0.35) !important;
    margin-bottom: 2rem !important;
}

.cta-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.secure-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.35);
}

/* ============================================================
   10 · FOOTER
   ============================================================ */
.site-footer {
    background: #080f1e;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(200, 164, 90, 0.1);
}

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

.footer-brand .logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}
.footer-brand .tagline {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.4);
    line-height: 1.7;
    max-width: 240px;
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.45);
    transition: color var(--transition);
}
.footer-col ul li a:hover {
    color: var(--ivory);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.25);
    margin: 0;
}

/* ============================================================
   11 · STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--midnight);
    border-top: 1px solid rgba(200, 164, 90, 0.2);
    padding: 12px 16px;
    gap: 10px;
}
.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 13px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
}
.sticky-cta .call {
    background: var(--gold);
    color: var(--midnight);
}
.sticky-cta .rdv {
    background: rgba(200, 164, 90, 0.1);
    color: var(--gold);
    border: 1px solid rgba(200, 164, 90, 0.3);
}

/* ============================================================
   ANIMATIONS & REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 2.5rem;
    }
    .hero-image-frame {
        width: 320px;
        height: 400px;
    }
    .about-inner {
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 100px 0 60px;
        text-align: center;
    }
    .hero-overline {
        justify-content: center;
    }
    .hero-specialties {
        justify-content: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        flex: 1 1 40%;
        text-align: center;
    }
    .hero-image-wrap {
        display: none;
    }

    .trust-band-inner {
        justify-content: center;
    }
    .trust-band-sep {
        display: none;
    }
    .media-logos {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }
    .about-image-wrap {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .process-steps::before {
        display: none;
    }

    .carousel {
        padding: 0 36px;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        display: flex;
    }
    .cta-section {
        padding-bottom: 140px;
    }

    .about-skills {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .services-grid {
        gap: 1rem;
    }
    .cta-phone {
        font-size: 1.2rem;
        padding: 15px 28px;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   PAGE À PROPOS — Styles spécifiques
   ============================================================ */

/* ── Navigation : lien actif ─────────────────────────────── */
.nav-links a.nav-active {
    color: var(--gold);
}

/* ── Page Hero Banner ────────────────────────────────────── */
.page-hero {
    min-height: 52vh;
    background: var(--midnight);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 90, 0.12);
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 90, 0.07);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero-inner .hero-overline {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.page-hero-inner h1 {
    color: var(--ivory);
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    margin-bottom: 1.2rem;
}

.page-hero-inner h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(245, 240, 232, 0.6);
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.35);
}
.page-breadcrumb a {
    color: rgba(245, 240, 232, 0.45);
    transition: color var(--transition);
}
.page-breadcrumb a:hover {
    color: var(--gold);
}
.page-breadcrumb span[aria-current="page"] {
    color: var(--gold);
}

/* ── 01 · Le Parcours ────────────────────────────────────── */
.parcours-section {
    padding: 100px 0;
    background: var(--ivory);
}

.parcours-layout {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

/* Colonne décorative gauche */
.parcours-deco {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.4rem;
}

.parcours-deco-line {
    width: 1px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold),
        transparent
    );
    opacity: 0.4;
}

.parcours-deco-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gold);
    color: var(--midnight);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    margin: 1rem 0;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.deco-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.deco-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 3px;
}

/* Zone texte du parcours */
.parcours-text p {
    margin-bottom: 1.4rem;
}

.parcours-values {
    margin: 1.8rem 0 2rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 2.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 164, 90, 0.12);
}

.parcours-values-intro {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 1.2rem !important;
}

.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--navy);
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--ivory);
    border-left: 2.5px solid var(--gold);
}

.values-icon {
    color: var(--gold);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Signature BDL */
.bdl-signature {
    font-family: 'Arizonia';
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
    opacity: 0.75;
    letter-spacing: 0.08em;
    margin-top: 2.5rem;
    display: inline-block;
}

.bdl-gold {
    color: var(--gold);
    opacity: 0.85;
}
.bdl-navy {
    color: var(--navy);
    opacity: 0.6;
}

/* ── 02 · Une présence reconnue (fond sombre) ────────────── */
.presence-section {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.presence-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 80% 25%,
            rgba(92, 122, 140, 0.15) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 10% 80%,
            rgba(200, 164, 90, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* Overline pour fond sombre */
.overline-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Titres et textes sur fond sombre */
.ap-split-content h2 em {
    font-style: italic;
    color: var(--gold);
}

.presence-section .ap-split-content h2 {
    color: var(--ivory);
}

.lead-light {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.82);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.text-light {
    color: rgba(245, 240, 232, 0.6) !important;
    margin-bottom: 1.2rem;
}

/* ── 03 · Une relation fondée sur la confiance (fond ivoire) */
.confiance-section {
    padding: 100px 0;
    background: var(--ivory-dark);
}

.confiance-section .ap-split-content h2 em {
    font-style: italic;
    color: var(--gold);
}

/* Quote flottante sur image confiance */
.ap-confiance-quote {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    max-width: 230px;
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--gold);
}
.ap-confiance-quote p {
    font-family: var(--font-serif);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.55;
    margin: 0;
}

/* ── Grille split générique (À propos) ───────────────────── */
.ap-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Reverse : contenu à gauche, image à droite */
.ap-split-inner.ap-split-reverse {
    direction: ltr; /* reset si hérité */
}

/* Image wrap */
.ap-split-image-wrap {
    position: relative;
}

.ap-split-image-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--slate) 0%, var(--navy) 100%);
    overflow: hidden;
    position: relative;
}

.ap-split-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ap-split-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 40% 60%,
        rgba(200, 164, 90, 0.07),
        transparent 70%
    );
    pointer-events: none;
}

/* Badge flottant sur l'image */
.ap-split-badge {
    position: absolute;
    right: -22px;
    top: 44px;
    background: var(--gold);
    color: var(--midnight);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ap-split-badge .badge-num {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.ap-split-badge .badge-desc {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.65;
}

/* Contenu texte split */
.ap-split-content .overline {
    margin-bottom: 1rem;
}
.ap-split-content h2 {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.ap-split-content .lead {
    margin-bottom: 1.5rem;
}
.ap-split-content p {
    margin-bottom: 1.2rem;
}

/* ── Responsive À propos ─────────────────────────────────── */
@media (max-width: 1024px) {
    .parcours-layout {
        gap: 2.5rem;
    }
    .ap-split-inner {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 44vh;
        padding: 110px 0 70px;
    }

    .page-hero-subtitle br {
        display: none;
    }

    .parcours-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .parcours-deco {
        display: none;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .ap-split-inner,
    .ap-split-inner.ap-split-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Sur mobile, image toujours en premier */
    .ap-split-inner.ap-split-reverse .ap-split-content {
        order: 2;
    }
    .ap-split-inner.ap-split-reverse .ap-split-image-wrap {
        order: 1;
    }

    .ap-split-badge {
        right: 10px;
        top: 16px;
    }

    .ap-confiance-quote {
        display: none;
    }
}

@media (max-width: 480px) {
    .bdl-signature {
        font-size: 1.6rem;
    }
    .parcours-values {
        padding: 1.5rem;
    }
}

/* ============================================================
   PAGE DOMAINES — Styles spécifiques
   ============================================================ */

/* ── Jump Nav ────────────────────────────────────────────── */
.domains-jumpnav {
    background: var(--navy);
    padding: 18px 0;
    border-top: 1px solid rgba(200, 164, 90, 0.08);
    border-bottom: 1px solid rgba(200, 164, 90, 0.12);
    position: sticky;
    top: 72px;
    z-index: 90;
}

.jumpnav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.jumpnav-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(245, 240, 232, 0.6);
    border: 1px solid rgba(200, 164, 90, 0.18);
    background: transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.jumpnav-pill:hover {
    background: rgba(200, 164, 90, 0.1);
    color: var(--gold);
    border-color: rgba(200, 164, 90, 0.45);
    transform: translateY(-1px);
}

.jumpnav-icon {
    font-size: 0.95rem;
}

/* ── Domain Sections ────────────────────────────────────── */
.domain-section {
    padding: 100px 0;
    scroll-margin-top: 160px;
}

.ds-light {
    background: var(--ivory);
}
.ds-mid {
    background: var(--ivory-dark);
}

.ds-dark {
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}
.ds-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(200, 164, 90, 0.07) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 85% 90%,
            rgba(92, 122, 140, 0.08) 0%,
            transparent 45%
        );
    pointer-events: none;
}

/* ── Domain Section Header ──────────────────────────────── */
.domain-section-header {
    margin-bottom: 3.5rem;
}

.domain-big-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.domain-intro {
    max-width: 560px;
    margin: 0.8rem auto 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-mid);
}

.domain-section-header h2 em {
    font-style: italic;
    color: var(--gold);
}

/* Titres et textes sur fond sombre */
.ds-dark .domain-section-header h2 {
    color: var(--ivory);
}
.ds-dark .domain-intro {
    color: rgba(245, 240, 232, 0.55);
}

/* ── Cards Grid ────────────────────────────────────────────── */
.domain-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Domain Card ──────────────────────────────────────────── */
.domain-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 2.2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

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

/* Barre dorée en haut de chaque carte */
.domain-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.domain-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.domain-card p {
    font-size: 0.91rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0;
}

/* Variante sombre */
.ds-dark .domain-card {
    background: rgba(255, 255, 255, 0.042);
    border: 1px solid rgba(200, 164, 90, 0.13);
    box-shadow: none;
}

.ds-dark .domain-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 164, 90, 0.32);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.ds-dark .domain-card-accent {
    background: linear-gradient(90deg, var(--gold), rgba(200, 164, 90, 0.35));
}

.ds-dark .domain-card h3 {
    color: var(--ivory);
}
.ds-dark .domain-card p {
    color: rgba(245, 240, 232, 0.58);
}

/* ── Disclaimer ───────────────────────────────────────────── */
.domains-disclaimer {
    background: var(--ivory);
    padding: 28px 0 30px;
    border-top: 1px solid rgba(200, 164, 90, 0.14);
    border-bottom: 1px solid rgba(200, 164, 90, 0.08);
}

.domains-disclaimer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.6;
}

.disclaimer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.14);
    border: 1px solid rgba(200, 164, 90, 0.3);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    font-style: normal;
    flex-shrink: 0;
    letter-spacing: 0;
}

/* ── Responsive Domaines ─────────────────────────────────── */
@media (max-width: 1024px) {
    .domain-cards-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .domains-jumpnav {
        top: 68px;
        padding: 14px 0;
    }

    .jumpnav-inner {
        gap: 7px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 24px 6px;
        scrollbar-width: none;
    }
    .jumpnav-inner::-webkit-scrollbar {
        display: none;
    }

    .jumpnav-pill {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .domain-cards-grid {
        grid-template-columns: 1fr;
    }

    .domain-big-icon {
        font-size: 2.2rem;
    }

    .domain-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .jumpnav-icon {
        display: none;
    }
    .jumpnav-pill {
        font-size: 0.75rem;
        padding: 7px 12px;
    }
}

/* ============================================================
   PAGE CONSULTATIONS — Styles spécifiques
   ============================================================ */

/* ── Sections génériques ────────────────────────────────────── */
.consult-section {
    padding: 100px 0;
}
.cs-light {
    background: var(--ivory);
}
.cs-mid {
    background: var(--ivory-dark);
}
.cs-dark {
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}
.cs-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(200, 164, 90, 0.08) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 90% 90%,
            rgba(92, 122, 140, 0.08) 0%,
            transparent 45%
        );
    pointer-events: none;
}

/* ── 01 · Séances individuelles — Grille 4 colonnes ─────── */
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.6rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    position: relative;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Barre colorée en haut */
.pricing-card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}

.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

.pricing-type {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 !important;
}

/* Prix */
.pricing-amount-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin: 0.8rem 0;
    line-height: 1;
}

.pricing-euro {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    padding-top: 8px;
}

.pricing-num {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    margin: 0 !important;
}

/* Bouton PayPal */
.paypal-form {
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
}

.paypal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    background: #003087;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.paypal-btn:hover {
    background: #001f5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.28);
}

/* Marquage "PayPal" dans le bouton */
.pp-wordmark {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
}
.pp-wordmark em {
    font-style: normal;
    color: #80c1e8;
}

/* ── 02 · Forfait Signature ──────────────────────────────── */
.signature-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.signature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 164, 90, 0.3);
    border-radius: var(--radius-xl);
    padding: 3rem 3.5rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    position: relative;
}

.signature-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--midnight);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.signature-includes {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sig-item {
    display: block;
    align-items: flex-start;
    gap: 10px;
    text-align: center;
}

.sig-check {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.sig-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--ivory);
    font-weight: 600;
}

.sig-item span {
    display: block;
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 1px;
}

.sig-plus {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.signature-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.signature-price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.signature-price .pricing-num {
    font-size: 4rem;
    color: var(--ivory);
}

.signature-price .pricing-euro {
    color: var(--gold);
    padding-top: 10px;
    font-size: 1.6rem;
}

.signature-saving {
    background: rgba(200, 164, 90, 0.15);
    border: 1px solid rgba(200, 164, 90, 0.3);
    border-radius: 50px;
    padding: 4px 14px;
}

.signature-saving span {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
}

/* Variante bouton PayPal pour le forfait signature */
.paypal-btn-signature {
    font-size: 0.95rem;
    padding: 15px 32px;
}

/* ── 03 · Accompagnements ───────────────────────────────── */
.pack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    max-width: 860px;
    margin: 0 auto;
}

.pack-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    border: 1px solid transparent;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Carte 6 mois — mise en avant */
.pack-card-featured {
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px rgba(200, 164, 90, 0.12),
        var(--shadow-sm);
}

.pack-best-value {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--midnight);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.pack-card-header {
    margin-bottom: 1.8rem;
}

.pack-duration {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.pack-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.pack-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
    flex: 1;
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-mid);
}

.pack-check {
    color: var(--gold);
    font-size: 0.65rem;
    flex-shrink: 0;
}

.pack-feature-absent {
    opacity: 0.3;
    color: var(--text-light) !important;
    text-decoration: line-through;
}

.pack-feature-absent span {
    color: var(--text-light);
    font-size: 0.75rem;
}

.pack-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 1.8rem;
}

.pack-price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.pack-price .pricing-num {
    font-size: 2.8rem;
    color: var(--navy);
}
.pack-price .pricing-euro {
    color: var(--gold);
    padding-top: 6px;
}

.pack-freq {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    padding-bottom: 6px;
}

/* Bouton doré pour le forfait 6 mois */
.paypal-btn-gold {
    background: var(--gold);
    color: var(--midnight);
}
.paypal-btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 20px rgba(200, 164, 90, 0.35);
}
.paypal-btn-gold .pp-wordmark,
.paypal-btn-gold .pp-wordmark em {
    color: var(--midnight);
}

/* ── Notice Information importante ──────────────────────── */
.payment-notice {
    background: var(--ivory);
    padding: 36px 0 38px;
    border-top: 1px solid rgba(200, 164, 90, 0.14);
    border-bottom: 1px solid rgba(200, 164, 90, 0.14);
}

.payment-notice-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem 2.2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
}

.notice-icon-wrap {
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.12);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    font-style: italic;
    font-family: var(--font-serif);
}

.notice-body {
    flex: 1;
}

.notice-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.notice-body p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0;
}

.notice-body p strong {
    color: var(--navy);
    font-weight: 600;
}

/* ── Responsive Consultations ────────────────────────────── */
@media (max-width: 1024px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .signature-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .consult-section {
        padding: 70px 0;
    }

    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .signature-includes {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .sig-plus {
        display: none;
    }
    .sig-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .payment-notice-inner {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
    .paypal-btn {
        font-size: 0.82rem;
        padding: 11px 14px;
    }
    .signature-card {
        padding: 2rem 1.5rem;
    }
    .pack-card {
        padding: 2rem 1.8rem;
    }
}

/* ============================================================
   PAGE CHRONIQUES
   ============================================================ */
.chroniques-section {
    padding: 100px 0;
}
.chroniques-section.cs-light {
    background: var(--ivory);
}
.chroniques-section.cs-dark {
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}
.chroniques-section.cs-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(200, 164, 90, 0.07) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.chroniques-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.chronique-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chronique-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.chronique-card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.chronique-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.chronique-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    flex-shrink: 0;
}

.chronique-meta {
    flex: 1;
}
.chronique-meta h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.chronique-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.chronique-tag {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--ivory);
    padding: 3px 10px;
    border-radius: 50px;
}

.chronique-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.chronique-player {
    margin-top: auto;
}
.chronique-player audio {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-sm);
    outline: none;
}

@media (max-width: 768px) {
    .chroniques-grid {
        grid-template-columns: 1fr;
    }
    .chronique-num {
        font-size: 2rem;
    }
}

/* ============================================================
   PAGE CONTACT — Formulaire
   ============================================================ */

.contact-section {
    padding: 100px 0;
    background: var(--ivory);
}

/* — Disposition 2 colonnes — */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: start;
}

/* — En-tête du formulaire — */
.contact-form-header .overline {
    margin-bottom: 0.8rem;
}
.contact-form-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0;
}
.contact-form-header h2 em {
    font-style: italic;
    color: var(--gold);
}

/* — Lignes et groupes de champs — */
.form-row {
    margin-bottom: 1.4rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* — Labels — */
.form-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.03em;
}

.form-required {
    color: var(--gold);
    font-weight: 700;
}

/* — Inputs & Textarea — */
.form-input,
.form-textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--white);
    border: 1.5px solid rgba(26, 39, 68, 0.15);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.93rem;
    color: var(--text-dark);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.12);
}

.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #e05555;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

/* — Pied du formulaire — */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-mention {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0 !important;
    max-width: 260px;
}

.form-submit-btn {
    flex-shrink: 0;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* — Messages de feedback — */
#form-feedback {
    margin-top: 1.4rem;
}

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.25);
    border-left: 4px solid #27ae60;
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    color: #1a6e35;
    line-height: 1.6;
    margin: 0;
}

.form-error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(224, 85, 85, 0.07);
    border: 1px solid rgba(224, 85, 85, 0.2);
    border-left: 4px solid #e05555;
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    color: #8b2a2a;
    line-height: 1.6;
    margin: 0;
}

/* — Colonne info contact — */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
    transition: box-shadow var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.contact-info-link {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.2rem;
    transition: color var(--transition);
}
.contact-info-link:hover {
    color: var(--gold-light);
}

.contact-info-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* — Bloc garantie — */
.contact-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(200, 164, 90, 0.07);
    border: 1px solid rgba(200, 164, 90, 0.2);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
}

.guarantee-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-guarantee p {
    font-size: 0.82rem;
    color: var(--text-mid);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* — Responsive contact — */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 340px;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 70px 0;
    }
}
.item-header{
	display:none !important;
	opacity: 0;
}
.css-1b6cd97 {
  container-type: unset !important;
}