/* ========================================
   KITCH & HAIR - Floriane Magnin
   Dreads Synthétiques Sur Mesure
   Cousset, Montagny, près de Payerne (Fribourg)
======================================== */

/* ========================================
   FONTS
======================================== */
@font-face {
    font-family: 'Truculenta';
    src: url('../fonts/Truculenta-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Truculenta';
    src: url('../fonts/Truculenta-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Nunito Light */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Light.woff2') format('woff2'),
         url('../fonts/Nunito-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-LightItalic.woff2') format('woff2'),
         url('../fonts/Nunito-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Nunito Regular */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Italic.woff2') format('woff2'),
         url('../fonts/Nunito-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Nunito SemiBold */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBold.woff2') format('woff2'),
         url('../fonts/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBoldItalic.woff2') format('woff2'),
         url('../fonts/Nunito-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* Nunito Bold */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-BoldItalic.woff2') format('woff2'),
         url('../fonts/Nunito-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    /* Palette Forestière */
    --mousse: #4a5d4a;
    --mousse-light: #5d7a5d;
    --terre: #8b7355;
    --terre-dark: #6b5344;
    --ecorce: #3d3229;
    --sable: #d4c4a8;
    --sable-light: #e8dcc8;
    --creme: #f5f1ea;
    --feuille-morte: #a67c52;

    /* Typography */
    --font-display: 'Truculenta', Georgia, serif;
    --font-body: 'Nunito', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: clamp(2rem, 5vw, 5rem);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 125%;
    color: var(--ecorce);
    background-color: var(--creme);
    overflow-x: hidden;
    max-width: 100vw;
}

/* ========================================
   ORGANIC SHAPES - Background elements
======================================== */
.organic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.organic-shape {
    position: absolute;
    border-radius: 60% 40% 70% 30% / 40% 50% 50% 60%;
    opacity: 0.08;
    animation: morph 20s ease-in-out infinite;
}

.shape-1 {
    width: 60vw;
    height: 60vw;
    background: var(--mousse);
    top: -20%;
    right: -20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 50vw;
    height: 50vw;
    background: var(--terre);
    bottom: -10%;
    left: -15%;
    animation-delay: -5s;
    border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
}

.shape-3 {
    width: 30vw;
    height: 30vw;
    background: var(--feuille-morte);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 70% 30% / 40% 50% 50% 60%;
        transform: rotate(0deg) scale(1);
    }
    50% {
        border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
        transform: rotate(45deg) scale(1.05);
    }
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.2;
    text-wrap: balance;
    line-height: 85%;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--ecorce);
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--mousse);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--terre-dark);
}

p {
    max-width: 65ch;
    text-wrap: balance;
}

strong {
    font-weight: 700;
}
/* ========================================
   LAYOUT
======================================== */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

section {
    padding: var(--section-padding) 0;
}

/* ========================================
   HEADER / NAV
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: linear-gradient(to bottom, var(--creme) 0%, transparent 100%);
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(245, 241, 234, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(61, 50, 41, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ecorce);
    text-decoration: none;
}

.logo span {
    color: var(--mousse);
}

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

.nav-links a {
    font-size: 0.9rem;
    color: var(--ecorce);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.25rem;
}

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

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

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--ecorce);
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--creme);
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
}

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

.hero-text {
    max-width: 540px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mousse);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--mousse);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--terre-dark);
    margin-bottom: 2.5rem;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
    overflow: hidden;
    aspect-ratio: 4/5;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--sable);
    border-radius: inherit;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--mousse-light);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-decoration-1 {
    top: 10%;
    right: -30px;
}

.hero-decoration-2 {
    bottom: 20%;
    left: -40px;
    width: 80px;
    height: 80px;
    border-color: var(--terre);
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   CTA BUTTONS
======================================== */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-group.centered {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--mousse);
    color: var(--creme);
}

.btn-primary:hover {
    background: var(--mousse-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 93, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--ecorce);
    border: 1.5px solid var(--terre);
}

.btn-secondary:hover {
    background: var(--terre);
    color: var(--creme);
}

.btn-light {
    background: rgba(255,255,255,0.15);
    color: var(--creme);
    border: 1.5px solid var(--sable);
}

.btn-light:hover {
    background: var(--sable);
    color: var(--ecorce);
}

.btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 900px) {
    .cta-group {
        justify-content: center;
    }
}

/* ========================================
   MANIFESTE SECTION
======================================== */
.manifeste {
    background: linear-gradient(135deg, var(--sable-light) 0%, var(--creme) 100%);
    position: relative;
}

.manifeste::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--creme), transparent);
}

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

.manifeste blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    color: var(--ecorce);
    line-height: 100%;
    position: relative;
    padding: 2rem 0;
    letter-spacing: -0.04em;
    text-wrap: balance;
    margin-bottom: .25em;
}
.manifeste blockquote span {
    color: var(--mousse);
}


.manifeste blockquote::before,
.manifeste blockquote::after {
    content: '"';
    font-size: 4rem;
    color: var(--mousse);
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.manifeste blockquote::before {
    top: 0;
    left: -0.5rem;
}

.manifeste blockquote::after {
    content: '"';
    bottom: 0;
    right: -0.5rem;
}

.manifeste-description {
    color: var(--terre-dark);
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

/* ========================================
   SECTION DREADS - Zone principale
======================================== */
.section-dreads {
    position: relative;
}

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

.section-header p {
    margin: 0 auto;
    color: var(--terre-dark);
}

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

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(61, 50, 41, 0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mousse), var(--terre));
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--sable-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    text-transform: none;
}

.service-card p {
    color: var(--terre-dark);
    font-size: 0.95rem;
}

.service-tag {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--sable-light);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--mousse);
    font-weight: 600;
}

/* ========================================
   PRICING INFO
======================================== */
.pricing-info {
    margin-top: 3rem;
    text-align: center;
}

.pricing-content {
    display: inline-block;
    background: var(--creme);
    border: 2px solid var(--mousse);
    border-radius: 10px;
    padding: 1.5rem 3rem;
}

.pricing-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--mousse);
    text-transform: uppercase;
    letter-spacing: 21;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pricing-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--mousse);
    line-height: 1;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--terre-dark);
    margin-top: 0.25rem;
    font-weight: 800;
}

.pricing-separator {
    font-size: 1.5rem;
    color: var(--mousse);
    font-weight: 300;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--terre-dark);
    font-style: italic;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 110%;
}

@media (max-width: 480px) {
    .pricing-content {
        padding: 1.5rem 2rem;
    }

    .pricing-details {
        gap: 1rem;
    }

    .pricing-separator {
        font-size: 1.2rem;
    }
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-showcase {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--sable-light) 0%, white 100%);
    border-radius: 30px;
}

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

.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 50, 41, 0.15);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Video Duo Layout */
.video-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.video-duo .video-wrapper {
    position: relative;
}

.video-duo .video-clip {
    transform: rotate(-2deg);
    z-index: 2;
}

.video-duo .video-elastique {
    transform: rotate(2deg) translateY(20px);
    margin-left: -1rem;
    z-index: 1;
}

.video-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--mousse);
    color: var(--creme);
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

@media (max-width: 600px) {
    .video-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-duo .video-clip,
    .video-duo .video-elastique {
        transform: none;
        margin-left: 0;
    }
}

.video-text h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
    color: var(--ecorce);
    text-transform: none;
    letter-spacing: -.025em;
}

.video-text p {
    color: var(--terre-dark);
    margin-bottom: 1.5rem;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--mousse);
    color: var(--creme);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 800px) {
    .video-content {
        grid-template-columns: 1fr;
    }

    .video-showcase {
        padding: 2rem;
    }
}

/* ========================================
   GALERIE DREADS
======================================== */
.galerie-dreads {
    background: var(--ecorce);
    color: var(--creme);
}

.galerie-dreads h2 {
    color: var(--sable);
    text-align: center;
}

.galerie-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--sable-light);
}

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

.galerie-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.galerie-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 50, 41, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerie-item:hover::after {
    opacity: 1;
}

/* Zoom icon on hover */
.galerie-item::before {
    content: '⤢';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ecorce);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.galerie-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Featured item (larger) */
.galerie-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 700px) {
    .galerie-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* CTA section after gallery */
.galerie-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: white;
    color: var(--ecorce);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

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

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

@media (max-width: 900px) {
    .lightbox-nav {
        display: none;
    }
}

/* ========================================
   PROCESSUS / COMMENT ÇA MARCHE
======================================== */
.processus {
    background: linear-gradient(180deg, var(--creme) 0%, var(--sable-light) 100%);
}

.processus p {
    margin: auto;
}

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

.processus-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    position: relative;
}

.step {
    text-align: left;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(61, 50, 41, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--mousse);
    color: var(--creme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
}

.step h3 {
    margin-bottom: 0.75rem;
    text-transform: none;
    color: var(--mousse);
}

.step p {
    color: var(--terre-dark);
    font-size: 0.95rem;
    margin: 0 auto;
}

.processus-cta {
    margin-top: 4rem;
    text-align: center;
}

/* ========================================
   SECTION COIFFURE (séparée)
======================================== */
.section-coiffure {
    background: white;
    position: relative;
}

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

.coiffure-text h2 {
    margin-bottom: 1rem;
}

.coiffure-text p {
    color: var(--terre-dark);
    margin-bottom: 1.5rem;
}

.coiffure-features {
    list-style: none;
    margin-bottom: 2rem;
}

.coiffure-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--terre-dark);
    border-bottom: 1px solid var(--sable-light);
}

.coiffure-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--mousse);
}

.coiffure-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

@media (max-width: 800px) {
    .coiffure-content {
        grid-template-columns: 1fr;
    }

    .coiffure-gallery {
        order: -1;
    }
}

/* ========================================
   CONTACT
======================================== */
.contact {
    background: linear-gradient(135deg, var(--sable-light) 0%, var(--creme) 100%);
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--terre-dark);
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ecorce);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(61, 50, 41, 0.1);
}

.contact-method-icon {
    width: 45px;
    height: 45px;
    background: var(--mousse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
}

.contact-method-text strong {
    color: var(--ecorce);
}

.contact-method-text span {
    font-size: 0.85rem;
    color: var(--terre);
}

/* Horaires */
.horaires {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sable);
}

.horaires h3 {
    font-size: 1.1rem;
    color: var(--mousse);
    margin-bottom: 1rem;
}

.horaires-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.horaires-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--terre-dark);
}

.horaires-list .ferme {
    color: var(--terre);
    font-style: italic;
}

.horaires-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--mousse);
    font-style: italic;
}

.contact-visual {
    position: relative;
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 800px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        order: -1;
    }
}

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

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--creme);
}

.footer-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--sable-light);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sable);
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--mousse);
    color: white;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: var(--terre);
}

/* ========================================
   FOOTER LEGAL SECTION
======================================== */
.footer__legal {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    column-gap: 32px;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.85rem;
    justify-content: space-between;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    row-gap: 16px;
    width: 100%;
}

.footer__legal-left {
    align-items: center;
    column-gap: 0.5em;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.5em;
}

.footer__copyright {
    opacity: 0.8;
    color: var(--sable);
}

.footer__legal-separator {
    margin: 0 0.25em;
    opacity: 0.5;
    color: var(--sable);
}

.footer__legal-link {
    color: var(--sable);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.25s ease-in-out;
}

.footer__legal-link:hover {
    opacity: 1;
}

.foc-copyright {
    flex-shrink: 0;
}

.focstudio-logo {
    align-items: center;
    display: flex;
}

.focstudio-link {
    align-items: center;
    color: var(--sable);
    column-gap: 0.75em;
    display: flex;
    row-gap: 0.75em;
    text-decoration: none;
    transition: opacity 0.25s ease-in-out;
}

.focstudio-link * {
    transition: all 0.25s ease-in-out;
}

.focstudio-link svg {
    background: var(--sable);
    height: auto;
    width: 80px;
}

.focstudio-link:hover .st0 {
    color: #ff3600;
}

.focstudio-link:hover svg {
    background-color: #f9f;
}

.focstudio-link span {
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: right;
    opacity: 0.7;
}

.focstudio-link svg .st0 {
    fill: #100701;
}

@media (max-width: 768px) {
    .footer-content {
        justify-content: center;
    }
    .footer__legal {
        column-gap: 16px;
        justify-content: center;
        row-gap: 16px;
        text-align: center;
    }

    .footer__legal-left,
    .footer__legal {
        align-items: center;
        flex-direction: column;
    }

    .footer__legal-separator {
        display: none;
    }
}

/* ========================================
   ANIMATIONS ON SCROLL
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--mousse);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
