/*
Theme Name: Mudjo's
Theme URI: https://example.com/mudjos
Author: Mudjo's
Author URI: https://example.com
Description: Theme vitrine simple pour food truck avec gestion de carte facile.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: mudjos
*/

/* ─── LOCAL FONTS (RGPD-compliant — no external request) ─────────────────────── */
@font-face {
    font-family: "Manrope";
    src: url("assets/fonts/manrope-variable.woff2") format("woff2");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Space Grotesk";
    src: url("assets/fonts/spacegrotesk-variable.woff2") format("woff2");
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

/* ─── TOKENS ─────────────────────────────────────────────────────────────────── */
:root {
    --bg:             #0a0806;
    --bg2:            #110e0b;
    --text:           #f2e8da;
    --text-dim:       rgba(242, 232, 218, 0.55);
    --text-dimmer:    rgba(242, 232, 218, 0.32);
    --gold:           #f1b446;
    --gold-light:     #ffcb72;
    --gold-deep:      #cf7d23;
    --line:           rgba(242, 232, 218, 0.10);
    --line-gold:      rgba(241, 180, 70, 0.22);
    --ease:           cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

/* ─── ACCESSIBILITY UTILITIES ────────────────────────────────────────────────── */

/* Visually hidden but accessible to screen readers and search bots */
.m-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip-to-content link — visible only on keyboard focus */
.m-skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 10px 20px;
    background: var(--gold);
    color: #1a0e04;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.15s;
}
.m-skip-link:focus { top: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    /* Override WP global styles padding that crops full-bleed sections */
    padding: 0 !important;
    margin: 0 !important;
    --wp--style--root--padding-top: 0px !important;
    --wp--style--root--padding-right: 0px !important;
    --wp--style--root--padding-bottom: 0px !important;
    --wp--style--root--padding-left: 0px !important;
}

/* ─── NUKE ALL WORDPRESS LAYOUT WRAPPERS ─────────────────────────────────────
   WP 6.x block themes inject .wp-site-blocks, .has-global-padding,
   .is-layout-constrained etc. with padding/max-width. Kill them all. */
body .wp-site-blocks,
body .has-global-padding,
body .is-layout-constrained,
body .is-layout-flow,
body .is-layout-flex,
body .entry-content,
body .wp-block-post-content,
body .wp-block-group {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

body.mudjos-lightbox-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.m-hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* hero bg */
.m-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1108;
}

/* layered overlays */
.m-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(6,4,3,0.82) 0%, rgba(6,4,3,0.42) 55%, rgba(6,4,3,0.18) 100%),
        linear-gradient(to top, rgba(6,4,3,0.88) 0%, transparent 48%);
    pointer-events: none;
}

/* top bar inside hero */
.m-hero-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
}

.m-hero-bar-nav {
    display: flex;
    gap: 6px;
}

.m-hero-bar-nav a {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: rgba(242,232,218,0.8);
    font-size: 0.86rem;
    font-weight: 700;
    transition: background 0.16s, border-color 0.16s, color 0.16s;
}
.m-hero-bar-nav a:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--line-gold);
    color: var(--text);
}

/* main copy block */
.m-hero-copy {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 56px;
    max-width: 960px;
}

.m-hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    color: var(--text);
    margin-bottom: 8px;
}

.m-hero-tagline {
    display: block;
    font-size: clamp(0.9rem, 1.6vw, 1.15rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.9;
}

.m-hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* scroll hint */
.m-hero-scroll {
    position: absolute;
    bottom: 30px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dimmer);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.m-hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    animation: line-drop 2.4s ease-in-out infinite;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    font-weight: 800;
    font-size: 0.94rem;
    transition: transform 0.18s var(--ease), border-color 0.18s, background 0.18s;
}
.m-btn:hover { transform: translateY(-2px); border-color: var(--line-gold); background: rgba(255,255,255,0.1); }

.m-btn-primary {
    background: var(--gold);
    color: #1a0e04;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(241,180,70,0.28);
}
.m-btn-primary:hover { background: var(--gold-light); border-color: transparent; }

.m-btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--text-dim);
}
.m-btn-ghost:hover { color: var(--text); }

/* ─── TICKER ─────────────────────────────────────────────────────────────────── */
.m-ticker {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg2);
    padding: 14px 0;
    white-space: nowrap;
    user-select: none;
}

.m-ticker-track {
    display: inline-flex;
    animation: ticker 22s linear infinite;
}
.m-ticker-track:hover { animation-play-state: paused; }

.m-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.m-ticker-item::after {
    content: "·";
    color: var(--gold);
    font-size: 1.2rem;
}

/* ─── SECTION UTILS ──────────────────────────────────────────────────────────── */
.m-wrap {
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.m-section {
    padding: 100px 0;
}

.m-section + .m-section {
    border-top: 1px solid var(--line);
}

.m-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.m-kicker::before {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.m-heading {
    font-family: "Manrope", "Space Grotesk", sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

/* ─── STATS ──────────────────────────────────────────────────────────────────── */
.m-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--line);
}

.m-stat {
    padding: 52px 48px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.m-stat-number {
    font-family: "Manrope", "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--gold);
}

.m-stat-label {
    margin-top: 10px;
    font-size: 0.92rem;
    color: var(--text-dim);
    font-weight: 600;
    line-height: 1.4;
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────────── */
.m-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.m-about-content {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.m-about-title {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    margin-bottom: 28px;
}

.m-about-body {
    color: rgba(242,232,218,0.72);
    font-size: 1.06rem;
    line-height: 1.7;
    max-width: 48ch;
}
.m-about-body p + p { margin-top: 16px; }

.m-about-social {
    margin-top: 36px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.m-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dim);
    transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.m-social-link:hover { border-color: var(--line-gold); color: var(--gold-light); background: rgba(241,180,70,0.07); }
.m-social-link svg { width: 15px; height: 15px; fill: currentcolor; }

.m-about-media {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.m-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.m-about-media:hover img { transform: scale(1.03); }

/* ─── GALLERY ────────────────────────────────────────────────────────────────── */
.m-gallery {
    padding: 80px 0;
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.m-gallery-head {
    width: min(1320px, 92vw);
    margin: 0 auto 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.m-gallery-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.m-gallery-hint {
    font-size: 0.82rem;
    color: var(--text-dimmer);
    font-weight: 600;
    white-space: nowrap;
}

/* horizontal scroll strip */
.m-gallery-strip {
    display: flex;
    gap: 12px;
    padding: 0 max(calc((100vw - 1320px) / 2), 4vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}
.m-gallery-strip:active { cursor: grabbing; }
.m-gallery-strip::-webkit-scrollbar { display: none; }

.m-gallery-item {
    flex: 0 0 auto;
    width: 340px;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    cursor: zoom-in;
    position: relative;
}

.m-gallery-item:first-child { width: 520px; }

.m-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.44s var(--ease);
}
.m-gallery-item:hover img { transform: scale(1.06); }

/* ─── FORMULA NOTE ───────────────────────────────────────────────────────────── */
.m-formula {
    width: min(1320px, 92vw);
    margin: 0 auto 40px;
    padding: 28px 36px;
    border-radius: 12px;
    border: 1px solid var(--line-gold);
    background: rgba(241,180,70,0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.m-formula-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(241,180,70,0.14);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 900;
}

.m-formula-text strong {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.m-formula-text p {
    font-size: 0.96rem;
    color: rgba(242,232,218,0.78);
    max-width: 68ch;
    line-height: 1.55;
}

/* ─── CARTE ──────────────────────────────────────────────────────────────────── */
.m-carte {
    padding: 120px 0 100px;
    border-top: 1px solid var(--line);
}

.m-carte-head {
    width: min(1320px, 92vw);
    margin: 0 auto 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.m-carte-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.m-carte-head-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* PDF download button */
.m-carte-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 18px;
    border: 1px solid var(--gold);
    border-radius: 10px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.18s var(--ease), color 0.18s var(--ease);
    white-space: nowrap;
}
.m-carte-pdf-btn svg {
    flex-shrink: 0;
    transition: transform 0.18s var(--ease);
}
.m-carte-pdf-btn:hover {
    background: rgba(241, 180, 70, 0.12);
    color: var(--gold-light);
}
.m-carte-pdf-btn:hover svg {
    transform: translateY(2px);
}

/* universe tabs */
.m-tabs {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.m-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--text-dim);
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: background 0.16s, color 0.16s;
    border-right: 1px solid var(--line);
}
.m-tab:last-child { border-right: 0; }
.m-tab.is-active { background: var(--gold); color: #1a0e04; }
.m-tab:not(.is-active):hover { background: rgba(255,255,255,0.05); color: var(--text); }

.m-universe-panel { display: none; }
.m-universe-panel.is-active { display: block; }

/* section anchor nav */
.m-section-nav-wrap {
    width: min(1320px, 92vw);
    margin: 0 auto 36px;
}

.m-section-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.m-section-nav a {
    padding: 7px 14px;
    border-radius: 6px;
    border: 1px solid var(--line);
    color: var(--text-dim);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: border-color 0.14s, color 0.14s, background 0.14s;
}
.m-section-nav a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(241,180,70,0.06);
}

/* product section block */
.m-menu-section {
    width: min(1320px, 92vw);
    margin: 0 auto 0;
    border-top: 1px solid var(--line);
}

.m-menu-section:last-child { border-bottom: 1px solid var(--line); }

.m-menu-section-head {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
}

.m-menu-section-label {
    padding: 36px 0 36px;
    border-right: 1px solid var(--line);
    padding-right: 40px;
}

.m-menu-section-name {
    font-family: "Manrope", "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    color: var(--text);
}

.m-menu-section-count {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-dimmer);
    font-weight: 600;
}

.m-menu-section-desc {
    padding: 36px 0 36px 40px;
    color: var(--text-dim);
    font-size: 0.94rem;
    display: flex;
    align-items: center;
}

/* product list */
.m-product-list {
    list-style: none;
}

.m-product {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.14s;
    position: relative;
}
.m-product:last-child { border-bottom: 0; }
.m-product:hover { background: rgba(255,255,255,0.015); }
/* hover accent line */
.m-product::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 2px;
    height: 60%;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.18s var(--ease-spring);
}
.m-product:hover::before { transform: translateY(-50%) scaleY(1); }

/* product with thumb */
.m-product-has-thumb {
    grid-template-columns: 56px 1fr auto;
}

/* round thumb */
.m-product-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    overflow: hidden;
    border: 1.5px solid var(--line-gold);
    cursor: zoom-in;
}
.m-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
}
.m-product-thumb:hover img { transform: scale(1.12); }

.m-product-info { min-width: 0; }

.m-product-name {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.m-product-badge {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(241,180,70,0.14);
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
}

.m-product-desc {
    margin-top: 5px;
    font-size: 0.86rem;
    color: var(--text-dimmer);
    line-height: 1.4;
}

.m-product-price {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.m-product-price-main {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--gold-light);
}

.m-product-price-formula {
    margin-top: 3px;
    font-size: 0.78rem;
    color: var(--text-dimmer);
    font-weight: 600;
}

/* ─── INFOS ──────────────────────────────────────────────────────────────────── */
.m-infos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.m-info-block {
    padding: 52px 48px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.m-info-block h3 {
    font-family: "Manrope", "Space Grotesk", sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.m-info-block p {
    font-size: 0.96rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-top: 8px;
}
.m-info-block p:first-of-type { margin-top: 0; }

.m-info-block a {
    color: var(--text-dim);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--line-gold);
    transition: color 0.14s;
}
.m-info-block a:hover { color: var(--gold-light); }

.m-info-block strong { color: var(--text); font-weight: 700; }

.m-reviews-link { font-weight: 500; }
.m-reviews-star { color: var(--gold); }

/* ─── FINAL CTA ──────────────────────────────────────────────────────────────── */
.m-cta {
    background: var(--gold);
    color: #14090a;
    padding: 80px 0;
}

.m-cta-inner {
    width: min(1320px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.m-cta-title {
    font-family: "Manrope", "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.95;
}

.m-cta-sub {
    margin-top: 12px;
    font-size: 1rem;
    color: rgba(20,9,10,0.65);
    max-width: 44ch;
    line-height: 1.55;
}

.m-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

.m-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.94rem;
    transition: transform 0.16s var(--ease);
}
.m-cta-btn:hover { transform: translateY(-2px); }

.m-cta-btn-dark {
    background: #14090a;
    color: var(--gold-light);
}

.m-cta-btn-outline {
    border: 2px solid rgba(20,9,10,0.3);
    color: #14090a;
}
.m-cta-btn-outline:hover { border-color: rgba(20,9,10,0.6); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.m-foot {
    padding: 40px 0;
    border-top: 1px solid var(--line);
}

.m-foot-inner {
    width: min(1320px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.m-foot-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.m-foot-address {
    font-style: normal;
    font-size: 0.84rem;
    color: var(--text-dimmer);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.m-foot-address a {
    color: var(--text-dim);
    text-decoration: none;
}
.m-foot-address a:hover { color: var(--gold); }

.m-foot-nav,
.m-foot-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.m-foot-nav a,
.m-foot-social a {
    font-size: 0.84rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.16s;
}
.m-foot-nav a:hover,
.m-foot-social a:hover { color: var(--gold); }

.m-foot-social a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.m-foot-copy {
    width: 100%;
    font-size: 0.78rem;
    color: var(--text-dimmer);
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
}

/* ─── LIGHTBOX ───────────────────────────────────────────────────────────────── */
.m-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(6,4,3,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.m-lightbox[hidden] { display: none; }

.m-lightbox-dialog {
    position: relative;
    max-width: min(1100px, 94vw);
    max-height: min(88vh, 940px);
}

.m-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: min(88vh, 940px);
    border-radius: 12px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.m-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(20,14,10,0.9);
    color: var(--text);
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    transition: background 0.14s;
}
.m-lightbox-close:hover { background: rgba(40,28,20,0.95); }

/* ─── STICKY MOBILE ──────────────────────────────────────────────────────────── */
.m-mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(10,8,6,0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.42);
}

.m-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 800;
    font-size: 0.88rem;
    transition: background 0.14s;
}
.m-mobile-bar a:hover { background: rgba(241,180,70,0.16); }

/* ─── KEYFRAMES ──────────────────────────────────────────────────────────────── */
@keyframes line-drop {
    0%   { opacity: 0; transform: scaleY(0.1); transform-origin: top; }
    40%  { opacity: 1; transform: scaleY(1);   transform-origin: top; }
    80%  { opacity: 0; transform: scaleY(1);   transform-origin: top; }
    100% { opacity: 0; }
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .m-hero-bar { padding: 24px 32px; }
    .m-hero-copy { padding: 0 32px 44px; }
    .m-hero-scroll { right: 32px; }

    .m-about { grid-template-columns: 1fr; }
    .m-about-content { padding: 60px 40px; border-right: 0; border-bottom: 1px solid var(--line); }
    .m-about-media { min-height: 400px; }

    .m-stats { grid-template-columns: repeat(3, 1fr); }

    .m-menu-section-head { grid-template-columns: 200px 1fr; }
}

@media (max-width: 760px) {
    .m-hero { height: 70svh; min-height: 480px; }
    .m-hero-bar { padding: 20px 20px; }
    .m-hero-bar-nav { display: none; }
    .m-hero-copy { padding: 0 20px 36px; }
    .m-hero-scroll { display: none; }

    .m-section { padding: 64px 0; }

    .m-stats { grid-template-columns: 1fr 1fr; }
    .m-stat { padding: 36px 24px; }

    .m-about-content { padding: 48px 24px; }
    .m-about-body { font-size: 1rem; }

    .m-gallery-item { width: 260px; height: 340px; }
    .m-gallery-item:first-child { width: 320px; }

    .m-carte-head { flex-direction: column; align-items: flex-start; }
    .m-carte-head-right { width: 100%; flex-wrap: wrap; }
    .m-carte-head,
    .m-section-nav-wrap { width: 92vw; margin-inline: auto; }

    .m-menu-section { width: 92vw; }
    .m-menu-section-head {
        grid-template-columns: 1fr;
    }
    .m-menu-section-label { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; padding-right: 0; }
    .m-menu-section-desc { padding: 20px 0; }

    .m-product { padding: 18px 0; }
    .m-product::before { left: -12px; }

    .m-infos { grid-template-columns: 1fr; }
    .m-info-block { padding: 36px 24px; }

    .m-formula { flex-direction: column; gap: 12px; margin-inline: auto; width: 92vw; }

    .m-cta { padding: 60px 0; }
    .m-cta-inner { width: 92vw; flex-direction: column; align-items: flex-start; }

    .m-foot-inner { width: 92vw; flex-direction: column; }

    .m-mobile-bar { display: grid; }

    body { padding-bottom: 72px; }
}
