/* ===========================
   POLICES
   =========================== */
@font-face {
    font-family: "Futura Condensed Extra Bold";
    src: url("https://db.onlinewebfonts.com/t/35e76f5f0525b62c69ebade19a3ee8f4.eot");
    src: url("https://db.onlinewebfonts.com/t/35e76f5f0525b62c69ebade19a3ee8f4.eot?#iefix") format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/35e76f5f0525b62c69ebade19a3ee8f4.woff2") format("woff2"),
    url("https://db.onlinewebfonts.com/t/35e76f5f0525b62c69ebade19a3ee8f4.woff") format("woff"),
    url("https://db.onlinewebfonts.com/t/35e76f5f0525b62c69ebade19a3ee8f4.ttf") format("truetype"),
    url("https://db.onlinewebfonts.com/t/35e76f5f0525b62c69ebade19a3ee8f4.svg#Futura Condensed Extra Bold") format("svg");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ===========================
   VARIABLES ET RESET
   =========================== */
:root {
    --primary-color: #6B8E23;
    --primary-dark: #556B2F;
    --primary-light: #8BA647;
    --secondary-color: #8B6F47;
    --accent-color: #D4AF37;
    --bg-light: #F9F7F4;
    --bg-white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.20);
    --font-heading: "Futura Condensed Extra Bold", 'Arial Narrow', 'Impact', sans-serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Application de Futura pour tous les titres */
h1, h2, h3, h4, h5, h6,
.logo h1,
.hero-title,
.section-title,
.tarifs-category-title,
.legal-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   ANIMATIONS KEYFRAMES
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(107, 142, 35, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(107, 142, 35, 0.6);
    }
}

/* Classes d'animation */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

/* ===========================
   EFFET PATTES ANIMÉES
   =========================== */
#paw-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.paw-print {
    position: absolute;
    opacity: 0.7;
    font-size: 18px;
    animation: fadePaw 1.5s ease-out forwards;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.paw-print.paw-green {
    filter: grayscale(100%) brightness(0.6) sepia(100%) hue-rotate(60deg) saturate(300%);
}

@keyframes fadePaw {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo .tagline {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: block;
    margin-top: 0.25rem;
}

/* Menu burger - CACHÉ sur desktop */
.burger-menu {
    display: none;
}

/* Menu mobile - CACHÉ sur desktop */
.mobile-menu {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===========================
   BOUTONS
   =========================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===========================
   SECTION HERO
   =========================== */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #F9F7F4 0%, #E8F5E9 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 142, 35, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-item h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

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

#accueil {
    padding-top: 1rem;
}

/* ===========================
   SECTIONS COMMUNES
   =========================== */
section {
    padding: 5rem 0;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   SECTION SERVICES
   =========================== */
.services {
    background: white;
}

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

.service-card {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===========================
   SECTION SOCIAL FEED
   =========================== */
.social-feed {
    background: linear-gradient(135deg, #F9F7F4 0%, #FFF9E6 100%);
}

/* Grille des 2 colonnes */
.social-feeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Colonnes individuelles */
.feed-column {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feed-column:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feed-column:nth-child(1) {
    border-color: rgba(24, 119, 242, 0.2);
}

.feed-column:nth-child(2) {
    border-color: rgba(225, 48, 108, 0.2);
}

/* Header des colonnes */
.feed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.feed-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
}

.feed-header svg {
    flex-shrink: 0;
}

/* Embeds Facebook et Instagram */
.facebook-embed,
.instagram-embed {
    max-width: 100%;
    margin: 0 auto 1.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.facebook-embed iframe,
.instagram-embed iframe {
    border-radius: 8px;
    max-width: 100%;
    width: 100% !important;
}

.facebook-embed iframe {
    min-width: 100%;
}

#ft-insta-app {
    width: 100%;
    max-width: 100%;
}

/* Branding Fouita */
#ft-insta-brd {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    opacity: 0.5;
    width: 100%;
}

#ft-insta-brd a {
    color: var(--text-gray);
    margin: 0 0.3rem;
    transition: color 0.3s ease;
}

#ft-insta-brd a:hover {
    color: var(--primary-color);
}

/* Si tu veux masquer le branding Fouita (optionnel) */
/*
#ft-insta-brd {
    display: none;
}
*/

/* Liens vers les pages */
.feed-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.feed-link .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA final */
.social-feed .social-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.social-feed .social-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.social-feed .social-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Social Feed */
@media (max-width: 1024px) {
    .social-feeds-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .feed-column {
        padding: 1.5rem;
    }

    .feed-header h3 {
        font-size: 1.3rem;
    }

    .feed-header svg {
        width: 28px;
        height: 28px;
    }

    .social-feed .social-buttons {
        flex-direction: column;
    }

    .social-feed .social-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .facebook-embed iframe {
        height: 450px !important;
    }

    .instagram-embed iframe {
        height: 450px !important;
    }
}

@media (max-width: 480px) {
    .social-feeds-grid {
        grid-template-columns: 1fr;
    }

    .feed-column {
        padding: 1rem;
    }

    .feed-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .feed-header h3 {
        font-size: 1.2rem;
    }

    .facebook-embed iframe {
        height: 400px !important;
    }

    .instagram-embed iframe {
        height: 400px !important;
    }
}

/* ===========================
   SECTION TARIFS
   =========================== */
.tarifs {
    background: linear-gradient(135deg, #F9F7F4 0%, #FFF9E6 100%);
}

.tarifs-category {
    margin-bottom: 4rem;
}

.tarifs-category-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tarifs-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tarifs-table-wrapper:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(107, 142, 35, 0.2);
    transform: translateY(-2px);
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.tarifs-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.tarifs-table th {
    padding: 1.3rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tarifs-table th:first-child {
    border-radius: var(--border-radius) 0 0 0;
    text-align: left;
}

.tarifs-table th:last-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.tarifs-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tarifs-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(107, 142, 35, 0.02), rgba(107, 142, 35, 0.08), rgba(107, 142, 35, 0.02));
}

.tarifs-table tbody tr:last-child {
    border-bottom: none;
}

.tarifs-table td {
    padding: 1.3rem 1.5rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.tarifs-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.tarifs-table td strong {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 700;
}

.tarif-special {
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    background: linear-gradient(90deg, rgba(107, 142, 35, 0.05), rgba(107, 142, 35, 0.15), rgba(107, 142, 35, 0.05));
    padding: 1.5rem !important;
}

/* Grille tarifs spéciaux */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.tarif-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.tarif-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 142, 35, 0.1), transparent);
    transition: left 0.5s ease;
}

.tarif-card:hover::before {
    left: 100%;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tarif-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    display: inline-block;
    transition: transform 0.3s ease;
}

.tarif-card:hover .tarif-icon {
    transform: scale(1.2) rotate(-5deg);
}

.tarif-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.tarif-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.tarif-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Note importante */
.tarifs-note {
    background: linear-gradient(135deg, #FFF9E6, #FFFBF0);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tarifs-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.tarifs-note:hover {
    box-shadow: var(--shadow-md);
}

.tarifs-note:hover::before {
    width: 6px;
}

.tarifs-note p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tarifs-note strong {
    color: var(--text-dark);
}

/* CTA */
.tarifs-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tarifs-category-title {
        font-size: 1.6rem;
    }

    .tarifs-table {
        font-size: 0.8rem;
        min-width: 500px;
    }

    .tarifs-table th,
    .tarifs-table td {
        padding: 0.9rem 0.6rem;
    }

    .tarifs-table th {
        font-size: 0.75rem;
    }

    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tarif-card {
        padding: 2rem 1.5rem;
    }

    .tarifs-note {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tarifs-category-title {
        font-size: 1.4rem;
    }

    .tarifs-table-wrapper {
        border-radius: 8px;
    }

    /* Tableau ultra compact pour mobile */
    .tarifs-table {
        font-size: 0.65rem;
        min-width: 100%;
    }

    .tarifs-table th {
        padding: 0.7rem 0.3rem;
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .tarifs-table td {
        padding: 0.8rem 0.3rem;
        font-size: 0.65rem;
    }

    .tarifs-table td strong {
        font-size: 0.75rem;
    }

    .tarif-special {
        font-size: 0.8rem;
        padding: 1rem !important;
    }

    .tarif-icon {
        font-size: 3rem;
    }

    .tarif-price {
        font-size: 1.6rem;
    }

    .tarifs-note {
        padding: 1.2rem;
        font-size: 0.85rem;
    }
}

/* Pour les très petits écrans (iPhone SE, etc.) */
@media (max-width: 375px) {
    .tarifs-table {
        font-size: 0.6rem;
    }

    .tarifs-table th {
        padding: 0.6rem 0.2rem;
        font-size: 0.6rem;
    }

    .tarifs-table td {
        padding: 0.7rem 0.2rem;
        font-size: 0.6rem;
    }

    .tarifs-table td strong {
        font-size: 0.7rem;
    }

    .tarif-special {
        font-size: 0.75rem;
    }
}


/* ===========================
   SECTION À PROPOS
   =========================== */
.about {
    background: linear-gradient(135deg, #F9F7F4 0%, #FFF9E6 100%);
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text .highlight {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.about-features li {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.8rem 1rem;
    background: rgba(107, 142, 35, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.about-features li:hover {
    background: rgba(107, 142, 35, 0.1);
    transform: translateX(8px);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 500px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(255,255,255,0.15));
    box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.18),
            0 8px 18px rgba(107, 142, 35, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-6px);
    box-shadow:
            0 28px 60px rgba(0, 0, 0, 0.22),
            0 12px 24px rgba(107, 142, 35, 0.16);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 32px;
    border: 2px dashed rgba(107, 142, 35, 0.35);
    pointer-events: none;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(
            180deg,
            rgba(255,255,255,0.16) 0%,
            rgba(255,255,255,0.04) 35%,
            rgba(0,0,0,0.08) 100%
    );
    pointer-events: none;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 28px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.paw-emoji {
    display: none;
}

/* ===========================
   SECTION CONTACT
   =========================== */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-dark);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 500px;
    transition: all 0.3s ease;
}

.contact-map:hover {
    box-shadow: var(--shadow-lg);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #CCCCCC;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #CCCCCC;
    flex-wrap: wrap;
    gap: 1rem;
}

.dev-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.dev-credit a {
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.dev-credit a:hover {
    color: white;
}

.footer-phone {
    margin-top: 0.5rem;
    display: none;
}

.footer-phone a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===========================
   BOUTON BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 18px;
    right: 14px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 1025px) {
    .back-to-top {
        bottom: 30px;
        right: 30px;
        width: 52px;
        height: 52px;
    }
    .back-to-top svg {
        width: 22px;
        height: 22px;
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Burger toggle - caché par défaut */
.burger-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.burger-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile overlay - caché par défaut */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: white;
    padding: 4rem 1.25rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-actions .social-icons {
    justify-content: center;
    gap: 1.5rem;
}

.mobile-nav-actions .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Media queries */
@media (max-width: 1024px) {
    /* Afficher le burger */
    .burger-toggle {
        display: flex;
    }

    /* Cacher le menu desktop */
    .desktop-nav {
        display: none !important;
    }

    /* Afficher le menu mobile */
    .mobile-overlay {
        display: block;
    }

    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .logo-image {
        height: 42px;
    }

    .logo .tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.7rem 1.2rem;
    }

    .logo-image {
        height: 38px;
    }

    .mobile-menu-content {
        width: 260px;
        padding: 4rem 1.2rem 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .about-text h2 {
        text-align: center;
    }

    .image-placeholder {
        width: 300px;
        height: 300px;
    }

    .image-placeholder::before {
        width: 320px;
        height: 320px;
    }

    .paw-emoji {
        font-size: 6rem;
    }

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

    .contact-map {
        height: 400px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .tarifs-table {
        font-size: 0.9rem;
    }

    .tarifs-table th,
    .tarifs-table td {
        padding: 0.75rem 0.5rem;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1.3rem;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }

    /* Cacher les liens de navigation sur mobile */
    .footer-links {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .dev-credit {
        font-size: 0.7rem;
    }

    .footer-phone {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 240px;
        max-width: 80vw;
    }

    .mobile-nav-links a {
        font-size: 1rem;
        padding: 0.9rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .tarifs-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* ===========================
   PAGE EN CONSTRUCTION
   =========================== */
.construction-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F9F7F4 0%, #E8F5E9 100%);
    padding: 3rem 0;
}

.construction-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.construction-logo {
    margin-bottom: 1rem;
}

.construction-logo .logo-image {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.construction-image {
    margin: 1rem 0;
}

.construction-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.construction-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.construction-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Badges */
.construction-content .badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.construction-buttons {
    margin-bottom: 3rem;
}

.construction-contact {
    padding-top: 2rem;
    border-top: 2px solid rgba(107, 142, 35, 0.2);
}

.construction-contact p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .construction-title {
        font-size: 2rem;
    }

    .construction-subtitle {
        font-size: 1.1rem;
    }

    .construction-text {
        font-size: 1rem;
    }

    .construction-image img {
        max-width: 320px;
    }

    .construction-content .badges {
        gap: 0.8rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .construction-logo .logo-image {
        max-width: 100px;
    }

    .construction-title {
        font-size: 1.6rem;
    }

    .construction-subtitle {
        font-size: 1rem;
    }

    .construction-image img {
        max-width: 250px;
        max-width: 250px;
        max-width: 250px;
    }

    .construction-content .badges {
        flex-direction: column;
        align-items: center;
    }

    .construction-content .badge {
        width: 100%;
        max-width: 250px;
    }
}

/* ===========================
   NAVBAR SCROLLED
=========================== */
header.scrolled {
    box-shadow: var(--shadow-md);
}

/* ===========================
PAGE SALON
=========================== */

.salon-page {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-olive-soft) 100%);
}

/* Variables salon */
:root {
    --bg-olive-soft: #eef6ee;
    --border-color: rgba(107, 142, 35, 0.16);
    --border-color-strong: rgba(107, 142, 35, 0.28);
    --border-radius-sm: 8px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
    --border-radius-pill: 999px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* ── Hero ── */
.salon-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%);
}

.salon-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 1rem;
}

.salon-hero-text { text-align: left; }

.salon-hero-text .hero-title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.salon-hero-text .hero-title span { color: var(--primary-color); }

.salon-hero-text .hero-subtitle {
    max-width: 700px;
    margin: 0 0 2rem;
}

.salon-hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ── Cards communes ── */
.salon-highlight-card,
.salon-mini-card,
.salon-feature-card,
.salon-gallery-card,
.salon-image-card,
.mosaic-item {
    overflow: hidden;
    border: 1px solid rgba(107, 142, 35, 0.12);
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);

}


.salon-image-card.salon-image-main img {
    display: block;
}

.salon-highlight-card {
    padding: 1.6rem;
    border-color: rgba(107, 142, 35, 0.18);
    background: rgba(255, 255, 255, 0.88);
    transition: all var(--transition-base);
}

.salon-highlight-card:hover,
.salon-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.salon-highlight-icon,
.mini-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border-radius: 14px;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: var(--shadow-md);
}

.salon-highlight-card h3,
.salon-mini-card h3,
.salon-feature-content h3 {
    margin-bottom: 0.7rem;
    font-size: 1.35rem;
    color: var(--text-dark);
}

.salon-highlight-card p,
.salon-mini-card p,
.salon-feature-content p,
.salon-showcase-text p,
.salon-cta-card p {
    line-height: 1.8;
    color: var(--text-gray);
}

/* ── Image principale ── */
.salon-image-main { position: relative; }

.salon-image-main {
    position: relative;
}

.salon-image-main img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;

}

.salon-image-overlay {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

/* ── Sections backgrounds ── */
.salon-story,
.salon-boutique,
.salon-gallery-section {
    background: var(--bg-white);
}

.salon-showcase {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
}

/* ── Grilles ── */
.salon-story-grid,
.salon-boutique-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.salon-feature-card {
    display: grid;
    grid-template-rows: 260px 1fr;
}

.salon-feature-media img,
.salon-gallery-card img,
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-feature-content { padding: 1.8rem; }

.salon-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--border-radius-pill);
    background: rgba(107, 142, 35, 0.08);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.salon-kicker.light {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

/* ── Showcase ── */
.salon-showcase-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
}

.section-title.left {
    margin-bottom: 1.2rem;
    text-align: left;
}

.salon-showcase-text p { margin-bottom: 1.5rem; }

.salon-points {
    display: grid;
    gap: 1rem;
}

.salon-points li {
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
}

.salon-showcase-gallery {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.2rem;
}

.salon-gallery-card.large {
    grid-row: span 2;
    min-height: 520px;
}

.salon-gallery-card.small { min-height: 250px; }

/* ── Boutique ── */
.salon-boutique-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.salon-mini-card {
    padding: 2rem 1.6rem;
    transition: all var(--transition-base);
}

.salon-mini-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 142, 35, 0.25);
    box-shadow: var(--shadow-xl);
}

/* ── Mosaïque ── */
.salon-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    grid-auto-rows: 230px;
    gap: 1.2rem;
    margin-top: 3rem;
}

.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.wide { grid-column: span 2; }

/* ── CTA ── */
.salon-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f5e8 0%, #e8f0dc 100%);
}

.salon-cta-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 3.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #556B2F 0%, #3d5022 100%);
    box-shadow: 0 16px 48px rgba(85, 107, 47, 0.35);
    position: relative;
    overflow: hidden;
}

.salon-cta-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.salon-cta-text .salon-kicker.light {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.salon-cta-card h2 {
    font-size: 2.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.salon-cta-card p {
    color: rgba(255,255,255,0.78);
    font-size: 0.97rem;
    line-height: 1.7;
}

.salon-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-cta-phone:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    background: #ffffff;
    color: #556B2F;
    font-weight: 700;
    font-size: 0.97rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-cta-secondary:hover {
    background: #f5f9ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ── Section heading ── */
.section-heading { margin-bottom: 3rem; }

/* ===========================
   SALON — RESPONSIVE
=========================== */

@media (max-width: 1024px) {
    .salon-hero-grid,
    .salon-showcase-grid,
    .salon-cta-card,
    .salon-story-grid,
    .salon-boutique-grid {
        grid-template-columns: 1fr;
    }

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

    .salon-gallery-card.large {
        grid-row: auto;
        min-height: 300px;
    }

    .salon-image-main img { min-height: 440px; }
}

@media (max-width: 768px) {
    .salon-hero-highlights,
    .salon-showcase-gallery,
    .salon-mosaic {
        grid-template-columns: 1fr;
    }

    .salon-hero-text,
    .salon-hero-text .hero-title,
    .section-title.left,
    .salon-showcase-text {
        text-align: center;
    }

    .salon-hero-text .hero-subtitle {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .salon-image-main img { min-height: 340px; }

    .salon-feature-card { grid-template-rows: 220px 1fr; }

    .salon-mosaic { grid-auto-rows: auto; }

    .mosaic-item.tall,
    .mosaic-item.wide {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .salon-highlight-card,
    .salon-mini-card,
    .salon-feature-content {
        padding: 1.3rem;
    }

    .salon-cta-card { padding: 1.5rem; }
    .salon-cta-card h2 { font-size: 1.8rem; }

    .salon-image-overlay {
        right: 0.8rem;
        bottom: 0.8rem;
        left: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .salon-cta-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    .salon-cta-card h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .salon-cta-card { padding: 1.6rem; }
    .salon-cta-card h2 { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .image-placeholder {
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    }

    .image-placeholder img,
    .image-placeholder::after {
        border-radius: 24px;
    }

    .image-placeholder::before {
        display: none;
    }
}

/* =========================================
   SALON - GALERIE MOSAIQUE
========================================= */
.salon-gallery-section {
    padding: 100px 0;
}

.salon-gallery-mosaic {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-auto-rows: 260px;
    gap: 20px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    background: #f6f1e7;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 1;
}

.gallery-square {
    grid-column: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.14) 45%,
            rgba(0, 0, 0, 0.48) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #2d2d2d;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* =========================================
   SALON - CTA FINAL
========================================= */
.salon-final-cta {
    padding: 0 0 110px;
}

.salon-cta-final {
    text-align: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(246,241,231,0.96));
    border-radius: 28px;
    padding: 48px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.salon-cta-final h2 {
    margin-bottom: 14px;
}

.salon-cta-final p {
    max-width: 680px;
    margin: 0 auto 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   LIGHTBOX
========================================= */
.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 10, 10, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 9999;
}

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

.lightbox-content {
    position: relative;
    width: min(1100px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: 100%;
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    background: #111;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
    top: -18px;
    right: -8px;
    font-size: 28px;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
    left: -72px;
}

.lightbox-next {
    right: -72px;
}

.lightbox-counter {
    position: absolute;
    bottom: -54px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991px) {
    .salon-gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 767px) {
    .salon-gallery-section {
        padding: 80px 0;
    }

    .salon-gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
        margin-top: 36px;
    }

    .gallery-tall,
    .gallery-wide,
    .gallery-square {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        border-radius: 20px;
    }

    .gallery-item img {
        aspect-ratio: 4 / 3;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.02) 0%,
                rgba(0, 0, 0, 0.1) 55%,
                rgba(0, 0, 0, 0.38) 100%
        );
    }

    .gallery-zoom {
        font-size: 13px;
        padding: 9px 12px;
    }

    .salon-final-cta {
        padding: 0 0 90px;
    }

    .salon-cta-final {
        padding: 36px 22px;
        border-radius: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox-content {
        width: 100%;
    }

    .lightbox-image {
        max-height: 78vh;
        border-radius: 14px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: -58px;
        transform: none;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: scale(1.06);
    }

    .lightbox-prev {
        left: calc(50% - 56px);
    }

    .lightbox-next {
        right: calc(50% - 56px);
    }

    .lightbox-close {
        top: 8px;
        right: 8px;
    }

    .lightbox-counter {
        bottom: -110px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-item img,
    .gallery-overlay,
    .lightbox,
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        transition: none;
    }

    .gallery-item:hover,
    .gallery-item:hover img,
    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: none;
    }
}

/* =========================
   MENTIONS LEGALES - SPACING TIGHTER
========================= */

.legal-section {
    padding: 56px 0;
}

.legal-title {
    margin-bottom: 1.5rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 1.5rem;
    padding: 1.35rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.legal-block h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.legal-block h3 {
    margin: 0.9rem 0 0.45rem;
    font-size: 1.05rem;
}

.legal-block p {
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    margin: 0.4rem 0 0.75rem 1.1rem;
}

.legal-block li {
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.legal-footer {
    margin-top: 1.75rem;
    padding-top: 1rem;
}

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

    .legal-block {
        margin-bottom: 1.1rem;
        padding: 1.1rem 1rem;
    }

    .legal-block h2 {
        margin-bottom: 0.65rem;
        font-size: 1.3rem;
    }

    .legal-block h3 {
        margin: 0.75rem 0 0.35rem;
        font-size: 1rem;
    }

    .legal-block p,
    .legal-block li {
        line-height: 1.45;
    }
}