/* ==============================================
   Le Physa'Lyze — Feuille de styles principale
   Mobile First · Responsive · Élégant & naturel
   ============================================== */

/* --- Variables CSS --- */
:root {
    --color-primary: #C2722A;
    --color-primary-dark: #a5601f;
    --color-primary-light: #d4883a;
    --color-primary-glow: rgba(194, 114, 42, 0.15);
    --color-bg: #FEFCF7;
    --color-bg-warm: #f9f5f0;
    --color-bg-alt: #f3ece3;
    --color-text: #3B2A1A;
    --color-text-light: #6b5a4a;
    --color-text-muted: #8a7a6a;
    --color-white: #ffffff;
    --color-border: #e8ddd0;
    --color-border-light: #f0e8dc;
    --color-success: #2d7a3a;
    --color-success-bg: #e8f5e9;
    --color-error: #c62828;
    --color-error-bg: #fce4ec;
    --color-info: #1565c0;
    --color-info-bg: #e3f2fd;
    --color-gold: #d4a853;

    --font-display: 'Dancing Script', cursive;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(59, 42, 26, 0.06), 0 1px 2px rgba(59, 42, 26, 0.04);
    --shadow-md: 0 4px 16px rgba(59, 42, 26, 0.08), 0 2px 6px rgba(59, 42, 26, 0.04);
    --shadow-lg: 0 12px 40px rgba(59, 42, 26, 0.12), 0 4px 12px rgba(59, 42, 26, 0.06);
    --shadow-xl: 0 20px 60px rgba(59, 42, 26, 0.15), 0 8px 20px rgba(59, 42, 26, 0.08);
    --shadow-glow: 0 0 30px rgba(194, 114, 42, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 85px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    75% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(194, 114, 42, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(194, 114, 42, 0); }
}

.animate-in {
    animation: fadeInUp 0.6s var(--transition) both;
}

/* --- Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

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

a:hover, a:focus {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.25;
    margin: 0 0 0.75em;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 1em;
}

address {
    font-style: normal;
}

::selection {
    background: var(--color-primary-glow);
    color: var(--color-text);
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 720px;
}

.container-md {
    max-width: 900px;
}

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

.text-muted {
    color: var(--color-text-muted);
}

.lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-light);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: var(--header-height);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(254, 252, 247, 0.97);
    border-bottom-color: var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition);
}

.logo:hover .logo-img {
    opacity: 0.85;
}

/* Navigation */
.main-nav {
    display: none;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.15rem;
}

.nav-list a {
    display: block;
    padding: 0.5rem 1.1rem;
    color: var(--color-text-light);
    font-size: 0.92rem;
    font-weight: 400;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: transform var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Navigation événement highlight */
.nav-event-highlight {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

.nav-event-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #e53e3e;
    border-radius: 50%;
    margin-left: 2px;
    vertical-align: super;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* Phone header */
.header-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    flex-shrink: 0;
    background: var(--color-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    transition: all var(--transition);
}

.header-phone:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--color-bg-warm);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

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

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile nav */
.main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: var(--color-bg);
    z-index: 999;
    padding: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: fadeIn 0.25s ease;
}

.main-nav.open .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
}

.main-nav.open .nav-list a {
    font-size: 1.15rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    color: var(--color-text);
}

.main-nav.open .nav-list a::after {
    display: none;
}

.main-nav.open .nav-list a:hover,
.main-nav.open .nav-list a.active {
    background: var(--color-primary-glow);
    color: var(--color-primary);
}

.main-nav.open .nav-event-highlight {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.3);
}

/* Floating call */
.floating-call {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    right: max(1.5rem, env(safe-area-inset-right, 0px));
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg), 0 0 0 0 rgba(194, 114, 42, 0.3);
    z-index: 900;
    transition: all var(--transition);
    animation: pulse 2s infinite;
}

.floating-call:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), #8a4f15);
    color: var(--color-white);
    transform: scale(1.1);
    animation: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(194, 114, 42, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(194, 114, 42, 0.35);
    color: var(--color-white);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 114, 42, 0.25);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.4rem;
    font-size: 0.88rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* small viewport - stable malgre la barre d'adresse mobile */
    display: flex;
    flex-direction: column;
    background: url('/assets/img/hero-bg.webp') center/cover no-repeat;
    overflow: hidden;
    padding: calc(var(--header-height) + 2rem) 1.5rem 0;
}

.hero .hero-content {
    flex: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 28, 15, 0.6);
}

.hero::after {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
}

.hero-left {
    animation: fadeInUp 0.8s ease both;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(194, 114, 42, 0.25);
    border: 1px solid rgba(194, 114, 42, 0.5);
    color: var(--color-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

/* Logo */
.hero-logo {
    margin-bottom: 0.5rem;
}

.hero-logo-img {
    max-width: 650px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    animation: heroFloat 3s ease-in-out infinite;
}

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

/* Tagline sous le logo */
.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

/* Séparateur */
.hero-separator {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto 1.25rem;
    border-radius: 2px;
}

/* Description */
.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 480px;
}

/* CTA */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

/* Bandeau features en bas du hero */
.hero-features-wrapper {
    background: var(--color-bg-warm);
    border-bottom: 1px solid var(--color-border-light);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem;
}

.hero-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-radius: 50%;
}

.hero-feature strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text);
}

.hero-feature small {
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* --- Sections --- */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* Page hero (sous-pages) */
.page-hero {
    background: linear-gradient(160deg, #2a1c0f 0%, #3B2A1A 40%, #5a3d2a 100%);
    padding: calc(var(--header-height) + 3.5rem) 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 28, 15, 0.35) 0%, rgba(42, 28, 15, 0.65) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.4;
}

/* Hero avec photo par page */
.page-repas .page-hero {
    background: url('/assets/img/repasdomicile.webp') center/cover no-repeat;
}

.page-banquets .page-hero {
    background: url('/assets/img/banquet.webp') center/cover no-repeat;
}

.page-distributeur .page-hero {
    background: url('/assets/img/distributeur2.webp') center/cover no-repeat;
}

.page-evenements .page-hero {
    background: url('/assets/img/banquet.webp') center/cover no-repeat;
    position: relative;
}

.page-galerie .page-hero {
    background: url('/assets/img/hero-bg.webp') center/cover no-repeat;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease both;
}

.page-subtitle {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease 0.1s both;
}

/* --- Services cards --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    opacity: 0.3;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    color: var(--color-text);
    background: linear-gradient(180deg, #fffaf5 0%, var(--color-white) 100%);
}

.service-card:hover::before {
    opacity: 1;
    height: 4px;
}

.service-icon {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--color-primary-glow);
    border-radius: 50%;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(194, 114, 42, 0.2);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.service-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* --- About --- */
.about {
    background: var(--color-bg-warm);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

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

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-image img {
    width: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    display: none;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-gold);
    font-style: italic;
}

.about-content h2 {
    position: relative;
    display: inline-block;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--color-bg);
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollTestimonials 60s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: linear-gradient(180deg, var(--color-white) 0%, #fdfaf6 100%);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.5rem 2rem;
    margin: 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    min-width: 420px;
    max-width: 480px;
    flex-shrink: 0;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 0 0 4px 4px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.88rem;
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    opacity: 0.4;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.1;
    pointer-events: none;
    user-select: none;
}

/* --- CTA Band --- */
.cta-band {
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08), transparent 60%),
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.03) 20px,
            rgba(255,255,255,0.03) 22px
        );
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

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

.cta-band .btn-primary:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.cta-band .btn-outline {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.5);
}

.cta-band .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

/* --- Info cards (repas page) --- */
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* 3 colonnes sur tablette+ (utilise sur la page distributeur) */
@media (min-width: 768px) {
    .info-cards--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary-glow);
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}

.info-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.info-card small {
    font-size: 0.85rem;
}

/* --- Menu événement (spécial) --- */
.event-menu-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.event-menu-card {
    background: linear-gradient(135deg, #fffdf5 0%, #fff8e7 50%, #fef3d6 100%);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.15);
}

.event-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-primary));
}

.event-menu-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), #c4952e);
    color: var(--color-white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.event-menu-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.event-menu-desc {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.event-menu-content {
    background: var(--color-white);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--color-text);
    text-align: left;
}

.event-menu-price {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* --- Menu display --- */
.menu-week {
    margin-bottom: 3.5rem;
}

.menu-week-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.menu-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
}

.menu-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
    gap: 1rem;
    transition: background var(--transition);
}

.menu-item:hover {
    background: var(--color-bg-warm);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-day {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    min-width: 160px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.menu-dots {
    flex: 1;
    border-bottom: 2px dotted var(--color-border);
    min-width: 20px;
}

.menu-date {
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--color-text-light);
    font-size: 0.85em;
}

.menu-dish {
    color: var(--color-text);
    text-align: right;
}

.menu-empty {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    padding: 2.5rem;
    background: var(--color-bg-warm);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-border);
}

.allergen-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
}

.allergen-notice svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.allergen-notice p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- Products (distributeur) --- */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-left: 3px solid var(--color-primary);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin: 0;
}

.product-price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.15rem;
}

.product-badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.badge-available {
    background: var(--color-success-bg);
    color: var(--color-success);
}

.badge-unavailable {
    background: var(--color-error-bg);
    color: var(--color-error);
}

/* --- Distributeur : catégories --- */
.distrib-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.distrib-category {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.distrib-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--color-primary-glow);
}

.distrib-category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-glow);
    border-radius: 50%;
    color: var(--color-primary);
}

.distrib-category h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.distrib-category p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.distrib-price {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.05rem;
}

/* --- FAQ accordéon --- */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item[open] {
    border-color: var(--color-primary-glow);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.15rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-item[open] .faq-question {
    color: var(--color-primary);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.address-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 1.5rem;
}

/* --- Prestations --- */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.prestation-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.prestation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-glow);
}

.prestation-card:hover svg {
    transform: scale(1.1);
}

.prestation-card svg {
    transition: transform var(--transition);
}

.prestation-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 1rem 0 0;
}

/* --- Gallery --- */
.gallery-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-bg-warm);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
}

.gallery-coming-soon svg {
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.gallery-coming-soon p {
    margin: 0.25rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    background: var(--color-bg-warm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
}

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

.gallery-item.is-hidden {
    display: none;
}

/* --- Galerie : featured (mise en avant) --- */
.gallery-featured-section {
    background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
}

.gallery-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    align-items: start;
}

.gallery-featured-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    cursor: zoom-in;
    background: var(--color-bg-warm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-featured-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.gallery-featured-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-featured-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 42, 26, 0.85) 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* --- Galerie : filtres catégories --- */
.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.gallery-filter-tab {
    appearance: none;
    background: var(--color-white);
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.gallery-filter-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.gallery-filter-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.gallery-filter-count {
    background: rgba(0, 0, 0, 0.08);
    color: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    line-height: 1.4;
}

.gallery-filter-tab.active .gallery-filter-count {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(20, 14, 8, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.25s ease;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-figure {
    margin: 0;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    background: #000;
}

.lightbox-caption {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
    max-width: 90vw;
}

.lightbox-counter {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

.lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
}

.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

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

/* --- Galerie : responsive --- */
@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .gallery-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lightbox-close { top: 2rem; right: 2rem; }
    .lightbox-prev { left: 2rem; }
    .lightbox-next { right: 2rem; }
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 56px;
        height: 56px;
    }
}

/* --- Zone de livraison : recherche + radar --- */
.delivery-intro {
    color: var(--color-text-light);
}

.delivery-search-wrap {
    position: relative;
    /* Au-dessus de la carte radar : les blocs .reveal créent chacun un stacking
       context (transform), sans ce z-index les suggestions passent dessous */
    z-index: 60;
    max-width: 420px;
    margin: 1.75rem auto 0;
}

.delivery-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.3rem;
    z-index: 50;
}

.delivery-suggestion {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    width: 100%;
    padding: 0.6rem 0.85rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}

.delivery-suggestion:hover {
    background: var(--color-bg-warm);
}

.delivery-suggestion small {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}

.delivery-suggestion--empty {
    cursor: default;
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.delivery-suggestion--empty:hover {
    background: transparent;
}

.delivery-result[hidden] {
    display: none;
}

.delivery-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 420px;
    margin: 0.85rem auto 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.15rem;
    box-shadow: var(--shadow-sm);
}

.delivery-result-name {
    font-weight: 700;
    margin: 0;
}

.delivery-result-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.delivery-result-fee {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    white-space: nowrap;
}

.delivery-radar-card {
    max-width: 640px;
    margin: 2rem auto 0;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem 1rem 0.85rem;
}

.delivery-radar {
    width: 100%;
    height: auto;
    display: block;
}

.delivery-ring-label {
    font-family: var(--font-body);
    font-size: 13px;
    fill: var(--color-text-muted);
    paint-order: stroke;
    stroke: var(--color-white);
    stroke-width: 4px;
    stroke-linejoin: round;
}

.delivery-commune-label {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    fill: var(--color-text-light);
    paint-order: stroke;
    stroke: var(--color-white);
    stroke-width: 4px;
    stroke-linejoin: round;
}

.delivery-center-label {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    fill: var(--color-text);
    paint-order: stroke;
    stroke: var(--color-white);
    stroke-width: 4px;
    stroke-linejoin: round;
}

.delivery-radar-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0.5rem 0 0;
}

.delivery-all {
    max-width: 800px;
    margin: 1.5rem auto 0;
}

.delivery-all summary {
    list-style: none;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    user-select: none;
}

.delivery-all summary::-webkit-details-marker {
    display: none;
}

.delivery-all summary::after {
    content: ' ▾';
    font-size: 0.8em;
}

.delivery-all[open] summary::after {
    content: ' ▴';
}

.delivery-all summary:hover {
    background: var(--color-primary-glow);
}

.delivery-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem 2rem;
    margin-top: 1.25rem;
}

.delivery-group h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.35rem;
    margin-bottom: 0.5rem;
}

.delivery-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.delivery-group li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.35rem 0;
    border-bottom: 1px dashed var(--color-border-light);
    font-size: 0.92rem;
}

.delivery-group li small {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.delivery-fee {
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .delivery-radar-card {
        padding: 0.85rem 0.5rem 0.65rem;
        border-radius: var(--radius-md);
    }
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.contact-info h2::after,
.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.contact-item:hover {
    background: var(--color-bg-warm);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
}

.contact-item p {
    margin: 0;
    font-size: 1.05rem;
}

.social-icon {
    color: var(--color-primary);
}

/* --- Forms --- */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: none;
    padding: 0;
    margin: 0;
}

.form-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.required {
    color: var(--color-error);
}

.form-input {
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: all var(--transition);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-glow);
}

.form-input::placeholder {
    color: var(--color-text-muted);
    font-weight: 300;
}

.form-input.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-border-light);
    border-radius: 100px;
    transition: all var(--transition);
}

.checkbox-label:hover {
    border-color: var(--color-primary-glow);
    background: var(--color-bg-warm);
}

.checkbox-label:has(input:checked) {
    border-color: var(--color-primary);
    background: var(--color-primary-glow);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.form-error-msg {
    font-size: 0.85rem;
    color: var(--color-error);
    margin-top: 0.25rem;
}

/* Submit button shimmer */
.form .btn-primary {
    position: relative;
    overflow: hidden;
}

.form .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: none;
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Alert entrance animation */
.alert {
    animation: alertSlideIn 0.4s ease both;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Alerts --- */
.alert {
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.alert-success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border-left-color: var(--color-success);
}

.alert-error {
    background: var(--color-error-bg);
    color: var(--color-error);
    border-left-color: var(--color-error);
}

.alert-info {
    background: var(--color-info-bg);
    color: var(--color-info);
    border-left-color: var(--color-info);
}

/* --- Map --- */
.map-container {
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* --- 404 --- */
.error-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 3rem) 1rem 3rem;
}

.error-physalis {
    margin-bottom: 2rem;
    animation: float 4s ease-in-out infinite;
}

.error-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.error-text {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* --- Legal pages --- */
.legal-content {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    color: var(--color-primary-dark);
}

.legal-content ul {
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-update {
    color: var(--color-text-muted);
    margin-top: 3rem;
}

/* --- Footer --- */
.site-footer {
    background: #4a3828;
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
    margin-top: 0;
    position: relative;
}

.site-footer::before {
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.footer-slogan {
    font-style: italic;
    color: var(--color-primary);
    margin: 0 0 0.25rem;
}

.footer-owner {
    font-size: 0.9rem;
    margin: 0;
}

.footer-address p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

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

.footer-address a:hover {
    color: var(--color-gold);
}

.footer-address svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: all var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(194, 114, 42, 0.3);
}

.footer-vat {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p {
    margin: 0;
    line-height: 1;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: inherit;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* --- Cookie banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

/* ===============================================
   RESPONSIVE — Tablet (768px+)
   =============================================== */
@media (min-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-logo-img {
        max-width: 450px;
    }

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

    .about-grid {
        grid-template-columns: 1fr 1.4fr;
    }



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

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .legal-content {
        padding: 3rem;
    }
}

/* ===============================================
   RESPONSIVE — Desktop (1024px+)
   =============================================== */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }

    /* Le titre événement peut tronquer (ellipsis) si trop long pour éviter de pousser les autres items */
    .nav-event-highlight {
        max-width: 240px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hamburger {
        display: none;
    }

    .header-phone {
        display: flex;
    }

    .floating-call {
        display: none;
    }

    .hero {
        padding-left: 3rem;
        padding-right: 3rem;
    }

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

    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 2rem;
    }

    .hero-feature {
        border-right: 1px solid var(--color-border-light);
    }

    .hero-feature:last-child {
        border-right: none;
    }

    .section {
        padding: 6rem 0;
    }

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

    .page-title {
        font-size: 3rem;
    }

    .page-hero {
        padding: calc(var(--header-height) + 4.5rem) 0 4.5rem;
    }

    .info-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .distrib-categories {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .about-image::after {
        bottom: -16px;
        right: -16px;
    }

}

/* ============================================
   Carte événement flottante (homepage)
   ============================================ */
.home-event-floating {
    position: relative;
    z-index: 10;
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 1rem 2rem;
    width: 100%;
}

.home-event-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 640px;
    margin: 0 auto;
    padding: 1.4rem 1.8rem;
    background: linear-gradient(135deg, #fffdf7 0%, #fff8e7 40%, #fef0cc 100%);
    border: 1.5px solid rgba(194, 114, 42, 0.25);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(194, 114, 42, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: eventCardSlideUp 0.6s ease-out both;
    animation-delay: 0.3s;
}

.home-event-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(194, 114, 42, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.home-event-card:hover .home-event-card-arrow {
    transform: translateX(4px);
}

/* Sparkles décoratifs */
.home-event-card-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.3;
}

.home-event-card-sparkle--1 {
    top: 12px;
    right: 60px;
    animation: sparkle 3s ease-in-out infinite;
}

.home-event-card-sparkle--2 {
    bottom: 14px;
    right: 100px;
    animation: sparkle 3s ease-in-out infinite 1.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

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

/* Icône étoile */
.home-event-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4883a 100%);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(194, 114, 42, 0.25);
}

/* Corps texte */
.home-event-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.home-event-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.3;
}

.home-event-card-meta {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.home-event-card-sep {
    color: var(--color-gold);
    margin: 0 0.15rem;
}

/* Flèche */
.home-event-card-arrow {
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 600px) {
    .home-event-floating {
        margin-top: 0;
    }

    .home-event-card {
        padding: 1.1rem 1.3rem;
        gap: 1rem;
    }

    .home-event-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .home-event-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .home-event-card-title {
        font-size: 1.05rem;
    }

    .home-event-card-meta {
        font-size: 0.85rem;
    }
}

/* ============================================
   Page événements publique
   ============================================ */
.events-list-section .event-menu-card {
    margin-bottom: 2.5rem;
}

.events-list-section .event-menu-card:last-child {
    margin-bottom: 0;
}

.event-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.event-empty-state svg {
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.event-empty-state h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.event-empty-state p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   ÉVÉNEMENTS — Grille multi-menus
   ======================================== */
.event-menus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.event-menu-item-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-menu-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.event-menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(194, 114, 42, 0.15);
}

.event-menu-item-content {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 1rem;
}

.event-menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-menu-item-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ========================================
   THÈME NOËL — Flocons & ambiance festive
   ======================================== */

/* --- Flocons de neige (réutilisables) --- */
.noel-snowflakes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

.noel-flake {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: noelFall linear infinite;
}

.noel-flake--1 { left: 8%;  width: 6px;  height: 6px;  animation-duration: 6s;  animation-delay: 0s;   }
.noel-flake--2 { left: 22%; width: 4px;  height: 4px;  animation-duration: 8s;  animation-delay: 1s;   }
.noel-flake--3 { left: 45%; width: 7px;  height: 7px;  animation-duration: 5s;  animation-delay: 2.5s; }
.noel-flake--4 { left: 65%; width: 5px;  height: 5px;  animation-duration: 7s;  animation-delay: 0.5s; }
.noel-flake--5 { left: 85%; width: 6px;  height: 6px;  animation-duration: 6.5s; animation-delay: 1.5s; }
.noel-flake--6 { left: 35%; width: 3px;  height: 3px;  animation-duration: 9s;  animation-delay: 3s;   }
.noel-flake--7 { left: 75%; width: 5px;  height: 5px;  animation-duration: 7.5s; animation-delay: 2s;   }

@keyframes noelFall {
    0%   { top: -10%; opacity: 0; transform: translateX(0) rotate(0deg); }
    10%  { opacity: 0.6; }
    50%  { opacity: 0.4; }
    100% { top: 105%; opacity: 0; transform: translateX(30px) rotate(360deg); }
}

/* Variante carte grande (page événements) */
.noel-snowflakes--card .noel-flake {
    background: rgba(255, 255, 255, 0.7);
}

/* --- Carte flottante homepage — Noël --- */
.home-event-card--noel {
    background: linear-gradient(135deg, #1a2e1a 0%, #1e3320 40%, #2a1a1a 100%);
    border-color: rgba(196, 55, 55, 0.35);
    box-shadow:
        0 8px 32px rgba(26, 46, 26, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-event-card--noel:hover {
    box-shadow:
        0 12px 40px rgba(26, 46, 26, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-event-card--noel .home-event-card-icon {
    background: linear-gradient(135deg, #b5331e 0%, #c0392b 100%);
    box-shadow: 0 3px 12px rgba(192, 57, 43, 0.35);
}

.home-event-card--noel .home-event-card-title {
    color: #f5f0e8;
}

.home-event-card--noel .home-event-card-meta {
    color: rgba(245, 240, 232, 0.65);
}

.home-event-card--noel .home-event-card-sep {
    color: #c0392b;
}

.home-event-card--noel .home-event-card-arrow {
    color: rgba(245, 240, 232, 0.5);
}

.home-event-card--noel:hover .home-event-card-arrow {
    color: #f5f0e8;
}

/* Remplacer les sparkles par rien (les flocons prennent le relais) */
.home-event-card--noel .home-event-card-sparkle {
    display: none;
}

/* Liseré décoratif doré/rouge en bas de carte */
.home-event-card--noel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c0392b, #d4a853, #2d7a3a, #d4a853, #c0392b);
    border-radius: 0 0 16px 16px;
}

/* --- Page événements — Carte Noël --- */
.event-card--noel {
    background: linear-gradient(135deg, #1a2e1a 0%, #1e3320 50%, #2a1a1a 100%);
    border-color: rgba(196, 55, 55, 0.3);
    box-shadow: 0 8px 30px rgba(26, 46, 26, 0.2);
}

.event-card--noel::before {
    background: linear-gradient(90deg, #c0392b, #d4a853, #2d7a3a, #d4a853, #c0392b);
}

.event-card--noel .event-menu-badge {
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.event-card--noel .event-menu-title {
    color: #f5f0e8;
}

.event-card--noel .event-menu-desc {
    color: rgba(245, 240, 232, 0.65);
}

.event-card--noel .event-menu-content {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(45, 122, 58, 0.3);
}

.event-card--noel .event-menu-price {
    color: #d4a853;
}

.event-card--noel .event-reserve-btn,
.event-card--noel .event-menus-grid .btn {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    border-color: #c0392b;
    color: #fff;
}

.event-card--noel .event-reserve-btn:hover,
.event-card--noel .event-menus-grid .btn:hover {
    background: linear-gradient(135deg, #d44637 0%, #c0392b 100%);
    transform: translateY(-1px);
}

/* Sous-cartes menus dans un événement Noël */
.event-card--noel .event-menu-item-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.event-card--noel .event-menu-item-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 168, 83, 0.25);
}

.event-card--noel .event-menu-item-title {
    color: #d4a853;
    border-bottom-color: rgba(212, 168, 83, 0.2);
}

.event-card--noel .event-menu-item-content {
    color: rgba(245, 240, 232, 0.8);
}

.event-card--noel .event-menu-item-price {
    color: #d4a853;
}

/* --- Navigation — Lien Noël --- */
.nav-event--noel {
    background: linear-gradient(135deg, #1e3320, #2a1a1a) !important;
    color: #f5f0e8 !important;
    border: 1px solid rgba(196, 55, 55, 0.3) !important;
    border-radius: 20px;
    padding: 0.35rem 1rem !important;
}

.nav-event--noel .nav-event-dot {
    background: #c0392b !important;
    box-shadow: 0 0 6px rgba(192, 57, 43, 0.5);
}

/* Mobile nav — Noël */
.main-nav.open .nav-event--noel {
    background: linear-gradient(135deg, #1e3320, #2a1a1a) !important;
    border-radius: 8px;
}

/* ========================================
   THÈME SAINT-VALENTIN — Coeurs & romantisme
   ======================================== */

/* --- Coeurs flottants (particules) --- */
.valentin-hearts {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

.valentin-heart {
    position: absolute;
    display: block;
    opacity: 0;
    animation: valentinFloat linear infinite;
}

.valentin-heart::before {
    content: '♥';
    color: rgba(220, 80, 100, 0.5);
    font-size: 14px;
}

.valentin-heart--1 { left: 10%; animation-duration: 7s; animation-delay: 0s;   }
.valentin-heart--2 { left: 30%; animation-duration: 5s; animation-delay: 1.2s; }
.valentin-heart--2::before { font-size: 10px; }
.valentin-heart--3 { left: 55%; animation-duration: 6s; animation-delay: 2.5s; }
.valentin-heart--3::before { font-size: 16px; }
.valentin-heart--4 { left: 78%; animation-duration: 8s; animation-delay: 0.8s; }
.valentin-heart--4::before { font-size: 11px; }
.valentin-heart--5 { left: 42%; animation-duration: 7.5s; animation-delay: 3s; }
.valentin-heart--5::before { font-size: 13px; }

@keyframes valentinFloat {
    0%   { bottom: -10%; opacity: 0; transform: translateX(0) rotate(0deg) scale(0.8); }
    15%  { opacity: 0.5; }
    50%  { opacity: 0.35; }
    100% { bottom: 110%; opacity: 0; transform: translateX(-20px) rotate(-15deg) scale(1.1); }
}

/* Variante grande carte */
.valentin-hearts--card .valentin-heart::before {
    color: rgba(255, 255, 255, 0.35);
}

/* --- Carte flottante homepage — Valentin --- */
.home-event-card--valentin {
    background: linear-gradient(135deg, #2a0a14 0%, #3d1020 50%, #1a0a14 100%);
    border-color: rgba(220, 80, 100, 0.3);
    box-shadow:
        0 8px 32px rgba(42, 10, 20, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-event-card--valentin:hover {
    box-shadow:
        0 12px 40px rgba(42, 10, 20, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.home-event-card--valentin .home-event-card-icon {
    background: linear-gradient(135deg, #dc5064 0%, #c0392b 100%);
    box-shadow: 0 3px 12px rgba(220, 80, 100, 0.35);
}

.home-event-card--valentin .home-event-card-title {
    color: #fce4ec;
}

.home-event-card--valentin .home-event-card-meta {
    color: rgba(252, 228, 236, 0.6);
}

.home-event-card--valentin .home-event-card-sep {
    color: #dc5064;
}

.home-event-card--valentin .home-event-card-arrow {
    color: rgba(252, 228, 236, 0.4);
}

.home-event-card--valentin:hover .home-event-card-arrow {
    color: #fce4ec;
}

.home-event-card--valentin .home-event-card-sparkle { display: none; }

.home-event-card--valentin::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc5064, #f8bbd0, #dc5064);
    border-radius: 0 0 16px 16px;
}

/* --- Page événements — Carte Valentin --- */
.event-card--valentin {
    background: linear-gradient(135deg, #2a0a14 0%, #3d1020 50%, #1a0a14 100%);
    border-color: rgba(220, 80, 100, 0.3);
    box-shadow: 0 8px 30px rgba(42, 10, 20, 0.2);
}

.event-card--valentin::before {
    background: linear-gradient(90deg, #dc5064, #f8bbd0, #dc5064);
}

.event-card--valentin .event-menu-badge {
    background: linear-gradient(135deg, #dc5064, #c0392b);
}

.event-card--valentin .event-menu-title { color: #fce4ec; }
.event-card--valentin .event-menu-desc { color: rgba(252, 228, 236, 0.6); }
.event-card--valentin .event-menu-content { color: var(--color-text); background: rgba(255, 255, 255, 0.95); border-color: rgba(220, 80, 100, 0.3); }
.event-card--valentin .event-menu-price { color: #f8bbd0; }

.event-card--valentin .event-reserve-btn,
.event-card--valentin .event-menus-grid .btn {
    background: linear-gradient(135deg, #dc5064 0%, #c0392b 100%);
    border-color: #dc5064;
    color: #fff;
}

.event-card--valentin .event-reserve-btn:hover,
.event-card--valentin .event-menus-grid .btn:hover {
    background: linear-gradient(135deg, #e86b7c 0%, #dc5064 100%);
}

.event-card--valentin .event-menu-item-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card--valentin .event-menu-item-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(248, 187, 208, 0.25);
}

.event-card--valentin .event-menu-item-title {
    color: #f8bbd0;
    border-bottom-color: rgba(248, 187, 208, 0.2);
}

.event-card--valentin .event-menu-item-content { color: rgba(252, 228, 236, 0.8); }
.event-card--valentin .event-menu-item-price { color: #f8bbd0; }

/* --- Navigation — Lien Valentin --- */
.nav-event--valentin {
    background: linear-gradient(135deg, #2a0a14, #3d1020) !important;
    color: #fce4ec !important;
    border: 1px solid rgba(220, 80, 100, 0.3) !important;
    border-radius: 20px;
    padding: 0.35rem 1rem !important;
}

.nav-event--valentin .nav-event-dot {
    background: #dc5064 !important;
    box-shadow: 0 0 6px rgba(220, 80, 100, 0.5);
}

.main-nav.open .nav-event--valentin {
    background: linear-gradient(135deg, #2a0a14, #3d1020) !important;
    border-radius: 8px;
}

/* ========================================
   THÈME NOUVEL AN — Champagne & étoiles
   ======================================== */

/* --- Carte flottante homepage — Nouvel An --- */
.home-event-card--nouvel-an {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow:
        0 8px 32px rgba(13, 13, 26, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(212, 168, 83, 0.1);
}

.home-event-card--nouvel-an:hover {
    box-shadow:
        0 12px 40px rgba(13, 13, 26, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.12);
}

.home-event-card--nouvel-an .home-event-card-icon {
    background: linear-gradient(135deg, #d4a853 0%, #b8942e 100%);
    box-shadow: 0 3px 12px rgba(212, 168, 83, 0.35);
}

.home-event-card--nouvel-an .home-event-card-title {
    color: #f5f0e8;
}

.home-event-card--nouvel-an .home-event-card-meta {
    color: rgba(212, 168, 83, 0.7);
}

.home-event-card--nouvel-an .home-event-card-sep {
    color: #d4a853;
}

.home-event-card--nouvel-an .home-event-card-arrow {
    color: rgba(212, 168, 83, 0.5);
}

.home-event-card--nouvel-an:hover .home-event-card-arrow {
    color: #d4a853;
}

.home-event-card--nouvel-an .home-event-card-sparkle { display: none; }

/* Flocons dorés pour Nouvel An */
.home-event-card--nouvel-an .noel-flake {
    background: #d4a853;
    border-radius: 1px;
    transform: rotate(45deg);
}

.home-event-card--nouvel-an::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a853, #fff8e7, #d4a853);
    border-radius: 0 0 16px 16px;
}

/* --- Page événements — Carte Nouvel An --- */
.event-card--nouvel-an {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 0 8px 30px rgba(13, 13, 26, 0.2);
}

.event-card--nouvel-an::before {
    background: linear-gradient(90deg, #d4a853, #fff8e7, #d4a853);
}

.event-card--nouvel-an .event-menu-badge {
    background: linear-gradient(135deg, #d4a853, #b8942e);
    color: #1a1a2e;
}

.event-card--nouvel-an .noel-flake {
    background: #d4a853;
    border-radius: 1px;
}

.event-card--nouvel-an .event-menu-title { color: #f5f0e8; }
.event-card--nouvel-an .event-menu-desc { color: rgba(212, 168, 83, 0.65); }
.event-card--nouvel-an .event-menu-content { color: var(--color-text); background: rgba(255, 255, 255, 0.95); border-color: rgba(212, 168, 83, 0.3); }
.event-card--nouvel-an .event-menu-price { color: #d4a853; }

.event-card--nouvel-an .event-reserve-btn,
.event-card--nouvel-an .event-menus-grid .btn {
    background: linear-gradient(135deg, #d4a853 0%, #b8942e 100%);
    border-color: #d4a853;
    color: #1a1a2e;
    font-weight: 700;
}

.event-card--nouvel-an .event-reserve-btn:hover,
.event-card--nouvel-an .event-menus-grid .btn:hover {
    background: linear-gradient(135deg, #e0b85e 0%, #d4a853 100%);
}

.event-card--nouvel-an .event-menu-item-card {
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.12);
}

.event-card--nouvel-an .event-menu-item-card:hover {
    background: rgba(212, 168, 83, 0.12);
    border-color: rgba(212, 168, 83, 0.25);
}

.event-card--nouvel-an .event-menu-item-title {
    color: #d4a853;
    border-bottom-color: rgba(212, 168, 83, 0.2);
}

.event-card--nouvel-an .event-menu-item-content { color: rgba(245, 240, 232, 0.8); }
.event-card--nouvel-an .event-menu-item-price { color: #d4a853; }

/* --- Navigation — Lien Nouvel An --- */
.nav-event--nouvel-an {
    background: linear-gradient(135deg, #0d0d1a, #1a1a2e) !important;
    color: #f5f0e8 !important;
    border: 1px solid rgba(212, 168, 83, 0.3) !important;
    border-radius: 20px;
    padding: 0.35rem 1rem !important;
}

.nav-event--nouvel-an .nav-event-dot {
    background: #d4a853 !important;
    box-shadow: 0 0 6px rgba(212, 168, 83, 0.5);
}

.main-nav.open .nav-event--nouvel-an {
    background: linear-gradient(135deg, #0d0d1a, #1a1a2e) !important;
    border-radius: 8px;
}

/* ========================================
   Accessibilité — tous les thèmes
   ======================================== */

/* ============================================
   AMÉLIORATIONS VISUELLES — Polish & animations
   ============================================ */

/* --- Reveal animations (scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Section dividers --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    height: 2rem;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.section-divider::after {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.section-divider-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    transform: rotate(45deg);
    opacity: 0.5;
    flex-shrink: 0;
}

/* --- Scroll-to-top button --- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--transition);
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

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

/* On mobile, position above floating call button */
@media (max-width: 1023px) {
    .scroll-top {
        bottom: 6rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
}

/* Flocons/coeurs réduits sur petit écran pour perf */
@media (max-width: 600px) {
    .noel-flake--5,
    .noel-flake--6,
    .noel-flake--7,
    .valentin-heart--4,
    .valentin-heart--5 {
        display: none;
    }
}

/* ==============================================
   Optimisations mobiles — petit écran
   ============================================== */
@media (max-width: 600px) {
    /* Navbar mobile : fond opaque + sans backdrop-filter (bugs Safari/Chrome mobile) */
    .site-header {
        background: rgba(254, 252, 247, 0.98);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid var(--color-border-light);
    }

    .site-header.scrolled {
        background: var(--color-bg);
    }

    /* Menus de la semaine : empiler jour + plat verticalement (plus lisible) */
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        padding: 1rem 1.1rem;
    }

    .menu-day {
        min-width: 0;
        font-size: 0.95rem;
    }

    .menu-dots {
        display: none;
    }

    .menu-dish {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.4;
        color: var(--color-text);
        padding-left: 0.25rem;
        border-left: 3px solid var(--color-primary-glow);
        padding-left: 0.85rem;
        margin-left: 0.15rem;
    }

    /* iOS : empêcher le zoom auto sur les inputs */
    .form-input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Touch targets minimum 44px */
    .btn-sm {
        padding: 0.7rem 1.4rem;
        min-height: 44px;
    }

    .toggle-btn {
        padding: 0.5rem 0.85rem;
        min-height: 44px;
    }

    .checkbox-label {
        padding: 0.65rem 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Prestations : 1 colonne sur petit écran */
    .prestations-grid {
        grid-template-columns: 1fr;
    }

    /* Floating call : taille réduite */
    .floating-call {
        width: 50px;
        height: 50px;
    }

    .floating-call svg {
        width: 20px;
        height: 20px;
    }

    /* Maps : hauteur réduite sur mobile */
    iframe[src*="google.com/maps"] {
        height: 250px !important;
    }
}

/* ==============================================
   Accessibilité — focus visible
   ============================================== */
.nav-list a:focus-visible,
.btn:focus-visible,
.faq-question:focus-visible,
.service-card:focus-visible,
.info-card:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Prefers-reduced-motion : désactiver les animations */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .form .btn-primary::after {
        animation: none;
    }
    .scroll-top {
        transition: opacity 0.1s;
    }
    .hero-logo-img {
        animation: none;
    }
    .noel-flake,
    .valentin-heart {
        animation: none;
        opacity: 0.2;
    }
    .noel-flake { top: 20%; }
    .noel-flake--2 { top: 40%; }
    .noel-flake--3 { top: 60%; }
    .noel-flake--4 { top: 80%; }
    .valentin-heart { bottom: 20%; }
    .valentin-heart--2 { bottom: 40%; }
    .valentin-heart--3 { bottom: 60%; }
    .valentin-heart--4 { bottom: 80%; }
}
