/* ═══════════════════════════════════════════════════
   RenewPlus Clinic — Design System
   Palette : terracotta #C8896A · or #C9A96E · crème #FAF7F4
   ═══════════════════════════════════════════════════ */

:root {
    --color-primary: #C8896A;
    --color-primary-light: #E8C4AD;
    --color-primary-dark: #A86B50;
    --color-accent: #8B6B7A;
    --color-gold: #C9A96E;
    --color-gold-light: #EBD9B8;
    --color-bg: #FAF7F4;
    --color-surface: #F3EDE6;
    --color-text-dark: #2C1F1A;
    --color-text-mid: #5E4A44;
    --color-text-light: #9C8880;
    --color-border: #E0D4CA;

    --glass-bg: rgba(255, 252, 248, 0.72);
    --glass-bg-heavy: rgba(255, 252, 248, 0.94);
    --glass-border: rgba(201, 169, 110, 0.22);
    --glass-border-strong: rgba(200, 137, 106, 0.38);
    --glass-shadow: 0 8px 32px rgba(100, 60, 40, 0.09);
    --glass-shadow-lg: 0 24px 72px rgba(100, 60, 40, 0.15);

    --gradient-hero: linear-gradient(135deg, #FAF0E8 0%, #F5E6DC 40%, #EDD9C8 100%);
    --gradient-gold: linear-gradient(135deg, #C9A96E 0%, #E8D5A8 50%, #C9A96E 100%);
    --gradient-primary: linear-gradient(135deg, #C8896A 0%, #D4A882 100%);
    --gradient-cta: linear-gradient(135deg, #C8896A 0%, #A86B50 100%);
    --gradient-dark: linear-gradient(135deg, #2C1F1A 0%, #3D2A24 100%);

    --section-py: 96px;
    --radius-card: 20px;
    --radius-btn: 50px;
    --radius-glass: 24px;
}

/* ─── Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% -10%, rgba(200,137,106,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(201,169,110,0.09) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 110%, rgba(139,107,122,0.07) 0%, transparent 60%);
    font-family: 'DM Sans', sans-serif;
    color: var(--color-text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Cormorant Garamond', serif;
}

/* ─── Logo ─────────────────────────────────────── */
.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 2px 12px rgba(200,137,106,0.25);
    border: 2px solid rgba(201,169,110,0.30);
    transition: box-shadow 0.3s ease;
}
.nav-logo-img:hover {
    box-shadow: 0 4px 20px rgba(200,137,106,0.40);
}

/* ─── Glassmorphism ─────────────────────────────── */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    background: var(--glass-bg-heavy);
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-lg);
    transform: translateY(-5px);
}

.glass-nav {
    background: rgba(250, 247, 244, 0.90) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    box-shadow: 0 2px 32px rgba(100,60,40,0.07) !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.glass-hero-card {
    background: rgba(255, 252, 248, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    backdrop-filter: blur(30px);
    box-shadow: 0 32px 96px rgba(100,60,40,0.14);
}

/* ─── Buttons ───────────────────────────────────── */
.btn-whatsapp {
    background: var(--gradient-cta);
    color: #fff;
    border-radius: var(--radius-btn);
    padding: 15px 36px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(200, 137, 106, 0.36);
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.btn-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.18) 50%, transparent 75%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
}
.btn-whatsapp:hover::after { transform: translateX(100%); }
.btn-whatsapp:hover {
    box-shadow: 0 14px 44px rgba(200, 137, 106, 0.52);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-btn);
    padding: 13px 30px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.32s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.btn-ghost:hover {
    background: var(--gradient-cta);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 28px rgba(200, 137, 106, 0.30);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    border-radius: var(--radius-btn);
    padding: 14px 32px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 24px rgba(201,169,110,0.38);
    transition: all 0.32s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-gold:hover {
    box-shadow: 0 12px 36px rgba(201,169,110,0.52);
    transform: translateY(-2px);
}

/* ─── Floating WhatsApp ─────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(200, 137, 106, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover {
    transform: scale(1.10);
    box-shadow: 0 12px 44px rgba(200, 137, 106, 0.60);
}
.wa-float__pulse {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: rgba(200, 137, 106, 0.28);
    animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.9; }
    100% { transform: scale(1.9); opacity: 0;   }
}

/* ─── Badge pill ────────────────────────────────── */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid var(--glass-border-strong);
    background: rgba(255,255,255,0.50);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-mid);
}

/* ─── Section title with gold underline ─────────── */
.section-title-line::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 18px auto 0;
}
.section-title-line.text-left::after,
.md\:text-left .section-title-line::after {
    margin-left: 0;
}

/* ─── Nav ───────────────────────────────────────── */
.nav-link { position: relative; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* ─── Hero image ────────────────────────────────── */
.hero-img-wrap {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 20px;
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
/* Slideshow overlay */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* ─── Service icon ──────────────────────────────── */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(200,137,106,0.12), rgba(201,169,110,0.12));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.32s ease;
}
.group:hover .service-icon {
    background: var(--gradient-cta);
    border-color: transparent;
    color: #fff;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(200,137,106,0.30);
}

/* ─── Btn icon ──────────────────────────────────── */
.btn-icon-primary { background: var(--gradient-cta); }

/* ─── About image ───────────────────────────────── */
.about-img-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 24px;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ─── Gallery ───────────────────────────────────── */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}
.gallery-img:hover { transform: scale(1.05); }
.gallery-img--top { object-position: center 20%; }

/* Gallery label */
.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(44,31,26,0.75), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.group:hover .gallery-label { opacity: 1; }

/* ─── Process section ───────────────────────────── */
.process-step {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}
.process-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.process-connector {
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), var(--color-gold-light), var(--color-gold));
    opacity: 0.35;
}

.process-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(200,137,106,0.12), rgba(201,169,110,0.12));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
}

/* ─── Avant / Après ─────────────────────────────── */
.ba-grid { grid-auto-rows: 260px; }

.ba-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--color-surface);
}
.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.ba-card:hover img { transform: scale(1.04); }
.ba-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,31,26,0.65) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ba-card:hover .ba-overlay { opacity: 1; }
.ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(44,31,26,0.72), transparent);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: translateY(4px);
    transition: transform 0.3s ease;
}
.ba-card:hover .ba-label { transform: translateY(0); }

/* ─── Instagram grid ────────────────────────────── */
.insta-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    display: block;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.insta-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200,137,106,0);
    transition: background 0.3s ease;
}
.insta-item:hover img { transform: scale(1.07); }
.insta-item:hover::after { background: rgba(200,137,106,0.22); }

/* ─── Scroll Animations ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ─── Float animation delays ───────────────────── */
.float-delay-1 { animation-delay: 1s; }
.float-delay-2 { animation-delay: 2s; }
.float-delay-3 { animation-delay: 3s; }

/* ─── Hero Animations ───────────────────────────── */
.hero-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeSlideUp 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes fadeSlideUp {
    to { opacity: 1; transform: translateY(0); }
}
.hero-delay-1 { animation-delay: 0.1s; }
.hero-delay-2 { animation-delay: 0.3s; }
.hero-delay-3 { animation-delay: 0.5s; }

/* ─── Carousel ──────────────────────────────────── */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* ─── Scrollbar ─────────────────────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ─── Marquee mask ──────────────────────────────── */
.mask-image-gradient {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* ─── Stats numbers gradient ────────────────────── */
.stat-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Divider doré ──────────────────────────────── */
.divider-gold {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    opacity: 0.35;
}

/* ─── Testimonial avatar ────────────────────────── */
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

/* ─── Check item ────────────────────────────────── */
.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(200,137,106,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

/* ─── CTA section ───────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, rgba(200,137,106,0.06) 0%, rgba(201,169,110,0.06) 100%);
}

/* ─── Technology strip ──────────────────────────── */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255,252,248,0.55);
    backdrop-filter: blur(12px);
    transition: all 0.32s ease;
}
.tech-item:hover {
    background: rgba(255,252,248,0.85);
    border-color: var(--glass-border-strong);
    box-shadow: 0 8px 28px rgba(100,60,40,0.08);
    transform: translateY(-3px);
}
.tech-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,137,106,0.14), rgba(201,169,110,0.14));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 4px;
    transition: all 0.32s ease;
}
.tech-item:hover .tech-icon {
    background: var(--gradient-cta);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(200,137,106,0.30);
}

/* ─── Google badge ──────────────────────────────── */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.80);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(100,60,40,0.07);
    backdrop-filter: blur(10px);
}

/* ─── Page hero (inner pages) ───────────────────── */
.page-hero {
    padding-top: 9rem;
    padding-bottom: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}
@media (min-width: 1024px) {
    .page-hero { padding-top: 12rem; padding-bottom: 6rem; }
}

/* ─── Clinic status badge ────────────────────────── */
.clinic-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
}
.clinic-status-badge.open {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
}
.clinic-status-badge.closed {
    background: rgba(156, 136, 128, 0.12);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.clinic-status-badge.open .status-dot { animation: wa-pulse 2s ease-out infinite; }

/* ─── Hours table ────────────────────────────────── */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.2s;
}
.hours-row.today {
    background: rgba(200, 137, 106, 0.10);
    font-weight: 600;
    color: var(--color-text-dark);
}
.hours-row.today .hours-status { color: var(--color-primary); }

/* ─── Services tabs ──────────────────────────────── */
.service-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-mid);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.28s ease;
    background: transparent;
}
.service-tab:hover {
    color: var(--color-primary);
    border-color: var(--glass-border-strong);
    background: rgba(200, 137, 106, 0.07);
}
.service-tab.active {
    background: var(--gradient-cta);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(200, 137, 106, 0.30);
}
.service-section { display: none; }
.service-section.active { display: block; }

/* ─── Service card ───────────────────────────────── */
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-glass);
    backdrop-filter: blur(16px);
    padding: 2rem;
    transition: all 0.32s ease;
}
.service-card:hover {
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-lg);
    transform: translateY(-3px);
}

/* ─── FAQ accordion ──────────────────────────────── */
.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    transition: border-color 0.28s ease;
}
.faq-item.open { border-color: var(--glass-border-strong); }
.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,137,106,0.12), rgba(201,169,110,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gradient-cta);
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--color-text-mid);
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

/* ─── Lightbox ───────────────────────────────────── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(20, 12, 8, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 2;
}
.lightbox-close:hover {
    background: rgba(200,137,106,0.45);
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 2;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav:hover { background: rgba(200,137,106,0.50); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox-img-wrap {
    max-width: min(90vw, 1100px);
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
    transition: opacity 0.22s ease;
}
.lightbox-footer {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 80px;
}
.lightbox-caption {
    color: rgba(255,255,255,0.80);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.lightbox-counter {
    color: rgba(255,255,255,0.40);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
}

/* ─── Gallery premium grid ───────────────────────── */
.gallery-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 767px) {
    .gallery-premium-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-premium-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--color-surface);
}
.gallery-premium-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.50s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.gallery-premium-item:hover img { transform: scale(1.06); }
.gallery-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,31,26,0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.30s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.gallery-premium-item:hover .gallery-premium-overlay { opacity: 1; }
.gallery-premium-label {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.gallery-expand-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.80);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
}
.gallery-premium-item:hover .gallery-expand-btn {
    opacity: 1;
    transform: scale(1);
}
.gallery-expand-btn:hover { background: rgba(200,137,106,0.60); }

/* ─── Avant/Après premium cards ──────────────────── */
.ba-card-premium {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: var(--color-surface);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.ba-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(100,60,40,0.14);
}
.ba-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.50s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.ba-card-premium:hover img { transform: scale(1.05); }
.ba-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,31,26,0.82) 0%, rgba(44,31,26,0.20) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}
.ba-treatment-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 2px;
}
.ba-treatment-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}
.ba-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(37,211,102,0.92);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    align-self: flex-start;
}
.ba-card-premium:hover .ba-wa-btn { opacity: 1; transform: translateY(0); }
.ba-wa-btn:hover { background: rgba(37,211,102,1); }
.ba-expand-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.80);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
}
.ba-card-premium:hover .ba-expand-btn { opacity: 1; transform: scale(1); }
.ba-expand-btn:hover { background: rgba(200,137,106,0.60); }

/* ─── Contact section ───────────────────────────── */
.contact-map-wrap {
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(100,60,40,0.14);
}
.contact-map-wrap iframe {
    border: 0;
    display: block;
}
.contact-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,137,106,0.12), rgba(201,169,110,0.12));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}
