/* =========================================================
   LES TATOUABLES — Refonte visuelle B&W
   ========================================================= */

:root {
    --bg: #0a0a0a;
    --bg-elev: #111111;
    --bg-elev-2: #161616;
    --bg-elev-3: #1c1c1c;
    --line: #1f1f1f;
    --line-2: #2a2a2a;
    --text: #f5f5f5;
    --text-soft: #c9c9c9;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --black: #000000;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.6);
    --shadow: 0 18px 40px rgba(0,0,0,.45);
    --shadow-lg: 0 30px 80px rgba(0,0,0,.55);
    --ease: cubic-bezier(.22,.61,.36,1);
    --container: 1200px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11";
}

/* Grain overlay subtil pour casser la flatness */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: .35;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--white);
    text-wrap: balance;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    text-align: center;
    margin-bottom: .75rem;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 1px;
    background: var(--white);
    margin: 1.25rem auto 0;
    opacity: .6;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-weight: 400;
    letter-spacing: .01em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: transform .25s var(--ease),
                background-color .25s var(--ease),
                color .25s var(--ease),
                box-shadow .25s var(--ease),
                border-color .25s var(--ease);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    will-change: transform;
}

.btn:active { transform: translateY(1px) scale(.99); }
.btn:link, .btn:visited { text-decoration: none; }
a.btn-primary, a.btn-primary:visited { color: var(--black); text-decoration: none; }
a.btn-secondary, a.btn-secondary:visited { color: var(--white); text-decoration: none; }
a:link, a:visited { -webkit-tap-highlight-color: rgba(255,255,255,.08); }

.btn-primary {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(255,255,255,.08);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255,255,255,.18);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.35);
}
.btn-secondary:hover {
    background: rgba(255,255,255,.06);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-instagram { display:none; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .85rem 0;
    background: rgba(10,10,10,.7);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background-color .3s var(--ease), border-color .3s var(--ease);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-left .nav-link {
    font-size: 1.05rem;
    color: var(--text-soft);
}
.nav-left .nav-link:hover { color: var(--white); }
.nav-left .nav-link::after { display: none; }

.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* =========================================================
   HAMBURGER FULLSCREEN — premium layout
   ========================================================= */
.nav-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background:
        radial-gradient(900px 600px at 100% 0%, rgba(255,255,255,.06), transparent 55%),
        radial-gradient(700px 500px at 0% 100%, rgba(255,255,255,.045), transparent 55%),
        linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: clamp(1rem, 4vh, 2rem) clamp(1.5rem, 6vw, 4rem);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
    z-index: 1100;
    overflow-y: auto;
    overflow-x: hidden;
}
/* Texture grain sur le menu */
.nav-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .45;
    mix-blend-mode: overlay;
    pointer-events: none;
}
/* Trait vertical décoratif */
.nav-menu::after {
    content: "";
    position: absolute;
    left: clamp(1.5rem, 6vw, 4rem);
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.12) 30%, rgba(255,255,255,.12) 70%, transparent);
    opacity: 0;
    transition: opacity .6s var(--ease) .2s;
    pointer-events: none;
}
.nav-menu.active::after { opacity: 1; }

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* HEADER : logo + tagline injecté par JS */
.nav-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .5s var(--ease) .15s, transform .5s var(--ease) .15s;
    list-style: none;
    margin: 0;
    position: relative;
    z-index: 2;
}
.nav-menu.active .nav-menu-header { opacity: 1; transform: translateY(0); }
.nav-menu-header img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255,255,255,.25));
}
.nav-menu-header .nav-menu-tagline {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* LIENS principaux : zone centrale qui prend l'espace disponible */
.nav-menu .nav-item {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.nav-menu .nav-item:first-of-type { margin-top: auto; }
.nav-menu .nav-item:last-of-type { margin-bottom: auto; }
/* Compteur des liens, sans wrapper */
.nav-menu { counter-reset: navIndex; }

.nav-menu .nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
    counter-increment: navIndex;
    position: relative;
}
.nav-menu .nav-item:last-of-type { border-bottom: none; }
.nav-menu.active .nav-item { opacity: 1; transform: translateX(0); }
.nav-menu.active .nav-item:nth-child(1) { transition-delay: .22s; }
.nav-menu.active .nav-item:nth-child(2) { transition-delay: .28s; }
.nav-menu.active .nav-item:nth-child(3) { transition-delay: .34s; }
.nav-menu.active .nav-item:nth-child(4) { transition-delay: .40s; }
.nav-menu.active .nav-item:nth-child(5) { transition-delay: .46s; }
.nav-menu.active .nav-item:nth-child(6) { transition-delay: .52s; }

.nav-menu .nav-item > a {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 5.5vw, 3rem);
    color: var(--text);
    text-decoration: none;
    padding: .75rem 0 .5rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
    transition: color .35s var(--ease), padding-left .45s var(--ease);
    position: relative;
}
/* Numéro 01., 02., … */
.nav-menu .nav-item > a::before {
    content: counter(navIndex, decimal-leading-zero);
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    letter-spacing: .3em;
    color: var(--text-muted);
    font-weight: 500;
    transform: translateY(-2px);
    transition: color .35s var(--ease), letter-spacing .35s var(--ease);
}
.nav-menu .nav-item > a:hover {
    color: var(--white);
    padding-left: 1.25rem;
}
.nav-menu .nav-item > a:hover::before {
    color: var(--white);
    letter-spacing: .42em;
}
/* Indicateur de flèche au survol */
.nav-menu .nav-item > a::after {
    content: "→";
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
    display: inline-block !important;
    border: none !important;
}
.nav-menu .nav-item > a:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--white);
}
.nav-menu .nav-link::after { display: none !important; } /* reset legacy */

.nav-menu, .nav-submenu { list-style: none; }
.nav-menu li::marker, .nav-submenu li::marker { content: none; }

/* Sous-menu en fullscreen — sous le parent, mais discret */
.nav-submenu {
    position: static;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 .75rem 0;
    padding-left: calc(.7rem + 1.25rem);
    gap: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-submenu li:not(:last-child)::after {
    content: "/";
    color: rgba(255,255,255,.18);
    padding: 0 .65rem;
    font-size: .8rem;
}
.nav-submenu .nav-link {
    display: inline-block;
    padding: 0 !important;
    color: var(--text-muted) !important;
    font-family: 'Inter', sans-serif;
    font-size: .82rem !important;
    font-weight: 500 !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: .22em;
    background: transparent !important;
    transition: color .25s var(--ease), letter-spacing .25s var(--ease);
}
.nav-submenu .nav-link:hover {
    color: var(--white) !important;
    letter-spacing: .28em;
    background: transparent !important;
}

/* FOOTER : CTA Devis + Contact + Socials, injecté par JS */
.nav-menu-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    list-style: none;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s var(--ease) .5s, transform .5s var(--ease) .5s;
    position: relative;
    z-index: 2;
}
.nav-menu.active .nav-menu-footer { opacity: 1; transform: translateY(0); }
.nav-menu-footer-left {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.nav-menu-footer-left .nav-footer-eyebrow {
    font-size: .68rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}
.nav-menu-footer-left a.nav-footer-phone {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    font-weight: 700;
    transition: opacity .25s var(--ease);
}
.nav-menu-footer-left a.nav-footer-phone:hover { opacity: .75; }
.nav-menu-footer-left .nav-footer-address {
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.5;
}
.nav-menu-footer-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.nav-menu-footer-right .nav-footer-socials {
    display: flex;
    gap: .6rem;
}
.nav-menu-footer-right .nav-footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .95rem;
    transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.nav-menu-footer-right .nav-footer-socials a:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}
.nav-menu-footer-right .nav-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--white);
    color: var(--black);
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    box-shadow: 0 14px 34px rgba(255,255,255,.12);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-menu-footer-right .nav-footer-cta:visited { color: var(--black); text-decoration: none; }
.nav-menu-footer-right .nav-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255,255,255,.22);
}

/* Responsive — menu sur mobile */
@media (max-width: 768px) {
    .nav-menu {
        padding: 1rem 1.25rem 1.25rem;
        grid-template-rows: auto 1fr auto;
    }
    .nav-menu::after { display: none; }
    .nav-menu-header { padding-bottom: 1rem; }
    .nav-menu-header img { height: 36px; }
    .nav-menu-header .nav-menu-tagline { display: none; }
    .nav-menu-links-wrap { padding: 1rem 0; gap: 0; }
    .nav-menu .nav-item > a {
        font-size: 1.85rem;
        gap: .9rem;
        padding: .65rem 0 .45rem;
    }
    .nav-menu .nav-item > a::before { font-size: .65rem; letter-spacing: .25em; }
    .nav-menu .nav-item > a:hover { padding-left: .65rem; }
    .nav-menu .nav-item > a::after { font-size: 1.2rem; }
    .nav-submenu { padding-left: 2rem; margin-bottom: .5rem; gap: .25rem .5rem; }
    .nav-submenu .nav-link { font-size: .74rem !important; letter-spacing: .18em; }
    .nav-submenu li:not(:last-child)::after { padding: 0 .35rem; }

    .nav-menu-footer {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1rem;
    }
    .nav-menu-footer-right {
        justify-content: space-between;
        flex-direction: row-reverse;
        gap: 1rem;
    }
    .nav-menu-footer-right .nav-footer-cta {
        padding: 12px 22px;
        font-size: .9rem;
    }
    .nav-menu-footer-right .nav-footer-socials a {
        width: 36px;
        height: 36px;
        font-size: .9rem;
    }
    .nav-menu-footer-left a.nav-footer-phone { font-size: 1.3rem; }
    .nav-menu-footer-left .nav-footer-address { font-size: .78rem; }
}

@media (max-width: 380px) {
    .nav-menu .nav-item > a { font-size: 1.6rem; }
    .nav-menu-footer-right .nav-footer-cta { padding: 11px 18px; font-size: .85rem; }
}

.nav-link {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 500;
    position: relative;
    transition: color .25s var(--ease);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1200;
    width: 48px;
    height: 48px;
    position: relative;
    border-radius: 50%;
    transition: background-color .25s var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,.06); }

.bar {
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 3.5px 0;
    border-radius: 2px;
    transition: transform .35s var(--ease), opacity .25s var(--ease), width .25s var(--ease);
}
.hamburger .bar:nth-child(2) { width: 18px; align-self: center; }

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 26px;
}
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 26px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(6,6,6,.55) 0%, rgba(10,10,10,.65) 50%, rgba(6,6,6,.85) 100%),
        url('https://lh3.googleusercontent.com/gps-cs-s/APNQkAFQKT-o8ge5kIEzNkS8btmbRXktObvSFuVUavcud5Yl9WY6h4VZfPXTOWswxCpw1DbKa1LuHi1gpBvQ27XmJ0Sm-j0YLLH1pwOJ2VBhoalyvNTbUDiFjBVXMfEmNw5yjjQz-EwmKTyq2RzT=s1360-w1360-h1020-rw') center/cover no-repeat,
        #0a0a0a;
    background-attachment: fixed, fixed, scroll;
    color: var(--text);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

/* Texture vignette + grain over image */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,.05), transparent 60%),
        radial-gradient(1000px 600px at 50% 120%, rgba(0,0,0,.6), transparent 65%),
        linear-gradient(180deg, transparent 60%, rgba(0,0,0,.7) 100%);
    /* Désaturation pour rester en harmonie N&B */
    backdrop-filter: grayscale(.6) contrast(1.05);
    -webkit-backdrop-filter: grayscale(.6) contrast(1.05);
}

@media (max-width: 768px) {
    .hero { background-attachment: scroll, scroll, scroll; }
}

.hero-info {
    text-align: center;
    color: var(--text);
    position: relative;
    z-index: 3;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /* Override inline absolute positioning from page */
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin-top: 0 !important;
}

/* Logo "circulaire" en haut */
.hero-logo-right {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
    animation: floatY 6s ease-in-out infinite;
}
.hero-logo-right img {
    position: relative;
    z-index: 2;
    filter:
        drop-shadow(0 0 6px rgba(255,255,255,.5))
        drop-shadow(0 0 14px rgba(255,255,255,.25));
    animation: logoNeonBW 3.2s ease-in-out infinite alternate;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes logoNeonBW {
    0%   { filter: drop-shadow(0 0 5px rgba(255,255,255,.4)) drop-shadow(0 0 12px rgba(255,255,255,.2)); }
    100% { filter: drop-shadow(0 0 9px rgba(255,255,255,.7)) drop-shadow(0 0 22px rgba(255,255,255,.35)); }
}

/* Wordmark image (logoo) — keep large but allow it to breathe */
.hero-info > img {
    max-width: min(900px, 92%) !important;
    height: auto !important;
    display: block;
    margin: 0 auto !important;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,.5));
}

/* Hero CTA cluster — mise en évidence Prise de rendez-vous / devis */
.hero-cta-wrap {
    position: relative;
    z-index: 4;
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: heroRise 1s var(--ease) .2s both;
}

.hero-cta-eyebrow {
    font-size: .8rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}
.hero-cta-eyebrow::before,
.hero-cta-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.35);
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-buttons .btn {
    padding: 16px 34px;
    font-size: 1rem;
}

.hero-cta-buttons .btn-primary {
    box-shadow:
        0 0 0 1px rgba(255,255,255,.4),
        0 18px 40px rgba(255,255,255,.15);
    animation: pulseGlow 3.2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,.35), 0 14px 34px rgba(255,255,255,.10); }
    50%      { box-shadow: 0 0 0 1px rgba(255,255,255,.55), 0 22px 48px rgba(255,255,255,.22); }
}

.hero-cta-meta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: .85rem;
    margin-top: .4rem;
}
.hero-cta-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-size: .7rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: heroRise 1s var(--ease) .8s both;
}
.hero-scroll-cue .line {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, transparent, var(--text-muted));
    animation: lineSlide 2.2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes lineSlide {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

@keyframes heroRise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   ARTISTS (À propos)
   ========================================================= */
.artists {
    padding: 6rem 0;
    background: var(--bg-elev);
    position: relative;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.artist-card {
    background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.artist-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 200px at 0% 0%, rgba(255,255,255,.06), transparent 60%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}
.artist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: var(--shadow);
}
.artist-card:hover::before { opacity: 1; }

.artist-photo {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-2);
}

.artist-info h3 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--white);
}
.artist-info p { margin: 0; color: var(--text-soft); line-height: 1.7; }
.artist-info p:has(.btn) { margin-top: .5rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services {
    padding: 6rem 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-elev);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid var(--line);
    transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.2);
    background: var(--bg-elev-2);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem;
    transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.service-icon i {
    font-size: 1.25rem;
    color: var(--white);
    transition: color .3s var(--ease);
}
.service-card:hover .service-icon {
    background: var(--white);
    border-color: var(--white);
}
.service-card:hover .service-icon i { color: var(--black); }

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: .75rem;
    color: var(--white);
    letter-spacing: -0.01em;
}
.service-card p { color: var(--text-soft); line-height: 1.65; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
    padding: 6rem 0;
    background: var(--bg-elev);
}

/* En-tête avis : centré, max-width raisonnable */
#google-reviews { max-width: 1200px; margin: 0 auto; }
#google-reviews > div:first-child {
    background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev)) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow) !important;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Scroller horizontal des avis */
.reviews-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 380px);
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem .5rem 1.5rem;
    margin: 0 -.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.18) transparent;
    /* fade gauche/droite */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.reviews-scroller::-webkit-scrollbar { height: 6px; }
.reviews-scroller::-webkit-scrollbar-track { background: transparent; }
.reviews-scroller::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 999px; }
.reviews-scroller::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.3); }

.reviews-scroller .review-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.review-card {
    background: var(--bg-elev-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: none !important;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease) !important;
    display: flex !important;
    flex-direction: column;
    /* Limiter le texte trop long pour des cards de hauteur cohérente */
    max-height: 420px;
    overflow: hidden;
    position: relative;
}
.review-card p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    line-clamp: 8;
}
.review-card:hover {
    border-color: rgba(255,255,255,.2) !important;
    box-shadow: var(--shadow) !important;
}

/* Étoiles en blanc pour rester monochrome */
.review-card span[style*="FFD700"],
.review-card span[style*="#FFD700"],
#google-reviews span[style*="FFD700"] {
    color: var(--white) !important;
}

/* Bouton "Voir tous les avis" en B&W */
#google-reviews a[href*="google.com/maps"] {
    background: var(--white) !important;
    color: var(--black) !important;
    border-radius: 999px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease) !important;
    box-shadow: 0 10px 30px rgba(255,255,255,.08) !important;
}
#google-reviews a[href*="google.com/maps"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255,255,255,.18) !important;
}

.reviews-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    margin-top: 3rem;
}
.reviews-cta h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.6rem; }
.reviews-cta p { color: var(--text-soft); margin-bottom: 2rem; font-size: 1.05rem; }
.reviews-cta .btn { display: inline-flex; align-items: center; gap: .5rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
    padding: 6rem 0;
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.contact-item:hover { border-color: rgba(255,255,255,.18); transform: translateY(-2px); }

.contact-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i { font-size: 1.1rem; color: var(--white); }

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.contact-details p { color: var(--white); font-weight: 500; line-height: 1.6; }
.contact-details a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.contact-details a:hover { border-bottom-color: var(--white); }

.contact-form {
    background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.form-group { margin-bottom: 1.1rem; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color .25s var(--ease), background-color .25s var(--ease);
    font-family: inherit;
    background: rgba(255,255,255,.03);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255,255,255,.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-form .btn { width: 100%; padding: 16px 28px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #050505;
    color: var(--text-soft);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-logo h3 { font-size: 1.6rem; margin-bottom: .25rem; color: var(--white); }
.footer-logo p { color: var(--text-muted); font-size: .95rem; }

.footer-social { display: flex; gap: .75rem; }
.social-link {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.social-link:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: .9rem;
}

/* =========================================================
   PORTFOLIO (sub-pages)
   ========================================================= */
.portfolio { padding: 5rem 0; background: var(--bg); }
.portfolio-section { padding: 5rem 0; background: var(--bg); }

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--line-2);
    background: transparent;
    color: var(--text-soft);
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s var(--ease);
    font-weight: 500;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

/* Sinkolor : 2 colonnes mobile, 3 colonnes desktop */
#portfolio-sinkolor .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .5rem;
}
@media (min-width: 768px) {
    #portfolio-sinkolor .portfolio-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem;
    }
}

/* LDermo : 1 image par ligne, plein large, sans texte / overlay */
#portfolio-ldermo .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto 3rem;
}
#portfolio-ldermo .portfolio-item {
    background: transparent;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
}
#portfolio-ldermo .portfolio-image {
    height: auto;
    aspect-ratio: auto;
    background: transparent;
}
#portfolio-ldermo .portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    filter: none;
    transition: transform .5s var(--ease);
}
#portfolio-ldermo .portfolio-item:hover .portfolio-image img { transform: scale(1.02); }
/* Aucun texte / overlay */
#portfolio-ldermo .portfolio-overlay,
#portfolio-ldermo .portfolio-overlay * { display: none !important; }
@media (min-width: 768px) {
    #portfolio-ldermo .portfolio-grid { gap: 1.5rem; }
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-elev-2);
    transition: transform .35s var(--ease), border-color .35s var(--ease);
    cursor: pointer;
}
.portfolio-item:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); }

.portfolio-image {
    height: 300px;
    background: var(--bg-elev-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.portfolio-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
    filter: saturate(.9);
}
.portfolio-item:hover .portfolio-image img { transform: scale(1.05); }

.portfolio-overlay {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
    color: var(--white);
    padding: 2rem 1.25rem 1.25rem;
    transform: translateY(70%);
    transition: transform .35s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.portfolio-link { display: none; }

.portfolio-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-elev);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.portfolio-cta p { color: var(--text-soft); margin-bottom: 1.5rem; }

/* =========================================================
   ABOUT (sub-pages)
   ========================================================= */
.about { padding: 5rem 0; background: var(--bg-elev); }
.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 { font-size: clamp(2rem, 3vw, 2.75rem); margin-bottom: 1.25rem; }
.about-text p { font-size: 1.05rem; margin-bottom: 1.25rem; color: var(--text-soft); line-height: 1.8; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.stat { text-align: left; }
.stat h3 { font-size: 2.25rem; color: var(--white); margin-bottom: .25rem; font-family: 'Playfair Display', serif; }
.stat p { color: var(--text-muted); font-weight: 500; font-size: .9rem; }

.about-image { display: flex; justify-content: center; }
.about-photo {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-2);
    box-shadow: var(--shadow-lg);
    transition: transform .4s var(--ease);
}
.about-photo:hover { transform: scale(1.02); }

/* =========================================================
   LDermo
   ========================================================= */
.ldermo { padding: 5rem 0; background: var(--bg-elev); }
.ldermo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.ldermo-text p { color: var(--text-soft); margin-bottom: 1rem; line-height: 1.8; }
.ldermo-media { display: flex; justify-content: center; }
.ldermo-photo {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-2);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 900px){
    .ldermo-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FLASH
   ========================================================= */
.flash, .flash-section { padding: 5rem 0; background: var(--bg-elev); }

.flash-page-header { text-align: center; margin-bottom: 2rem; }

.flash-controls {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.flash-controls input[type="search"],
.flash-search {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,.03);
    color: var(--text);
    min-width: 260px;
}
.flash-controls input[type="search"]:focus { outline: none; border-color: var(--white); }

.flash-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .flash-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.flash-item {
    position: relative;
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.flash-item:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.2); }

.flash-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.flash-caption { padding: .75rem 1rem .25rem; color: var(--text-soft); font-weight: 500; font-size: .9rem; }

.flash-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: .5rem 1rem 1rem;
    padding: .6rem 1rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.flash-cta:hover,
.flash-cta:focus,
.flash-cta:visited {
    color: var(--white);
    text-decoration: none;
}
.flash-cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-1px);
}

.flash-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 3rem;
    border: 1px dashed var(--line-2);
    border-radius: var(--radius);
    background: var(--bg-elev-2);
    font-size: 1.05rem;
}

/* =========================================================
   BACK BUTTON (sub-pages)
   ========================================================= */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 10px 18px;
    color: var(--text-soft);
    text-decoration: none;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: transparent;
    transition: color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
}
.back-button:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 3000;
    display: none;
    overflow: hidden;
}
.lightbox.is-open { display: block; }

/* Centrage absolu — robuste quel que soit display block/flex appliqué par le JS */
.lightbox .lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox .lightbox-content img {
    display: block;
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox-close, .lightbox-nav {
    position: absolute;
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background-color .25s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.1); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--text-soft); font-size: .9rem; letter-spacing: .15em; }

/* =========================================================
   TARIFS
   ========================================================= */
.tarif-item {
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.tarif-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}

/* =========================================================
   CONTACT DROPDOWN (autres pages)
   ========================================================= */
.contact-dropdown { position: relative; display: inline-block; }
.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-top: .5rem;
    box-shadow: var(--shadow);
    min-width: 220px;
    z-index: 50;
    overflow: hidden;
    display: none;
}
.contact-menu.active { display: block; }
.contact-menu-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 12px 16px;
    color: var(--text-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: background-color .2s var(--ease), color .2s var(--ease);
}
.contact-menu-item:last-child { border-bottom: none; }
.contact-menu-item:hover { background: rgba(255,255,255,.05); color: var(--white); }

/* =========================================================
   SCROLLBAR
   ========================================================= */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 6px; border: 2px solid #0a0a0a; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .contact-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-content { grid-template-columns: 1fr; text-align: center; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .stat { text-align: center; }
}

@media (max-width: 768px) {
    body { padding-top: 70px !important; }
    .hero { padding: 5rem 0 3rem; }
    .nav-container { padding: 0 16px; }
    .nav-left { gap: 14px; }
    .nav-left .nav-link { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { margin-bottom: 2.5rem; }
    .contact-form { padding: 1.75rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .hero-cta-buttons .btn { padding: 14px 26px; font-size: .95rem; }
    .about-stats { grid-template-columns: 1fr; gap: 1rem; }
    .artists, .services, .reviews, .contact { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-cta-buttons { flex-direction: column; width: 100%; }
    .hero-cta-buttons .btn { width: 100%; }
    .nav-menu > li > a { font-size: 2rem; }
}

/* =========================================================
   ANIMATIONS REVEAL
   ========================================================= */
.portfolio-item, .flash-item, .service-card, .artist-card, .review-card {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp .7s var(--ease) forwards;
}
.service-card:nth-child(1), .artist-card:nth-child(1), .review-card:nth-child(1), .portfolio-item:nth-child(1), .flash-item:nth-child(1) { animation-delay: .05s; }
.service-card:nth-child(2), .artist-card:nth-child(2), .review-card:nth-child(2), .portfolio-item:nth-child(2), .flash-item:nth-child(2) { animation-delay: .12s; }
.service-card:nth-child(3), .artist-card:nth-child(3), .review-card:nth-child(3), .portfolio-item:nth-child(3), .flash-item:nth-child(3) { animation-delay: .19s; }
.review-card:nth-child(4) { animation-delay: .26s; }
.review-card:nth-child(5) { animation-delay: .33s; }
.review-card:nth-child(6) { animation-delay: .40s; }

/* Accessibilité focus */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
    border-radius: 8px;
}

/* =========================================================
   SCROLL REVEAL (fade + translateY)
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Délais en cascade pour les groupes (titres + sous-titres + paragraphes) */
.reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal[data-reveal-delay="3"] { transition-delay: .24s; }
.reveal[data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   OPTIMISATIONS MOBILE
   ========================================================= */
@media (max-width: 768px) {
    /* Désactive le parallaxe lourd & le grain pour préserver la batterie/perf */
    body::before { opacity: .18; }
    .hero {
        background-attachment: scroll, scroll, scroll;
        padding: 4.5rem 0 3rem;
    }

    /* Hero plus serré */
    .hero-info > img { max-width: 86% !important; }
    .hero-logo-right img { max-width: 110px !important; }
    .hero-cta-wrap { margin-top: 1.5rem; gap: .85rem; }
    .hero-cta-eyebrow { font-size: .7rem; letter-spacing: .28em; }
    .hero-cta-eyebrow::before,
    .hero-cta-eyebrow::after { width: 18px; }
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1.5rem;
        gap: .65rem;
    }
    .hero-cta-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: .95rem;
        min-height: 48px;
    }
    .hero-cta-meta { font-size: .8rem; gap: .65rem; text-align: center; flex-wrap: wrap; justify-content: center; }
    .hero-scroll-cue { bottom: 16px; font-size: .6rem; }
    .hero-scroll-cue .line { height: 28px; }

    /* Sections rapprochées + container plus serré */
    .container { padding: 0 16px; }
    .artists, .services, .reviews, .contact, .portfolio,
    .portfolio-section, .flash, .flash-section, .about, .ldermo { padding: 3.5rem 0; }
    .section-title { font-size: 1.75rem; }
    .section-title::after { margin: .85rem auto 0; width: 40px; }
    .section-subtitle { margin-bottom: 2rem; font-size: .95rem; }

    /* Cartes plus compactes */
    .artists-grid, .services-grid { gap: 1rem; }
    .artist-card, .service-card { padding: 1.5rem 1.25rem; border-radius: 18px; }
    .artist-info h3 { font-size: 1.4rem; }
    .service-card h3 { font-size: 1.15rem; }
    .service-icon { width: 48px; height: 48px; margin-bottom: 1rem; }
    .service-icon i { font-size: 1.05rem; }

    /* Contact compacté */
    .contact-content { gap: 2rem; }
    .contact-item { padding: 1.25rem; gap: 1rem; }
    .contact-icon { width: 42px; height: 42px; }
    .contact-icon i { font-size: 1rem; }
    .contact-form { padding: 1.5rem; }
    .contact-form h3 { font-size: 1.35rem; }
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* évite le zoom iOS sur focus */
        padding: 13px 14px;
    }

    /* Touch targets */
    .nav-left .nav-link { padding: 8px; min-width: 40px; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
    .btn { min-height: 46px; }

    /* Hamburger menu fullscreen — typographie adaptée */
    .nav-menu { padding: 5rem 1.5rem 3rem; gap: 0; }
    .nav-menu > li > a { font-size: 2.1rem; padding: .35rem 0; }
    .nav-submenu .nav-link { font-size: .85rem !important; padding: 6px 10px !important; letter-spacing: .18em; }

    /* Reviews : header compact + scroller plein écran */
    #google-reviews > div:first-child { padding: 1.75rem 1.25rem !important; }
    #google-reviews > div:first-child h2 { font-size: 1.5rem !important; }
    .review-card { padding: 1.25rem !important; max-height: 380px; }
    .review-card p { font-size: .92rem !important; line-height: 1.55 !important; -webkit-line-clamp: 7; line-clamp: 7; }
    .reviews-scroller {
        grid-auto-columns: 82vw;
        gap: .85rem;
        padding: .75rem 1rem 1.25rem;
        margin: 0 -1rem;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
    }

    /* Portfolio / Flash items : visuels compacts, overlay non-essentiel masqué */
    .portfolio-item, .flash-item { border-radius: 12px; }
    .portfolio-image { height: auto; aspect-ratio: 1/1; }
    .portfolio-overlay {
        padding: 1rem .75rem .75rem;
        transform: translateY(0);
        background: linear-gradient(transparent 30%, rgba(0,0,0,.85));
    }
    .portfolio-overlay h3 { font-size: .85rem; line-height: 1.2; }
    .portfolio-overlay p { display: none; }
    .portfolio-link { display: none !important; }
    .flash-caption { font-size: .8rem; padding: .6rem .75rem .15rem; }
    .flash-cta { margin: .25rem .75rem .75rem; padding: .5rem .85rem; font-size: .75rem; }

    /* Footer */
    .footer { padding: 2.5rem 0 1rem; }
    .footer-content { gap: 1.25rem; }
    .footer-logo h3 { font-size: 1.35rem; }
    .social-link { width: 40px; height: 40px; }

    /* LDermo about */
    .about-content { gap: 2rem; }
    .about-photo { max-width: 280px; border-radius: 18px; }
    .about-text h2 { font-size: 1.75rem; }
    .about-text p { font-size: .98rem; }

    /* Tarifs */
    .tarifs-page-header { padding: 5.5rem 0 2rem !important; }
    .tarifs-note { padding: 1.25rem 1.25rem !important; margin: 1.25rem 0 2rem !important; }
    .tarifs-category { margin-top: 2.5rem !important; }
    .tarifs-category-title { font-size: 1.5rem !important; gap: .75rem !important; }
    .tarifs-category-title::before { width: 24px !important; }
    .tarifs-category-subtitle { margin-left: 36px !important; font-size: .88rem !important; }
    .tarifs-grid { gap: .85rem !important; }
    .tarif-item { padding: 1.25rem !important; border-radius: 14px !important; }
    .tarif-item h3 { font-size: 1.05rem !important; }
    .tarif-item p { font-size: .88rem !important; }
    .tarif-price { font-size: 1.35rem !important; }

    /* Lightbox mobile : boutons accessibles + image bien centrée */
    .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; z-index: 3100; }
    .lightbox-prev { left: 10px; z-index: 3100; }
    .lightbox-next { right: 10px; z-index: 3100; }
    .lightbox .lightbox-content {
        max-width: 96vw;
        max-height: 82vh;
    }
    .lightbox .lightbox-content img {
        max-width: 96vw;
        max-height: 82vh;
    }
    .lightbox-counter { bottom: 14px; font-size: .75rem; }
}

@media (max-width: 380px) {
    .hero-info > img { max-width: 92% !important; }
    .nav-menu > li > a { font-size: 1.8rem; }
    .section-title { font-size: 1.55rem; }
    .hero-cta-buttons .btn { font-size: .9rem; }
}
