/* =================================================================
   Colombe Royale — feuille de style principale
   Palette noir & or, typographies "Marck Script" / "Cormorant Garamond" / "Poppins"
   ================================================================= */

:root {
    --black:        #0a0a0c;
    --black-2:      #141416;
    --black-3:      #1d1d20;
    --gold:         #c9a24b;
    --gold-light:   #f3d98b;
    --gold-dark:    #8a6a24;
    --text:         #f6f1e6;
    --text-muted:   #bdb6a6;
    --border:       rgba(201, 162, 75, 0.25);
    --radius:       16px;
    --shadow-gold:  0 10px 40px rgba(201, 162, 75, 0.18);
    --ease:         cubic-bezier(.22, .68, 0, 1.01);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-gold-shine {
    background: linear-gradient(100deg, var(--gold-dark), var(--gold-light) 35%, var(--gold) 55%, var(--gold-light) 75%, var(--gold-dark));
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to { background-position: -250% center; }
}

.crown { display: inline-block; filter: drop-shadow(0 2px 6px rgba(201,162,75,.5)); }

/* ---------------- Icônes SVG maison ---------------- */
.icon { display: inline-block; vertical-align: -0.15em; color: currentColor; flex-shrink: 0; }
.icon--gold { color: var(--gold); }
.icon--success { color: #7fd8a0; }
.icon--muted { color: var(--text-muted); }
.icon--spin { animation: spin 2.6s linear infinite; }
@media (prefers-reduced-motion: reduce) { .icon--spin { animation: none; } }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin: 0 0 .4em;
    letter-spacing: .01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .72rem;
    color: var(--gold);
    margin: 0 0 .8em;
    font-weight: 500;
}

/* ---------------- Boutons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: .95em 2em;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-20deg);
    transition: left .7s var(--ease);
    pointer-events: none;
}
.btn:hover::before { left: 130%; }
@media (prefers-reduced-motion: reduce) { .btn::before { display: none; } }
.btn--sm { padding: .6em 1.3em; font-size: .82rem; }
.btn--block { width: 100%; }

.btn--gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
    color: #1a1305;
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(201,162,75,.32); }

.btn--outline-gold {
    border-color: var(--gold);
    color: var(--gold-light);
    background: transparent;
}
.btn--outline-gold:hover { background: rgba(201,162,75,.1); transform: translateY(-3px); }

button.link-danger {
    background: none; border: none; color: #e07a6b; padding: 0; font-size: .85rem;
}
button.link-danger:hover { text-decoration: underline; }

/* ---------------- Loader ---------------- */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s;
}
.page-loader__crown { font-size: 2.6rem; animation: pulse 1.1s ease-in-out infinite; }
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.25); opacity: 1; }
}

/* ---------------- Header ---------------- */
.site-header {
    position: sticky; top: 0; z-index: 500;
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
/* Le flou est sur un pseudo-élément (pas sur .site-header lui-même) : un élément
   avec backdrop-filter/filter/transform devient un "containing block" pour ses
   descendants en position:fixed — cela cassait le menu mobile plein écran. */
.site-header::before {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: rgba(10,10,12,.75);
    backdrop-filter: blur(14px);
    pointer-events: none;
}
.site-header__inner {
    display: flex; align-items: center; gap: 24px;
    padding: 14px 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; margin-right: auto; }
.brand__name {
    font-family: 'Marck Script', cursive;
    font-size: 1.7rem;
    color: var(--text);
}
.brand__name--sm { font-size: 1.3rem; }
.brand__sub {
    font-size: .62rem; letter-spacing: .35em; color: var(--gold);
    text-transform: uppercase; margin-top: 2px;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
    font-size: .85rem; font-weight: 500; color: var(--text-muted);
    position: relative; padding: 6px 0; transition: color .25s;
}
.main-nav a::after {
    content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: var(--gold); transition: width .3s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--gold); transition: transform .3s, opacity .3s; }

/* ---------------- Hero ---------------- */
.hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(201,162,75,.10), transparent 55%),
        var(--black);
}
.hero__particles {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(201,162,75,.35) 1px, transparent 1.4px);
    background-size: 34px 34px;
    opacity: .35;
    mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

/* ---------------- Hero : carrousel photo en arrière-plan ---------------- */
.hero__bg {
    position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.hero__bg-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transform: scale(1.08);
    animation: hero-bg-cycle 21s ease-in-out infinite;
    will-change: opacity, transform;
}
.hero__bg-slide:nth-child(1) { animation-delay: 0s; }
.hero__bg-slide:nth-child(2) { animation-delay: 7s; }
.hero__bg-slide:nth-child(3) { animation-delay: 14s; }
@keyframes hero-bg-cycle {
    0%      { opacity: 0; transform: scale(1.08); }
    4%      { opacity: .5; }
    28%     { opacity: .5; transform: scale(1.14); }
    33%     { opacity: 0; transform: scale(1.16); }
    100%    { opacity: 0; }
}
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,8,6,.55) 0%, rgba(10,8,6,.82) 65%, var(--black) 100%),
        radial-gradient(ellipse at 15% 20%, rgba(201,162,75,.12), transparent 55%);
}
@media (prefers-reduced-motion: reduce) {
    .hero__bg-slide { animation: none; opacity: 0; transform: none; }
    .hero__bg-slide:first-child { opacity: .4; }
}
.hero__inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative;
}
.hero__title { line-height: 1.05; }
.hero__desc { max-width: 46ch; margin-bottom: 2em; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__image-wrap { position: relative; }
.hero__image {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.hero__image img { border-radius: var(--radius); }
.hero__image-glow {
    position: absolute; inset: 0; pointer-events: none;
    box-shadow: inset 0 0 60px rgba(201,162,75,.18);
    border-radius: var(--radius);
}

/* ---------------- 3D tilt (JS ajoute la transform) ---------------- */
.tilt-3d {
    transform-style: preserve-3d;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    will-change: transform;
}

/* ---------------- Sections ---------------- */
.section { padding: 90px 0; }
.section--dark { background: var(--black); }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 50px; }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------------- Dish cards ---------------- */
.dish-card {
    background: var(--black-2); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.dish-card__img { aspect-ratio: 4/3; overflow: hidden; }
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish-card:hover .dish-card__img img { transform: scale(1.08); }
.dish-card__body { padding: 22px; }
.dish-card__body h3 { font-size: 1.25rem; }
.dish-card__body p { font-size: .88rem; margin-bottom: 1em; }
.price { color: var(--gold); font-weight: 600; }

/* ---------------- Jus teaser & jus cards ---------------- */
.jus-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.jus-teaser__img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.section--jus-teaser { background: linear-gradient(180deg, var(--black), var(--black-2)); }

.jus-card {
    background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px; text-align: center;
}
.jus-card__img { border-radius: 12px; overflow: hidden; margin-bottom: 14px; aspect-ratio: 4/3; }
.jus-card__img img { width: 100%; height: 100%; object-fit: cover; }
.jus-card h3 { font-size: 1.1rem; }
.jus-card p { font-size: .82rem; }

.cta-banner {
    margin-top: 60px; padding: 34px; border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(120deg, rgba(201,162,75,.10), transparent);
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cta-banner p { color: var(--text); font-size: 1.05rem; margin: 0; }

/* ---------------- USP / feature cards ---------------- */
.usp-grid { margin-bottom: 60px; text-align: center; }
.usp__icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.usp h3 { font-size: 1.1rem; }
.usp p { font-size: .85rem; }

.feature-card {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--black-2);
}
.feature-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.feature-card__body { padding: 20px; }
.feature-card__body h3 { font-size: 1.15rem; }
.feature-card__body p { font-size: .85rem; margin: 0; }

/* ---------------- Page hero (sous-pages) ---------------- */
.page-hero {
    padding: 130px 0 50px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,162,75,.12), transparent 60%), var(--black);
}
.page-hero p:not(.eyebrow) { max-width: 50ch; margin: 0 auto; }

/* ---------------- Menu page ---------------- */
.menu-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.menu-frame {
    position: relative; border: 1px solid var(--gold-dark); border-radius: 4px; padding: 46px 36px;
    text-align: center; background: var(--black-2);
}
.menu-frame::before {
    content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,162,75,.35); pointer-events: none;
}
.menu-frame .crown { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.menu-frame .brand__name--sm { display: block; margin-bottom: 6px; }
.menu-frame h2 { margin-bottom: 1.2em; }
.menu-list { margin-bottom: 2em; text-align: left; }
.menu-list li {
    display: flex; align-items: baseline; gap: 8px;
    padding: 10px 0; border-bottom: 1px dashed rgba(201,162,75,.2);
    font-size: .95rem;
}
.menu-list__dots {
    flex: 1; border-bottom: 1px dotted var(--gold-dark); margin-bottom: 5px;
}
.menu-list__price { color: var(--gold); font-weight: 600; white-space: nowrap; flex-shrink: 0; }

.menu-gallery__main { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 20px; }
.mini-card {
    background: var(--black-2); border: 1px solid var(--border); border-radius: 12px; padding: 16px;
}
.mini-card h4 { margin-bottom: .3em; font-size: 1rem; }
.mini-card p { font-size: .8rem; margin: 0; }

/* ---------------- Commandes (panier) ---------------- */
.order-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.order-catalog__title { margin-top: 40px; }
.order-catalog__title:first-child { margin-top: 0; }
.order-list { display: flex; flex-direction: column; gap: 12px; }

.order-item {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: var(--black-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px;
    transition: border-color .3s;
}
.order-item:has(.qty-value:not(:-moz-only-whitespace)) {}
.order-item.has-qty { border-color: var(--gold); }
.order-item__info { display: flex; align-items: center; gap: 14px; }
.order-item__info img { width: 58px; height: 58px; object-fit: cover; border-radius: 8px; }
.order-item__info h4 { margin: 0 0 4px; font-size: .95rem; font-family: 'Poppins', sans-serif; font-weight: 500; }

.qty-stepper { display: flex; align-items: center; gap: 10px; }
.qty-btn {
    width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold);
    background: transparent; color: var(--gold); font-size: 1rem; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.qty-btn:hover { background: rgba(201,162,75,.15); }
.qty-value { min-width: 18px; text-align: center; font-weight: 600; }

.order-summary {
    position: sticky; top: 96px;
    background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; box-shadow: var(--shadow-gold);
}
.order-summary h3 { margin-bottom: 1em; }
.cart-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; max-height: 220px; overflow-y: auto; }
.cart-list li { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text); }
.cart-empty { color: var(--text-muted); font-size: .85rem; }
.cart-total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: 14px; border-top: 1px solid var(--border); margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
}
.cart-total strong { color: var(--gold); }

.order-summary__hint { font-size: .75rem; color: var(--text-muted); text-align: center; margin: 10px 0 0; }

/* ---------------- Formulaires ---------------- */
.field { display: block; margin-bottom: 16px; font-size: .85rem; }
.field span { display: block; margin-bottom: 6px; color: var(--text-muted); }
.field input, .field textarea, .field select {
    width: 100%; padding: .8em 1em; border-radius: 10px; border: 1px solid var(--border);
    background: var(--black-3); color: var(--text); font-family: inherit; font-size: .9rem;
    transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.15);
}
.checkbox-field { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 16px; color: var(--text-muted); }

.payment-methods { border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; }
.payment-methods legend { font-size: .8rem; color: var(--gold); padding: 0 6px; }
.payment-methods label { display: flex; align-items: center; gap: 8px; font-size: .85rem; padding: 6px 0; color: var(--text); }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.alert { padding: 14px 18px; border-radius: 10px; font-size: .85rem; margin-bottom: 18px; }
.alert--success { background: rgba(80,180,120,.12); border: 1px solid rgba(80,180,120,.35); color: #a9e6bf; }
.alert--error { background: rgba(224,122,107,.12); border: 1px solid rgba(224,122,107,.35); color: #f0b3a8; }

/* ---------------- Confirmation ---------------- */
.confirmation__box {
    max-width: 560px; margin: 0 auto; text-align: center;
    background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 46px;
}
.confirmation__icon { font-size: 2.4rem; display: block; margin-bottom: .3em; }
.confirmation .btn { margin-top: 12px; }

/* ---------------- Contact ---------------- */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.contact-list { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; font-size: .9rem; }
.contact-list li { display: flex; align-items: center; gap: 10px; }
.contact-list .icon { color: var(--gold); flex-shrink: 0; }
.contact-form { background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }

/* ---------------- About ---------------- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.about-text p { font-size: 1rem; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--border); padding-top: 50px; }
.site-footer__banner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 50px;
    background: linear-gradient(120deg, rgba(201,162,75,.10), transparent);
}
.site-footer__banner h3 { margin: 0; font-size: 1.4rem; }
.site-footer__social { display: flex; align-items: center; gap: 12px; font-size: .85rem; color: var(--text-muted); }
.site-footer__social a {
    width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .85rem;
}
.site-footer__cols {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px;
}
.site-footer__cols h4 { font-size: .95rem; margin-bottom: 14px; }
.site-footer__cols a { display: block; font-size: .88rem; color: var(--text-muted); padding: 4px 0; }
.site-footer__cols p { font-size: .85rem; }
.site-footer__copy {
    text-align: center; font-size: .78rem; color: var(--text-muted);
    border-top: 1px solid var(--border); padding: 18px 0; margin: 0;
}

/* ---------------- WhatsApp flottant ---------------- */
.whatsapp-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 400;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center; color: #fff;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
    animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------------- Erreur 404 ---------------- */
.error-page { text-align: center; padding: 160px 0; }
.error-page h1 { font-size: 5rem; }

/* ---------------- Reveal on scroll ---------------- */
[data-reveal] {
    opacity: 0; transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =================================================================
   Illustrations & animations supplémentaires
   ================================================================= */

/* ---------------- Grain de fond (texture premium) ---------------- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- Flèche décorative sous les titres ---------------- */
.flourish { color: var(--gold); display: block; margin: 16px auto 0; opacity: .8; }

/* ---------------- Diviseur ornemental entre sections ---------------- */
.ornament-divider {
    display: flex; align-items: center; gap: 16px;
    max-width: 320px; margin: 0 auto; padding: 0 24px;
}
.ornament-divider span {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark));
}
.ornament-divider span:last-child { background: linear-gradient(90deg, var(--gold-dark), transparent); }
.ornament-divider i {
    width: 9px; height: 9px; background: var(--gold);
    transform: rotate(45deg); flex-shrink: 0;
    box-shadow: 0 0 12px rgba(201,162,75,.6);
}

/* ---------------- Bandeau défilant (marquee) ---------------- */
.marquee {
    overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--black-2);
    padding: 14px 0;
}
.marquee__track {
    display: flex; width: max-content; gap: 40px;
    animation: marquee 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
    display: flex; align-items: center; gap: 40px;
    font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; letter-spacing: .06em;
    color: var(--gold-light); white-space: nowrap;
}
.marquee__track span i { color: var(--gold-dark); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------------- Statistiques animées ---------------- */
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.stats-grid { text-align: center; }
.stat__number-wrap {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--gold); display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat p { margin-top: 6px; font-size: .82rem; letter-spacing: .03em; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Badge 3D (vrai modèle rotatif) sur le hero ---------------- */
.hero__badge3d {
    position: absolute; top: -26px; right: -26px; width: 128px; height: 128px; z-index: 5;
    border-radius: 50%; overflow: hidden; background: var(--black-2);
    border: 2px solid var(--gold);
    box-shadow: 0 12px 30px rgba(0,0,0,.5), 0 0 0 6px rgba(201,162,75,.12);
}
.hero__badge3d-viewer { width: 100%; height: 100%; --poster-color: transparent; pointer-events: none; }
.hero__badge3d-tag {
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    font-size: .58rem; letter-spacing: .18em; color: var(--gold-light);
    background: rgba(10,10,12,.75); padding: 2px 10px; border-radius: 999px; pointer-events: none;
}
@media (max-width: 900px) { .hero__badge3d { width: 92px; height: 92px; top: -16px; right: -16px; } }

/* ---------------- Aurore de fond (hero) ---------------- */
.hero__aurora { position: absolute; inset: -20%; pointer-events: none; z-index: 0; overflow: hidden; }
.hero__aurora span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .4; }
.hero__aurora span:nth-child(1) {
    width: 420px; height: 420px; top: -8%; left: 4%;
    background: radial-gradient(circle, rgba(201,162,75,.55), transparent 70%);
    animation: aurora-1 19s ease-in-out infinite;
}
.hero__aurora span:nth-child(2) {
    width: 340px; height: 340px; bottom: -14%; right: 6%;
    background: radial-gradient(circle, rgba(138,90,18,.5), transparent 70%);
    animation: aurora-2 23s ease-in-out infinite;
}
.hero__aurora span:nth-child(3) {
    width: 260px; height: 260px; top: 28%; right: 28%;
    background: radial-gradient(circle, rgba(243,217,139,.4), transparent 70%);
    animation: aurora-3 27s ease-in-out infinite;
}
@keyframes aurora-1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(60px, 40px); } }
@keyframes aurora-2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-50px, -30px); } }
@keyframes aurora-3 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px, -40px) scale(1.15); } }
@media (prefers-reduced-motion: reduce) { .hero__aurora span { animation: none; } }

/* ---------------- Titre du hero : entrée en cascade ---------------- */
.hero__title-word { display: inline-block; opacity: 0; transform: translateY(30px); }
[data-reveal].is-visible .hero__title-word { animation: word-in .9s var(--ease) forwards; }
[data-reveal].is-visible .hero__title-word:nth-child(2) { animation-delay: .14s; }
@keyframes word-in { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero__title-word { animation: none !important; opacity: 1; transform: none; } }

/* ---------------- Flottement continu de la photo du hero ---------------- */
.hero__float { animation: float-y 5.5s ease-in-out infinite; }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hero__float { animation: none; } }

.marquee__star { color: var(--gold-dark); vertical-align: -0.1em; }

/* ---------------- Vapeur (plats chauds) ---------------- */
.steam { position: absolute; top: 6%; left: 38%; width: 60px; height: 100px; pointer-events: none; z-index: 4; }
.steam i {
    position: absolute; bottom: 0; width: 14px; height: 40px; border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
    filter: blur(6px);
    animation: steam-rise 4.5s ease-in infinite;
    opacity: 0;
}
.steam i:nth-child(1) { left: 0; animation-delay: 0s; }
.steam i:nth-child(2) { left: 20px; animation-delay: 1.5s; }
.steam i:nth-child(3) { left: 40px; animation-delay: 3s; }
@keyframes steam-rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    15% { opacity: .55; }
    100% { transform: translateY(-90px) scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .steam { display: none; } }

/* ---------------- Galerie + lightbox ---------------- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-item {
    position: relative; border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/3; background: none; padding: 0; display: block; width: 100%;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item__zoom {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(10,10,12,.35); opacity: 0; transition: opacity .3s; font-size: 1.4rem;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; }

.lightbox {
    position: fixed; inset: 0; z-index: 2000; background: rgba(6,6,8,.94);
    display: flex; align-items: center; justify-content: center; padding: 40px;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close {
    position: absolute; top: 24px; right: 28px; background: none; border: 1px solid var(--gold);
    color: var(--gold); width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem;
}
.lightbox__close:hover { background: rgba(201,162,75,.15); }

/* ---------------- Témoignages (carrousel) ---------------- */
.testimonial-note { text-align: center; font-size: .78rem; opacity: .7; margin-top: -30px; margin-bottom: 40px; }
.testimonial-carousel {
    max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--black-2); overflow: hidden;
}
.testimonial-track { display: flex; transition: transform .5s var(--ease); }
.testimonial { min-width: 100%; padding: 46px 50px; text-align: center; margin: 0; }
.testimonial p {
    font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: var(--text);
    margin-bottom: 1em;
}
.testimonial p::before { content: '“'; color: var(--gold); }
.testimonial p::after { content: '”'; color: var(--gold); }
.testimonial cite { font-size: .8rem; color: var(--gold); font-style: normal; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; padding: 0 0 22px; }
.testimonial-dots button {
    width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold); background: transparent; padding: 0;
}
.testimonial-dots button.is-active { background: var(--gold); }

/* ---------------- Spotlight curseur (hero) ---------------- */
.hero { --spot-x: 50%; --spot-y: 30%; }
.hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(360px circle at var(--spot-x) var(--spot-y), rgba(201,162,75,.14), transparent 70%);
    transition: opacity .3s;
}

/* ---------------- Retour en haut ---------------- */
.back-to-top {
    position: fixed; bottom: 24px; left: 24px; z-index: 400;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold);
    background: var(--black-2); color: var(--gold); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transform: translateY(10px);
    transition: opacity .3s, transform .3s;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: rgba(201,162,75,.15); }

/* ---------------- Carrousel 3D du menu ---------------- */
.menu3d-section { padding-bottom: 30px; }
.menu3d {
    position: relative; height: 440px; max-width: 900px; margin: 0 auto;
    perspective: 1500px; overflow: hidden; outline: none; touch-action: pan-y;
}
.menu3d__stage {
    position: relative; width: 100%; height: 100%; transform-style: preserve-3d;
    pointer-events: none;
}
.menu3d__card {
    position: absolute; top: 50%; left: 50%; width: 250px; height: 370px;
    margin: -185px 0 0 -125px;
    transition: transform .55s var(--ease), opacity .55s, filter .55s;
    transform-style: preserve-3d; cursor: pointer;
    filter: brightness(.5) saturate(.65);
}
.menu3d__card.is-active { filter: none; cursor: default; }
.menu3d__card-inner {
    width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden;
    background: var(--black-2); border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
    display: flex; flex-direction: column;
}
.menu3d__card-inner img { width: 100%; height: 58%; object-fit: cover; flex-shrink: 0; }
.menu3d__card-body { padding: 16px 18px; text-align: center; }
.menu3d__card-body h3 { font-size: 1.1rem; margin-bottom: .3em; }
.menu3d__card-body p { font-size: .76rem; margin-bottom: .5em; }

.menu3d__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 60;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold);
    background: rgba(10,10,12,.65); color: var(--gold); font-size: 1.5rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
}
.menu3d__nav:hover { background: rgba(201,162,75,.2); }
.menu3d__nav--prev { left: 6px; }
.menu3d__nav--next { right: 6px; }

.menu3d__dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.menu3d__dots button { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--gold); background: transparent; padding: 0; }
.menu3d__dots button.is-active { background: var(--gold); }

@media (prefers-reduced-motion: reduce) {
    .menu3d__card { transition: none; }
}
@media (max-width: 900px) {
    .menu3d { height: 430px; }
    .menu3d__card { width: 220px; height: 370px; margin: -185px 0 0 -110px; }
    .menu3d__card-inner img { height: 42%; }
    .menu3d__card-body { padding: 14px 16px; }
    .menu3d__card-body h3 { font-size: 1rem; }
    .menu3d__card-body p { font-size: .72rem; }
    .menu3d__nav { width: 38px; height: 38px; font-size: 1.2rem; }
}
@media (max-width: 420px) {
    .menu3d { height: 400px; }
    .menu3d__card { width: 190px; height: 340px; margin: -170px 0 0 -95px; }
}

/* ---------------- Bouton "Voir en 3D" + modale modèle 3D ---------------- */
.btn-3d-view {
    display: flex; align-items: center; gap: 6px; margin: 22px auto 0;
    background: none; border: 1px solid var(--gold); color: var(--gold-light);
    padding: 10px 22px; border-radius: 999px; font-size: .82rem; font-weight: 600;
}
.btn-3d-view:hover { background: rgba(201,162,75,.15); }

.model3d-modal {
    position: fixed; inset: 0; z-index: 2100; background: rgba(6,6,8,.94);
    display: flex; align-items: center; justify-content: center; padding: 30px;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.model3d-modal.is-open { opacity: 1; visibility: visible; }
.model3d-modal__panel {
    width: 100%; max-width: 560px; background: var(--black-2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; position: relative; text-align: center;
}
.model3d-modal__badge {
    font-size: .7rem; color: var(--gold-light); background: rgba(201,162,75,.1);
    border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px;
    display: inline-block; margin-bottom: 14px;
}
.model3d-modal__panel h3 { margin-top: 14px; font-size: 1.2rem; }
.model3d-modal__viewer { width: 100%; height: 400px; background: var(--black-3); border-radius: 12px; }
@media (max-width: 900px) { .model3d-modal__viewer { height: 300px; } }

/* ---------------- Responsive (illustrations) ---------------- */
@media (max-width: 900px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial { padding: 34px 24px; }
    .back-to-top { width: 40px; height: 40px; left: 16px; bottom: 16px; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
    .main-nav {
        position: fixed; inset: 70px 0 0 0; background: rgba(10,10,12,.98);
        flex-direction: column; align-items: center; justify-content: center; gap: 26px;
        transform: translateY(-110%); transition: transform .4s var(--ease); z-index: 400;
    }
    .main-nav.is-open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .header-cta { display: none; }

    .hero__inner, .jus-teaser, .menu-layout, .order-layout, .contact-layout, .about-layout {
        grid-template-columns: 1fr;
    }
    /* Tablette : 2 colonnes plutôt qu'une seule pour mieux occuper la largeur */
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .site-footer__cols { grid-template-columns: 1fr; }
    .order-summary { position: static; }
}

@media (max-width: 600px) {
    .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .qty-btn { width: 36px; height: 36px; }
    .order-item__info img { width: 50px; height: 50px; }
}
