:root {
    --navy: #143a8b;
    --navy-strong: #0f2f72;
    --navy-deep: #0a2357;
    --coral: #ff7f66;
    --pink: #ff3b8f;
    /* Rose foncé pour le texte et les badges : contraste AA (4,7:1 sur crème) */
    --pink-text: #d81b60;
    --yellow: #f5dd4b;
    --lime: #b9ef6f;
    --teal: #46d2c4;
    --sky: #7cdff6;
    --cream: #fff9f0;
    --sand: #fff1dc;
    --white: #ffffff;
    --text: #183153;
    --muted: rgba(24, 49, 83, 0.78);
    --border: rgba(20, 58, 139, 0.08);
    --border-strong: rgba(20, 58, 139, 0.16);
    --shadow: 0 18px 45px rgba(20, 58, 139, 0.12);
    --shadow-soft: 0 10px 25px rgba(20, 58, 139, 0.08);
    --shadow-hover: 0 24px 60px rgba(20, 58, 139, 0.16);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max-width: 1180px;
    --transition-base: 0.25s ease;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(
            circle at top left,
            rgba(124, 223, 246, 0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255, 127, 102, 0.18),
            transparent 28%
        ),
        linear-gradient(180deg, #fffdf7 0%, #fff8ef 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image:
        linear-gradient(
            90deg,
            rgba(20, 58, 139, 0.16) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(20, 58, 139, 0.16) 1px,
            transparent 1px
        );
    background-size: 32px 32px;
    mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7),
        transparent
    );
}

body::after {
    content: "";
    position: fixed;
    inset: auto -120px -120px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 59, 143, 0.14),
        rgba(255, 59, 143, 0)
    );
    pointer-events: none;
    filter: blur(14px);
    z-index: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

main,
header,
footer {
    position: relative;
    z-index: 2;
}

.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

/* =========================
   DECORS GLOBAUX
========================= */

/* Hauteur de l'en-tête (logo + marges) : le décor commence juste en dessous,
   pour que le haut du dessin ne soit pas caché par l'en-tête. */
:root {
    --header-height: 205px;
}

@media (max-width: 980px) {
    :root {
        --header-height: 175px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 144px;
    }
}

.site-decor {
    position: fixed;
    inset: var(--header-height) 0 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    /* Mode « produit » : le fond blanc des dessins devient invisible,
       seul le trait apparaît (pas de rectangle plus clair que la page). */
    mix-blend-mode: multiply;
}

/* Voile qui estompe le dessin vers les bords de l'écran. En blanc car,
   en mode « produit », le blanc revient à laisser voir le fond de page. */
.site-decor::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 75% 80% at center,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 65%,
        rgba(255, 255, 255, 0.85) 85%,
        rgb(255, 255, 255) 100%
    );
}

.decor-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(95vw, 1400px);
    height: auto;
    max-height: 92%; /* de l'espace visible sous l'en-tête */
    object-fit: contain;
    object-position: center;
    opacity: 0.32;
    filter:
        saturate(1.18)
        contrast(1.05);
    user-select: none;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 249, 240, 0.5);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 24px rgba(20, 58, 139, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.brand {
    flex-shrink: 0;
}

.brand-logo {
    width: 178px;
    height: auto;
    transition:
        transform var(--transition-base),
        filter var(--transition-base);
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 8px 16px rgba(20, 58, 139, 0.12));
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-weight: 700;
    color: var(--navy-strong);
}

.desktop-nav a {
    position: relative;
    transition:
        color var(--transition-base),
        transform var(--transition-base);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--navy-deep);
    transform: translateY(-1px);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.28rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--pink), var(--teal));
    transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: none;
    border-radius: 14px;
    background: rgba(20, 58, 139, 0.08);
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
    cursor: pointer;
    transition:
        transform var(--transition-base),
        background var(--transition-base);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    transform: translateY(-1px);
    background: rgba(20, 58, 139, 0.12);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--border);
}

.mobile-nav.is-open {
    display: flex;
    animation: fadeSlideIn 0.22s ease;
}

.mobile-nav a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    color: var(--navy-strong);
    transition:
        transform var(--transition-base),
        background var(--transition-base);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.95);
}

/* =========================
   TITRES / TEXTES
========================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
}

.ui-icon {
    display: inline-block;
    width: 1.05em;
    height: 1.05em;
    vertical-align: -0.18em;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eyebrow .ui-icon,
.btn .ui-icon {
    vertical-align: -0.15em;
}

.inline-icon .ui-icon {
    width: 14px;
    height: 14px;
}

.hero-copy h1,
.hero-card h2,
.section-heading h2,
.contact-card h2,
.experience-card h2,
.page-intro h1,
.event-highlight-card h2,
.cta-event-card h2,
.legal-card h2,
.menu-category-title,
.hours-card h2,
.cta-banner h2 {
    font-family: "Playfair Display", Georgia, serif;
}

.hero-text,
.section-heading p,
.feature-card p,
.contact-card li,
.key-info-list li,
.mood-card p,
.experience-card p,
.page-intro p,
.event-highlight-card p,
.event-info-card li,
.schedule-card p,
.cta-event-card p,
.contact-card p,
.legal-card p,
.menu-category-description,
.menu-item-description,
.menu-empty-state {
    font-size: 1.04rem;
    line-height: 1.7;
}

.section {
    padding: 2rem 0 4.5rem;
    position: relative;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2,
.page-intro h1,
.event-highlight-card h2,
.cta-event-card h2,
.contact-card h2,
.experience-card h2,
.legal-card h2,
.menu-category-title,
.hours-card h2 {
    position: relative;
}

.section-heading h2::after,
.page-intro h1::after,
.event-highlight-card h2::after,
.cta-event-card h2::after,
.contact-card h2::after,
.experience-card h2::after,
.legal-card h2::after,
.menu-category-title::after,
.hours-card h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--teal));
}

/* =========================
   HERO / BANNERS
========================= */

.hero {
    position: relative;
    padding: 5.5rem 0 2.5rem;
    overflow: clip;
}


.hero::before,
.page-banner::before {
    content: "";
    position: absolute;
    inset: 1.5rem 0 auto;
    height: 460px;
    border-radius: 36px;
    opacity: 0.18;
    filter: blur(10px);
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(245, 221, 75, 0.94) 0 12%,
            rgba(255, 127, 102, 0.92) 12% 24%,
            rgba(255, 59, 143, 0.92) 24% 34%,
            rgba(185, 239, 111, 0.92) 34% 46%,
            rgba(70, 210, 196, 0.92) 46% 58%,
            rgba(124, 223, 246, 0.92) 58% 70%,
            rgba(245, 221, 75, 0.92) 70% 80%,
            rgba(255, 127, 102, 0.92) 80% 90%,
            rgba(255, 59, 143, 0.92) 90% 100%
        );
}

.hero::after {
    content: "";
    position: absolute;
    right: -70px;
    top: 110px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(70, 210, 196, 0.22),
        rgba(70, 210, 196, 0)
    );
    filter: blur(10px);
    pointer-events: none;
}

.page-banner {
    position: relative;
    padding: 4rem 0 1.5rem;
    overflow: clip;
}

.page-banner::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(245, 221, 75, 0.2),
        rgba(245, 221, 75, 0)
    );
    filter: blur(10px);
    pointer-events: none;
}

.page-intro {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.page-intro h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: var(--navy-strong);
}

.hero-grid,
.feature-grid,
.contact-grid,
.mood-grid,
.experience-grid,
.events-grid,
.schedule-grid {
    display: grid;
    gap: 1.4rem;
}

.hero-grid {
    position: relative;
    grid-template-columns: 1fr;
}

.hero-copy {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    grid-template-areas:
        "eyebrow eyebrow"
        "title   actions"
        "text    actions"
        "cue     cue";
    column-gap: 2.5rem;
    row-gap: 0.4rem;
    align-items: start;
}

.hero-copy > .eyebrow {
    grid-area: eyebrow;
    margin-bottom: 0.25rem;
}

.hero-copy > h1 {
    grid-area: title;
}

.hero-copy > .hero-text {
    grid-area: text;
    margin: 0;
}

.hero-copy > .hero-actions {
    grid-area: actions;
    margin: 0;
    align-self: start;
    justify-self: end;
}

.hero-copy > .hero-highlights {
    grid-area: highlights;
    margin: 0.4rem 0 0;
    justify-self: end;
}

.hero-copy > .hero-scroll-cue {
    grid-area: cue;
    margin-top: 0.6rem;
    justify-self: start;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(
        135deg,
        rgba(255, 59, 143, 0.09),
        rgba(70, 210, 196, 0.12),
        rgba(245, 221, 75, 0.14)
    );
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.05;
    color: var(--navy-strong);
    max-width: 14ch;
    text-wrap: balance;
    text-shadow: 0 2px 12px rgba(255, 253, 247, 0.6);
}

.hero-copy .hero-text {
    color: var(--text);
    text-shadow: 0 1px 8px rgba(255, 253, 247, 0.5);
}

.hero-copy h1 span {
    display: block;
    background: linear-gradient(
        100deg,
        var(--pink-text) 0%,
        #d9462b 35%,
        var(--pink-text) 65%,
        #0b7a71 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 10px 25px rgba(255, 59, 143, 0.06);
    animation: gradientShift 9s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* =========================
   LISTES / BOUTONS / BADGES
========================= */

.key-info-list,
.info-list {
    margin: 1.2rem 0 0;
    padding-left: 0;
    list-style: none;
}

.key-info-list li,
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-highlights,
.social-badges,
.event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-highlights {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-highlights li,
.social-badges span,
.event-badges span {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.hero-highlights li:hover,
.social-badges span:hover,
.event-badges span:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(20, 58, 139, 0.1);
}

.inline-icon,
.feature-icon,
.mood-icon,
.btn-icon,
.quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inline-icon {
    width: 26px;
    min-width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.82rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.25s var(--ease-out-back),
        box-shadow 0.25s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--navy-strong));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
    transform: translateX(100%);
}

.btn-icon {
    transition: transform 0.3s var(--ease-out-back);
}

.btn:hover .btn-icon,
.btn:focus-visible .btn-icon {
    transform: rotate(-8deg) scale(1.1);
}

.btn-secondary {
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(20, 58, 139, 0.12);
}

/* =========================
   RESEAUX SOCIAUX
========================= */

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    border: 1px solid var(--border);
    color: var(--navy);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(135deg, var(--navy), var(--navy-strong));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-links-header {
    display: flex;
}

.social-links-content {
    margin-top: 1.25rem;
}

.social-links-footer {
    display: flex;
    justify-content: center;
}

/* =========================
   CARTES / BLOCS
========================= */

.hero-card,
.feature-card,
.contact-card,
.mood-card,
.experience-card,
.page-intro,
.event-highlight-card,
.event-info-card,
.schedule-card,
.cta-event-card,
.legal-card,
.menu-category-section {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: relative;
    padding: 1.45rem;
}

.feature-card,
.contact-card,
.mood-card,
.experience-card,
.event-highlight-card,
.event-info-card,
.schedule-card,
.cta-event-card,
.page-intro,
.legal-card,
.menu-category-section {
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.feature-card:hover,
.contact-card:hover,
.mood-card:hover,
.experience-card:hover,
.event-highlight-card:hover,
.event-info-card:hover,
.schedule-card:hover,
.cta-event-card:hover,
.page-intro:hover,
.legal-card:hover,
.menu-category-section:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(20, 58, 139, 0.18);
}

.feature-card:hover .feature-icon,
.mood-card:hover .mood-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow:
        inset 0 0 0 1px rgba(20, 58, 139, 0.04),
        0 12px 24px rgba(255, 127, 102, 0.18);
}

.feature-icon,
.mood-icon {
    transition:
        transform 0.4s var(--ease-out-back),
        box-shadow 0.4s ease;
}

.hero-card {
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto -30px -40px auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        rgba(255, 59, 143, 0.16),
        rgba(124, 223, 246, 0.16)
    );
}

.hero-card-inner {
    position: relative;
    padding: 1.35rem;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(245, 221, 75, 0.18),
        rgba(255, 127, 102, 0.18),
        rgba(124, 223, 246, 0.18)
    );
}

.hero-note {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-note p {
    margin: 0;
    line-height: 1.55;
}

/* =========================
   GRILLES GENERALES
========================= */

.mood-strip {
    padding: 0 0 1rem;
}

.mood-grid,
.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mood-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(255, 247, 238, 0.92)
    );
}

.mood-icon,
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 1rem;
    font-size: 1.45rem;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 102, 0.18),
        rgba(124, 223, 246, 0.18)
    );
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
}

.experience-grid,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-card.quote,
.contact-card.accent,
.cta-event-card,
.page-intro,
.event-highlight-card,
.facebook-feed {
    background: linear-gradient(
        135deg,
        rgba(255, 59, 143, 0.09),
        rgba(70, 210, 196, 0.12),
        rgba(245, 221, 75, 0.14)
    );
}

.events-section {
    padding: 1rem 0 4rem;
}

.events-section--top {
    padding-top: 3rem;
}

.schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.events-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.events-grid__column {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.events-grid__column .facebook-feed {
    margin: 0;
    max-width: none;
}

.schedule-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 247, 238, 0.95)
    );
}

.schedule-day {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
}

/* =========================
   MENU - VERSION COMPACTE
========================= */

.menu-page-section {
    padding: 1rem 0 4rem;
}

.page-banner--compact {
    padding: 2.8rem 0 1rem;
}

.page-intro--compact {
    padding: 1.8rem 1.8rem;
}

.page-intro--compact h1 {
    margin: 0;
    font-size: clamp(2.1rem, 3.3vw, 3.4rem);
    line-height: 1.1;
}

.page-intro--compact .eyebrow {
    margin-bottom: 0.8rem;
}

.menu-reading-section {
    margin-top: 0;
    padding: 1rem 1.1rem 0.75rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.menu-sections-grid {
    column-count: 2;
    column-gap: 1.2rem;
}

.menu-category-section {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.2rem;
    break-inside: avoid;
    vertical-align: top;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 248, 239, 0.98)
        );
}

.menu-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    background: transparent;
    border: none;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.menu-category-header__text {
    flex: 1;
    min-width: 0;
}

.menu-category-header__meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.menu-category-count {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.menu-category-chevron {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    transition: transform 0.3s var(--ease-out-back);
}

.menu-category-section[data-open="false"] .menu-category-chevron {
    transform: rotate(-90deg);
}

.menu-category-content {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.35s var(--ease-out-expo);
}

.menu-category-content > * {
    min-height: 0;
}

.menu-category-section[data-open="false"] .menu-category-content {
    grid-template-rows: 0fr;
}

.menu-category-section[data-open="false"] .menu-category-content > * {
    overflow: hidden;
    visibility: hidden;
}

.menu-category-section[data-open="false"] .menu-category-header {
    margin-bottom: 0;
}

.menu-category-title {
    margin: 0 0 0.6rem;
    color: var(--navy-strong);
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.menu-category-description {
    margin: 0;
    color: var(--muted);
}

.menu-list {
    display: grid;
    gap: 0.5rem;
}

.menu-item {
    display: grid;
    gap: 0.45rem;
    padding: 0.85rem 0;
    border-bottom: 1px dashed rgba(20, 58, 139, 0.16);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.menu-item-title {
    margin: 0;
    color: var(--navy-strong);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
}

.menu-item-price,
.variant-price {
    font-weight: 800;
    color: var(--pink-text);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-description {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.menu-item-notes {
    margin: 0;
    color: rgba(24, 49, 83, 0.88);
    font-size: 0.9rem;
    line-height: 1.45;
}

.variant-list {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.1rem;
}

.variant-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        rgba(245, 221, 75, 0.16),
        rgba(124, 223, 246, 0.16)
    );
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.variant-row:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 10px 18px rgba(20, 58, 139, 0.06);
}

.menu-empty-state {
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(20, 58, 139, 0.06);
    color: var(--navy-strong);
    font-weight: 600;
}

/* =========================
   MENTIONS LEGALES
========================= */

.legal-layout {
    display: grid;
    gap: 1.25rem;
}

.legal-card p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--muted);
}

.legal-card p:last-child {
    margin-bottom: 0;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 1rem 0 2rem;
    margin-top: 1rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.footer-inner > p {
    margin: 0;
    justify-self: start;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    justify-self: center;
    margin-left: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 1rem;
    width: 100%;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--navy-strong);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--navy);
    transform: translateY(-1px);
}

.footer-legal-link {
    justify-self: end;
    text-align: right;
}

.footer-main-link {
    justify-self: center;
    min-width: 170px;
    justify-content: center;
    text-align: center;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .decor-image {
        opacity: 0.28;
    }
}

@media (max-width: 980px) {
    .desktop-nav,
    .header-cta,
    .social-links-header {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
    }

    .hero-grid,
    .feature-grid,
    .contact-grid,
    .mood-grid,
    .experience-grid,
    .events-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        width: 148px;
    }

    .hero::after,
    .page-banner::after {
        display: none;
    }

    .decor-image {
        opacity: 0.24;
    }

    .menu-sections-grid {
        column-count: 1;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 3rem;
    }

    .hero-copy {
        padding: 1.2rem 1.1rem;
        border-radius: var(--radius-lg);
        grid-template-columns: 1fr;
        grid-template-areas:
            "eyebrow"
            "title"
            "text"
            "actions"
            "cue";
    }

    .hero-copy > .hero-actions {
        justify-self: start;
    }

    .hero-copy h1 {
        font-size: 2.35rem;
        max-width: none;
    }

    .hero-actions,
    .contact-actions,
    .hero-highlights,
    .variant-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.35rem;
    }

    .menu-item-title {
        flex: 1;
        min-width: 0;
    }

    .menu-item-price {
        margin-left: auto;
        text-align: right;
    }

    .header-right {
        flex-direction: row;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-inner > p {
        justify-self: center;
    }

    .footer-right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .social-links-footer {
        justify-content: center;
        width: 100%;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
    }

    .footer-legal-link,
    .footer-main-link {
        justify-self: auto;
        width: 100%;
        max-width: 240px;
        justify-content: center;
        text-align: center;
    }

    .btn {
        width: 100%;
    }

    .decor-image {
        opacity: 0.2;
    }

    .menu-page-section {
        padding: 0.35rem 0 1.5rem;
    }

    .menu-reading-section {
        margin-top: 0.4rem;
        padding: 0.35rem 0.15rem 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .menu-sections-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        column-count: unset;
        column-gap: normal;
    }

    .menu-category-section {
        margin: 0;
        padding: 0.7rem 0.45rem 0.55rem;
        border: 1px solid rgba(20, 58, 139, 0.08);
        border-radius: 14px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.76);
    }

    .menu-category-section:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(20, 58, 139, 0.08);
    }

    .menu-category-header {
        margin-bottom: 0.45rem;
        padding: 0;
    }

    .menu-category-title {
        margin: 0 0 0.2rem;
        font-size: 0.98rem;
        line-height: 1.15;
    }

    .menu-category-title::after {
        width: 42px;
        height: 3px;
        margin-top: 0.3rem;
    }

    .menu-category-description {
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .menu-list {
        gap: 0.1rem;
    }

    .menu-item {
        gap: 0.12rem;
        padding: 0.4rem 0;
    }

    .menu-item-title {
        font-size: 0.92rem;
        line-height: 1.22;
    }

    .menu-item-price,
    .variant-price {
        white-space: normal;
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .menu-item-description {
        font-size: 0.8rem;
        line-height: 1.28;
    }

    .menu-item-notes {
        font-size: 0.76rem;
        line-height: 1.22;
        opacity: 0.9;
    }

    .variant-list {
        gap: 0.22rem;
        margin-top: 0.05rem;
    }

    .variant-row {
        padding: 0.42rem 0.55rem;
        border-radius: 10px;
        gap: 0.45rem;
    }

    .variant-row span:first-child {
        font-size: 0.84rem;
        line-height: 1.2;
    }

    .menu-empty-state {
        padding: 0.7rem 0.8rem;
        font-size: 0.86rem;
    }
}

/* =========================
   SCROLL PROGRESS BAR
========================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 60;
    pointer-events: none;
}

.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        var(--yellow),
        var(--coral),
        var(--pink),
        var(--teal),
        var(--sky)
    );
    box-shadow: 0 0 12px rgba(255, 59, 143, 0.45);
    transition: width 0.08s linear;
}

/* =========================
   REVEAL ANIMATIONS
========================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s var(--ease-out-expo),
        transform 0.7s var(--ease-out-expo);
    will-change: opacity, transform;
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="zoom"] {
    transform: scale(0.94);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

/* =========================
   FLOATING BACK-TO-TOP
========================= */

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--navy-strong));
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    box-shadow: 0 16px 32px rgba(20, 58, 139, 0.28);
    transition:
        opacity 0.3s ease,
        transform 0.3s var(--ease-out-back),
        visibility 0.3s ease,
        box-shadow 0.3s ease;
    z-index: 55;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 22px 40px rgba(20, 58, 139, 0.36);
}

.back-to-top:active {
    transform: translateY(0) scale(0.98);
}

/* =========================
   FLOATING MOBILE CTA
========================= */

.mobile-floating-cta {
    display: none;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 54;
    pointer-events: none;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.3s ease,
        transform 0.3s var(--ease-out-back);
}

.mobile-floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-floating-cta .btn {
    width: 100%;
    box-shadow: 0 18px 36px rgba(20, 58, 139, 0.35);
}

@media (max-width: 640px) {
    .mobile-floating-cta {
        display: flex;
    }

    .back-to-top {
        right: 1rem;
        bottom: 5.2rem;
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    main {
        padding-bottom: 4.5rem;
    }
}

/* =========================
   HERO SCROLL CUE
========================= */

.hero-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 2rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-strong);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.hero-scroll-cue__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 0 0 0 0 rgba(255, 59, 143, 0.45);
    animation: pulseDot 2.4s ease-out infinite;
}

@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(255, 59, 143, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 59, 143, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 143, 0); }
}

/* =========================
   ENHANCED HERO CARD
========================= */

.hero-card {
    animation: floatGentle 7s ease-in-out infinite;
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@media (max-width: 980px) {
    .hero-card {
        animation: none;
    }
}

/* =========================
   SCROLLSPY ACTIVE NAV
========================= */

.desktop-nav a.is-active {
    color: var(--navy-deep);
}

.desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.mobile-nav a.is-active {
    background: linear-gradient(
        135deg,
        rgba(255, 59, 143, 0.14),
        rgba(124, 223, 246, 0.14)
    );
}

/* =========================
   ANIMATED BRAND LOGO
========================= */

@keyframes brandPop {
    0%, 100% { transform: rotate(0); }
    50%      { transform: rotate(2deg); }
}

.brand:hover .brand-logo {
    animation: brandPop 0.6s ease-in-out;
}

/* =========================
   HOURS SECTION (HOME)
========================= */

.hours-section {
    padding: 1rem 0 3rem;
}

.hours-card {
    position: relative;
    overflow: hidden;
    padding: 1.8rem 1.6rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.96),
        rgba(255, 247, 238, 0.96)
    );
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hours-card::before {
    content: "";
    position: absolute;
    inset: -2px auto auto -2px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(124, 223, 246, 0.18),
        transparent 70%
    );
    pointer-events: none;
    filter: blur(2px);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1.4rem;
    position: relative;
    z-index: 1;
}

.hours-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        background var(--transition-base);
}

.hours-day:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.95);
}

.hours-day.is-today {
    background: linear-gradient(
        135deg,
        rgba(255, 59, 143, 0.12),
        rgba(70, 210, 196, 0.16)
    );
    border-color: rgba(255, 59, 143, 0.28);
    box-shadow: 0 12px 24px rgba(255, 59, 143, 0.16);
}

.hours-day__name {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy-strong);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hours-day__time {
    margin-top: 0.4rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.35;
}

.hours-day.is-closed .hours-day__time {
    color: var(--pink-text);
    font-weight: 700;
}

.hours-day__badge {
    margin-top: 0.45rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: var(--pink-text);
    color: var(--white);
    text-transform: uppercase;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    background: rgba(20, 58, 139, 0.06);
    color: var(--navy-strong);
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
}

.hours-status__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 59, 143, 0.18);
}

.hours-status.is-open .hours-status__dot {
    background: #2ec27e;
    box-shadow: 0 0 0 4px rgba(46, 194, 126, 0.2);
    animation: pulseDot 2.2s ease-out infinite;
}

@media (max-width: 880px) {
    .hours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MENU PAGE — STICKY CAT NAV + SEARCH
========================= */

.menu-toolbar {
    position: sticky;
    top: 78px;
    z-index: 30;
    margin: 0 0 1.2rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 249, 240, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(20, 58, 139, 0.08);
}

.menu-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.menu-search__input {
    width: 100%;
    min-height: 44px;
    padding: 0.6rem 1rem 0.6rem 2.4rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font: inherit;
    color: var(--text);
    transition:
        border-color var(--transition-base),
        box-shadow var(--transition-base),
        background var(--transition-base);
}

.menu-search__input::placeholder {
    color: rgba(24, 49, 83, 0.5);
}

.menu-search__input:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 59, 143, 0.16);
}

.menu-search__icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy);
    pointer-events: none;
}

.menu-search__clear {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--transition-base),
        background var(--transition-base);
}

.menu-search__clear.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.menu-search__clear:hover {
    background: rgba(255, 59, 143, 0.16);
    color: var(--pink-text);
}

.menu-cat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.menu-cat-chip {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    color: var(--navy-strong);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition:
        transform var(--transition-base),
        background var(--transition-base),
        color var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.menu-cat-chip:hover,
.menu-cat-chip:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-soft);
}

.menu-cat-chip.is-active {
    background: linear-gradient(135deg, var(--navy), var(--navy-strong));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(20, 58, 139, 0.25);
}

.menu-item {
    transition: opacity 0.25s ease;
}

.menu-item.is-hidden {
    display: none;
}

.menu-category-section.is-hidden {
    display: none;
}

mark.menu-search-hit {
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(245, 221, 75, 0.65) 55%
    );
    color: inherit;
    padding: 0 0.1em;
    border-radius: 2px;
}

@media (max-width: 640px) {
    .menu-toolbar {
        top: 64px;
        padding: 0.6rem 0.7rem;
        border-radius: 16px;
    }

    .menu-cat-chip {
        padding: 0.35rem 0.75rem;
        font-size: 0.82rem;
    }
}

/* =========================
   BIG RESERVATION CTA (HOME)
========================= */

.cta-banner-section {
    padding: 1rem 0 3rem;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 2rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            135deg,
            rgba(20, 58, 139, 0.96),
            rgba(15, 47, 114, 0.96)
        );
    color: var(--white);
    box-shadow: 0 30px 60px rgba(20, 58, 139, 0.3);
    text-align: center;
    isolation: isolate;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: -50% -10% auto auto;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 59, 143, 0.45),
        rgba(255, 59, 143, 0)
    );
    pointer-events: none;
    z-index: -1;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: auto auto -40% -10%;
    width: 55%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(70, 210, 196, 0.4),
        rgba(70, 210, 196, 0)
    );
    pointer-events: none;
    z-index: -1;
}

.cta-banner .eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.cta-banner h2 {
    margin: 0 auto 0.8rem;
    max-width: 18ch;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
}

.cta-banner h2::after {
    margin: 0.7rem auto 0;
    background: linear-gradient(90deg, var(--yellow), var(--coral), var(--pink));
}

.cta-banner p {
    max-width: 56ch;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.cta-banner .btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--coral));
    color: var(--navy-deep);
    box-shadow: 0 18px 36px rgba(255, 127, 102, 0.4);
}

.cta-banner .btn-primary:hover,
.cta-banner .btn-primary:focus-visible {
    box-shadow: 0 24px 48px rgba(255, 127, 102, 0.5);
}

.cta-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.cta-banner .btn-secondary:hover,
.cta-banner .btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.22);
}

/* =========================
   SCHEDULE CARD ENHANCEMENT
========================= */

.schedule-card {
    overflow: hidden;
}

.schedule-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(245, 221, 75, 0.22),
        transparent 70%
    );
    transform: translate(40%, -40%);
    pointer-events: none;
    transition: transform 0.5s var(--ease-out-expo);
}

.schedule-card:hover::before {
    transform: translate(20%, -25%) scale(1.2);
}

/* =========================
   MENU ITEM HOVER POLISH
========================= */

.menu-item {
    border-radius: 8px;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    margin-left: -0.45rem;
    margin-right: -0.45rem;
    transition:
        background var(--transition-base),
        transform var(--transition-base);
}

.menu-item:hover {
    background: linear-gradient(
        90deg,
        rgba(245, 221, 75, 0.06),
        rgba(124, 223, 246, 0.06)
    );
    transform: translateX(2px);
}

@media (max-width: 640px) {
    .menu-item:hover {
        background: transparent;
        transform: none;
    }

    .menu-item {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

/* =========================
   QUOTE ICON ANIMATION
========================= */

.quote-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    font-size: 1.4rem;
    background: linear-gradient(
        135deg,
        rgba(255, 59, 143, 0.18),
        rgba(124, 223, 246, 0.18)
    );
    color: var(--pink);
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.04);
    transition: transform 0.4s var(--ease-out-back);
}

.experience-card.quote:hover .quote-icon {
    transform: rotate(12deg) scale(1.08);
}

/* =========================
   NICE FOCUS RINGS
========================= */

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.social-link:focus-visible,
.menu-cat-chip:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
}

.menu-search__input:focus-visible {
    outline: none;
}

/* =========================
   ACCORDION MENU (mobile-first base, no-op on desktop)
========================= */

.menu-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: default;
    font: inherit;
}

.menu-category-header__text {
    flex: 1;
    min-width: 0;
}

.menu-category-header__meta {
    display: none;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.menu-category-count {
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.menu-category-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(20, 58, 139, 0.08);
    color: var(--navy);
    transition: transform 0.3s var(--ease-out-back);
}

.menu-category-content {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.4s var(--ease-out-expo);
}

.menu-category-content > * {
    min-height: 0;
}

.menu-expand-all {
    display: none;
    align-items: center;
    gap: 0.45rem;
    margin: 0.6rem 0 0;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--navy-strong);
    font: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition:
        background var(--transition-base),
        transform var(--transition-base);
}

.menu-expand-all:hover,
.menu-expand-all:focus-visible {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.menu-expand-all__icon {
    font-size: 0.95rem;
    line-height: 1;
}

/* =========================
   LANGUAGE SWITCHER
========================= */

.lang-switcher {
    position: relative;
}

.lang-switcher__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 44px;
    padding: 0 0.85rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--navy-strong);
    font: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition:
        background var(--transition-base),
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.lang-switcher__trigger:hover,
.lang-switcher__trigger:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.lang-switcher__flag,
.lang-switcher__option-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 15px;
    border-radius: 3px;
    overflow: hidden;
    background: rgba(20, 58, 139, 0.06);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(20, 58, 139, 0.1);
    line-height: 1;
}

.lang-switcher__flag svg,
.lang-switcher__option-flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.lang-switcher__trigger [data-lang-code] {
    display: none;
}

.lang-switcher__caret {
    font-size: 0.7rem;
    opacity: 0.65;
    transition: transform 0.25s var(--ease-out-back);
}

.lang-switcher.is-open .lang-switcher__caret {
    transform: rotate(180deg);
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 180px;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 40px rgba(20, 58, 139, 0.18);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s var(--ease-out-back);
    z-index: 60;
}

.lang-switcher.is-open .lang-switcher__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--navy-strong);
    font: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-base);
}

.lang-switcher__option:hover,
.lang-switcher__option:focus-visible {
    background: rgba(20, 58, 139, 0.06);
    outline: none;
}

.lang-switcher__option[aria-current="true"] {
    background: linear-gradient(
        135deg,
        rgba(255, 59, 143, 0.1),
        rgba(124, 223, 246, 0.12)
    );
    color: var(--navy-deep);
}

.lang-switcher__option-flag {
    width: 24px;
    height: 16px;
}

@media (max-width: 980px) {
    .lang-switcher__trigger {
        height: 40px;
        padding: 0 0.7rem;
    }
    .lang-switcher__menu {
        right: 0;
        left: auto;
    }
}

/* =========================
   EVENT PROGRAM LIST
========================= */

.event-program {
    margin: 1.2rem 0 1.4rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.event-program__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(
        135deg,
        rgba(245, 221, 75, 0.1),
        rgba(124, 223, 246, 0.12)
    );
    border: 1px solid var(--border);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.event-program__item:hover {
    transform: translateX(2px);
    box-shadow: var(--shadow-soft);
}

.event-program__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), var(--navy-strong));
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(20, 58, 139, 0.2);
}

.event-program__detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.event-program__title {
    margin: 0;
    color: var(--navy-strong);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.35;
}

.event-program__alt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.1rem 0 0;
    color: var(--navy-strong);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.35;
}

.event-program__or {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: var(--pink-text);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-program__note {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .event-program__item {
        padding: 0.7rem 0.85rem;
        gap: 0.7rem;
    }

    .event-program__day {
        min-width: 52px;
        font-size: 0.78rem;
        padding: 0.4rem 0.55rem;
    }

    .event-program__title,
    .event-program__alt {
        font-size: 0.94rem;
    }

    .event-program__note {
        font-size: 0.8rem;
    }
}

/* =========================
   FACEBOOK FEED WIDGET (click-to-load)
========================= */

.facebook-feed {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    padding: 0.7rem 0.7rem 0.45rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.facebook-feed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.facebook-feed__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.7rem 0.95rem;
    margin-bottom: 0.55rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #1060cc 0%, #0a59cf 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(24, 119, 242, 0.25);
}

.facebook-feed__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.facebook-feed__logo {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.facebook-feed__title {
    line-height: 1;
}

.facebook-feed__follow {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
        background var(--transition-base),
        transform var(--transition-base);
}

.facebook-feed__follow:hover,
.facebook-feed__follow:focus-visible {
    background: rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.facebook-feed__viewport {
    position: relative;
    overflow: hidden;
    height: 510px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: inset 0 0 0 1px rgba(20, 58, 139, 0.06);
}

.facebook-feed__viewport::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.9) 65%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
}

.facebook-feed__frame {
    position: absolute;
    top: -82px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% + 82px + 220px);
    border: none;
    background: var(--white);
    display: block;
}

.facebook-feed__footnote {
    margin: 0.7rem 0 0.2rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
}

.facebook-feed__footnote a {
    color: var(--navy-strong);
    font-weight: 700;
    transition: color var(--transition-base);
}

.facebook-feed__footnote a:hover,
.facebook-feed__footnote a:focus-visible {
    color: var(--pink-text);
}

@media (max-width: 640px) {
    .facebook-feed {
        max-width: none;
        padding: 0.5rem 0.5rem 0.35rem;
    }

    .facebook-feed__header {
        padding: 0.6rem 0.8rem;
    }

    .facebook-feed__brand {
        font-size: 0.95rem;
    }

    .facebook-feed__follow {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }

    .facebook-feed__viewport {
        height: 450px;
    }

    .facebook-feed__viewport::after {
        height: 70px;
    }
}

/* =========================
   TABLET BREAKPOINT (641px – 979px)
   Mobile nav (touch) + 2-col grids where it makes sense.
========================= */

@media (min-width: 641px) and (max-width: 979px) {
    .container {
        width: min(calc(100% - 2.5rem), var(--max-width));
    }

    .section {
        padding: 1.5rem 0 3.5rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-copy {
        grid-template-columns: 1fr;
        grid-template-areas:
            "eyebrow"
            "title"
            "text"
            "actions"
            "cue";
    }

    .hero-copy > .hero-actions {
        justify-self: start;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 6vw, 3.8rem);
        max-width: 18ch;
    }

    .hero-card {
        max-width: 520px;
        justify-self: start;
    }

    .feature-grid,
    .mood-grid,
    .schedule-grid,
    .experience-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .menu-sections-grid {
        column-count: 2;
        column-gap: 1rem;
    }

    .hours-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .hours-day {
        padding: 0.7rem 0.35rem;
    }

    .hours-day__name {
        font-size: 0.78rem;
    }

    .hours-day__time {
        font-size: 0.82rem;
    }

    .hours-day__badge {
        font-size: 0.6rem;
    }

    .cta-banner {
        padding: 2rem 1.6rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-right {
        align-items: flex-end;
    }

    .footer-inner > p {
        justify-self: start;
    }

    .footer-links {
        grid-template-columns: 1fr;
        justify-items: end;
        gap: 0.4rem;
    }
}

/* =========================
   PHONE BREAKPOINT — REWORK (≤ 640px)
   Compact, accordion menu, big touch targets.
========================= */

@media (max-width: 640px) {
    /* Spacing recalibrated for narrow screens */
    .container {
        width: min(calc(100% - 1.5rem), var(--max-width));
    }

    .section {
        padding: 1rem 0 2.5rem;
    }

    .site-header {
        background: rgba(255, 249, 240, 0.9);
    }

    .nav {
        padding: 0.6rem 0;
        gap: 0.5rem;
    }

    .brand-logo {
        width: 124px;
    }

    .header-cta {
        display: none;
    }

    .header-right {
        gap: 0.5rem;
    }

    /* Mobile nav becomes a drawer-style panel */
    .mobile-nav {
        gap: 0.3rem;
        padding: 0.6rem 0.75rem 1rem;
    }

    .mobile-nav a {
        padding: 1rem 1rem;
        font-size: 1.02rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: var(--shadow-soft);
    }

    /* Hero stack — copy first, card second, both compact */
    .hero {
        padding: 2rem 0 1.5rem;
    }

    .hero-grid {
        gap: 1.6rem;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
        line-height: 1;
        max-width: none;
    }

    .hero-text {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .hero-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.45rem;
    }

    .hero-highlights li {
        padding: 0.55rem 0.7rem;
        font-size: 0.85rem;
    }

    .hero-scroll-cue {
        margin-top: 1.4rem;
        font-size: 0.8rem;
    }

    .hero-card {
        animation: none;
    }

    .hero-card-inner {
        padding: 1.1rem;
    }

    .hero-card h2 {
        font-size: 1.6rem;
    }

    /* Mood / feature cards: tighter */
    .mood-card,
    .feature-card {
        padding: 1.1rem 1rem;
    }

    .mood-card h3,
    .feature-card h3 {
        margin: 0.4rem 0 0.5rem;
        font-size: 1.1rem;
    }

    .mood-icon,
    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.6rem;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    /* Hours: horizontal strip with snap-scroll on phone */
    .hours-section {
        padding: 0.5rem 0 2rem;
    }

    .hours-card {
        padding: 1.3rem 1rem;
    }

    .hours-grid {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 0.3rem;
        margin-top: 1rem;
    }

    .hours-day {
        width: auto;
        min-width: 0;
        padding: 0.55rem 0.2rem;
    }

    .hours-day__name {
        font-size: 0.7rem;
    }

    .hours-day__time {
        font-size: 0.68rem;
        line-height: 1.2;
        margin-top: 0.25rem;
        word-break: break-word;
    }

    .hours-day__badge {
        display: none;
    }

    /* CTA banner more compact */
    .cta-banner-section {
        padding: 0.5rem 0 2rem;
    }

    .cta-banner {
        padding: 1.6rem 1.1rem;
        border-radius: var(--radius-lg);
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    /* Schedule cards: more visual, single column */
    .schedule-card {
        padding: 1.1rem 1rem;
    }

    .schedule-day {
        font-size: 0.85rem;
    }

    /* =========================
       MENU PAGE — ACCORDION ON PHONE
       Categories collapse so users see all categories
       at once, tap to expand the one they want.
    ========================= */

    .menu-page-section {
        padding: 0 0 1.5rem;
    }

    .menu-toolbar {
        top: 60px;
        padding: 0.55rem 0.65rem;
        border-radius: 14px;
        background: rgba(255, 249, 240, 0.96);
        box-shadow: 0 8px 18px rgba(20, 58, 139, 0.1);
    }

    .menu-search {
        margin-bottom: 0.55rem;
    }

    .menu-search__input {
        min-height: 42px;
        font-size: 0.95rem;
        padding-left: 2.3rem;
    }

    .menu-cat-nav {
        gap: 0.35rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .menu-cat-nav::-webkit-scrollbar {
        display: none;
    }

    .menu-cat-chip {
        flex: 0 0 auto;
        scroll-snap-align: start;
        min-height: 36px;
        padding: 0.4rem 0.85rem;
        font-size: 0.86rem;
    }

    .menu-expand-all {
        display: inline-flex;
    }

    /* Sections styled as taps */
    .menu-sections-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        column-count: unset;
    }

    .menu-category-section {
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 6px 16px rgba(20, 58, 139, 0.06);
        overflow: hidden;
    }

    .menu-category-section:hover {
        transform: none;
        box-shadow: 0 6px 16px rgba(20, 58, 139, 0.06);
        border-color: var(--border);
    }

    .menu-category-header {
        cursor: pointer;
        align-items: center;
        gap: 0.6rem;
        margin: 0;
        padding: 0.85rem 1rem;
        min-height: 56px;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.5),
            rgba(255, 247, 238, 0.5)
        );
        transition: background var(--transition-base);
    }

    .menu-category-header:hover,
    .menu-category-header:focus-visible {
        background: linear-gradient(
            90deg,
            rgba(245, 221, 75, 0.12),
            rgba(124, 223, 246, 0.12)
        );
    }

    .menu-category-header__text {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .menu-category-header__meta {
        display: inline-flex;
    }

    .menu-category-title {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.2;
        font-family: "Playfair Display", Georgia, serif;
    }

    .menu-category-title::after {
        display: none;
    }

    .menu-category-description {
        margin: 0;
        font-size: 0.78rem;
        line-height: 1.3;
        color: var(--muted);
    }

    .menu-category-section[data-open="false"] .menu-category-chevron {
        transform: rotate(-90deg);
    }

    .menu-category-section[data-open="true"] .menu-category-chevron {
        transform: rotate(0);
    }

    .menu-category-content {
        grid-template-rows: 1fr;
    }

    .menu-category-section[data-open="false"] .menu-category-content {
        grid-template-rows: 0fr;
    }

    .menu-category-content > * {
        overflow: hidden;
    }

    .menu-list {
        gap: 0;
        padding: 0 1rem 0.6rem;
    }

    .menu-item {
        gap: 0.2rem;
        padding: 0.7rem 0;
        margin: 0;
        border-bottom: 1px dashed rgba(20, 58, 139, 0.12);
    }

    .menu-item:last-child {
        border-bottom: none;
    }

    .menu-item-title {
        font-size: 0.98rem;
        line-height: 1.25;
    }

    .menu-item-price,
    .variant-price {
        font-size: 0.95rem;
    }

    .menu-item-description {
        font-size: 0.85rem;
        line-height: 1.35;
    }

    .menu-item-notes {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .variant-list {
        gap: 0.3rem;
        margin-top: 0.35rem;
    }

    .variant-row {
        flex-direction: row;
        align-items: center;
        padding: 0.55rem 0.7rem;
        border-radius: 10px;
        gap: 0.5rem;
    }

    .variant-row span:first-child {
        font-size: 0.88rem;
    }

    /* Footer compact */
    .site-footer {
        padding: 0.8rem 0 1.5rem;
    }

    /* Body bottom padding to clear floating CTA */
    main {
        padding-bottom: 5.5rem;
    }
}

/* Extra-narrow phones */
@media (max-width: 380px) {
    .hero-copy h1 {
        font-size: 2.05rem;
    }

    .menu-cat-chip {
        font-size: 0.8rem;
        padding: 0.32rem 0.7rem;
    }

    .menu-category-header {
        padding: 0.75rem 0.85rem;
    }

    .menu-list {
        padding: 0 0.85rem 0.5rem;
    }
}

/* =========================
   CORRECTIFS AVANT MISE EN LIGNE
========================= */

/* Les animations d'apparition latérales (translateX) faisaient déborder
   la page horizontalement sur mobile. clip ne crée pas de conteneur de
   défilement : les éléments sticky continuent de fonctionner. */
main {
    overflow-x: clip;
}

/* Réserve la hauteur de la carte avant son rendu en JS : évite que le
   pied de page ne saute (CLS). */
.menu-sections-grid:empty {
    min-height: 100vh;
}

/* Suggestion de langue (remplace la redirection automatique) */
.lang-suggest {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: max-content;
    max-width: calc(100vw - 2rem);
    padding: 0.6rem 0.6rem 0.6rem 1rem;
    border-radius: 999px;
    background: var(--navy-deep);
    color: var(--white);
    box-shadow: var(--shadow);
    font-size: 0.92rem;
    transform: translateX(-50%);
}

.lang-suggest__link {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--navy-deep);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.lang-suggest__link:hover,
.lang-suggest__link:focus-visible {
    background: var(--yellow);
}

.lang-suggest__close {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.lang-suggest__close:hover,
.lang-suggest__close:focus-visible {
    background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 640px) {
    .lang-suggest {
        bottom: 5.2rem;
        border-radius: var(--radius-md);
        font-size: 0.85rem;
    }
}

/* Page 404 */
.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.not-found-langs {
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.legal-updated {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* =========================
   PIED DE PAGE
   © à gauche, liens au centre, réseaux sociaux à droite
========================= */

.footer-inner {
    grid-template-columns: auto 1fr auto;
}

/* Les enfants de .footer-right deviennent des cellules de la grille */
.footer-right {
    display: contents;
}

.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1.5rem;
    width: auto;
}

.footer-legal-link,
.footer-main-link {
    justify-self: auto;
    width: auto;
    min-width: 0;
    max-width: none;
    text-align: center;
}

.social-links-footer {
    justify-self: end;
    width: auto;
}

.footer-links button {
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-weight: 600;
    color: var(--navy-strong);
    cursor: pointer;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links button:hover,
.footer-links button:focus-visible {
    color: var(--navy);
    transform: translateY(-1px);
}

@media (max-width: 979px) {
    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-links {
        order: 1;
        gap: 0.6rem 1.25rem;
    }

    .social-links-footer {
        order: 2;
        justify-self: center;
    }

    .footer-inner > p {
        order: 3;
        justify-self: center;
    }
}

/* =========================
   BOUTON MENU (MOBILE)
   À droite, à côté du sélecteur de langue, en bleu marine
========================= */

.menu-toggle {
    width: 48px;
    height: 44px;
    border-radius: 999px;
    background: var(--navy);
    box-shadow: 0 8px 18px rgba(20, 58, 139, 0.22);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: var(--navy-strong);
}

.menu-toggle span {
    width: 18px;
    background: var(--white);
    transition:
        transform var(--transition-base),
        opacity var(--transition-base);
}

/* Les trois traits deviennent une croix quand le menu est ouvert */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 980px) {
    .header-right {
        margin-left: auto;
    }

    .menu-toggle {
        order: 3;
        height: 40px;
        width: 46px;
    }
}

/* =========================
   BAS D'ÉCRAN : SUGGESTION DE LANGUE + BANDEAU COOKIES
========================= */

.floating-stack {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: min(34rem, calc(100vw - 2rem));
    transform: translateX(-50%);
    pointer-events: none;
}

.floating-stack > * {
    pointer-events: auto;
}

.lang-suggest {
    position: static;
    transform: none;
}

@media (max-width: 640px) {
    .floating-stack {
        bottom: 5.2rem;
    }
}

.consent-banner {
    width: 100%;
    padding: 1.1rem 1.2rem 1.2rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-hover);
}

.consent-banner__title {
    margin: 0 0 0.4rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
    color: var(--navy-deep);
}

.consent-banner__text {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted);
}

.consent-banner__text a {
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
}

.consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.consent-banner .btn,
.consent-placeholder .btn {
    min-height: 44px;
    padding: 0.6rem 1rem;
    border: 0;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

/* Encart affiché à la place du fil Facebook sans consentement */
.consent-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.consent-placeholder p {
    max-width: 30ch;
    margin: 0;
    color: var(--muted);
}

iframe[hidden] {
    display: none !important;
}

/* =========================
   PROGRAMME : SOIRÉES SPÉCIALES
   Généré depuis l'espace de gestion (badge rose avec la date)
========================= */

.event-program__day span {
    display: block;
}

.event-program__item--special .event-program__day {
    flex-direction: column;
    gap: 0.1rem;
    border-radius: 16px;
    background: var(--pink-text);
    line-height: 1.15;
    text-align: center;
}

.event-program__description {
    margin: 0.2rem 0 0.3rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--muted);
}

.event-program__empty {
    padding: 1rem 0;
    color: var(--muted);
    list-style: none;
}

/* Bouton « Appeler » sur ordinateur : le numéro affiché reste sur une ligne */
.is-number-shown {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
