:root {
    --wood: #5C3A2E;
    --wood-dark: #3E2723;
    --wood-light: #7D5A46;
    --red: #B71C1C;
    --red-bright: #C62828;
    --white: #FFFFFF;
    --cream: #FAF7F2;
    --gold: #C9A227;
    --black: #1A1A1A;
    --text: #2C1810;
    --text-muted: #6B5344;
    --font-display: 'Staatliches', cursive;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* HEADER */
.site-header {
    background: #E30613;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 24px;
    min-height: 72px;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    line-height: 0;
    z-index: 2;
    transition: opacity 0.2s;
}

.logo:hover { opacity: 0.9; }

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    z-index: 1;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold); }

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-width: 40px;
    margin-left: auto;
    z-index: 1;
}

.header-actions a {
    color: var(--white);
    transition: opacity 0.2s;
}

.header-actions a:hover { opacity: 0.8; }

.header-actions img { width: 36px; height: 36px; object-fit: contain; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    z-index: 3;
}

/* HERO - pas de filtre */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px;
}

.hero-logo {
    width: 160px;
    height: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7)) drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4.5rem);
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin: 0 0 24px;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn:hover {
    background: var(--red-bright);
    transform: scale(0.98);
}

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

.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* MARQUEE */
.marquee-section {
    background: #E30613;
    padding: 16px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--white);
    margin: 0;
    padding-right: 80px;
    letter-spacing: 0.15em;
}

/* GALLERY PLATS — bandeau accueil */
.gallery-trio {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px;
}

.gallery-trio img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    display: block;
    background: var(--cream);
}

/* TWO COL SECTIONS */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.section-split--text-only {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.section-split.reverse { direction: rtl; }
.section-split.reverse > * { direction: ltr; }

.section-split img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    max-height: 640px;
    object-fit: cover;
}

.section-content {
    padding: 60px 48px;
    background: var(--cream);
}

.section-content.bg-wood {
    background: var(--wood-dark);
    color: var(--white);
}

.divider-gold {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.section-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 20px;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.section-content p { margin: 0 0 16px; color: inherit; opacity: 0.9; }

/* CATEGORY BUTTONS */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 72px clamp(24px, 6vw, 80px);
    background: var(--white);
    justify-items: center;
    align-items: start;
}

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

.category-card img {
    width: clamp(120px, 12vw, 180px);
    height: clamp(120px, 12vw, 180px);
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
}

.category-card .btn {
    font-size: 12px;
    padding: 10px 24px;
}

/* INSTAGRAM / GALERIE */
.instagram-section {
    padding: 60px 24px;
    background: var(--wood-dark);
    text-align: center;
}

.instagram-section h2 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 0 8px;
}

.instagram-section .handle {
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto 32px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.gallery-grid a:hover img { transform: scale(1.03); }

/* FOOTER */
.site-footer {
    background: var(--wood-dark);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.footer-map {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    display: block;
    border: 0;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--wood-dark);
}

.social-icons svg { display: block; }

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-nav h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin: 0 0 16px;
    letter-spacing: 0.1em;
}

.footer-nav ul li { margin-bottom: 8px; }

.footer-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* PAGE INTERIEURE */
.page-hero {
    background: var(--wood);
    padding: 80px 24px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 3rem;
    margin: 0;
}

/* CARTE */
.menu-section { padding: 60px 24px; max-width: 900px; margin: 0 auto; }

.menu-category { margin-bottom: 48px; }

.menu-category h2 {
    font-family: var(--font-display);
    color: var(--red);
    font-size: 2rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--wood-light);
}

.menu-item-info { flex: 1; min-width: 0; }
.menu-item strong { font-weight: 600; }
.menu-item > span,
.menu-prices span { color: var(--red); font-weight: 700; white-space: nowrap; }

.menu-desc {
    margin: 4px 0 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.4;
}

.menu-garniture {
    margin: 0 0 16px;
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(0, 0, 0, 0.55);
}

.menu-item--dual { align-items: center; }

.menu-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 0.9rem;
}

.menu-note {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-muted);
}

/* CONTACT FORM */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.contact-images {
    align-self: start;
    width: 100%;
    overflow: hidden;
}

.contact-images img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.contact-form-wrap {
    padding: 60px 48px;
    background: var(--cream);
}

.contact-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin: 0 0 16px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 15px;
    background: var(--white);
}

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

/* GALERIE PAGE */
.gallery-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 32px 64px;
}

.gallery-page img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: var(--cream);
}

/* MOBILE MENU */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--wood-dark);
    z-index: 2000;
    padding: 80px 40px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .gallery-page { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .categories { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-trio { grid-template-columns: repeat(2, 1fr); padding: 24px; }
    .footer-inner { grid-template-columns: 1fr; }
    .social-icons { justify-content: center; }
}

@media (max-width: 768px) {
    .main-nav, .hide-mobile { display: none; }
    .menu-toggle { display: block; }
    .logo img { height: 52px; }
    .header-actions { display: none; }
    .gallery-trio {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 16px;
    }
    .gallery-trio img { aspect-ratio: 1; }
    .gallery-page {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 16px;
    }
    .section-split { grid-template-columns: 1fr; }
    .section-split.reverse { direction: ltr; }
    .categories { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-images img { height: 360px; }
    .hero { min-height: 70vh; }
}
