/* ===== VARIABLES ===== */
:root {
    --primary:       #89310B;
    --primary-dark:  #6b2609;
    --primary-hover: #a03d0d;
    --secondary:     #76894F;
    --secondary-dark:#5d6c3d;
    --secondary-lt:  #8fa362;
    --white:         #ffffff;
    --off-white:     #faf8f5;
    --cream:         #f3ede4;
    --text:          #000000;
    --text-lt:       #000000;
    --border:        #e8e0d4;
    --nav-height:    70px;
    --radius:        8px;
    --t:             0.3s ease;
    --font-display:  'Varela Round', sans-serif;
}



.primary {
color : var(--primary)
    }
.secondary {
color : var(--secondary)
    }

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
*:not(i):not([class*="fa-"]) { font-family: var(--font-display) !important; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); overflow-x: hidden; }
body { color: var(--text); background: var(--white); overflow-x: hidden; cursor:url(https://static.wixstatic.com/media/dae630_172bf2e0405442cc84c7ad1bb1aed013~mv2.png/v1/fill/w_25,h_25/dae630_172bf2e0405442cc84c7ad1bb1aed013~mv2.png) 18 18, auto;}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: var(--primary);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 16px;
}

/* Phone — left side */
.nav-phone { flex: 0 0 auto; }
.nav-phone a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .4px;
    transition: opacity var(--t);
}
.nav-phone a:hover { opacity: .8; }
.nav-phone i {
    font-size: .8rem;
    background: rgba(255,255,255,.2);
    padding: 6px;
    border-radius: 50%;
}

/* Links — right half */
.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 13px;
    border-radius: 4px;
    transition: all var(--t);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 13px; right: 13px;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform var(--t);
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: rgba(255,255,255,.12); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger-line {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all var(--t);
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
    position: fixed;
    top: var(--nav-height); right: 0;
    width: 270px;
    background: var(--primary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 12px 0 20px;
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
    transform: translateX(100%);
    transition: transform var(--t);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-link {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: all var(--t);
}
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,.08); padding-left: 32px; }

.mobile-phone {
    padding: 18px 24px 0;
}
.mobile-phone a {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hide hamburger + mobile menu on desktop */
@media (min-width: 901px) {
    .hamburger { display: none !important; }
    .mobile-menu, .mobile-overlay { display: none !important; }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
    flex: 0 0 auto;
    margin-left: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 10px;
    transition: all var(--t);
    white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,.26); }

.lang-btn .fa-chevron-down {
    font-size: .58rem;
    transition: transform var(--t);
    opacity: .75;
}
.lang-switcher.open .fa-chevron-down { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    display: none;
    flex-direction: column;
    min-width: 148px;
    overflow: hidden;
    z-index: 1001;
}
.lang-switcher.open .lang-dropdown { display: flex; }

.lang-option {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: .85rem;
    padding: 10px 16px;
    text-align: left;
    transition: background var(--t);
    white-space: nowrap;
}
.lang-option:hover { background: var(--cream); }
.lang-option.active {
    background: var(--cream);
    color: var(--primary);
    font-weight: 700;
}

/* Mobile lang strip */
.mobile-lang {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 6px;
}
.mobile-lang .lang-option {
    background: rgba(255,255,255,.1);
    border-radius: 6px;
    color: rgba(255,255,255,.85);
    font-size: .78rem;
    padding: 6px 10px;
    letter-spacing: .4px;
}
.mobile-lang .lang-option:hover { background: rgba(255,255,255,.22); color: var(--white); }
.mobile-lang .lang-option.active {
    background: rgba(255,255,255,.22);
    color: var(--white);
    font-weight: 700;
}

@media (max-width: 900px) {
    .lang-switcher { display: none; }
}

/* ===== CONTAINER ===== */
.container { 
     max-width: 1200px;  
    margin: 0 auto; 
}

/* ===== SECTION COMMONS ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-icon { font-size: 2.8rem; margin-bottom: 12px; line-height: 1; }
.section-header .title-underline { margin: 0 auto 20px; }

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title.light { color: var(--white); }

.title-underline {
    width: 56px; height: 3px;
    background: var(--secondary);
    margin-bottom: 20px;
}
.title-underline.light { background: rgba(255,255,255); }

.section-subtitle {
    color: var(--text-lt);
    font-size: .95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-subtitle.light { color: rgb(255, 255, 255); }
.section-subtitle.light a { color: rgb(255, 255, 255); font-weight: 700; transition: opacity var(--t); }
.section-subtitle.light a:hover { opacity: .75; }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 65% 40%, #b8420e 0%, #89310B 45%, #4a1903 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('images/hero.jpg') center/cover no-repeat;
    /* Remplacez images/hero.jpg par votre photo du camion */
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(107,38,9,.72) 0%,
        rgba(40,15,3,.65) 55%,
        rgba(10,10,10,.85) 100%
    );
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 820px;
    animation: fadeUp .9s ease-out both;
}
.hero-pretitle {
    font-size: .95rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 10px;
}
.hero-title {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 4px 24px rgba(0,0,0,.5);
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    letter-spacing: 2.5px;
    opacity: .88;
    margin-bottom: 40px;
}
.hero-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: all var(--t);
}
.hero-btn:hover {
    background: transparent;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.55);
    font-size: 1.1rem;
    z-index: 2;
    animation: bounce 2.2s infinite;
    transition: color var(--t);
}
.hero-scroll:hover { color: rgba(255,255,255,.9); }

/* ===== PRESENTATION ===== */
.presentation { padding: 88px 28px; background: var(--off-white); }

.pres-grid {
    display: grid;
    grid-template-columns: clamp(240px, 35%, 420px) 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.pres-badge {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pres-badge img {
    width: 100%;
    height: auto;
    max-width: 420px;
}
.badge-inner { text-align: center; color: var(--white); line-height: 1.45; }
.badge-inner span {
    display: block;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.badge-big {
    
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.pres-text .section-title { margin-bottom: 10px; }

.pres-text p {
    color: var(--text-lt);
    line-height: 1.85;
    margin-bottom: 14px;
    font-size: .99rem;
}
.pres-text p strong { color: var(--primary); font-weight: 700; }

.pres-values {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-dark);
}
.value-item i { color: var(--secondary); font-size: 1.05rem; }

/* ===== MENU ===== */
.menu-section {
    padding: 88px 28px;
    background: var(--secondary);
    /* Subtle texture */
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}



/* ── Ardoise list (pizzas & desserts) ── */
.ardoise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 820px;
}

.ardoise-entry {
    padding: 15px 0 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-left: 2px solid transparent;
    transition: border-left-color 0.22s ease;
    cursor: default;
}
.ardoise-entry:hover {
    border-left-color: var(--primary);
}
.ardoise-entry:last-child {
    border-bottom: none;
}
.ardoise-entry.dessert {
    padding-top: 13px;
    padding-bottom: 13px;
}

.ardoise-row {
    display: flex;
    align-items: baseline;
}

.ardoise-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 2px 7px;
    margin-left: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}
.ardoise-tag.vege   { background: rgba(120,200,60,.22); color: #a8e063; border: 1px solid rgba(168,224,99,.35); }
.ardoise-tag.piment { background: rgba(255,100,50,.22); color: #ff9060; border: 1px solid rgba(255,140,80,.35); }

.ardoise-title { display: contents; }

.ardoise-name {
    font-size: 1.55rem;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    font-weight: bold;
}

.ardoise-leader {
    flex: 1;
    border-bottom: 1.5px dotted rgba(255,255,255,0.2);
    margin: 0 14px 5px;
    min-width: 20px;
}

.ardoise-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}
.ardoise-size {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ardoise-sep { opacity: 0.4; margin: 0 2px; }

.ardoise-ingredients {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    padding-left: 18px;
    margin: 6px 0 0;
    line-height: 1.55;
}

/* ── Supplement list (3 columns) ── */
.supp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 44px;
}

.supp-entry {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.supp-row {
    display: flex;
    align-items: flex-start;
}

.supp-name {
    font-size: 0.99rem;
    color: rgba(255,255,255,0.78);
    flex-shrink: 1;
    min-width: 0;
}

.supp-leader {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.15);
    margin: 10px 8px 0;
    min-width: 8px;
    align-self: flex-start;
}

.supp-price {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Wavy SVG separator (desserts) ── */
.ardoise-wave {
    margin: 4px 0 28px;
    opacity: 1;
}

/* ── Sous-sections du menu ── */
.menu-subsection {
    margin-bottom: 56px;
}

.menu-subsection-title {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.menu-subsection-title i {
    color: var(--primary);
    font-size: 1rem;
    opacity: .85;
}


.menu-note {
    text-align: center;
    color: rgba(255,255,255,.82);
    font-size: .84rem;
    margin-top: 0;
    background: rgba(0,0,0,.15);
    border-radius: var(--radius);
    padding: 16px 24px;
}


/* ===== MENU THEMES ===== */

/* ── Thème 02 : Carte Brasserie ── */
#menu.menu-theme-02 {
    background: #f5ede0; background-image: none;
}
#menu.menu-theme-02 .section-title.light { color: var(--primary); }
#menu.menu-theme-02 .title-underline.light { background: var(--secondary); }
#menu.menu-theme-02 .section-subtitle.light { color: #4a3828; }
#menu.menu-theme-02 .menu-subsection-title {
    color: var(--primary); border-color: rgba(137,49,11,.25);
    justify-content: center; text-align: center; font-size: .78rem; letter-spacing: 3.5px;
}
#menu.menu-theme-02 .menu-subsection-title i { color: var(--secondary); }
#menu.menu-theme-02 .ardoise-list { max-width: 700px; margin: 0 auto; }
#menu.menu-theme-02 .ardoise-entry {
    border-bottom: 1px solid rgba(0,0,0,.1); border-left: 2px solid transparent;
}
#menu.menu-theme-02 .ardoise-entry:hover { border-left-color: var(--primary); }
#menu.menu-theme-02 .ardoise-name { color: #2a1a10; font-size: 1.15rem; }
#menu.menu-theme-02 .ardoise-leader { border-bottom-color: rgba(0,0,0,.15); }
#menu.menu-theme-02 .ardoise-price { color: var(--primary); }
#menu.menu-theme-02 .ardoise-ingredients { color: rgba(0,0,0,.55); }
#menu.menu-theme-02 .ardoise-tag.vege { background: rgba(74,122,26,.2); color: #4a7a1a; border-color: rgba(74,122,26,.3); }
#menu.menu-theme-02 .ardoise-tag.piment { background: rgba(192,57,10,.2); color: #c0390a; border-color: rgba(192,57,10,.3); }
#menu.menu-theme-02 .supp-entry { border-bottom-color: rgba(0,0,0,.08); }
#menu.menu-theme-02 .supp-name { color: rgba(0,0,0,.7); }
#menu.menu-theme-02 .supp-leader { border-bottom-color: rgba(0,0,0,.12); }
#menu.menu-theme-02 .supp-price { color: var(--primary); }
#menu.menu-theme-02 .menu-note { background: rgba(0,0,0,.05); color: rgba(0,0,0,.6); }
#menu.menu-theme-02 .ardoise-wave svg path { stroke: rgba(0,0,0,.15); }

/* ── Thème 03 : Cartes visuelles ── */
#menu.menu-theme-03 .ardoise-list {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px; max-width: none;
}
#menu.menu-theme-03 .ardoise-entry {
    background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.08);
    border-left: none; border-top: 3px solid var(--primary);
    border-radius: 6px; padding: 16px;
}
#menu.menu-theme-03 .ardoise-entry:nth-child(even) { border-top-color: var(--secondary); }
#menu.menu-theme-03 .ardoise-entry:hover { background: rgba(0,0,0,.42); border-left: none; }
#menu.menu-theme-03 .ardoise-name { font-size: 1.08rem; flex: 1; }
#menu.menu-theme-03 .ardoise-leader { display: none; }
#menu.menu-theme-03 .ardoise-price { font-size: .82rem; }
#menu.menu-theme-03 .ardoise-ingredients { padding-left: 0; }

/* ── Thème 04 : Colonnes tableau noir ── */
#menu.menu-theme-04 .ardoise-list {
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; max-width: none;
}
#menu.menu-theme-04 .ardoise-entry { padding: 11px 0 11px 14px; }
#menu.menu-theme-04 .ardoise-name { font-size: 1.05rem; }
#menu.menu-theme-04 .ardoise-ingredients { font-size: .86rem; }

/* ── Thème 05 : Fiche papier kraft ── */
#menu.menu-theme-05 { background: #d9c9a8; background-image: none; }
#menu.menu-theme-05 .section-title.light { color: #2a1a10; }
#menu.menu-theme-05 .title-underline.light { background: var(--primary); }
#menu.menu-theme-05 .section-subtitle.light { color: #4a3828; }
#menu.menu-theme-05 .menu-subsection-title { color: #2a1a10; border-color: rgba(0,0,0,.2); }
#menu.menu-theme-05 .menu-subsection-title i { color: var(--primary); }
#menu.menu-theme-05 .ardoise-list { max-width: 100%; }
#menu.menu-theme-05 .ardoise-entry {
    background: rgba(255,255,255,.38); border-left: 2px solid transparent;
    border-bottom: 1px dashed rgba(0,0,0,.18); border-radius: 3px;
    margin-bottom: 3px; padding: 13px 16px;
}
#menu.menu-theme-05 .ardoise-entry:hover { border-left-color: var(--primary); }
#menu.menu-theme-05 .ardoise-name { color: #2a1a10; font-size: 1.1rem; }
#menu.menu-theme-05 .ardoise-leader { border-bottom: 1px dashed rgba(0,0,0,.2); }
#menu.menu-theme-05 .ardoise-price { color: var(--primary-dark); }
#menu.menu-theme-05 .ardoise-ingredients { color: rgba(0,0,0,.55); }
#menu.menu-theme-05 .ardoise-tag.vege { background: rgba(74,122,26,.2); color: #4a7a1a; border-color: rgba(74,122,26,.3); }
#menu.menu-theme-05 .ardoise-tag.piment { background: rgba(192,57,10,.2); color: #c0390a; border-color: rgba(192,57,10,.3); }
#menu.menu-theme-05 .supp-entry { border-bottom-color: rgba(0,0,0,.15); }
#menu.menu-theme-05 .supp-name { color: rgba(0,0,0,.7); }
#menu.menu-theme-05 .supp-leader { border-bottom-color: rgba(0,0,0,.15); }
#menu.menu-theme-05 .supp-price { color: var(--primary-dark); }
#menu.menu-theme-05 .menu-note { background: rgba(0,0,0,.07); color: rgba(0,0,0,.6); }
#menu.menu-theme-05 .ardoise-wave svg path { stroke: rgba(0,0,0,.2); }

/* ── Thème 06 : Tuiles mosaïque ── */
#menu.menu-theme-06 .ardoise-list {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 10px; max-width: none;
}
#menu.menu-theme-06 .ardoise-entry {
    background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.07);
    border-left: none; border-radius: 6px; padding: 14px 12px; text-align: center;
}
#menu.menu-theme-06 .ardoise-entry:hover { background: rgba(0,0,0,.45); border-left: none; }
#menu.menu-theme-06 .ardoise-row { flex-direction: column; align-items: center; gap: 8px; }
#menu.menu-theme-06 .ardoise-tag { margin: 0; }
#menu.menu-theme-06 .ardoise-name { font-size: .9rem; white-space: normal; text-align: center; flex-shrink: 1; }
#menu.menu-theme-06 .ardoise-leader { display: none; }
#menu.menu-theme-06 .ardoise-price {
    background: var(--primary); color: #fdd9b5;
    padding: 3px 10px; border-radius: 3px; font-size: .72rem;
}
#menu.menu-theme-06 .ardoise-ingredients { display: none; }

/* ── Thème 07 : Accordéon ── */
#menu.menu-theme-07 .ardoise-entry {
    cursor: pointer; background: rgba(0,0,0,.18); border-radius: 3px; margin-bottom: 2px;
}
#menu.menu-theme-07 .ardoise-entry:hover { background: rgba(0,0,0,.28); }
#menu.menu-theme-07 .ardoise-price::after { content: '  ▸'; font-size: .6rem; opacity: .55; }
#menu.menu-theme-07 .ardoise-entry.expanded .ardoise-price::after { content: '  ▾'; }
#menu.menu-theme-07 .ardoise-ingredients {
    max-height: 0; overflow: hidden; margin: 0;
    transition: max-height .32s ease, margin .32s ease;
}
#menu.menu-theme-07 .ardoise-entry.expanded .ardoise-ingredients {
    max-height: 120px; margin-top: 8px;
}

/* ── Thème 08 : Scroll horizontal ── */
#menu.menu-theme-08 .ardoise-list {
    display: flex; flex-direction: row; overflow-x: auto;
    gap: 14px; max-width: none; padding-bottom: 12px;
    scrollbar-width: thin; scrollbar-color: var(--primary) rgba(0,0,0,.1);
}
#menu.menu-theme-08 .ardoise-list::-webkit-scrollbar { height: 4px; }
#menu.menu-theme-08 .ardoise-list::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
#menu.menu-theme-08 .ardoise-entry {
    flex: 0 0 210px; background: rgba(255,255,255,.93);
    border: none; border-left: none; border-bottom: 3px solid var(--primary);
    border-radius: 6px 6px 0 0; padding: 16px;
}
#menu.menu-theme-08 .ardoise-entry:nth-child(even) { border-bottom-color: var(--secondary); }
#menu.menu-theme-08 .ardoise-entry:hover { border-left: none; background: var(--white); }
#menu.menu-theme-08 .ardoise-row { flex-direction: column; align-items: flex-start; gap: 5px; }
#menu.menu-theme-08 .ardoise-name { color: #2a1a10; font-size: .98rem; white-space: normal; }
#menu.menu-theme-08 .ardoise-leader { display: none; }
#menu.menu-theme-08 .ardoise-price { color: var(--primary); font-size: .8rem; }
#menu.menu-theme-08 .ardoise-ingredients { color: rgba(0,0,0,.5); padding-left: 0; font-size: .78rem; }

/* ── Thème 09 : Tableau Botanica ── */
#menu.menu-theme-09 .ardoise-entry {
    border-left: 3px solid var(--secondary); padding-left: 24px; margin-bottom: 2px;
}
#menu.menu-theme-09 .ardoise-entry:nth-child(even) { border-left-color: var(--primary); }
#menu.menu-theme-09 .ardoise-entry:hover { border-left-color: rgba(255,255,255,.6); }
#menu.menu-theme-09 .ardoise-name { font-size: 1.22rem; }
#menu.menu-theme-09 .ardoise-price { color: var(--secondary-lt); }
#menu.menu-theme-09 .ardoise-entry:nth-child(even) .ardoise-price { color: #d4956a; }
#menu.menu-theme-09 .ardoise-leader { border-bottom-color: rgba(255,255,255,.1); }
#menu.menu-theme-09 .supp-entry { border-left: 2px solid var(--secondary-dark); padding-left: 10px; }

/* ── Thème 10 : Étiquettes prix ── */
#menu.menu-theme-10 .ardoise-list { max-width: 780px; }
#menu.menu-theme-10 .ardoise-entry {
    border: 1px solid rgba(255,255,255,.1); border-left: 2px solid transparent;
    border-radius: 5px; margin-bottom: 7px; padding: 14px 16px;
}
#menu.menu-theme-10 .ardoise-entry:hover { border-left-color: var(--primary); }
#menu.menu-theme-10 .ardoise-name { flex: 1; font-size: 1.1rem; white-space: normal; }
#menu.menu-theme-10 .ardoise-leader { display: none; }
#menu.menu-theme-10 .ardoise-price {
    background: var(--primary); color: #fdd9b5;
    padding: 4px 12px; border-radius: 4px;
    font-size: .76rem; font-weight: 700; flex-shrink: 0;
}
#menu.menu-theme-10 .ardoise-ingredients { padding-left: 0; margin-top: 8px; }

/* ===== LOCATION ===== */
.location-section { padding: 88px 0; background: var(--off-white); }
.location-section .container { padding: 0 28px; }

.location-content {
    display: grid;
    grid-template-columns: 360px 1fr;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 28px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,.12);
}

.schedule-grid { display: flex; flex-direction: column; }

.schedule-card {
    background: var(--white);
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    border-left: 4px solid transparent;
    transition: all var(--t);
    cursor: pointer;
}
.schedule-card:last-child { border-bottom: none; }
.schedule-card:hover {
    border-left-color: var(--secondary);
    background: var(--cream);
}
.schedule-card.active {
    border-left-color: var(--primary);
    background: var(--cream);
}
.schedule-card.active .schedule-day {
    color: var(--primary-dark);
}

.schedule-day {
    
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
}
.schedule-city {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}
.schedule-city i { color: var(--primary); margin-right: 5px; font-size: .82rem; }
.schedule-time { font-size: .8rem; color: var(--text-lt); margin-bottom: 2px; }
.schedule-time i { color: var(--secondary); margin-right: 5px; }
.schedule-place { font-size: .8rem; color: var(--text-lt); margin-left: 16px; }

.map-wrapper {
    min-height: 430px;
    background: var(--cream);
}
.map-wrapper iframe {
    width: 100%; height: 100%;
    min-height: 430px;
    border: none;
    display: block;
    transition: opacity 0.3s ease;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 88px 28px;
    background: var(--secondary);
    background-image:
        radial-gradient(circle at 10% 90%, rgba(255,255,255,.06) 0%, transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(255,255,255,.05) 0%, transparent 45%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 32px;
    min-height: 180px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}
.insta-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.insta-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(137,49,11,0);
    transition: background var(--t);
}
.insta-item:hover img { transform: scale(1.06); }
.insta-item:hover::after { background: rgba(137,49,11,.38); }

/* Placeholder tiles (shown before token is configured) */
.insta-ph {
    aspect-ratio: 1;
    border-radius: 4px;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.insta-ph i { font-size: 1.6rem; color: rgba(255,255,255,.15); }

.insta-no-token {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 20px;
    color: rgba(255,255,255,.65);
    text-align: center;
}
.insta-no-token i { font-size: 2.8rem; opacity: .4; }
.insta-no-token strong { color: rgba(255,255,255,.85); font-size: 1rem; }
.insta-no-token p { font-size: .88rem; max-width: 360px; line-height: 1.6; }
.insta-no-token code {
    background: rgba(0,0,0,.25);
    padding: 2px 7px;
    border-radius: 3px;
    font-size: .82em;
}

.insta-cta { text-align: center; }
.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.65);
    padding: 13px 34px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--t);
}
.insta-btn:hover {
    background: var(--white);
    color: var(--secondary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.82);
    padding: 64px 28px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand h3 {
    
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand p { font-size: .93rem; line-height: 1.7; opacity: .68; }
.footer-tagline {
    font-size: .78rem !important;
    opacity: .44 !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 8px;
}

.footer-contact h4,
.footer-social h4 {
    
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.68);
    font-size: .88rem;
    margin-bottom: 13px;
    transition: color var(--t);
}
.footer-link:hover { color: var(--white); }
.footer-link i { color: var(--secondary-lt); width: 16px; flex-shrink: 0; }

.social-links { display: flex; gap: 12px; }
.social-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(255,255,255,.1);
    color: var(--white);
    transition: all var(--t);
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.social-btn.facebook:hover  { background: #1877F2; }
.social-btn.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.google:hover    { background: #4285F4; }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: .8rem;
    opacity: .35;
    letter-spacing: .5px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger for ardoise entries */
.ardoise-list .ardoise-entry:nth-child(2)  { transition-delay: .05s; }
.ardoise-list .ardoise-entry:nth-child(3)  { transition-delay: .10s; }
.ardoise-list .ardoise-entry:nth-child(4)  { transition-delay: .15s; }
.ardoise-list .ardoise-entry:nth-child(5)  { transition-delay: .20s; }
.ardoise-list .ardoise-entry:nth-child(6)  { transition-delay: .25s; }
.ardoise-list .ardoise-entry:nth-child(7)  { transition-delay: .30s; }
.ardoise-list .ardoise-entry:nth-child(8)  { transition-delay: .35s; }
.ardoise-list .ardoise-entry:nth-child(9)  { transition-delay: .40s; }
.ardoise-list .ardoise-entry:nth-child(10) { transition-delay: .45s; }
.ardoise-list .ardoise-entry:nth-child(11) { transition-delay: .50s; }
.ardoise-list .ardoise-entry:nth-child(12) { transition-delay: .55s; }

/* Stagger for schedule cards */
.schedule-card:nth-child(2) { transition-delay: .08s; }
.schedule-card:nth-child(3) { transition-delay: .16s; }
.schedule-card:nth-child(4) { transition-delay: .24s; }
.schedule-card:nth-child(5) { transition-delay: .32s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
    40%                  { transform: translateX(-50%) translateY(-10px); }
    60%                  { transform: translateX(-50%) translateY(-5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .pres-grid { grid-template-columns: 1fr; gap: 28px; }
    .pres-badge { display: flex; width: clamp(180px, 55vw, 320px); margin: 0 auto; }

    .location-content { grid-template-columns: 1fr; padding: 0 28px; }
    .schedule-grid { border-radius: var(--radius) var(--radius) 0 0; }
    .map-wrapper { border-radius: 0 0 var(--radius) var(--radius); min-height: 300px; }
    .map-wrapper iframe { min-height: 300px; }

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

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

.location-section {
background: none rgb(217, 201, 168) !important;
}

@media (max-width: 640px) {
    .supp-list { grid-template-columns: 1fr; }
    .ardoise-row { flex-wrap: wrap; }
    .ardoise-ingredients { padding-left: 0; }
    .ardoise-title { display: flex; flex-direction: row; align-items: center; flex-basis: 100%; min-width: 0; }
    .ardoise-row > .ardoise-name { flex-basis: 100%; }
    .ardoise-name { font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-shrink: 1; min-width: 0; }
    .ardoise-tag { margin-left: 8px; margin-top: 0; }
    .ardoise-leader { display: none; }
    .ardoise-price { flex-basis: 100%; margin-left: 0; margin-top: 2px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .pres-values { gap: 16px; }
}

@media (max-width: 400px) {
    .nav-phone span { display: none; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
