/* ========================================
   CHEZ ZIO - Cucina d'émotion
   Design raffiné — Bronze/Cuivre #B8763E
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@200;300;400;500;600&display=swap');

:root {
    --gold: #B8763E;
    --gold-light: #d4a574;
    --gold-dark: #8c5a2e;
    --gold-glow: rgba(184, 118, 62, 0.15);
    --dark: #0f0f0f;
    --dark-soft: #1a1a1a;
    --dark-card: #141414;
    --cream: #faf8f5;
    --cream-dark: #f0ebe4;
    --text: #2d2d2d;
    --text-soft: #6b6b6b;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.5);
    --border-light: rgba(184, 118, 62, 0.2);
    --border-dark: rgba(255,255,255,0.08);
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Open Sans', Arial, sans-serif;
    --max-width: 1200px;
    --nav-height: 80px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    font-weight: 300;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.4s var(--transition);
}
a:hover { color: var(--gold-dark); }

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

/* ========================================
   FADE-IN ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

/* ========================================
   NAVIGATION
   ======================================== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    /* Dégradé sombre subtil pour assurer la lisibilité du menu blanc sur n'importe quel hero clair */
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
    transition: all 0.5s var(--transition);
}

#header.scrolled {
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.3);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: all 0.4s var(--transition);
}

#header.scrolled .nav-logo-img {
    height: 42px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.92);
    font-size: 0.78rem;
    font-weight: 400;
    padding: 8px 18px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--transition);
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

#header.scrolled .nav-link {
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 18px; right: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--transition);
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
    border: 1px solid var(--gold);
    border-radius: 0;
    padding: 10px 28px;
    color: var(--gold) !important;
    margin-left: 10px;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--gold);
    color: #fff !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: #fff;
    transition: all 0.4s var(--transition);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Socials menu — masqué par défaut (desktop) */
.nav-socials { display: none; }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-bottom: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.65) 100%
    );
}

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

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 3px;
    margin-bottom: 30px;
    animation: heroFadeIn 1.5s var(--transition) forwards;
}

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

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
    animation: heroFadeIn 1.5s var(--transition) 0.3s both;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--gold-light);
    animation: heroFadeIn 1.5s var(--transition) 0.5s both;
}

.hero-address {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 45px;
    opacity: 0.7;
    animation: heroFadeIn 1.5s var(--transition) 0.7s both;
}

.hero .btn-primary {
    animation: heroFadeIn 1.5s var(--transition) 0.9s both;
    font-size: 0.9rem;
    padding: 18px 48px;
    font-weight: 600;
    letter-spacing: 3.5px;
    box-shadow: 0 10px 32px rgba(184, 118, 62, 0.55), 0 0 0 6px rgba(184, 118, 62, 0.12);
    border-radius: 4px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounceDown 2s infinite;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.5s var(--transition);
    text-align: center;
    position: relative;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(184, 118, 62, 0.35);
}
/* Hover uniquement sur écrans compatibles (évite le state "collé" sur mobile) */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background: var(--gold-dark);
        color: #fff;
        border-color: var(--gold-dark);
        letter-spacing: 4px;
        box-shadow: 0 8px 28px rgba(184, 118, 62, 0.5);
        transform: translateY(-2px);
    }
}
.btn-primary:active {
    background: var(--gold-dark);
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
@media (hover: hover) and (pointer: fine) {
    .btn-outline:hover {
        background: var(--gold);
        color: #fff;
        letter-spacing: 4px;
    }
}

.btn-disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn-white-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

.section-cream {
    background: var(--cream-dark);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-dark .section-title {
    color: #fff;
}

.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}
.section-ornament span {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.section-ornament .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 300;
    line-height: 1.9;
}

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

/* ========================================
   MENU SECTION
   ======================================== */
.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

.menu-grid .menu-card {
    flex: 0 1 340px;
    max-width: 380px;
    min-width: 260px;
}

.menu-card {
    text-align: center;
    padding: 50px 35px 45px;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: transparent;
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.menu-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--dark);
    letter-spacing: 1px;
}

.menu-card p {
    color: var(--text-soft);
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   GALLERY — Élégante, adaptative
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 14px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    grid-column: span 4;
}

.gallery-item { cursor: zoom-in; }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.5s var(--transition);
    pointer-events: none;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

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

/* Variations aesthetic — items larges périodiques */
.gallery-item:nth-child(6n+1) { grid-column: span 5; }
.gallery-item:nth-child(6n+4) { grid-column: span 5; }
.gallery-item:nth-child(6n+3) { grid-column: span 3; }
.gallery-item:nth-child(6n+6) { grid-column: span 3; }

/* Layouts spéciaux pour petites collections (1-5 photos) */
.gallery-grid-1 .gallery-item { grid-column: span 12; grid-row: span 2; }
.gallery-grid-2 .gallery-item { grid-column: span 6; grid-row: span 2; }
.gallery-grid-3 .gallery-item { grid-column: span 4; grid-row: span 2; }
.gallery-grid-4 .gallery-item { grid-column: span 6; }
.gallery-grid-5 .gallery-item:nth-child(1),
.gallery-grid-5 .gallery-item:nth-child(2) { grid-column: span 6; }
.gallery-grid-5 .gallery-item:nth-child(3),
.gallery-grid-5 .gallery-item:nth-child(4),
.gallery-grid-5 .gallery-item:nth-child(5) { grid-column: span 4; }

/* ========================================
   LIGHTBOX — Vue grand format
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 20px;
}
.lightbox.open {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.35s ease;
}
@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-stage {
    position: relative;
    max-width: min(1400px, 92vw);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.08);
}
.lightbox-close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
    .lightbox {
        padding: 0;
        background: rgba(0, 0, 0, 0.97);
    }
    .lightbox-stage {
        max-width: 100vw;
        max-height: 100vh;
        padding: 0 16px;
    }
    .lightbox-img {
        max-height: 75vh;
        border-radius: 6px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }
    .lightbox-close {
        top: max(16px, env(safe-area-inset-top, 16px));
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    /* Flèches en bas, façon pilule premium */
    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: max(20px, env(safe-area-inset-bottom, 20px));
        transform: none;
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: scale(1.05);
    }
    .lightbox-counter {
        bottom: max(36px, calc(env(safe-area-inset-bottom, 20px) + 16px));
        font-size: 0.8rem;
        letter-spacing: 2.5px;
        padding: 7px 18px;
        background: rgba(0, 0, 0, 0.5);
        font-weight: 500;
    }
    /* Indication swipe subtile */
    .lightbox.open .lightbox-img {
        animation: lightboxZoom 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
}

@media (max-width: 480px) {
    .lightbox-stage { padding: 0 8px; }
    .lightbox-img { max-height: 72vh; }
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
}

@keyframes lightboxZoom {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* ========================================
   ABOUT — Section parallaxe
   ======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
}

.about-info {
    background: var(--cream-dark);
    padding: 45px;
    position: relative;
}

.about-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.about-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

.hours-lead {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(184, 118, 62, 0.2);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(184, 118, 62, 0.15);
    font-size: 0.9rem;
    font-weight: 300;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--dark);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-soft);
}

.hours-table tr:last-child td { border-bottom: none; }

/* ========================================
   RESERVATION FORM
   ======================================== */
.section-reservation {
    background: var(--dark);
    color: #fff;
    position: relative;
}

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

.reservation-form {
    max-width: 680px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-muted);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    transition: border-color 0.4s var(--transition);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
    font-weight: 200;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-group select {
    cursor: pointer;
    color: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B8763E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

/* Date/Time pickers : icône calendrier/horloge blanche sur fond sombre */
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="datetime-local"] {
    color: #fff;
    color-scheme: dark;
    accent-color: var(--gold);
    -webkit-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
    padding-right: 48px;
}

/* Icône calendrier blanche (SVG inline, fiable iOS + Android + Desktop) */
.form-group input[type="date"],
.form-group input[type="datetime-local"] {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' opacity='0.85'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
}

/* Icône horloge blanche */
.form-group input[type="time"] {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' opacity='0.85'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>");
}

/* Masquer l'indicateur natif pour éviter le double-icône */
.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator,
.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 48px;
    height: 100%;
    cursor: pointer;
    background: transparent;
}

/* Container relative pour positionnement de l'indicateur */
.form-group {
    position: relative;
}

/* Valeur affichée (pas le placeholder) */
.form-group input[type="date"]:not(:placeholder-shown),
.form-group input[type="time"]:not(:placeholder-shown),
.form-group input[type="datetime-local"]:not(:placeholder-shown) {
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.captcha-question {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold-light);
    white-space: nowrap;
}

.captcha-row input { max-width: 100px; }

.form-checkbox {
    margin-top: 20px;
    padding: 16px 18px;
    background: rgba(184, 118, 62, 0.05);
    border: 1px solid rgba(184, 118, 62, 0.25);
    border-radius: 8px;
    transition: all 0.25s ease;
}
.form-checkbox:has(input:checked) {
    background: rgba(184, 118, 62, 0.1);
    border-color: rgba(184, 118, 62, 0.5);
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-weight: 400;
    font-size: 0.85rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.55;
    user-select: none;
}

/* Checkbox custom gros & visible */
.form-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin: 0;
    border: 2px solid var(--gold);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 0 rgba(184, 118, 62, 0);
}
.form-checkbox input[type="checkbox"]:hover {
    border-color: var(--gold-light);
    background: rgba(184, 118, 62, 0.15);
}
.form-checkbox input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(184, 118, 62, 0.25);
}
.form-checkbox input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}
.form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.form-checkbox a {
    color: var(--gold-light);
    text-decoration: underline;
    text-decoration-color: rgba(184,118,62,0.3);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 3.5px;
    background: var(--gold) !important;
    color: #fff !important;
    border: 2px solid var(--gold) !important;
    box-shadow: 0 8px 24px rgba(184, 118, 62, 0.4), 0 0 0 4px rgba(184, 118, 62, 0.08);
    border-radius: 4px;
    transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .btn-submit:hover {
        background: var(--gold-dark) !important;
        border-color: var(--gold-dark) !important;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(184, 118, 62, 0.5), 0 0 0 6px rgba(184, 118, 62, 0.1);
        letter-spacing: 4px;
    }
}
.btn-submit:active {
    background: var(--gold-dark) !important;
    transform: translateY(0);
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success / Error */
.reservation-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #fff;
    padding: 40px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #28a745;
}

.reservation-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.reservation-success p {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
}

.reservation-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #fff;
    padding: 20px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 30px;
}

.reservation-error a { color: var(--gold-light); text-decoration: underline; }

/* ========================================
   CONTACT
   ======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: start;
}

.contact-logo {
    max-width: 160px;
    margin-bottom: 35px;
}

.contact-info p {
    margin-bottom: 22px;
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.95rem;
}

.contact-info strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-info a { color: var(--text); }
.contact-info a:hover { color: var(--gold); }

.contact-map iframe {
    border-radius: 4px;
    filter: grayscale(20%);
    transition: filter 0.5s;
}
.contact-map iframe:hover { filter: grayscale(0%); }

/* ========================================
   FOOTER — Complet 4 colonnes
   ======================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 80px 0 35px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 50px;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.footer-address {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-contact-links a:hover {
    color: var(--gold-light);
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    font-weight: 300;
    padding: 5px 0;
    transition: all 0.3s var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours div {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 300;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hours div:last-child {
    border-bottom: none;
}

.footer-hours .footer-hours-lead {
    justify-content: flex-start;
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(184, 118, 62, 0.25);
}

.footer-hours .footer-hours-lead span {
    color: var(--gold-light) !important;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-hours span:first-child {
    color: rgba(255,255,255,0.6);
}

.footer-hours span:last-child {
    color: rgba(255,255,255,0.35);
}

.footer-divider {
    height: 1px;
    background: var(--border-dark);
    margin: 40px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    opacity: 0.4;
    font-weight: 300;
}

.footer-credit { font-size: 0.75rem; }

.footer-credit a {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 1px;
}

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

/* ========================================
   COOKIE BANNER — Discret LPD
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(184, 118, 62, 0.2);
    padding: 20px 0;
    animation: cookieSlideUp 0.5s var(--transition);
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gold);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--gold-dark);
}

.cookie-btn-refuse {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn-refuse:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.cookie-link {
    font-size: 0.75rem;
    color: var(--gold-light) !important;
    text-decoration: underline;
    text-decoration-color: rgba(184,118,62,0.3);
    white-space: nowrap;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--dark);
    margin: 40px 0 15px;
    letter-spacing: 1px;
}

.legal-page p, .legal-page li {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-soft);
}

.legal-page ul {
    padding-left: 20px;
    margin: 10px 0 20px;
}

.legal-page li { margin-bottom: 8px; }

/* ========================================
   RESPONSIVE — TABLETTE
   ======================================== */
@media (max-width: 1024px) {
    .menu-grid .menu-card {
        flex: 0 1 100%;
        max-width: 420px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid,
    .gallery-grid[class*="gallery-grid-"] {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-item,
    .gallery-item:nth-child(n),
    [class*="gallery-grid-"] .gallery-item {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    /* Centrer le bloc contact (logo + adresse + tél + email) sur mobile */
    .contact-info {
        text-align: center;
    }
    .contact-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

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

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
    :root { --nav-height: 70px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background:
            radial-gradient(ellipse at 50% 30%, rgba(184, 118, 62, 0.18) 0%, transparent 60%),
            rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 999;
        padding: 80px 30px 40px;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        animation: navFadeIn 0.4s ease;
    }
    @keyframes navFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .nav-menu > li {
        opacity: 0;
        transform: translateY(14px);
        animation: navItemIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    .nav-menu.active > li:nth-child(1) { animation-delay: 0.08s; }
    .nav-menu.active > li:nth-child(2) { animation-delay: 0.14s; }
    .nav-menu.active > li:nth-child(3) { animation-delay: 0.20s; }
    .nav-menu.active > li:nth-child(4) { animation-delay: 0.26s; }
    .nav-menu.active > li:nth-child(5) { animation-delay: 0.32s; }
    .nav-menu.active > li:nth-child(6) { animation-delay: 0.40s; }
    .nav-menu.active > li:nth-child(7) { animation-delay: 0.50s; }
    @keyframes navItemIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-link {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 300;
        padding: 14px 20px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        position: relative;
    }

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

    .nav-link:hover,
    .nav-link:focus { color: var(--gold-light); }

    .nav-cta {
        font-family: var(--font-body) !important;
        font-size: 0.85rem !important;
        margin: 24px 0 0 !important;
        padding: 16px 50px !important;
        letter-spacing: 4px !important;
        border: 1px solid var(--gold);
        color: var(--gold-light) !important;
        border-radius: 2px;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }
    .nav-cta:hover,
    .nav-cta:focus {
        background: var(--gold);
        color: #fff !important;
    }

    /* Socials bar sous le CTA */
    .nav-socials {
        display: flex !important;
        gap: 14px;
        margin-top: 36px;
        padding-top: 30px;
        position: relative;
        animation: navItemIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
    }
    .nav-socials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(184, 118, 62, 0.6), transparent);
    }
    .nav-socials a {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(184, 118, 62, 0.3);
        border-radius: 50%;
        color: var(--gold-light);
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        background: rgba(184, 118, 62, 0.05);
    }
    .nav-socials a:hover,
    .nav-socials a:focus {
        background: var(--gold);
        border-color: var(--gold);
        color: #fff;
        transform: translateY(-3px);
    }

    /* Hero */
    .hero { min-height: 100svh; padding-bottom: 80px; }
    .hero-tagline { font-size: 1.4rem; margin-bottom: 20px; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 4px; }
    .hero-address { font-size: 0.8rem; }
    .hero-scroll { display: none; }

    /* Sections */
    .section { padding: 80px 0; }
    .section-title { font-size: 2.2rem; }
    .section-intro { font-size: 0.9rem; margin-bottom: 40px; }

    /* Menu cards */
    .menu-card { padding: 35px 25px 30px; }

    /* Gallery */
    .gallery-grid,
    .gallery-grid[class*="gallery-grid-"] {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery-item,
    .gallery-item:nth-child(n),
    [class*="gallery-grid-"] .gallery-item {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* About */
    .about-lead { font-size: 1.6rem; }
    .about-info { padding: 30px; }

    /* Form */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .reservation-form { padding: 0 5px; }

    .captcha-row {
        flex-wrap: wrap;
    }

    /* Contact */
    .contact-logo { max-width: 130px; }
    .contact-map iframe { height: 250px; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-logo { margin: 0 auto 15px; }
    .footer-col a { padding: 4px 0; }
    .footer-hours div { justify-content: center; gap: 20px; }
    .footer-hours .footer-hours-lead { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 5px; }

    /* Cookies */
    .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-actions { flex-direction: column; width: 100%; }
    .cookie-btn { width: 100%; }
}

/* ========================================
   RESPONSIVE — PETIT MOBILE
   ======================================== */
@media (max-width: 480px) {
    .section-title { font-size: 1.8rem; }
    .hero-tagline { font-size: 1.2rem; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 3px; }
    .btn { padding: 13px 30px; font-size: 0.72rem; letter-spacing: 2px; }
    .btn-submit { letter-spacing: 3px; }
    .about-lead { font-size: 1.3rem; }
}

/* ========================================
   RÉSERVATION — MODE TÉLÉPHONE UNIQUEMENT
   ======================================== */
.reservation-telephone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    padding: 2.5rem 1.5rem 1rem;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.reservation-message {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.3px;
}

.btn-telephone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.1rem 2.6rem;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    box-shadow: 0 8px 24px rgba(184, 118, 62, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-telephone:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(184, 118, 62, 0.35);
}

.btn-telephone svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.reservation-horaires {
    font-size: 0.95rem;
    color: var(--gold-light);
    font-style: italic;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .reservation-telephone {
        padding: 1.5rem 1rem 0.5rem;
        gap: 1.4rem;
    }
    .reservation-message {
        font-size: 1.15rem;
    }
    .btn-telephone {
        font-size: 1.15rem;
        padding: 1rem 1.6rem;
        width: 100%;
        max-width: 360px;
        letter-spacing: 0.5px;
    }
    .reservation-horaires {
        font-size: 0.85rem;
    }
}
