/* ============================================
   RUSSALKA — Styles
   Teal / mermaid inspired palette
   ============================================ */

:root {
    /* Palette adaptée au logo RUSSALKA (vert/bleu lagon) */
    --color-white: #fefefe;
    --color-cream: #f6faf9;
    --color-beige: #e4f0ee;
    --color-nude: #d2e6e2;
    --color-nude-dark: #9cbab4;
    --color-pink: #e7f4f2;
    --color-pink-soft: #f0f9f8;
    --color-rose: #c3e1dc;
    --color-text: #123b3a;
    --color-text-light: #3c5f5d;
    --color-accent: #008a84;
    --color-accent-hover: #006e69;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing & layout */
    --container-max: 1200px;
    --section-padding: 5rem 1.5rem;
    --header-height: 72px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s var(--ease-out);
    --transition-medium: 0.35s var(--ease-out);
    --transition-slow: 0.5s var(--ease-out);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

.page-wrapper {
    position: relative;
    z-index: 1;
}

/* Masquer le contenu tant que l'intro est active, pour que seul le nom centré soit visible */
body:not(.intro-complete) .header,
body:not(.intro-complete) main,
body:not(.intro-complete) .footer {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

body.intro-complete .header,
body.intro-complete main,
body.intro-complete .footer {
    opacity: 1;
    transform: translateY(0);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ========== HEADER & NAV ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9); /* menu clair */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition-medium), background 0.3s ease-out;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(74, 69, 65, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    height: 40px; /* taille du logo dans le header */
    width: 40px;
    border-radius: 50%; /* logo arrondi */
    object-fit: cover;
    display: block;
}

.nav-cluster {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.lang-btn {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 0.35rem 0.45rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.lang-btn.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.lang-welcome {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(3, 21, 26, 0.55);
    backdrop-filter: blur(8px);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lang-welcome.lang-welcome--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lang-welcome__card {
    position: relative;
    max-width: 380px;
    width: 100%;
    padding: 2rem 1.75rem 1.75rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.lang-welcome__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.35);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
}

.lang-welcome__close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-text);
}

.lang-welcome__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: var(--color-text);
}

.lang-welcome__sub {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    margin: 0 0 1.25rem;
}

.lang-welcome__picker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lang-welcome__picker .lang-btn {
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
    min-width: 3.25rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text); /* texte foncé sur fond blanc */
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== INTRO OCEAN ========== */
.intro-ocean {
    position: fixed;
    inset: 0;
    z-index: 2000;
    overflow: hidden;
    background: radial-gradient(circle at top, #1e4c57, #03151a 60%);
    opacity: 1;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
    visibility: visible;
}

.intro-ocean.intro-hidden {
    opacity: 0;
    visibility: hidden;
}

#ocean-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}

.intro-brand {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f5fbfb;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.intro-brand.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-logo {
    max-width: min(520px, 90vw); /* logo très grand sur l'intro */
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.45));
}

.intro-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4rem);
    letter-spacing: 0.28em;
    text-indent: 0.28em;
}

.intro-scroll-hint {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(240, 252, 252, 0.9);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.intro-scroll-line {
    width: 1px;
    height: 40px;
    margin: 0.6rem auto 0;
    background: linear-gradient(to bottom, #f0f9f8, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========== HERO ========== */
/* Utilisez votre propre photo de cils comme image de fond :
   - enregistrez l'image dans le même dossier que index.html sous le nom "hero-cils.jpg"
   - ou changez simplement le chemin ci‑dessous vers le nom de votre fichier
*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--header-height) 1.5rem 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.85) 0%, rgba(240, 228, 224, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--color-text-light);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero .btn-primary {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

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

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

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 158, 0.35);
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* ========== SECTIONS COMMON ========== */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

/* Tiret en sans-serif : Cormorant rend le « - » incliné ; Montserrat = trait horizontal net */
.about-section-title {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0;
}

.about-title-part {
    font-family: var(--font-display);
}

.about-title-sep {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    margin: 0 0.12em;
    letter-spacing: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== ABOUT ========== */
.about {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Service page: on veut l'ordre texte -> images -> tarifs */
.service-detail-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-pricing-block {
    width: 100%;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: var(--color-text-light);
}

.about-lead {
    font-size: 1.15rem;
    color: var(--color-text) !important;
}

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

#service-detail-text {
    white-space: pre-line;
    line-height: 1.65;
}

.about-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 69, 65, 0.18);
    position: relative;
    height: 320px; /* hauteur fixe, cadre plus petit */
}

/* Image de détail de service : doit remplir exactement le cadre */
#service-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mosaque d'images sur la page de détail service */
.service-media-grid {
    width: 100%;
    height: 100%;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px; /* chaque tuile = son cadre */
    padding: 0;
}

.service-media-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: var(--color-white);
    box-shadow: 0 10px 26px rgba(74, 69, 65, 0.06);
}

.service-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Service page only: on veut que la mosaïque ait un vrai fond/cadre */
.service-media-wrap {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.about-slider {
    display: flex;
    width: 600%;           /* 6 images : chaque image = largeur du cadre */
    height: 100%;
    animation: aboutSlide 12s linear infinite;
}

/* Chaque image = exactement la taille du cadre (1/6 du slider = 100% du cadre visible) */
.about-slider img {
    flex: 0 0 16.66667%;   /* 100% / 6 = une image par cadre */
    width: 16.66667%;
    height: 100%;
    object-fit: cover;     /* remplit le cadre, centré */
    display: block;
}

@keyframes aboutSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-83.333%); } /* 5 pas de 1/6 = 6 images à la taille du cadre */
}

/* ========== SERVICES ========== */
.services {
    background: var(--color-pink-soft);
}

.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.service-hero-card {
    display: block;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(74, 69, 65, 0.08);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    text-decoration: none;
    color: inherit;
}

.service-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(74, 69, 65, 0.12);
}

.service-hero-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-hero-card:hover .service-hero-image img {
    transform: scale(1.05);
}

.service-hero-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    padding: 1.25rem 1rem;
    margin: 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* ========== BROCHURE DOWNLOAD ========== */
.brochure-download {
    background: var(--color-white);
    padding-top: 1rem;
}

.brochure-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-pink-soft);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(74, 69, 65, 0.08);
}

.brochure-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.brochure-card p {
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.service-category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-rose);
    display: inline-block;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--color-white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 69, 65, 0.06);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(74, 69, 65, 0.1);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-accent);
}

/* Page catégorie : liste des prestations et tarifs */
.service-detail-list {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.service-detail-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-nude);
    gap: 1rem;
}

.service-detail-list li:last-child {
    border-bottom: none;
}

.service-detail-list .item-name {
    font-weight: 500;
    color: var(--color-text);
}

.service-detail-list .item-price {
    font-weight: 600;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ========== GALLERY ========== */
.gallery {
    background: var(--color-white);
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.gallery-strip-wrapper {
    margin-top: 2rem;
    overflow: hidden; /* pas de scroll manuel visible */
}

.gallery-strip {
    display: flex;
    gap: 1rem;
    padding-bottom: 0.25rem;
    animation: galleryScroll 28s linear infinite;
}

.gallery-strip .gallery-item {
    min-width: 220px;
    max-width: 260px;
    flex: 0 0 auto;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: var(--color-white);
    box-shadow: 0 6px 18px rgba(74, 69, 65, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-toggle:hover {
    background: var(--color-cream);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(74, 69, 65, 0.2);
}

.gallery-toggle-icon {
    display: inline-block;
    font-size: 1.1rem;
    transform: translateX(1px);
}

.gallery-toggle[aria-expanded="true"] .gallery-toggle-icon {
    transform: rotate(90deg);
}

.gallery-grid-full {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* ========== STATS / CLIENTS ========== */
.stats {
    background: var(--color-pink-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    max-width: 720px;
    margin: 2.5rem auto 0;
}

.stat-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 10px 32px rgba(74, 69, 65, 0.06);
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-accent);
}

.stat-number--plain {
    font-variant-numeric: tabular-nums;
}

/* ========== REVIEWS ========== */
.reviews {
    background: var(--color-beige);
}

.reviews-kicker {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.reviews-title {
    margin-bottom: 0.25rem;
}

.reviews-underline {
    width: 60px;
    height: 2px;
    background: var(--color-rose);
    margin: 0.75rem auto 1.5rem;
}

.reviews-slider {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-slide-window {
    flex: 1;
    overflow: hidden;
}

.reviews-slide-track {
    display: flex;
    transition: transform var(--transition-medium);
}

.review-slide {
    min-width: 100%;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(74, 69, 65, 0.06);
}

.review-stars {
    color: #e8c84a;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.reviews-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--color-rose);
    padding: 0.25rem 0.5rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.reviews-arrow:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.reviews-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(18, 59, 58, 0.3);
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), width var(--transition-fast);
}

.reviews-dot.is-active {
    width: 18px;
    background: var(--color-accent);
}

/* ========== BOOKING ========== */
.booking {
    background: var(--color-pink-soft);
}

.booking-content {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.booking-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.booking-path-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.booking-path-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0 0 1rem;
}

.booking-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-nude);
}

.booking-divider span {
    flex-shrink: 0;
}

.booking-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

a.contact-chip--link {
    text-decoration: none;
}

.contact-chip--link:hover {
    color: inherit;
}

.booking-form-feedback {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 500;
}

.booking-submit-frame {
    display: none;
    width: 0;
    height: 0;
    border: 0;
    visibility: hidden;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.booking-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-nude);
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 158, 0.2);
}

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

.booking-whatsapp {
    display: none;
}

.booking-whatsapp p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.booking-whatsapp .btn {
    min-width: 180px;
}

.booking-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--color-white);
    border: 1px solid var(--color-nude);
    font-size: 0.85rem;
    color: var(--color-text);
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
    cursor: pointer;
}

.contact-chip:hover {
    background: var(--color-cream);
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(74, 69, 65, 0.08);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.contact-chip--whatsapp .contact-icon {
    background: #25D366;
}

.contact-chip--instagram .contact-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.contact-chip--phone .contact-icon {
    background: var(--color-accent);
}

.contact-chip.is-selected {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.contact-chip.is-selected .contact-icon {
    background: rgba(255, 255, 255, 0.18);
}

.booking-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(74, 69, 65, 0.18);
}

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

/* ========== LOCALISATION ========== */
.location {
    background: var(--color-white);
}

.location-lead {
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.location-block {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.location-address-card {
    background: linear-gradient(145deg, var(--color-pink-soft) 0%, var(--color-white) 100%);
    border: 1px solid rgba(0, 138, 132, 0.12);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 24px rgba(18, 59, 58, 0.06);
}

.location-salon-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.75rem;
}

.location-address-text {
    font-style: normal;
    color: var(--color-text-light);
    line-height: 1.65;
    margin: 0 0 1rem;
    font-size: 1rem;
}

.location-meta {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.location-meta-label {
    display: inline-block;
    min-width: 5.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.location-meta a {
    color: var(--color-accent);
    font-weight: 500;
}

.location-meta a:hover {
    text-decoration: underline;
}

.location-map-wrap {
    width: 100%;
    margin: 0 auto;
}

.location-map-caption {
    margin: 0.85rem 0 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.55;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.location-map-caption-link {
    display: inline-block;
    margin-left: 0.35rem;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.location-map-caption-link:hover {
    color: var(--color-accent-hover);
}

.location-pin {
    margin-right: 0.25rem;
}

.location-map--embed {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(60, 64, 67, 0.12);
    box-shadow:
        0 2px 8px rgba(60, 64, 67, 0.08),
        0 12px 40px rgba(18, 59, 58, 0.1);
    background: #e8eaed;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    max-height: 520px;
}

.location-map--embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    z-index: 0;
}

/* Fiche lieu superposée (remplace l’erreur « impossible de charger les infos » de l’iframe seule coordonnées) */
.location-map-place-card {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    max-width: min(300px, calc(100% - 24px));
    padding: 14px 16px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 4px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.45;
    pointer-events: auto;
    text-align: left;
}

.location-map-place-card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.65rem;
}

.location-map-place-card__name {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.location-map-place-card__pinmark {
    display: flex;
    justify-content: center;
    line-height: 0;
    color: var(--color-accent);
}

.location-map-place-card__pin-svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.location-map-place-card__addr {
    margin: 0 0 0.5rem;
    color: var(--color-text-light);
    font-size: 0.8125rem;
}

.location-map-place-card__meta {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.location-map-place-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

.location-map-place-card__link:hover {
    text-decoration: underline;
    color: var(--color-accent-hover);
}

.location-nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 0.25rem;
}

.btn-location-nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    text-align: left;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
    box-shadow: 0 4px 16px rgba(18, 59, 58, 0.12);
}

.btn-location-nav:hover {
    box-shadow: 0 8px 24px rgba(18, 59, 58, 0.18);
}

.btn-location-nav__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.btn-primary.btn-location-nav .btn-location-nav__icon {
    background: rgba(255, 255, 255, 0.2);
}

.btn-location-nav__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    min-width: 0;
}

.btn-location-nav__text {
    display: block;
    font-size: 0.95rem;
}

.btn-location-nav__hint {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.88;
}

.btn-waze {
    background: #1da7f6;
    color: #fff;
    border: none;
}

.btn-waze:hover {
    background: #1590d6;
    color: #fff;
    transform: translateY(-2px);
}

.btn-waze .btn-location-nav__icon {
    background: rgba(255, 255, 255, 0.22);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-text);
    color: var(--color-cream);
    padding: 3rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-nude);
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.9;
}

/* ========== ANIMATIONS ON SCROLL ========== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Variantes de reveal */
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
}

.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-fade {
    opacity: 0;
    transform: none;
}

.reveal-fade.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 40px rgba(74, 69, 65, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition-medium), opacity var(--transition-medium), visibility var(--transition-medium);
    }

    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

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

    .about-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-content {
        max-width: 560px;
        margin: 0 auto;
        display: block;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-slider {
        max-width: 100%;
    }

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

    .service-modal-dialog {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .service-modal-content {
        padding: 1.75rem 1.75rem 2rem;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 3.5rem 1rem;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .location-nav-actions {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .location-map--embed {
        min-height: 240px;
        max-height: none;
    }

    .location-map-place-card {
        top: 8px;
        left: 8px;
        max-width: calc(100% - 16px);
        padding: 12px 14px 14px;
    }

    .location-map-place-card__name {
        font-size: 0.9rem;
    }

    .btn-location-nav {
        padding: 0.9rem 1rem;
    }

    .location-address-card {
        padding: 1.25rem 1.15rem;
    }

    .service-modal-dialog {
        width: 94%;
        max-width: 440px;
    }
}
