/* =============================================
   ÉLITE COIFFURE — Styles
   Palette : Noir #1A1A1A | Blanc #FFFFFF | Rose #E91E8C | Gris #6B6B6B
   ============================================= */

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

:root {
    --black: #1A1A1A;
    --white: #FFFFFF;
    --pink: #E91E8C;
    --pink-light: #FDF0F7;
    --pink-dark: #C4167A;
    --gray: #6B6B6B;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --header-h: 70px;
    --radius: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

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

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

address {
    font-style: normal;
}

/* =============================================
   UTILITIES
   ============================================= */

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

.section {
    padding: 80px 0;
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

.section--dark .section-label {
    color: var(--pink);
}

.section--dark .section-intro {
    color: rgba(255,255,255,0.7);
}

.section--light {
    background: var(--gray-light);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--pink);
}

.section-intro {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn--primary:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* =============================================
   HEADER
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--gray-medium);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--black);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width var(--transition);
}

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

.nav-link--cta {
    background: var(--pink);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.header-socials {
    display: none;
    align-items: center;
    gap: 12px;
}

.header-socials a {
    color: var(--gray);
    transition: color var(--transition);
}

.header-socials a:hover {
    color: var(--pink);
}

/* Burger */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
    padding: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* Mobile nav overlay */
.nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1;
    padding: 100px 40px 40px;
    overflow-y: auto;
}

.nav.open .nav-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--black);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-medium);
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: color 0.3s ease;
}

.nav.open .nav-link:first-child {
    border-top: 1px solid var(--gray-medium);
}

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

.nav.open .nav-link::after {
    display: none;
}

.nav.open .nav-link--cta {
    margin-top: 24px;
    border: none;
    background: var(--pink);
    color: var(--white);
    padding: 14px 40px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav.open .nav-link--cta:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.nav-mobile-logo {
    margin-bottom: 32px;
}

.nav-mobile-socials {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.nav-mobile-socials a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.nav-mobile-socials a:hover {
    color: var(--pink);
}

/* =============================================
   HERO
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-mosaic {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
}

.mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mosaic-col img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.mosaic-col--scroll-up {
    animation: mosaicUp 40s linear infinite;
}

.mosaic-col--scroll-down {
    animation: mosaicDown 40s linear infinite;
}

@keyframes mosaicUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes mosaicDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.mosaic-col--hide-mobile {
    display: none;
}

.mosaic-col--hide-tablet {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.72);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    padding-top: var(--header-h);
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero h1 strong {
    color: var(--pink);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   PRESTATIONS
   ============================================= */

.prestations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.prestation-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.prestation-card:hover {
    border-color: var(--pink);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233,30,140,0.08);
}

.prestation-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--pink);
}

.prestation-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.prestation-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================================
   COULEUR & MÈCHES
   ============================================= */

.couleur-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.couleur-card {
    width: 100%;
    text-align: center;
}

.couleur-card-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}

.couleur-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.couleur-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--white);
}

.couleur-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================================
   SOINS
   ============================================= */

.soins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.soin-card {
    padding: 28px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.soin-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--pink);
}

.soin-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.soin-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.soin-prices {
    display: flex;
    gap: 16px;
}

.soin-price {
    font-weight: 700;
    color: var(--pink);
    font-size: 1rem;
}

.soin-price small {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.7;
    color: var(--white);
}

.soin-badge {
    background: var(--pink);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.soin-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.soins-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.soins-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.soins-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.soins-img:hover img {
    transform: scale(1.05);
}

/* =============================================
   GALERIE
   ============================================= */

.galerie-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.galerie-grid .galerie-item {
    width: calc(50% - 4px);
}

.galerie-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--gray-light);
}

.galerie-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

.galerie-cta {
    text-align: center;
    margin-top: 40px;
}

/* =============================================
   TARIFS
   ============================================= */

.tarif-block {
    margin-bottom: 40px;
}

.tarif-block-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pink);
    display: inline-block;
}

.tarif-block-title small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
}

.tarif-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.tarif-table thead th {
    background: var(--black);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: left;
}

.tarif-table thead th:not(:first-child) {
    text-align: center;
}

.tarif-table tbody td {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-medium);
}

.tarif-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 600;
    color: var(--pink);
}

.tarif-table tbody tr:hover {
    background: var(--pink-light);
}

.tarif-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.tarif-list {
    display: flex;
    flex-direction: column;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-medium);
    font-size: 0.9rem;
}

.tarif-item span:last-child {
    font-weight: 600;
    color: var(--pink);
    white-space: nowrap;
    margin-left: 16px;
}

.tarif-item--highlight {
    background: var(--pink-light);
    padding: 12px 16px;
    border-radius: var(--radius);
    border-bottom: none;
    margin-bottom: 8px;
    font-weight: 600;
}

/* =============================================
   KÉRASTASE
   ============================================= */

.kerastase-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.kerastase-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.kerastase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.kerastase-gamme {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.kerastase-gamme:first-child {
    padding-top: 0;
}

.kerastase-gamme h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.kerastase-gamme p {
    color: var(--gray);
    font-size: 0.9rem;
}

.kerastase-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--pink-light);
    border-left: 3px solid var(--pink);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.9rem;
    color: var(--black);
}

/* =============================================
   AMBIANCE
   ============================================= */

.ambiance-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.ambiance-grid .ambiance-item {
    width: 100%;
}

.ambiance-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.ambiance-item img {
    width: 100%;
    height: auto;
    display: block;
}

.ambiance-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(26,26,26,0.8));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =============================================
   AVIS CLIENTS
   ============================================= */

.avis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.avis-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    transition: box-shadow var(--transition);
}

.avis-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.avis-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avis-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.avis-meta {
    flex: 1;
}

.avis-author {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 2px;
}

.avis-stars {
    color: #FBBC05;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.avis-google {
    flex-shrink: 0;
    align-self: flex-start;
}

.avis-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4d5156;
    margin: 0;
}

/* =============================================
   SALONS
   ============================================= */

.salons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.salon-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.salon-card:hover {
    border-color: var(--pink);
    box-shadow: 0 12px 40px rgba(233,30,140,0.08);
}

.salon-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--pink);
}

.salon-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.salon-card address {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.salon-phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* =============================================
   HORAIRES & CONTACT
   ============================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.horaires-table {
    display: flex;
    flex-direction: column;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-medium);
    font-size: 0.95rem;
}

.horaire-row .ferme {
    color: var(--gray);
    font-style: italic;
}

.horaires-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--pink);
    font-weight: 500;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-phone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-phone:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.contact-phone strong {
    font-size: 0.9rem;
}

.contact-phone span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.5px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    margin-bottom: 16px;
    border-radius: 50%;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--pink);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-socials a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-socials a:hover {
    color: var(--pink);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   ANIMATIONS (scroll reveal)
   ============================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE — Tablet (768px+)
   ============================================= */

@media (min-width: 768px) {
    .hero-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }

    .mosaic-col--hide-mobile {
        display: flex;
    }

    .hero-actions {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }

    .hero-logo {
        width: 160px;
        height: 160px;
    }

    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .couleur-card {
        width: calc(33.333% - 16px);
    }

    .soins-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .soins-grid .soin-card {
        width: calc(50% - 10px);
    }

    .galerie-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .galerie-grid .galerie-item {
        width: calc(33.333% - 8px);
    }

    .tarif-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .kerastase-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .ambiance-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .ambiance-grid .ambiance-item {
        width: calc(50% - 6px);
    }


    .avis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .salons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .section {
        padding: 100px 0;
    }
}

/* =============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================= */

@media (min-width: 1024px) {
    .hero-mosaic {
        grid-template-columns: repeat(4, 1fr);
    }

    .mosaic-col--hide-tablet {
        display: flex;
    }

    .burger {
        display: none;
    }

    .nav {
        display: flex;
    }

    .header-socials {
        display: flex;
    }

    .prestations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .galerie-grid {
        gap: 16px;
    }

    .galerie-grid .galerie-item {
        width: calc(25% - 12px);
    }

    .ambiance-grid .ambiance-item {
        width: calc(33.333% - 8px);
    }

    .avis-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: 120px 0;
    }
}

/* =============================================
   RESPONSIVE — Large Desktop (1200px+)
   ============================================= */

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-logo {
        width: 180px;
        height: 180px;
    }
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   MOBILE PHONE FIXED BAR
   ============================================= */

.mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.mobile-bar a:first-child {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.mobile-bar a:hover {
    background: var(--pink);
}

.mobile-bar svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .mobile-bar {
        display: none;
    }
}

/* Add padding at bottom for mobile bar */
@media (max-width: 767px) {
    .footer {
        padding-bottom: 60px;
    }
}