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

:root {
    --rose-poudre: #b8928a;
    --beige: #f5f0eb;
    --beige-fonce: #e8e0d8;
    --vert-sauge: #9aada1;
    --dore: #b8a06a;
    --brun: #5c4a3a;
    --brun-clair: #7a6655;
    --gris-chaud: #6b6058;
    --blanc-casse: #faf8f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--brun);
    background: var(--blanc-casse);
    line-height: 1.7;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 146, 138, 0.2);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

nav .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brun);
    text-decoration: none;
    letter-spacing: 0.05em;
}

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

nav ul li a {
    text-decoration: none;
    color: var(--gris-chaud);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--rose-poudre);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brun);
    margin: 5px 0;
    transition: 0.3s;
}

/* ── LANG SWITCHER ── */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.3rem;
    border-radius: 4px;
    transition: transform 0.2s;
    margin-left: 1rem;
}

.lang-switch .lang-code {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--brun);
}

.lang-switch:hover {
    transform: scale(1.15);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--beige);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--rose-poudre);
}

.hero-content {
    position: relative;
    padding: 2rem;
}

.hero-content .line-accent {
    width: 3px;
    height: 120px;
    background: var(--dore);
    margin: 0 auto 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--brun);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--rose-poudre);
    margin-bottom: 1.5rem;
}

.hero .separator {
    width: 80px;
    height: 1px;
    background: var(--dore);
    margin: 0 auto 1.5rem;
}

.hero .tagline {
    font-size: 1rem;
    color: var(--vert-sauge);
    letter-spacing: 0.1em;
    font-weight: 300;
}

.hero .hero-desc {
    font-size: 1.05rem;
    color: var(--gris-chaud);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--rose-poudre);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.hero .cta-btn:hover {
    background: var(--brun);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 74, 58, 0.3);
}

.hero .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero .scroll-hint span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--dore);
    border-bottom: 2px solid var(--dore);
    transform: rotate(45deg);
    opacity: 0.5;
}

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

/* ── SECTIONS ── */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--brun);
    margin-bottom: 0.5rem;
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--rose-poudre);
    margin-bottom: 2.5rem;
}

/* ── VISION ── */
.vision {
    background: var(--blanc-casse);
}

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

.vision .text p {
    font-size: 1.05rem;
    color: var(--gris-chaud);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.vision .text strong {
    color: var(--brun);
    font-weight: 700;
}

.vision .image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--beige), var(--beige-fonce));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-poudre);
    font-size: 0.85rem;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.vision .image-placeholder img,
.creations-signatures .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── CREATIONS GALLERY ── */
.creations {
    background: var(--beige);
}

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

.creations .gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--beige-fonce), #d4ccc3);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-poudre);
    font-size: 0.85rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.creations .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.creations .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── GAMME REAL TOUCH ── */
.gamme {
    background: var(--blanc-casse);
}

.gamme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: none;
    border: 1px solid var(--rose-poudre);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--brun);
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.gamme-toggle:hover {
    background: var(--rose-poudre);
    color: #fff;
}

.gamme-toggle .arrow {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.gamme-toggle.open .arrow {
    transform: rotate(180deg);
}

.gamme-grid-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
}

.gamme-grid-wrapper.open {
    max-height: 6000px;
    opacity: 1;
}

.gamme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gamme-item {
    text-align: center;
    background: var(--beige);
    border-radius: 8px;
    padding: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gamme-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.gamme-item .flower-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--beige-fonce), #d4ccc3);
    border-radius: 6px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-poudre);
    font-size: 0.75rem;
}

.gamme-item .flower-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.gamme-item h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--brun);
}

/* ── CREATIONS SIGNATURES ── */
.creations-signatures {
    background: var(--beige);
}

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

.creations-signatures .image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--beige-fonce), #d4ccc3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-poudre);
    font-size: 0.85rem;
    overflow: hidden;
}

.creations-signatures .text {
    border-left: 3px solid var(--dore);
    padding-left: 2rem;
}

.creations-signatures .text h2 {
    margin-bottom: 1.5rem;
}

.creations-signatures .text p {
    font-size: 1.05rem;
    color: var(--gris-chaud);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

/* ── POURQUOI NOUS CHOISIR ── */
.pourquoi {
    background: var(--blanc-casse);
}

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

.pourquoi .card {
    background: #fff;
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 4px solid var(--vert-sauge);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pourquoi .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pourquoi .card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--brun);
    margin-bottom: 1.2rem;
}

.pourquoi .card p {
    font-size: 0.95rem;
    color: var(--gris-chaud);
    font-weight: 300;
}

/* ── NOTRE OFFRE ── */
.offre {
    background: var(--beige);
}

.offre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.offre-formule {
    background: var(--blanc-casse);
    border-top: 4px solid var(--rose-poudre);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.offre-formule--premium {
    border-top-color: var(--dore);
}

.offre-formule-header {
    margin-bottom: 1.5rem;
}

.offre-formule h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--brun);
    margin-bottom: 0.3rem;
}

.offre-accroche {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--rose-poudre);
}

.offre-formule--premium .offre-accroche {
    color: var(--dore);
}

.offre-formule ul {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.offre-formule ul li {
    padding: 0.5rem 0;
    font-weight: 300;
    color: var(--gris-chaud);
    font-size: 1rem;
    border-bottom: 1px solid var(--beige-fonce);
}

.offre-formule ul li::before {
    content: '\203A';
    color: var(--rose-poudre);
    margin-right: 0.8rem;
    font-weight: 700;
    font-size: 1.2em;
}

.offre-formule--premium ul li::before {
    color: var(--dore);
}

.offre-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gris-chaud);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
}

.contact-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--rose-poudre);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    text-align: center;
}

.contact-btn:hover {
    background: var(--brun);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 74, 58, 0.3);
}

.offre-formule--premium .contact-btn {
    background: var(--dore);
}

.offre-formule--premium .contact-btn:hover {
    background: var(--brun);
}

/* ── CONTACT SECTION ── */
.contact-section {
    background: var(--brun);
    text-align: center;
}

.contact-inner {
    max-width: 700px;
}

.contact-section h2 {
    color: #fff;
}

.contact-section .section-line {
    background: var(--dore);
    margin-left: auto;
    margin-right: auto;
}

.contact-accroche {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.contact-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dore);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.contact-cta:hover {
    background: var(--rose-poudre);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ── FOOTER ── */
footer {
    background: var(--gris-chaud);
    color: #fff;
    text-align: center;
    padding: 2rem 2rem;
}

footer h2 {
    color: #fff;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
}

footer .footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

footer .copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(184, 146, 138, 0.2);
    }

    nav ul.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

    .vision .grid,
    .creations-signatures .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .pourquoi .cards {
        grid-template-columns: 1fr;
    }

    footer .contacts {
        flex-direction: column;
        gap: 1.5rem;
    }

    section {
        padding: 4rem 1.5rem;
    }
}

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

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