* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #E8B72E;
    --gold-dark: #C99B1F;
    --red: #C81C21;
    --dark: #1A1A1A;
}

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    background: #ffffff;
    color: var(--dark);
    font-family: 'Bricolage Grotesque', Arial, sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Bulles décoratives subtiles (fond de base du site) */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}
body::before {
    width: 420px;
    height: 420px;
    background: var(--gold);
    top: -120px;
    left: -120px;
}
body::after {
    width: 420px;
    height: 420px;
    background: var(--red);
    bottom: -140px;
    right: -140px;
}

/* ===== ZONE FIXE (barre rouge + header) ===== */
.site-top {
    position: sticky;
    top: 0;
    z-index: 20;
}

/* ===== BARRE ROUGE / SLOGAN ===== */
.topbar {
    background: var(--red);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 6%;
}
.topbar .topbar-text { display: inline-flex; align-items: center; gap: 10px; }
.topbar svg { opacity: 0.9; }

/* ===== HEADER / BANNIÈRE ===== */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f1f1;
}
.header-inner {
    padding: 20px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-header .brand img { height: 64px; width: auto; object-fit: contain; }
.site-header .brand .brand-text { font-weight: 800; font-size: 18px; line-height: 1.1; letter-spacing: 0.3px; }
.site-header .brand .brand-text .gold { color: var(--gold); }
.site-header .brand .brand-text .sub { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--red); }

/* Barre de recherche */
.search-bar {
    flex: 1;
    max-width: 620px;
    margin-left: 22px;
    margin-right: auto;
    position: relative;
    display: flex;
    align-items: center;
}
.search-bar .search-icon { position: absolute; left: 18px; color: #b0b0b0; display: flex; align-items: center; pointer-events: none; }
.search-bar input {
    width: 100%;
    padding: 15px 18px 15px 50px;
    border: 1.5px solid #ececec;
    border-radius: 10px;
    background: #f7f7f7;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15.5px;
    color: var(--dark);
    outline: none;
    transition: all 0.25s ease;
}
.search-bar input::placeholder { color: #aaa; }
.search-bar input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(232,183,46,0.15); }
.search-bar:focus-within .search-icon { color: var(--gold-dark); }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 999px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.header-cta:hover { background: #1ebe5b; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1.5px solid #e3e3e3;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.header-contact:hover { border-color: var(--dark); transform: translateY(-1px); }

/* ===== HERO / PREMIÈRE PARTIE ===== */
.hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 50px;
    padding: 70px 6% 90px;
    min-height: calc(100vh - 90px);
}
.hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 183, 46, 0.12);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(232, 183, 46, 0.30);
    margin-bottom: 22px;
}
.hero-content h1 { font-size: 58px; font-weight: 900; line-height: 1.05; letter-spacing: -1px; margin-bottom: 20px; }
.hero-content h1 .gold { color: var(--gold); }
.hero-content h1 .red { color: var(--red); }
.hero-content p { font-size: 16px; color: #777; line-height: 1.7; max-width: 480px; margin-bottom: 32px; }

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 22px rgba(232, 183, 46, 0.30);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 12px;
    border: 1.5px solid #e3e3e3;
    transition: all 0.25s ease;
}
.btn-ghost:hover { border-color: var(--dark); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: flex-end; }
.image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    background: repeating-linear-gradient(45deg, #fbfbfb, #fbfbfb 14px, #f6f6f6 14px, #f6f6f6 28px);
    border: 2px dashed #e0d8bf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #c4b88c;
    text-align: center;
    position: relative;
}
.image-placeholder svg { opacity: 0.7; }
.image-placeholder span { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; }
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: radial-gradient(circle, rgba(232,183,46,0.18) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* ===== CLUSTER DE PLATS ===== */
.plate-cluster { position: relative; width: 100%; max-width: 470px; aspect-ratio: 1 / 1; margin-left: auto; }
.plate-cluster .ring-line { position: absolute; inset: 13%; border: 2px dashed rgba(232,183,46,0.4); border-radius: 50%; }
.plate {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f3f3;
    border: 4px solid #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.plate img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plate.center {
    width: 46%; height: 46%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border-width: 6px;
    box-shadow: 0 16px 38px rgba(0,0,0,0.20);
}
.plate.s {
    width: 26%; height: 26%;
    transform: translate(-50%, -50%);
    animation: plateFloat 5s ease-in-out infinite;
    will-change: transform;
}
.plate.p1 { top: 10%; left: 50%; animation-delay: 0s; }
.plate.p2 { top: 30%; left: 86%; animation-delay: .5s; }
.plate.p3 { top: 72%; left: 86%; animation-delay: 1s; }
.plate.p4 { top: 91%; left: 50%; animation-delay: 1.5s; }
.plate.p5 { top: 72%; left: 14%; animation-delay: 2s; }
.plate.p6 { top: 30%; left: 14%; animation-delay: 2.5s; }
@keyframes plateFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, -62%); }
}

/* Variante orbite */
.plate-cluster.orbit { animation: orbitSpin 48s linear infinite; will-change: transform; }
.plate-cluster.orbit .plate.s { animation: none; }
.plate-cluster.orbit .plate img { animation: orbitCounter 48s linear infinite; will-change: transform; }
@keyframes orbitSpin    { to { transform: rotate(360deg); } }
@keyframes orbitCounter { to { transform: rotate(-360deg); } }

/* ===== SLIDER ===== */
.hero-slider { position: relative; z-index: 1; overflow: hidden; }
.hero-track {
    display: flex;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    backface-visibility: hidden;
}
.hero-slide { min-width: 100%; }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    transition: all 0.2s ease;
}
.slider-arrow:hover { background: var(--gold); color: #fff; }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

.slider-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #d9d4c4;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}
.slider-dots .dot.active { width: 30px; background: var(--gold); }

/* ===== THÈMES DE SLIDE ===== */
.slide-gold { background: #f8f5ec; }
.slide-gold .image-placeholder { border-color: #f0e1b6; color: #c4ab66; }
.slide-gold .hero-visual::before { background: radial-gradient(circle, rgba(232,183,46,0.20) 0%, transparent 70%); }

.slide-red { background: #fff7f1; }
.slide-red .eyebrow { background: rgba(200,28,33,0.10); color: var(--red); border-color: rgba(200,28,33,0.28); }
.slide-red .btn-gold { background: var(--red); box-shadow: 0 8px 22px rgba(200,28,33,0.28); }
.slide-red .btn-gold:hover { background: #a11519; }
.slide-red .hero-visual::before { background: radial-gradient(circle, rgba(200,28,33,0.16) 0%, transparent 70%); }
.slide-red .image-placeholder { border-color: #ecc9c4; color: #c79a95; }

.slide-honey { background: #fdf8ec; }
.slide-honey .eyebrow { background: rgba(232,183,46,0.14); color: var(--gold-dark); border-color: rgba(232,183,46,0.32); }
.slide-honey .btn-gold { background: var(--gold); box-shadow: 0 8px 22px rgba(232,183,46,0.30); }
.slide-honey .btn-gold:hover { background: var(--gold-dark); }
.slide-honey .image-placeholder { border-color: #ead9b0; color: #c4b079; }
.slide-honey .hero-visual::before { background: radial-gradient(circle, rgba(232,183,46,0.20) 0%, transparent 70%); }

/* ===== CONTENU APRÈS LE SLIDER ===== */
.page-content { position: relative; z-index: 2; background: #ffffff; }
.section { padding: 80px 6%; }
.section-head { margin-bottom: 40px; }
.section-eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-head h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.8px; color: var(--dark); }
.section-head p { color: #888; font-size: 15px; margin-top: 8px; }

/* ===== CATÉGORIES ===== */
.category-row { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.category-card {
    flex: 1 1 200px;
    min-width: 0;
    max-width: 280px;
    text-decoration: none;
    text-align: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 20px;
    padding: 20px 16px 18px;
    transition: all 0.25s ease;
    cursor: pointer;
}
.category-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 16px 34px rgba(200,28,33,0.16); }
.category-thumb {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,183,46,0.12);
    color: var(--gold-dark);
    overflow: hidden;
    transition: all 0.25s ease;
}
.category-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-thumb svg { width: 42px; height: 42px; }
.category-card:hover .category-thumb { transform: scale(1.04); }
.category-info { display: flex; flex-direction: column; gap: 3px; }
.category-name { font-size: 16px; font-weight: 700; color: var(--dark); }
.category-meta { font-size: 12.5px; color: #aaa; font-weight: 500; }
.category-card.active { border-color: var(--red); box-shadow: none; }
.category-card.active .category-name { color: var(--red); }

/* ===== PRODUITS ===== */
.dishes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.dish-card {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.dish-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: repeating-linear-gradient(45deg, #fbfbfb, #fbfbfb 12px, #f5f5f5 12px, #f5f5f5 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8cfa8;
    overflow: hidden;
}
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.dish-card:hover .dish-img img { transform: scale(1.07); }
.dish-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(255,255,255,0.92);
    color: var(--gold-dark);
    font-size: 11px; font-weight: 600;
    padding: 5px 12px; border-radius: 999px;
    backdrop-filter: blur(4px);
}
.dish-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.dish-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.dish-body p {
    font-size: 13px; color: #999; line-height: 1.5; margin-bottom: 18px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dish-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dish-price { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1; }
.dish-price small { font-size: 12px; font-weight: 600; color: #aaa; }
.dish-add {
    display: inline-flex; align-items: center; gap: 7px;
    border-radius: 11px; border: none;
    background: var(--gold); color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px; font-weight: 600; padding: 10px 16px;
    cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.dish-add:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(232,183,46,0.30); }
.dish-card.hidden { display: none; }
.dishes-empty { grid-column: 1 / -1; text-align: center; color: #aaa; font-size: 15px; padding: 40px 0; }
.dishes-more {
    align-items: center;
    justify-content: center;
    margin-top: 34px;
}
.dishes-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 14px 34px;
    cursor: pointer;
    transition: all 0.22s ease;
}
.dishes-more-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(232,183,46,0.28);
}

/* ===== MENU CTA ===== */
.menu-download { padding: 0 6% 80px; }
.menu-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, var(--gold) 0%, #e0851f 55%, var(--red) 115%);
    border-radius: 26px;
    padding: 50px 54px;
    box-shadow: 0 24px 50px rgba(200,28,33,0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.menu-cta::after { content: ''; position: absolute; width: 320px; height: 320px; background: rgba(255,255,255,0.10); border-radius: 50%; top: -120px; right: -70px; pointer-events: none; }
.menu-cta::before { content: ''; position: absolute; width: 220px; height: 220px; background: rgba(255,255,255,0.08); border-radius: 50%; bottom: -110px; left: -50px; pointer-events: none; }
.menu-cta .cta-text { position: relative; z-index: 1; }
.menu-cta .cta-eyebrow { display: inline-block; color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.menu-cta .cta-text h2 { color: #fff; font-size: 32px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 8px; }
.menu-cta .cta-text p { color: rgba(255,255,255,0.92); font-size: 15px; line-height: 1.6; max-width: 460px; }
.menu-dl-all {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    color: var(--dark);
    border: none;
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 18px 38px;
    border-radius: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.menu-dl-all:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.25); }
.menu-dl-all svg { color: var(--red); }

/* ===== MENU PREVIEW ===== */
.menu-preview-section { padding-top: 0; }
.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.menu-preview-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    border: 1.5px solid #f0f0f0;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.menu-preview-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 22px 44px rgba(200,28,33,0.12);
}
.menu-preview-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.35s ease;
}
.menu-preview-card:hover img { transform: scale(1.03); }
.menu-preview-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.92);
    color: var(--dark);
    border: 1px solid rgba(232,183,46,0.45);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(20, 15, 10, 0.72);
    backdrop-filter: blur(4px);
}
.menu-modal.open { display: flex; }
.menu-modal-card {
    position: relative;
    max-width: min(94vw, 900px);
    max-height: 92vh;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.34);
    animation: modalPop 0.28s ease;
}
.menu-modal-card img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 92vh;
    object-fit: contain;
}
.menu-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.94);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.16);
    transition: all 0.2s ease;
}
.menu-modal-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }

/* ===== PROMO ===== */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.promo-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    color: #fff;
    isolation: isolate;
}
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.5s ease; }
.promo-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,12,10,0.82) 0%, rgba(15,12,10,0.45) 55%, rgba(15,12,10,0.15) 100%); z-index: -1; }
.promo-card:hover img { transform: scale(1.05); }
.promo-card .promo-eyebrow {
    display: inline-block;
    background: rgba(232,183,46,0.22);
    border: 1px solid rgba(232,183,46,0.5);
    color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
    align-self: flex-start;
}
.promo-card h3 { font-size: 30px; font-weight: 800; line-height: 1.12; letter-spacing: -0.5px; max-width: 320px; }
.promo-card .promo-btn {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: var(--dark);
    text-decoration: none;
    font-size: 13.5px; font-weight: 700;
    padding: 13px 26px; border-radius: 999px;
    transition: all 0.25s ease;
}
.promo-card .promo-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

.promo-card.promo-light,
.promo-card.promo-color { flex-direction: row; align-items: center; justify-content: space-between; gap: 22px; min-height: 230px; }
.promo-card.promo-light::after,
.promo-card.promo-color::after { display: none; }
.promo-card.promo-light { background: #fff; border: 1.5px solid #eee; color: var(--dark); }
.promo-card.promo-light .promo-eyebrow { background: rgba(232,183,46,0.12); border-color: rgba(232,183,46,0.30); color: var(--gold-dark); }
.promo-card.promo-light h3 { color: var(--dark); }
.promo-card.promo-light .promo-btn { background: var(--gold); color: #fff; }
.promo-card.promo-light .promo-btn:hover { background: var(--gold-dark); }
.promo-card.promo-color { background: linear-gradient(135deg, var(--gold) 0%, var(--red) 125%); }
.promo-content { display: flex; flex-direction: column; justify-content: space-between; align-self: stretch; gap: 14px; }
.promo-visual {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,183,46,0.15);
    color: var(--gold-dark);
}
.promo-visual img { width: 100%; height: 100%; object-fit: cover; }
.promo-card.promo-color .promo-visual { background: rgba(255,255,255,0.20); color: #fff; }

/* ===== AVIS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
    background: #f6f6f4;
    border: 1.5px solid #efefe9;
    border-radius: 18px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.review-card:hover { background: #fff; border-color: var(--gold); box-shadow: 0 14px 32px rgba(0,0,0,0.06); transform: translateY(-4px); }
.review-card.review-hidden { display: none; }
.review-stars { display: inline-flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.review-text { font-size: 14.5px; color: #555; line-height: 1.65; flex: 1; margin-bottom: 22px; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(232,183,46,0.15);
    color: var(--gold-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px;
}
.review-meta .review-info span { display: block; }
.review-date { font-size: 11.5px; color: #aaa; line-height: 1.4; }
.review-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-top: 2px; }
.reviews-more { text-align: center; margin-top: 40px; }
.btn-add-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    background: var(--dark);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-add-review:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,183,46,0.30); }

/* ===== POPUP PRODUIT ===== */
.dish-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(20, 15, 10, 0.55);
    backdrop-filter: blur(3px);
}
.dish-modal.open { display: flex; }
.dish-modal-card {
    background: #fff;
    border-radius: 24px;
    max-width: 760px;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    animation: modalPop 0.28s ease;
}
@keyframes modalPop { from { transform: translateY(16px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.dish-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    color: #1A1A1A;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}
.dish-modal-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.dish-modal-img {
    background: repeating-linear-gradient(45deg, #fbfbfb, #fbfbfb 12px, #f5f5f5 12px, #f5f5f5 24px);
    display: flex; align-items: center; justify-content: center;
    color: #d8cfa8;
    min-height: 320px;
    overflow: hidden;
}
.dish-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.dish-modal-body { padding: 36px 34px; display: flex; flex-direction: column; }
.dish-modal-tag {
    align-self: flex-start;
    background: rgba(232,183,46,0.14);
    color: var(--gold-dark);
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.dish-modal-body h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; color: var(--dark); }
.dish-modal-body p { font-size: 14.5px; color: #777; line-height: 1.7; flex: 1; margin-bottom: 24px; }
.dish-modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dish-modal-price { font-size: 30px; font-weight: 800; color: var(--dark); }
.dish-modal-price small { font-size: 16px; font-weight: 600; color: #aaa; }
.dish-modal-add {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: #fff; border: none;
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14.5px; font-weight: 700;
    padding: 15px 30px; border-radius: 12px; cursor: pointer;
    transition: all 0.2s ease; box-shadow: 0 8px 22px rgba(232,183,46,0.30);
}
.dish-modal-add:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.site-footer {
    background: #000000;
    color: #cfcfcf;
    text-align: center;
    padding: 32px 6%;
    font-size: 13.5px;
    position: relative;
    z-index: 2;
}
.site-footer .gold { color: var(--gold); }
.site-footer .red { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .category-row { grid-template-columns: repeat(2, 1fr); }
    .dishes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
        gap: 40px;
    }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; justify-content: center; }
    .image-placeholder { max-width: 320px; }
    .search-bar { margin: 0 16px; max-width: none; }
    .section { padding: 56px 6%; }
    .section-head h2 { font-size: 30px; }
}
@media (max-width: 820px) {
    .dishes-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-preview-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .search-bar { display: none; }
}
@media (max-width: 640px) {
    .dish-modal-card { grid-template-columns: 1fr; max-width: 420px; }
    .dish-modal-img { min-height: 200px; }
    .dish-modal-body { padding: 26px 24px; }
}
@media (max-width: 560px) {
    .hero-content h1 { font-size: 40px; }
    .header-cta { display: none; }
    .topbar { font-size: 11px; letter-spacing: 0.5px; }
    .category-row { grid-template-columns: 1fr; }
    .dishes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .promo-card.promo-light, .promo-card.promo-color { flex-direction: column; align-items: flex-start; }
    .promo-visual { width: 100%; height: 120px; }
}
