/* ==========================================================================
   KEVINE BEAUTY — Feuille de style v2
   Style : Afro chic, luxe, premium, ultra moderne
   Palette : Bordeaux, Noir, Beige clair, Or
   Typographie : Cormorant Garamond (display) + Inter (body)
   ========================================================================== */

/* ============================ 1. Variables =============================== */
:root {
    /* Couleurs marque */
    --bordeaux: #6b1e2e;
    --bordeaux-dark: #4a1320;
    --bordeaux-light: #8a2a3e;
    --or: #c9a961;
    --or-clair: #e2c98f;
    --or-fonce: #a8893e;
    --noir: #1a1411;
    --noir-doux: #2b2420;
    --beige: #f5ece1;
    --beige-clair: #faf6f0;
    --beige-fonce: #e8dcc9;
    --blanc: #ffffff;
    --gris: #8a8a8a;
    --gris-clair: #d9d3ca;

    /* Thème clair */
    --bg: #faf6f0;
    --bg-alt: #f0e6d6;
    --bg-card: #ffffff;
    --text: #1a1411;
    --text-soft: #6b5e54;
    --border: rgba(26, 20, 17, 0.08);
    --shadow-soft: 0 10px 40px rgba(26, 20, 17, 0.06);
    --shadow-medium: 0 20px 50px rgba(26, 20, 17, 0.10);
    --shadow-strong: 0 30px 80px rgba(26, 20, 17, 0.18);

    /* Typographie */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Inter', sans-serif;

    /* Espaces */
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition-fast: 0.25s ease;
}

/* Thème sombre */
[data-theme="dark"] {
    --bg: #100a07;
    --bg-alt: #1a120e;
    --bg-card: #1f1612;
    --text: #f3e9dc;
    --text-soft: #b8a796;
    --border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-medium: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.75);
}

/* ============================ 2. Reset =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul { list-style: none; }

/* ============================ 3. Typographie ============================= */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or-fonce);
    margin-bottom: 1.2rem;
}

.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--or);
}

.eyebrow.no-line::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--or);
    margin-left: 0.8rem;
}
.eyebrow.center::before {
    display: block;
    margin-right: 0.8rem;
}

[data-theme="dark"] .eyebrow { color: var(--or-clair); }

/* ============================ 4. Layout ================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-tight {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 7rem 0; }

@media (max-width: 768px) {
    section { padding: 4.5rem 0; }
}

/* ============================ 5. Boutons ================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition);
    border: 1.5px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn > * { position: relative; z-index: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
    color: var(--blanc);
    box-shadow: 0 10px 30px rgba(107, 30, 46, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(107, 30, 46, 0.5);
}

.btn-gold {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: var(--noir);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(201, 169, 97, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: currentColor;
}

.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--blanc);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-small { padding: 0.7rem 1.5rem; font-size: 0.7rem; }

/* ============================ 6. Header ================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: all var(--transition);
}

.header.scrolled {
    background: var(--bg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 0.7rem 0;
}

[data-theme="dark"] .header.scrolled {
    background: var(--bg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    flex-wrap: nowrap;
}

/* Logo plus grand et plus élégant */
.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--text);
    z-index: 1001;
    transition: transform var(--transition-fast);
}

.logo:hover { transform: scale(1.02); }

.logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--blanc);
    padding: 4px;
    box-shadow: 0 4px 20px rgba(107, 30, 46, 0.15);
    border: 2px solid var(--or);
}

.header.scrolled .logo img {
    height: 52px;
    width: 52px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
}

.logo-text .brand-name em {
    color: var(--or-fonce);
    font-style: italic;
    font-weight: 500;
}

[data-theme="dark"] .logo-text .brand-name em { color: var(--or); }

.logo-text .brand-sub {
    font-family: var(--font-accent);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: 2px;
    white-space: nowrap; /* Ne casse jamais le sous-titre sur 2 lignes */
}

/* Hero / pages : logo texte en blanc */
.header:not(.scrolled) .logo-text .brand-name,
.header:not(.scrolled).header-light .logo-text .brand-name { color: var(--blanc); }

.header:not(.scrolled) .logo-text .brand-sub,
.header:not(.scrolled).header-light .logo-text .brand-sub { color: rgba(255,255,255,0.8); }

.header:not(.scrolled) .nav-links a:not(.btn) { color: var(--blanc); }

.header:not(.scrolled) .menu-toggle span { background: var(--blanc); }

.header:not(.scrolled) .theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    color: var(--blanc);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li { white-space: nowrap; }

.nav-links a:not(.btn) {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.6rem 0;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--or), var(--bordeaux));
    transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 24px; }

.nav-links a:not(.btn):hover { color: var(--or-fonce); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
}

.theme-toggle:hover {
    background: var(--or);
    color: var(--noir);
    transform: rotate(15deg);
    border-color: var(--or);
}

.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 4px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--text); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--text); }

/* ============================ 7. Hero principal ========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 9rem 0 11rem; /* padding bottom plus grand pour ne pas chevaucher hero-stats */
    color: var(--blanc);
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Tête entière toujours visible */
    animation: slowZoom 20s ease-in-out infinite alternate;
    display: block;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(26, 20, 17, 0.85) 0%, rgba(107, 30, 46, 0.55) 60%, rgba(26, 20, 17, 0.75) 100%);
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero .hero-logo {
    width: 110px;
    height: 110px;
    margin-bottom: 1.8rem;
    border-radius: 50%;
    background: var(--blanc);
    padding: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35), 0 0 0 3px var(--or);
    animation: fadeInUp 0.8s ease both;
}

.hero .eyebrow {
    color: var(--or-clair);
    animation: fadeInUp 0.9s ease 0.1s both;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    color: var(--blanc);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 em {
    color: var(--or);
    font-style: italic;
    font-weight: 500;
}

.hero p.lead {
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.8rem;
    max-width: 560px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Stats hero */
.hero-stats {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 3;
    padding: 1.5rem 2.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stats .stat {
    text-align: center;
    color: var(--blanc);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--or);
    font-weight: 500;
    display: block;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 0.3rem;
    display: block;
}

/* Hero pages secondaires */
.hero-page {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 11rem 0 5rem;
    position: relative;
    color: var(--blanc);
    overflow: hidden;
    isolation: isolate; /* crée un stacking context propre */
}

.hero-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-page-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Tête entière toujours visible */
    display: block;
}

.hero-page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(26, 20, 17, 0.85) 0%, rgba(74, 19, 32, 0.75) 100%);
}

.hero-page > .container {
    position: relative;
    z-index: 2;
}

.hero-page h1 {
    color: var(--blanc);
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.hero-page h1 em { color: var(--or); font-style: italic; }

.hero-page p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.hero-page .eyebrow { color: var(--or-clair); }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb a { color: var(--or-clair); }
.breadcrumb a:hover { color: var(--or); }

/* ============================ 8. Intro / À propos ======================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.intro-img-wrap {
    position: relative;
}

.intro-img-wrap .main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top; /* Tête entière toujours visible */
    width: 100%;
}

.intro-img-wrap .accent-frame {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 70%;
    height: 70%;
    border: 2px solid var(--or);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.intro-img-wrap .small-img {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--bg);
    box-shadow: var(--shadow-medium);
}

.intro-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-text p {
    color: var(--text-soft);
    margin-bottom: 1.3rem;
    font-size: 1.02rem;
}

.signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--or-fonce);
    margin-top: 1.8rem;
}

[data-theme="dark"] .signature { color: var(--or-clair); }

/* ============================ 9. Services cards ========================== */
.services-section { background: var(--bg-alt); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--or);
}

.service-img {
    overflow: hidden;
    aspect-ratio: 4/5; /* Format portrait Instagram - cohérent partout */
    position: relative;
    background: #1a1a1a;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit le cadre uniformément */
    object-position: center 20%; /* Tête bien visible en haut, sans coupure */
    transition: transform 1s ease;
    display: block;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bordeaux);
    z-index: 1;
}

.service-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.service-body p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    margin-bottom: 1.2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--bordeaux);
    font-weight: 500;
    line-height: 1;
}

.service-price .price-old {
    font-size: 1rem;
    color: var(--text-soft);
    text-decoration: line-through;
    text-decoration-color: var(--bordeaux);
    margin-right: 8px;
    font-weight: 400;
    opacity: 0.7;
}

.service-promo-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.4);
    z-index: 3;
    animation: promoPulse 2.5s ease-in-out infinite;
}

@keyframes promoPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(184, 134, 11, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6); }
}

[data-theme="dark"] .service-price { color: var(--or); }

.service-price small {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-soft);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.service-duration {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ============================ 10. Galerie ================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    background: #1a1a1a;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}

/* Toutes les vignettes en portrait Instagram 4:5 uniformes */
.gallery-item.tall { aspect-ratio: 4/5; }

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cadrage net plein cadre avec photos pro */
    object-position: center 25%; /* Tête bien visible en haut */
    transition: transform 0.9s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 17, 0.8) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-overlay {
    position: absolute;
    bottom: 1.8rem;
    left: 1.8rem;
    right: 1.8rem;
    color: var(--blanc);
    z-index: 2;
    transform: translateY(15px);
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or-clair);
}

.gallery-overlay h4 {
    color: var(--blanc);
    font-size: 1.5rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 7, 0.96);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(15px);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    position: absolute;
    top: -55px;
    right: 0;
    color: var(--blanc);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: var(--bordeaux);
    border-color: var(--bordeaux);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--blanc);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox-prev { left: -75px; }
.lightbox-next { right: -75px; }

.lightbox-nav:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
}

/* ============================ 11. Témoignages ============================ */
.testimonials { background: var(--bg); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.8rem 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: 25px;
    font-family: var(--font-display);
    font-size: 7rem;
    color: var(--or);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--or);
}

.testimonial-stars {
    color: var(--or);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 3px;
}

.testimonial-text {
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.8rem;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--or);
    padding: 2px;
    flex-shrink: 0;
}

/* Barre de chips/pills pour navigation rapide des services
   - Sur desktop : 6 chips alignés sur une seule ligne
   - Sur mobile : wrap autorisé pour rester lisible */
.service-chips {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.55rem;
    margin: -2rem auto 3.5rem;
    padding: 0 1rem;
    max-width: 1200px;
    overflow-x: auto;
    scrollbar-width: none; /* masque scrollbar Firefox */
}
.service-chips::-webkit-scrollbar { display: none; } /* masque scrollbar Chrome/Safari */

.service-chips .chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.service-chips .chip i {
    color: var(--or-fonce);
    font-size: 0.82rem;
}
.service-chips .chip:hover {
    background: var(--bordeaux);
    color: var(--blanc);
    border-color: var(--bordeaux);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 30, 46, 0.25);
}
.service-chips .chip:hover i { color: var(--or); }

[data-theme="dark"] .service-chips .chip {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 100, 0.3);
}

/* Tablette : on autorise le wrap si pas assez de place */
@media (max-width: 900px) {
    .service-chips {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

@media (max-width: 600px) {
    .service-chips {
        gap: 0.45rem;
        margin: -1rem auto 2.5rem;
    }
    .service-chips .chip {
        padding: 0.5rem 0.85rem;
        font-size: 0.76rem;
    }
}

/* ====================================================
   FILTRES GALERIE — Pills cliquables pour filtrer
   ==================================================== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
    max-width: 1000px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: var(--bg-card);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover {
    background: var(--bordeaux);
    color: var(--blanc);
    border-color: var(--bordeaux);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 30, 46, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-fonce, #4a1620));
    color: var(--blanc);
    border-color: var(--bordeaux);
    box-shadow: 0 4px 14px rgba(107, 30, 46, 0.3);
}

.filter-btn.active::before {
    content: '\f00c'; /* check icon Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--or);
    font-size: 0.72rem;
}

[data-theme="dark"] .filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 100, 0.3);
}

/* Items cachés par le filtre */
.gallery-item.hidden {
    display: none !important;
}

@media (max-width: 600px) {
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2.5rem;
    }
    .filter-btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.72rem;
        letter-spacing: 1.2px;
    }
}

/* Bouton de changement de langue FR/EN */
.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--or);
    color: var(--or-fonce);
    cursor: pointer;
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}
.lang-toggle:hover {
    background: var(--or);
    color: var(--noir);
    transform: scale(1.05);
}
.lang-toggle .lang-label {
    line-height: 1;
}
[data-theme="dark"] .lang-toggle {
    color: var(--or);
}
[data-theme="dark"] .lang-toggle:hover {
    color: var(--noir);
}

/* Médaillon élégant avec initiales (remplace les avatars génériques) */
.avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: var(--or-clair);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(107, 30, 46, 0.35);
    padding: 0;
    background: var(--bg);
}

.testimonial-author .name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.2;
}

.testimonial-author .role {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--text-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ============================ 12. CTA section ============================ */
.cta-section {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
    color: var(--blanc);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.18), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.13), transparent 40%);
}

.cta-section > * { position: relative; }

.cta-section h2 {
    color: var(--blanc);
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.cta-section h2 em { color: var(--or); font-style: italic; }

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.cta-section .eyebrow { color: var(--or-clair); }

/* ============================ 13. Formulaires ============================ */
.form-wrap {
    background: var(--bg-card);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1.4rem;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 0.6rem;
}

.form-group label .required { color: var(--bordeaux); }

[data-theme="dark"] .form-group label .required { color: var(--or); }

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
    background: var(--bg-card);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8893e' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 14px;
    padding-right: 3rem;
}

.form-group.invalid .form-control { border-color: #c0392b; }

.form-group .error-msg {
    color: #c0392b;
    font-size: 0.78rem;
    margin-top: 0.4rem;
    display: none;
}

.form-group.invalid .error-msg { display: block; }

.form-submit-wrap { text-align: center; margin-top: 1.8rem; }

.form-submit-wrap .btn {
    min-width: 260px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.form-success, .form-error {
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.8rem;
    display: none;
    font-size: 0.95rem;
}

.form-success {
    background: rgba(46, 160, 67, 0.12);
    border: 1px solid rgba(46, 160, 67, 0.35);
    color: #1f7a32;
}

[data-theme="dark"] .form-success { color: #4ec96b; }

.form-error {
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.35);
    color: #a93226;
}

[data-theme="dark"] .form-error { color: #e57368; }

/* ============================ 14. À propos features ====================== */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.8rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--or);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noir);
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 0.93rem;
}

/* ============================ 15. Contact ================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.7rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: var(--or);
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
}

.contact-item .icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 0.4rem;
}

.contact-item p, .contact-item a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.4;
}

.contact-item a:hover { color: var(--or-fonce); }

.map-wrap {
    margin-top: 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
    filter: grayscale(15%) contrast(1.05);
    transition: filter var(--transition);
}

.map-wrap:hover iframe { filter: grayscale(0%); }

/* ============================ 16. WhatsApp flottant ====================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2.5s infinite;
    transition: transform var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ============================ 17. Footer ================================= */
.footer {
    background: var(--noir);
    color: var(--gris-clair);
    padding: 6rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bordeaux), var(--or), var(--bordeaux));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer h4 {
    color: var(--blanc);
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
    font-family: var(--font-display);
    font-weight: 500;
}

.footer-brand .logo img {
    background: rgba(255, 255, 255, 0.95);
}

.footer-brand .logo-text .brand-name { color: var(--blanc); }
.footer-brand .logo-text .brand-name em { color: var(--or); }
.footer-brand .logo-text .brand-sub { color: var(--gris-clair); }

.footer-brand p {
    color: var(--gris-clair);
    margin-top: 1.2rem;
    max-width: 330px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--gris-clair);
    font-size: 0.93rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--or);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 0.93rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact i { color: var(--or); width: 18px; }

.social-icons {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    transition: all var(--transition);
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--or);
    color: var(--noir);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: var(--gris);
}

.footer-bottom a { color: var(--or); }
.footer-bottom a:hover { color: var(--or-clair); }

/* ============================ 18. Animations ============================= */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================ 19. Responsive ============================= */
@media (max-width: 992px) {
    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .intro-img-wrap .small-img {
        width: 160px;
        height: 160px;
        bottom: -25px;
        left: -25px;
        border-width: 6px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats { gap: 3rem; }

    .nav-links { gap: 1.2rem; }
    .nav-links a:not(.btn) { font-size: 0.72rem; letter-spacing: 1.3px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .logo img { height: 52px; width: 52px; }
    .logo-text .brand-name { font-size: 1.35rem; }
    .logo-text .brand-sub { font-size: 0.55rem; letter-spacing: 2px; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        transition: right var(--transition);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
        padding: 2rem;
    }

    [data-theme="dark"] .nav-links { background: var(--bg); }

    .nav-links.open { right: 0; }

    .nav-links a:not(.btn) { color: var(--text) !important; font-size: 1.05rem; }

    .header:not(.scrolled) .nav-links a:not(.btn) { color: var(--text); }

    .hero {
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content { margin: 0 auto; }

    .hero .hero-logo { margin-left: auto; margin-right: auto; }

    .hero-cta { justify-content: center; }

    .hero-stats {
        position: static;
        margin-top: 3rem;
        gap: 1.5rem;
        flex-wrap: wrap;
        transform: none;
        background: rgba(0, 0, 0, 0.25);
        padding: 1.2rem 1.5rem;
    }

    .stat-number { font-size: 2.2rem; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand .logo { justify-content: center; }
    .footer-brand p { margin: 1.2rem auto 0; }
    .social-icons { justify-content: center; }
    .footer-contact p { justify-content: center; }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .intro-img-wrap .accent-frame,
    .intro-img-wrap .small-img { display: none; }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.9rem 1.6rem;
        font-size: 0.72rem;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        bottom: 22px;
        right: 22px;
    }

    .hero .hero-logo {
        width: 90px;
        height: 90px;
    }
}

/* ============================ 20. Scrollbar ============================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--bordeaux), var(--or)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--or); }

::selection { background: var(--or); color: var(--noir); }

/* ==========================================================================
   21. SYSTÈME DE FILIGRANE (WATERMARK) — Logo sur photos & vidéos
   Usage : envelopper toute image/vidéo dans <div class="media-wrap">
   ========================================================================== */

.media-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    line-height: 0;
}

.media-wrap img,
.media-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Filigrane : logo en bas à gauche */
.media-wrap::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 56px;
    height: 56px;
    background-image: url('../media/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 1.5px var(--or);
    opacity: 0.95;
    pointer-events: none;
    z-index: 2;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.media-wrap:hover::after {
    transform: scale(1.08);
    opacity: 1;
}

/* Tailles de watermark adaptatives */
.media-wrap.media-sm::after {
    width: 38px; height: 38px;
    bottom: 8px; left: 8px;
    padding: 3px;
}

.media-wrap.media-lg::after {
    width: 72px; height: 72px;
    bottom: 16px; left: 16px;
    padding: 5px;
}

@media (max-width: 768px) {
    .media-wrap::after {
        width: 42px; height: 42px;
        bottom: 8px; left: 8px;
        padding: 3px;
    }
    .media-wrap.media-lg::after {
        width: 52px; height: 52px;
    }
}

/* Vidéo : barre de play stylée */
.media-wrap video {
    background: var(--noir);
}

.media-wrap video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* Indicateur "vidéo" pour la galerie */
.gallery-item.is-video::before {
    content: '\f04b'; /* play */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(107, 30, 46, 0.85);
    color: var(--or-clair);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 2;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.15);
    transition: all var(--transition);
    pointer-events: none;
}

.gallery-item.is-video:hover::before {
    background: var(--or);
    color: var(--noir);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Vidéos dans la galerie : comportement comme des images */
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Vidéo en entier : tête de la cliente toujours 100% visible */
    object-position: center center;
    background: #1a1a1a;
    display: block;
    transition: transform 0.9s ease;
}

.gallery-item.is-video:hover video {
    transform: scale(1.05);
}

/* ============ FILIGRANE AUTOMATIQUE sur tous les médias du site ============ */
/* S'applique automatiquement à : galerie, services, hero, intro */

.service-img,
.gallery-item,
.intro-img-wrap {
    position: relative;
}

/* Watermark logo sur cartes de service */
.service-img::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 48px;
    height: 48px;
    background-image: url('../media/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 0 1.5px var(--or);
    opacity: 0.92;
    z-index: 3;
    pointer-events: none;
    transition: transform var(--transition);
}

.service-card:hover .service-img::after {
    transform: scale(1.1);
    opacity: 1;
}

/* Watermark sur la galerie (exclut les items vidéo qui ont leur propre overlay) */
.gallery-item:not(.is-video) > img + .gallery-overlay::before,
.gallery-item:not(.is-video)::after {
    /* placé via pseudo dédié plus bas pour ne pas conflit avec overlay sombre */
}

/* On crée un span dédié dans le HTML, mais en fallback : */
.gallery-watermark {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
    background-image: url('../media/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 0 1.5px var(--or);
    opacity: 0.92;
    z-index: 3;
    pointer-events: none;
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-watermark {
    transform: scale(1.1);
    opacity: 1;
}

/* Watermark universel — fonctionne sur intro, hero, hero-page */
.watermark-corner {
    position: absolute;
    bottom: 18px;
    left: 18px;
    width: 60px;
    height: 60px;
    background-image: url('../media/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 2px var(--or);
    opacity: 0.92;
    z-index: 5;
    pointer-events: none;
    transition: transform var(--transition);
}

/* Watermark plus grand sur les hero */
.hero-bg .watermark-corner,
.hero-page-bg .watermark-corner {
    width: 70px;
    height: 70px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .service-img::after,
    .gallery-watermark {
        width: 38px; height: 38px;
        bottom: 8px; left: 8px;
        padding: 3px;
    }
    .watermark-corner {
        width: 48px; height: 48px;
        bottom: 12px; left: 12px;
    }
    .hero-bg .watermark-corner,
    .hero-page-bg .watermark-corner {
        width: 54px; height: 54px;
        bottom: 16px; left: 16px;
    }
}

/* ==========================================================================
   22. ACCESSIBILITÉ — focus, motion, contraste
   ========================================================================== */

/* Indicateur de focus visible (clavier) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--or);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Respecter prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg img { animation: none !important; }
    .whatsapp-float { animation: none !important; }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Skip-link pour navigation clavier */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--bordeaux);
    color: var(--blanc);
    padding: 1rem 1.5rem;
    z-index: 9999;
    font-family: var(--font-accent);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   23. RESPONSIVE AMÉLIORÉ — Mobile-first refinements
   ========================================================================== */

/* Ultra-wide (>= 1600px) */
@media (min-width: 1600px) {
    .container { max-width: 1440px; }
    .hero h1 { font-size: 6.5rem; }
}

/* Large desktop (1200-1599px) — défaut */

/* Desktop standard (992-1199px) */
@media (max-width: 1199px) {
    .nav-links { gap: 1.8rem; }
    .nav-links a:not(.btn) { font-size: 0.74rem; letter-spacing: 1.5px; }
    .logo-text .brand-name { font-size: 1.45rem; }
    .logo-text .brand-sub { font-size: 0.58rem; }
}

/* Tablette landscape (768-991px) */
@media (max-width: 991px) {
    section { padding: 5rem 0; }
    .section-title { font-size: clamp(2rem, 4vw, 3rem); }
    .services-grid { gap: 1.6rem; }
    .testimonials-grid { gap: 1.6rem; }
    .gallery-grid { gap: 1.2rem; }
}

/* Tablette portrait & gros mobile (576-767px) */
@media (max-width: 767px) {
    section { padding: 4rem 0; }
    .container { padding: 0 1.2rem; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero p.lead { font-size: 1rem; }
    .hero-cta { gap: 0.7rem; }
    .hero-cta .btn { padding: 0.85rem 1.6rem; font-size: 0.72rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; gap: 1.2rem; }
    .feature-card { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .intro-grid, .contact-grid, .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    .testimonial-card { padding: 2.2rem 1.5rem; }
    .testimonial-text { font-size: 1.05rem; }

    /* Header optimisé mobile */
    .header { padding: 1rem 0; }
    .header.scrolled { padding: 0.6rem 0; }
    .nav { gap: 0.8rem; }
    .logo img { height: 46px; width: 46px; }
    .logo-text .brand-name { font-size: 1.2rem; }
    .logo-text .brand-sub { font-size: 0.5rem; letter-spacing: 1.5px; }
    .theme-toggle { width: 40px; height: 40px; }

    /* Boutons CTA dans nav cachés en mobile (déjà dans le menu) */
    .nav-links .btn { width: 100%; text-align: center; }

    /* Hero stats en grille 3 colonnes en mobile */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        display: grid !important;
        gap: 1rem !important;
        transform: none !important;
        position: static !important;
        margin-top: 2.5rem !important;
        padding: 1rem 1.2rem !important;
    }
    .stat-number { font-size: 1.8rem !important; }
    .stat-label { font-size: 0.6rem !important; letter-spacing: 1.5px !important; }
}

/* Petit mobile (< 576px) */
@media (max-width: 575px) {
    .container { padding: 0 1rem; }
    section { padding: 3.5rem 0; }
    .hero { padding-top: 7rem; min-height: auto; padding-bottom: 4rem; }
    .hero .hero-logo { width: 80px; height: 80px; margin-bottom: 1.2rem; }
    .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
    .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-cta .btn { justify-content: center; width: 100%; }
    .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 2.5rem; }
    .eyebrow { font-size: 0.65rem; letter-spacing: 3px; }

    /* Galerie une seule colonne sur très petit écran */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item, .gallery-item.tall { aspect-ratio: 1; }

    /* Cards services : padding réduit */
    .service-body { padding: 1.5rem; }
    .service-body h3 { font-size: 1.5rem; }
    .service-price { font-size: 1.4rem; }

    /* Form */
    .form-wrap { padding: 1.5rem 1.2rem; }
    .form-control { padding: 0.85rem 1rem; font-size: 0.9rem; }

    /* Footer */
    .footer { padding: 4rem 0 2rem; }
    .footer h4 { font-size: 1rem; margin-bottom: 1rem; }

    /* WhatsApp button */
    .whatsapp-float {
        width: 52px; height: 52px;
        font-size: 1.4rem;
        bottom: 18px; right: 18px;
    }

    /* Lightbox */
    .lightbox-close { top: -45px; width: 38px; height: 38px; }
    .lightbox-nav { width: 44px; height: 44px; font-size: 1.1rem; }

    /* Hero pages */
    .hero-page { min-height: 50vh; padding: 9rem 0 4rem; }
    .breadcrumb { font-size: 0.7rem; letter-spacing: 1.5px; }
}

/* Très petit (< 380px) */
@media (max-width: 380px) {
    .logo-text { display: none; }
    .logo img { height: 44px; width: 44px; }
    .hero h1 { font-size: 1.85rem; }
}

/* Orientation paysage mobile (téléphones tournés) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 6rem 0 3rem; }
    .hero-stats { position: static; margin-top: 2rem; }
    .nav-links {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Touch devices : pas d'effet hover qui reste collé */
@media (hover: none) {
    .service-card:hover { transform: none; }
    .gallery-item:hover { transform: none; }
    .gallery-item:hover img { transform: none; }
    .gallery-item:hover .gallery-overlay { transform: none; opacity: 1; }
    .gallery-item::after { opacity: 0.6; } /* overlay visible en permanence sur tactile */
}

/* Print styles */
@media print {
    .header, .footer, .whatsapp-float, .menu-toggle, .theme-toggle,
    .cta-section, .hero-cta { display: none !important; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
    section { padding: 1rem 0; page-break-inside: avoid; }
}
