/* ====================================
   RESET & BASE
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - BAROOF Branding */
    --primary: #ec5748;
    --primary-light: #d6ac7a;
    --primary-dark: #d84a3a;
    --navy: #1a2332;
    --navy-light: #243447;
    --navy-lighter: #2d3f54;
    --white: #FFFFFF;
    --gray-100: #F5F5F7;
    --gray-200: #E5E5EA;
    --gray-300: #C7C7CC;
    --gray-400: #8E8E93;
    --gray-500: #636366;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --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);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-100);
    background: #0a0a0a;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(214, 172, 122, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(214, 172, 122, 0.02) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* ====================================
   TYPOGRAPHY
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    font-weight: 600;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-300);
    max-width: 700px;
}

.highlight {
    font-family: var(--font-script);
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1em;
}

.underline-highlight {
    position: relative;
    z-index: 1;
}

.underline-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
    z-index: -1;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-400);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--navy-lighter);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ====================================
   HEADER
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(15, 20, 25, 0.3);
    backdrop-filter: blur(10px) saturate(100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.03) inset,
        0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 1px 3px rgba(255, 255, 255, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.25);
}

.header.scrolled .header-logo-animation {
    transform: scale(0.85);
}

.header.scrolled .nav-link {
    font-size: 0.875rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    width: 56px;
    height: 48px;
    color: var(--primary);
}

/* Animation du verre (balancement subtil) */
.logo:hover .logo-icon {
    animation: cocktailShake 0.5s ease-in-out;
}

@keyframes cocktailShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-300);
    position: relative;
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--navy);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

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

.hero-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 11;
    background: transparent;
    overflow: visible;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.7) blur(1px);
    opacity: 0.9;
}

/* Slideshow avec fade */
.hero-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.7) blur(1px);
}

.slide.active {
    opacity: 0.9;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(56px, 9vw, 86px);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.stat {
    text-align: left;
}

/* SUPPRIMÉ - règle en double, voir ligne 2153 */

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
    animation: float 2s ease-in-out infinite;
}

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

/* ====================================
   ANIMATED BUBBLES & DROPLETS
   ==================================== */
.bubbles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.video-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    text-align: center;
}

.video-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(255, 165, 0, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.video-overlay-text h3 {
    font-family: var(--font-script);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 600;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.9),
        0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0;
}

.bubble {
    position: absolute;
    top: 15%;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    opacity: 0;
    animation: bubbleRise 4s ease-in-out infinite;
    box-shadow:
        inset 0 0 3px rgba(255, 255, 255, 0.7),
        0 0 6px rgba(255, 255, 255, 0.4);
}

.bubble:nth-child(1) {
    left: 49%;
    width: 5px;
    height: 5px;
    animation-delay: 0s;
    animation-duration: 4s;
}

.bubble:nth-child(2) {
    left: 50%;
    width: 8px;
    height: 8px;
    animation-delay: 1s;
    animation-duration: 5s;
}

.bubble:nth-child(3) {
    left: 51%;
    width: 6px;
    height: 6px;
    animation-delay: 2s;
    animation-duration: 4.5s;
}

.bubble:nth-child(4) {
    left: 49.5%;
    width: 7px;
    height: 7px;
    animation-delay: 0.5s;
    animation-duration: 5.5s;
}

.bubble:nth-child(5) {
    left: 50.5%;
    width: 4px;
    height: 4px;
    animation-delay: 1.5s;
    animation-duration: 4.2s;
}

@keyframes bubbleRise {
    0% {
        top: 15%;
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0.3);
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateX(3px) translateY(-80px) scale(1);
    }
    100% {
        top: -10%;
        opacity: 0;
        transform: translateX(-5px) translateY(-160px) scale(0.5);
    }
}


/* ====================================
   SECTION LAYOUTS
   ==================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* ====================================
   FAÇON DE FAIRE
   ==================================== */
.facon-faire {
    background: var(--navy-light);
}

.facon-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.facon-image {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Slideshow dans facon-image */
.facon-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.facon-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.facon-slideshow .slide.active {
    opacity: 1;
}

/* Texte overlay sur les photos */
.facon-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    backdrop-filter: blur(2px);
    z-index: 2;
}

.facon-text-overlay .lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
    text-align: center;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.badge-100 {
    z-index: 3;
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 16px 24px;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--white);
}

.badge-100 span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-200);
    margin-bottom: 32px;
}

/* Liste simple et propre */
.valeurs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.valeurs-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.valeurs-list .valeur-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.valeurs-list .valeur-icon svg {
    width: 100%;
    height: 100%;
}

.valeurs-list strong {
    color: var(--white);
    font-weight: 600;
}

/* ====================================
   FORMULES
   ==================================== */
.formules-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--gray-300);
}

.info-item svg {
    color: var(--primary);
}

.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.formule-card {
    position: relative;
    background: var(--navy-light);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.formule-card.featured {
    border-color: var(--primary);
}

.formule-card:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 0 1px rgba(236, 87, 72, 0.3),
        0 8px 40px rgba(236, 87, 72, 0.2),
        0 12px 60px rgba(0, 0, 0, 0.3);
}

/* Première photo centrée pour voir le cocktail */
.formule-card:first-child .formule-image {
    background-position: center 45%;
}

.formule-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 100px;
    z-index: 10;
}

.formule-image {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.formule-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.formule-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    background: rgba(236, 87, 72, 0.9);
    padding: 4px 10px;
    border-radius: 4px;
}

.formule-content {
    padding: 20px;
}

.formule-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.formule-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-300);
    margin-bottom: 16px;
}

/* Prix compact */
.formule-pricing-compact {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-300);
}

.formule-pricing-compact strong {
    color: var(--white);
    font-size: 18px;
    margin-right: 4px;
}

/* Bouton petit */
.btn-sm {
    padding: 8px 20px !important;
    font-size: 14px !important;
}

.formule-pricing {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-item {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.price.highlight {
    color: var(--primary);
}

.price-unit {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-400);
}

.formule-features {
    list-style: none;
    margin-bottom: 32px;
}

.formule-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-300);
}

.formule-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ====================================
   ATELIERS - Bento Style
   ==================================== */
.ateliers {
    background: var(--navy-light);
}

.atelier-bento {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    min-height: 550px;
}

/* Photo principale avec slideshow */
.atelier-main-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.atelier-photo-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.atelier-photo-slideshow .photo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.atelier-photo-slideshow .photo-slide.active {
    opacity: 1;
}

/* Recadrage spécifique par photo */
.atelier-photo-slideshow .photo-slide:nth-child(1) {
    background-position: 88% center; /* Bateau trinquent - max à droite */
}

.atelier-photo-slideshow .photo-slide:nth-child(2) {
    background-position: 85% 40%; /* Marc shaker - verres à droite */
}

.atelier-photo-slideshow .photo-slide:nth-child(3) {
    background-position: center center; /* Bar intérieur - bien */
}

.atelier-photo-slideshow .photo-slide:nth-child(4) {
    background-position: 70% 55%; /* Table extérieur - voir la table pas la pelouse */
}

/* Card flottante glass */
.atelier-glass-card {
    position: relative;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(236, 87, 72, 0.15);
    transform: translateX(-60px);
    z-index: 2;
}

.atelier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(236, 87, 72, 0.2), rgba(236, 87, 72, 0.1));
    border: 1px solid rgba(236, 87, 72, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 20px;
}

.atelier-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.atelier-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 28px;
}

.atelier-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-300);
}

.include-item svg {
    flex-shrink: 0;
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.atelier-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.atelier-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.atelier-price .price-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
}

.atelier-price .price-per {
    font-size: 15px;
    color: var(--gray-400);
}

/* ====================================
   ADAPTÉ
   ==================================== */
.adapte {
    position: relative;
    padding: 200px 0;
    background:
        linear-gradient(rgba(15, 20, 25, 0.7), rgba(15, 20, 25, 0.7)),
        url('data:image/svg+xml,<svg width="1200" height="400" xmlns="http://www.w3.org/2000/svg"><rect width="1200" height="400" fill="%231a1f2e"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.adapte-title {
    font-size: 48px;
    margin-bottom: 24px;
}

.adapte-description {
    font-size: 20px;
    color: var(--gray-200);
}

/* ====================================
   TÉMOIGNAGES
   ==================================== */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.temoignage-card {
    padding: 24px;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.temoignage-card:hover {
    border-color: rgba(236, 87, 72, 0.2);
}

.temoignage-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.temoignage-stars svg {
    flex-shrink: 0;
}

.temoignage-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-200);
    margin-bottom: 20px;
    font-style: italic;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 2px;
}

.author-role {
    font-size: 12px;
    color: var(--gray-400);
}

.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
}

.google-review-badge svg {
    flex-shrink: 0;
}

.temoignages-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    aspect-ratio: 3/2;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Cadrage photos témoignages */
.temoignages-gallery .gallery-item:nth-child(1) {
    background-position: center 45%; /* Marc shake - voir son visage */
}

.temoignages-gallery .gallery-item:nth-child(2) {
    background-position: center 60%; /* Cocktail - visible en entier */
}

/* 2 dernières photos prennent plus de place */
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 1;
}

/* Sur mobile 3-2 devient 1-1-1-1-1 */
@media (max-width: 768px) {
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }
}

.temoignages-stat {
    text-align: center;
    font-size: 16px;
    color: var(--gray-300);
}

.temoignages-stat strong {
    color: var(--primary);
    font-size: 22px;
}

.temoignages-stat .stars {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    vertical-align: middle;
    margin-right: 8px;
}

.temoignages-stat .stars svg {
    display: inline-block;
    vertical-align: middle;
}

.temoignages-stat .google-logo {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.temoignages-stat .google-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.temoignages-stat .google-logo svg {
    display: block;
}

/* ====================================
   QUOTE SECTION
   ==================================== */
.quote-section {
    padding: 120px 0;
    background: var(--navy-light);
}

.quote-large {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-style: italic;
    line-height: 1.5;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

/* ====================================
   POURQUOI
   ==================================== */
.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.pourquoi-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pourquoi-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 149, 0, 0.2);
    transform: translateY(-4px);
}

.pourquoi-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: rgba(255, 149, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.pourquoi-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pourquoi-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-400);
}

/* ====================================
   CUSTOM SECTION
   ==================================== */
.custom-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.05) 0%, transparent 100%);
}

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

.custom-title {
    font-size: clamp(32px, 5vw, 48px);
}

/* ====================================
   CLIENTS
   ==================================== */
.clients {
    background: var(--navy-light);
    padding: 80px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 48px;
    margin-top: 48px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.client-logo img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .client-logo img {
        max-width: 100px;
        max-height: 60px;
    }
}

/* ====================================
   CONTACT
   ==================================== */
.contact {
    background: var(--navy-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 24px;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 149, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.method-label {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.method-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.method-value:hover {
    color: var(--primary);
}

.contact-note {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 149, 0, 0.05);
    border: 1px solid rgba(255, 149, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-300);
}

.contact-note svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

/* Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-privacy {
    font-size: 13px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 8px;
}

/* Custom Select Styling */
.form-group {
    position: relative;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d6ac7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ec5748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Date Input Styling */
.form-group input[type="date"] {
    position: relative;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d6ac7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 12px;
    cursor: pointer;
    opacity: 0;
    width: 20px;
    height: 20px;
}

.form-group input[type="date"]:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ec5748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

/* Error State - Orange Highlight */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff9500;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
    animation: shake 0.3s ease-in-out;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ff9500;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.2);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Success State - Green Glow */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #34C759;
    box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.1);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(40px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
        0 -10px 40px rgba(0, 0, 0, 0.2);
}

.footer-content {
    padding: 32px 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-left {
    text-align: left;
}

.footer-left h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px 0;
}

.footer-tagline {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 4px 0;
}

.footer-location {
    font-size: 13px;
    color: var(--gray-400);
    margin: 0;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.footer-center a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: color 0.2s ease;
}

.footer-center a:hover {
    color: var(--primary);
}

.footer-dot {
    color: var(--gray-600);
    font-size: 12px;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-contact-link {
    font-size: 13px;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--navy);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .atelier-bento {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .atelier-main-photo {
        height: 300px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .atelier-glass-card {
        transform: translateX(0);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        padding: 30px 24px;
        border-top: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .header .btn-primary {
        display: none;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-video-container {
        aspect-ratio: 9 / 13;
        max-height: 60vh;
    }

    .video-overlay-text {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .video-overlay-text h3 {
        font-size: 24px;
    }

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

    .hero-stats {
        gap: 32px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ====================================
   LOGO ANIMATION SECTION
   ==================================== */
.logo-hero {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    padding: 4rem 0 2rem;
    overflow: visible;
}

.logo-animation-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Logo PLEINES */
.logo-solid {
    position: relative;
    animation:
        logoStagger 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both,
        fadeOut 0.5s ease-out 0.6s both;
}

.logo-svg-solid {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo COMPLET */
.logo-complete {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.6s both;
}

.logo-svg-complete {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes logoStagger {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(-30px);
    }
    70% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeOut {
    to { opacity: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Verre se dessine */
.glass-stroke {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawGlass 1.2s ease-out 0.6s both;
}

@keyframes drawGlass {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animation lettres */
.letters {
    animation: lettersFloat 4s ease-in-out 2.5s infinite;
    transform-origin: center;
}

@keyframes lettersFloat {
    0%, 100% {
        transform: translateY(0);
        filter: brightness(1);
    }
    50% {
        transform: translateY(-3px);
        filter: brightness(1.05);
    }
}

/* Liquide */
.wine-liquid {
    animation:
        liquidFill 1s ease-out 1.5s both,
        liquidWave 2.8s ease-in-out 2.5s infinite;
    transform-origin: center;
    clip-path: inset(100% 0 0 0);
}

@keyframes liquidFill {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0% 0 0 0);
    }
}

@keyframes liquidWave {
    0%, 100% {
        transform: rotate(0deg) translateY(0) skewX(0deg);
    }
    15% {
        transform: rotate(-2.5deg) translateY(-10px) skewX(-2.5deg);
    }
    30% {
        transform: rotate(0deg) translateY(0) skewX(0deg);
    }
    45% {
        transform: rotate(2.5deg) translateY(-8px) skewX(2.5deg);
    }
    60% {
        transform: rotate(0deg) translateY(0) skewX(0deg);
    }
    75% {
        transform: rotate(-1.5deg) translateY(-5px) skewX(-1.5deg);
    }
}

/* Goutte */
.wine-drop {
    opacity: 0;
    animation: dropFade 0.6s ease-out 2.2s both;
}

@keyframes dropFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover effects */
.logo-animation-container:hover {
    filter: drop-shadow(0 10px 30px rgba(236, 87, 72, 0.3));
}

@keyframes liquidWaveHover {
    0%, 100% {
        transform: rotate(0deg) translateY(0) skewX(0deg);
    }
    25% {
        transform: rotate(-5deg) translateY(-15px) skewX(-4deg);
    }
    50% {
        transform: rotate(0deg) translateY(0) skewX(0deg);
    }
    75% {
        transform: rotate(5deg) translateY(-12px) skewX(4deg);
    }
}

@media (max-width: 768px) {
    .logo-animation-container {
        max-width: 300px;
    }
    
    .logo-hero {
        padding: 3rem 0 1.5rem;
    }
}

/* ====================================
   HEADER LOGO ANIMATION
   ==================================== */
.header-logo-animation {
    position: relative;
    width: 80px;
    height: auto;
}

.logo-solid-header {
    display: none !important;
}

.logo-complete-header {
    position: relative;
    opacity: 1 !important;
    animation: none !important;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.6s both;
}

.header-logo-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Disable old logo styles for the animated version */
.logo .logo-icon {
    display: none;
}

.logo .logo-text {
    display: none;
}

/* Footer logo text */
.logo-text-footer {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text-footer .highlight {
    color: var(--primary);
}

/* Header logo hover effects */

.header-logo-animation {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo-animation:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(236, 87, 72, 0.4));
}

/* Typography improvements */
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .header-logo-animation {
        width: 60px;
    }
}

/* Fix hover - le liquide reste visible */
}

.header-logo-animation:hover .letters {
    filter: brightness(1.1);
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(236, 87, 72, 0.3));
}

/* ====================================
   TYPOGRAPHY OVERHAUL - MODERNE & COHÉRENT
   ==================================== */

/* Titres - Bold et impactant */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

/* Body text - Lisible et aéré */
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Section labels - Uppercase et espacé */
.section-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
}

/* Highlights */
.highlight {
    color: var(--primary);
    font-weight: inherit;
}

.underline-highlight {
    position: relative;
    display: inline-block;
}

.underline-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.15em;
    background: var(--primary);
    opacity: 0.3;
}

/* Buttons - Modern et bold */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
}

/* Hero section */
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Section titles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-200);
}

/* Card titles */
.formule-title,
.valeur-card h3,
.pourquoi-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Pricing */
.price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.price-unit {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

/* SUPPRIMÉ - règle en double, voir ligne 2153 */

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Testimonials */
.temoignage-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
    font-style: normal;
}

/* Navigation */
.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Footer */
.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* Responsive typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.125rem;
    }
}

/* ====================================
   STYLE DÉJANTÉ - MI-SÉRIEUX MI-OUF
   ==================================== */

/* Fonts déjantées */
h1, .hero-title {
    font-family: 'Bebas Neue', 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 6.5vw, 4.5rem) !important;
    line-height: 0.95 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase;
}

h2, .section-title {
    font-family: 'Archivo Black', 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
}

h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
}

body, p, .lead {
    font-family: 'DM Sans', sans-serif;
}

/* Section labels - plus stylé */
.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em !important;
    color: var(--primary-light) !important;
    border: 2px solid var(--primary-light);
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 100px;
    background: rgba(214, 172, 122, 0.1);
}

/* Highlights avec effet */
.highlight {
    color: var(--primary);
    font-style: italic;
    position: relative;
}

.underline-highlight {
    position: relative;
    display: inline-block;
    font-style: italic;
}

.underline-highlight::after {
    content: '';
    position: absolute;
    left: -0.1em;
    bottom: 0.05em;
    width: 105%;
    height: 0.4em;
    background: var(--primary);
    opacity: 0.25;
    transform: rotate(-1deg);
    z-index: -1;
}

/* BOUTONS - NOUVEAU STYLE */
.btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 3px solid currentColor;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

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

.btn-primary::before {
    background: var(--primary-light);
}

.btn-primary:hover {
    transform: scale(1.05) rotate(-2deg);
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(236, 87, 72, 0.4);
}

.btn-primary:hover::before {
    left: 0;
}

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

.btn-secondary::before {
    background: var(--white);
}

.btn-secondary:hover {
    transform: scale(1.05) rotate(2deg);
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover::before {
    left: 0;
}

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

.btn-outline::before {
    background: var(--primary);
}

.btn-outline:hover {
    transform: scale(1.05) rotate(-1deg);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(236, 87, 72, 0.3);
}

.btn-outline:hover::before {
    left: 0;
}

/* Navigation links */
.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.nav-link:hover {
    color: var(--primary) !important;
    transform: none !important;
}

/* Hero badge */
.hero-badge {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    background: rgba(236, 87, 72, 0.15);
    border: 2px solid var(--primary);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Stats - RÈGLE UNIQUE avec taille fixe pour éviter tout problème de rendu */
.stat-number {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2rem !important;
    letter-spacing: 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    display: inline-block !important;
    color: #ec5748 !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    text-shadow: none !important;
    max-width: none !important;
    width: auto !important;
}

/* Unités des stats (%, h) - séparées pour forcer l'affichage */
.stat-unit {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2rem !important;
    color: #ec5748 !important;
    font-weight: 700 !important;
    display: inline !important;
    margin-left: 0 !important;
    padding: 0 !important;
}

.stat {
    overflow: visible !important;
    min-width: max-content !important;
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Price - style signature */
.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem !important;
    letter-spacing: 0.02em !important;
}

/* Formule cards */
.formule-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.formule-badge-top {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Testimonials */
.temoignage-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem !important;
    line-height: 1.75 !important;
    font-style: italic;
}

/* Footer logo */
.logo-text-footer {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem !important;
    letter-spacing: 0.05em;
}

/* Effets playful sur certains éléments */
.formule-card:hover {
    transform: rotate(-1deg) scale(1.02);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.valeur-card:hover {
    transform: translateY(-4px) rotate(0.5deg);
    transition: transform 0.3s ease;
}

.temoignage-card:hover {
    transform: scale(1.02) rotate(-0.5deg);
    transition: transform 0.3s ease;
}


/* ====================================
   DA FINALE - BARMAN STYLÉ
   ==================================== */

/* UNE SEULE FONT - Space Grotesk partout */
* {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* FONDS AVEC DÉGRADÉS */
body {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

/* Header avec dégradé riche */
header {
    background: linear-gradient(135deg, #1a2332 0%, #243447 50%, #1a2332 100%) !important;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(236, 87, 72, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(214, 172, 122, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Navigation */
nav {
    background: rgba(26, 35, 50, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Hero section avec effet */
.hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a2332 100%) !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(236, 87, 72, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Sections alternées avec VRAI contraste */
.facon-faire {
    background: linear-gradient(180deg, #0f1419 0%, #0a0a0a 100%) !important;
}

.formules {
    background: linear-gradient(180deg, #1a2332 0%, #243447 100%) !important;
    position: relative;
}

.formules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(214, 172, 122, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ateliers {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f1419 100%) !important;
}

.adapte {
    background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%) !important;
}

.temoignages {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%) !important;
}

.quote-section {
    background: linear-gradient(135deg, #ec5748 0%, #d6ac7a 100%) !important;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pourquoi {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a2332 100%) !important;
}

.custom-section {
    background: linear-gradient(135deg, #243447 0%, #1a2332 100%) !important;
}

.contact {
    background: linear-gradient(180deg, #1a2332 0%, #0a0a0a 100%) !important;
}

footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%) !important;
}

/* TYPOGRAPHIE COHÉRENTE */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.1 !important;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem) !important;
    font-weight: 800 !important;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem) !important;
    font-weight: 600 !important;
}

p, .lead {
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

/* CARDS avec effet de profondeur */
.formule-card,
.valeur-card,
.pourquoi-card,
.temoignage-card {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.5) 0%, rgba(36, 52, 71, 0.3) 100%) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 172, 122, 0.1);
    transition: all 0.4s ease;
}

.formule-card:hover,
.valeur-card:hover,
.pourquoi-card:hover,
.temoignage-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(236, 87, 72, 0.3);
    box-shadow: 0 12px 40px rgba(236, 87, 72, 0.2);
}

.formule-card.featured {
    border: 2px solid rgba(236, 87, 72, 0.5) !important;
    background: linear-gradient(135deg, rgba(236, 87, 72, 0.1) 0%, rgba(214, 172, 122, 0.05) 100%) !important;
}

/* LABELS avec glow */
.section-label {
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    color: var(--primary-light) !important;
    text-shadow: 0 0 20px rgba(214, 172, 122, 0.3);
}

/* HIGHLIGHTS */
.highlight {
    color: var(--primary) !important;
    text-shadow: 0 0 20px rgba(236, 87, 72, 0.4);
}

/* BOUTONS - Style bar/cocktail */
.btn {
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase;
    border-radius: 8px !important;
    border: 2px solid currentColor !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d84a3a 100%) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(236, 87, 72, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(236, 87, 72, 0.5) !important;
}

.btn-secondary {
    background: transparent !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

.btn-outline {
    background: transparent !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #d84a3a 100%) !important;
    color: var(--white) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(236, 87, 72, 0.4) !important;
}

/* NAVIGATION */
.nav-link::after {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    height: 2px !important;
}

/* SUPPRIMÉ - text-shadow trop fort cachait les % et h */

/* PRIX avec glow */
.price.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FORM INPUTS */
input, select, textarea {
    background: rgba(26, 35, 50, 0.5) !important;
    border: 1px solid rgba(214, 172, 122, 0.2) !important;
    color: var(--white) !important;
    backdrop-filter: blur(10px);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(236, 87, 72, 0.2) !important;
}

/* HERO VIDEO */
.hero-video-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(214, 172, 122, 0.1);
}


/* HEADER LOGO - Sans effet sur les lettres */
.header-logo-animation:hover .letters {
    filter: none !important;
    transform: none !important;
}

.header-logo-animation:hover {
    transform: none !important;
    filter: none !important;
}

/* Juste un effet subtil sur le container */
.header-logo-animation {
    transition: opacity 0.3s ease;
}

.header-logo-animation:hover {
    opacity: 0.9;
}


/* HEADER - Dégradé renforcé */
header.header {
    background: linear-gradient(135deg, #1a2332 0%, #243447 50%, #2d3f54 100%) !important;
    overflow: hidden;
}

header.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(236, 87, 72, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(214, 172, 122, 0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

header.header .container,
header.header .header-content {
    position: relative;
    z-index: 1;
}


/* Supprimer contours/backgrounds sur navigation */
.nav,
.header nav,
nav.nav {
    background: transparent !important;
    box-shadow: none !important;
}

.nav-link,
.header .nav-link {
    background: transparent !important;
    text-shadow: none !important;
}


/* NAVIGATION - Hover stylé */
.nav-link {
    position: relative;
    transition: color 0.3s ease !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(0) !important;
}

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

/* HERO - Avec espace pour header fixe */
.hero {
    padding: 160px 0 3rem 0 !important;
}

.hero-grid {
    gap: 2rem !important;
    align-items: center !important;
}

.hero-content {
    max-width: 100% !important;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    margin-bottom: 1.5rem !important;
}

.hero-description {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    max-width: 90% !important;
}

.hero-cta {
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.hero-stats {
    margin-top: 2rem !important;
    gap: 1.5rem !important;
}

.hero-video-container {
    max-width: 100% !important;
    height: auto !important;
}

.hero-badge {
    margin-bottom: 1.5rem !important;
    font-size: 0.8125rem !important;
    padding: 0.625rem 1.25rem !important;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 !important;
    }
}


/* VIDÉO - Meilleure intégration */
.hero-video-container {
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(214, 172, 122, 0.2) !important;
    position: relative;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(236, 87, 72, 0.1) 0%,
        transparent 40%,
        transparent 60%,
        rgba(214, 172, 122, 0.1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay text plus intégré */
/* Supprimé - background moved to hero-video-container::after */

.video-tag {
    background: rgba(236, 87, 72, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem !important;
    border-radius: 100px !important;
    font-size: 0.625rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Bulles plus discrètes */
.bubble {
    opacity: 0.4 !important;
}


/* LOGO HEADER - Hover stylé */
.header-logo-animation {
    transition: transform 0.3s ease, filter 0.3s ease !important;
}

.header-logo-animation:hover {
    transform: scale(1.08) !important;
    filter: drop-shadow(0 4px 20px rgba(236, 87, 72, 0.4)) !important;
    opacity: 1 !important;
}

.header-logo-animation:hover .wine-liquid {
    filter: brightness(1.15);
}

.header-logo-animation:hover .letters {
    filter: brightness(1.1);
}


/* BOUTONS - Effet simple sans rond bizarre */
.btn::before {
    display: none !important;
}

.btn {
    transition: all 0.3s ease !important;
}

.btn:hover {
    transform: scale(1.05) !important;
}

/* VIDÉO - Sans overlay bizarre */
.hero-video-container::before {
    display: none !important;
}

/* Background gradient sur toute la vidéo (voir ligne ~440) */

.video-tag {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.video-overlay-text h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

