/* ════════════════════════════════════════
   STYLE.CSS — Charte méditerranéenne
   ════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --beige: #F1E1D2; /* Beige Sable       */
    --creme: #DCC7A8; /* Crème chaleureux  */
    --bleu-doux: #9EB8C6; /* Bleu doux         */
    --bleu-ocean: #366F8A; /* Bleu Océan        */
    --bleu-profond: #1F2E3A; /* Bleu Profond      */
    /* Legacy aliases (compat) */
    --jaune: #DCC7A8; /* → Crème chaleureux */
    --terracotta: #9EB8C6; /* → Bleu doux        */
    --bleu: #366F8A; /* → Bleu Océan       */
    --bleu-med: #1F2E3A; /* → Bleu Profond     */

    --text-dark: #1A1A1A;
    --text-mid: #2E3C48;
    --text-light: #7A8E9A;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Jost', sans-serif;
    --font-brush: 'Dry Brush', 'Pacifico', cursive;
    --radius: 4px;
    --gap: clamp(1.5rem, 4vw, 3rem);
    --container: 1280px;
    --header-h: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--beige);
    color: var(--bleu-profond);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

address {
    font-style: normal;
}

ul {
    list-style: none;
}

/* ── Scroll Fade Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ════════════════════════════════════════
   BOUTONS
   ════════════════════════════════════════ */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn--primary {
    background: var(--bleu-ocean);
    color: var(--creme);
    border: 2px solid var(--bleu-ocean);
}

    .btn--primary:hover {
        background: var(--bleu-profond);
        border-color: var(--bleu-profond);
        color: var(--creme);
    }

.btn--outline {
    background: transparent;
    border: 2px solid currentColor;
    color: var(--bleu-med);
}

    .btn--outline:hover {
        background: var(--bleu-med);
        color: var(--beige);
        border-color: var(--bleu-med);
    }

/* ── Labels de section ── */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bleu-ocean);
    border-bottom: 2px solid var(--creme);
    padding-bottom: 2px;
    margin-bottom: 1rem;
}

/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    background: var(--bleu-ocean);
    color: var(--beige);
}

.header__logo-link {
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 60px;
    width: auto;
    display: block;
    /*filter: brightness(0) saturate(100%) invert(82%) sepia(60%) saturate(800%) hue-rotate(342deg) brightness(1.02);*/
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.header__logo-link:hover .header__logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.header__nav {
    display: flex;
    gap: 2.5rem;
}

    .header__nav a {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--creme);
        position: relative;
        padding-bottom: 3px;
        transition: color 0.2s;
    }

        .header__nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--jaune);
            transition: width 0.25s ease;
        }

        .header__nav a:hover {
            color: #fff;
        }

            .header__nav a:hover::after {
                width: 100%;
            }

/* Nav burger (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--beige);
    font-size: 1.4rem;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 36px;
    text-align: center;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero__image-wrap {
    position: relative;
    overflow: hidden;
}

.hero__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease;
    animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 3.5rem) clamp(1.5rem, 4vw, 4rem);
    z-index: 1;
    overflow: hidden;
}

    /* Image 70% hauteur */
    .hero__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../imgs/imgContent.png") center/cover no-repeat;
        filter: blur(0px) brightness(1.15) contrast(1.85);
        transform: scale(1.05);
        z-index: -2;
    }

    /* Overlay doux */
    .hero__content::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(241, 225, 210, 0.85);
        z-index: -1;
    }

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bleu);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2.2rem;
}

    .hero__eyebrow::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 1.6rem;
        height: 2px;
        background: var(--jaune);
        transform: translateY(-50%);
    }

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--bleu-med);
    margin-bottom: 2.5rem;
}

    .hero__title em {
        font-style: italic;
        color: var(--bleu);
    }

.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: var(--bleu);
    opacity: 0.5;
    animation: bounce 1.8s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ════════════════════════════════════════
   INTRO / TRAITEUR
   ════════════════════════════════════════ */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    align-items: center;
    background: var(--beige);
}

.intro__text {
    max-width: 480px;
}

.intro__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--bleu-med);
    margin-bottom: 1.4rem;
}

.intro__body {
    font-family: 'Bradley Hand ITC';
    font-size: clamp(13px, 1.15vw, 19px);
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 0;
}

.intro__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 520px;
}

.intro__img-main {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.intro__img-secondary {
    grid-column: 2;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.intro__images img {
    border-radius: 12px;
    transition: transform 0.6s ease;
}

    .intro__images img:hover {
        transform: scale(1.04);
    }

/* ════════════════════════════════════════
   BANNIÈRE SPÉCIALITÉ
   ════════════════════════════════════════ */
.banner {
    background: var(--bleu-ocean);
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    }

.banner__inner {
    position: relative;
    z-index: 1;
}

.banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    font-style: italic;
    color: var(--jaune);
    margin-bottom: 1rem;
}

.banner__divider {
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    margin: 0 auto 1.2rem;
    border-radius: 2px;
}

.banner__sub {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(241,225,210,0.7);
}

/* ════════════════════════════════════════
   NOS CARTES — MENUS HTML
   ════════════════════════════════════════ */
.menus {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
    background: var(--beige);
}

.menus__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.menus__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--bleu-med);
    margin-bottom: 0.6rem;
}

.menus__subtitle {
    font-size: 0.9rem;
    color: var(--text-mid);
    letter-spacing: 0.06em;
}

/* ── Onglets ── */
.menus__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menus__tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: 2px solid var(--bleu);
    color: var(--bleu);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .menus__tab:hover {
        background: var(--bleu);
        color: #fff;
    }

    .menus__tab.is-active {
        background: var(--bleu-med);
        border-color: var(--bleu-med);
        color: var(--jaune);
        box-shadow: 0 4px 18px rgba(26, 78, 99, 0.25);
    }

.tab-icon {
    font-size: 1rem;
}

/* ── Panels ── */
.menus__panel {
    display: none;
}

    .menus__panel.is-active {
        display: block;
    }

/* ── Grilles de panneaux ── */
.menus__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: var(--container);
    margin: 0 auto;
}

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

.menus__grid--cocktail {
    grid-template-columns: 3fr 2fr;
    max-width: 860px;
}

/* ── Panneau individuel ── */
.menu-panel {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(26, 78, 99, 0.07);
    display: flex;
    flex-direction: column;
}

/* Têtes de section */
.menu-panel__head {
    background: var(--bleu-med);
    padding: 1rem 1.4rem;
    position: relative;
    overflow: hidden;
}

    .menu-panel__head::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1.4rem;
        width: 36px;
        height: 3px;
        background: var(--jaune);
        border-radius: 2px;
    }

.menu-panel__head--alt {
    background: var(--bleu);
}

.menu-panel__head--gold {
    background: var(--jaune);
}

    .menu-panel__head--gold .menu-panel__title {
        color: var(--bleu-med);
    }

.menu-panel__head--dark {
    background: var(--bleu-med);
}

.menu-panel__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.02em;
}

/* ── Liste de plats ── */
.menu-panel__list {
    padding: 0.8rem 0;
    flex: 1;
}

.menu-panel__list--compact .menu-item {
    padding: 0.55rem 1.4rem;
}

/* ── Élément ── */
.menu-item {
    padding: 0.75rem 1.4rem;
    border-bottom: 1px solid rgba(241,225,210,0.7);
    transition: background 0.18s ease;
}

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

    .menu-item:hover {
        background: rgba(241,225,210,0.4);
    }

.menu-item--separator {
    border-top: 2px dashed rgba(61,97,146,0.18);
    margin-top: 0.4rem;
}

.menu-item__top {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.menu-item__name {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--bleu-med);
    white-space: nowrap;
    flex-shrink: 0;
}

    .menu-item__name em {
        font-style: italic;
        font-weight: 400;
        color: var(--bleu);
    }

.menu-item__dots {
    flex: 1;
    border-bottom: 1.5px dotted rgba(61,97,146,0.25);
    margin-bottom: 3px;
    min-width: 12px;
}

.menu-item__price {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    font-style: italic;
    color: var(--bleu);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item__desc {
    font-size: 0.74rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 0.25rem;
    font-style: italic;
}

/* Cocktails - items légèrement plus espacés */
.menu-item--cocktail {
    padding: 1rem 1.4rem;
}

    .menu-item--cocktail .menu-item__name {
        font-size: 1rem;
        font-weight: 600;
    }

    .menu-item--cocktail .menu-item__price {
        font-size: 1.05rem;
        color: var(--bleu-med);
    }

    .menu-item--cocktail .menu-item__desc {
        font-size: 0.78rem;
        color: var(--text-mid);
    }

/* Panel cocktail sans alcool */
.menu-panel--sinAlcool .menu-item--cocktail {
    padding: 1.1rem 1.4rem;
}

/* ════════════════════════════════════════
   PRESSE
   ════════════════════════════════════════ */
.press {
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    background: #F5EFE3;
    text-align: center;
}

    .press .section-label {
        margin-bottom: 2rem;
    }

.press__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.press__logo-item {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    font-style: italic;
    color: var(--bleu);
    opacity: 0.55;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
    cursor: default;
}

    .press__logo-item:hover {
        opacity: 1;
    }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
    background: var(--bleu-ocean);
    color: var(--beige);
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem) 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--gap);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(241,225,210,0.15);
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--jaune);
    letter-spacing: 0.05em;
}

.footer__tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(241,225,210,0.55);
    margin: 0.4rem 0 1.6rem;
}

.footer__address {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(241,225,210,0.75);
}

.footer__links h4,
.footer__social h4 {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--jaune);
    margin-bottom: 1.2rem;
}

.footer__links ul li {
    margin-bottom: 0.6rem;
}

    .footer__links ul li a {
        font-size: 0.88rem;
        color: rgba(241,225,210,0.7);
        transition: color 0.2s;
    }

        .footer__links ul li a:hover {
            color: var(--jaune);
        }

.footer__social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(241,225,210,0.25);
    border-radius: 50%;
    color: rgba(241,225,210,0.7);
    transition: all 0.25s ease;
}

    .social-icon:hover {
        background: var(--creme);
        border-color: var(--creme);
        color: var(--bleu-profond);
    }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
    font-size: 0.75rem;
    color: rgba(241,225,210,0.45);
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

    .footer__legal a {
        color: rgba(241,225,210,0.45);
        transition: color 0.2s;
    }

        .footer__legal a:hover {
            color: var(--beige);
        }

/* ════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
   ════════════════════════════════════════ */

/* ── Large tablet (≤1200px) ── */
@media (max-width: 1200px) {
    .menus__grid--bebidas {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    :root {
        --header-h: 70px;
    }

    /* Intro */
    .intro {
        grid-template-columns: 1fr;
    }

    .intro__text {
        max-width: 100%;
    }

    .intro__images {
        height: 400px;
    }

    /* Menus */
    .menus__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menus__grid--bebidas {
        grid-template-columns: repeat(2, 1fr);
    }

    .menus__grid--cocktail {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* ── Small tablet / large phone (≤768px) ── */
@media (max-width: 768px) {
    :root {
        --header-h: 60px;
    }

    /* ─ Header & nav burger ─ */
    .header {
        padding: 0 1.2rem;
        gap: 0.5rem;
    }

    .header__logo-img {
        height: 46px;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bleu-ocean);
        padding: 0.5rem 0 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        z-index: 99;
    }

        .header__nav.is-open {
            display: flex;
        }

        .header__nav a {
            padding: 1rem 1.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            font-size: 0.82rem;
        }

            .header__nav a::after {
                display: none;
            }

    .nav-toggle {
        display: block;
        flex-shrink: 0;
        min-width: 40px;
        font-size: 1.5rem;
    }

    /* Lang switcher compact */
    .lang-switcher {
        gap: 0.15rem;
        margin-right: 0.3rem;
    }

    .lang-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .flag {
        width: 16px;
        height: 16px;
    }

    /* ─ Hero ─ */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__image-wrap {
        height: 52vw;
        min-height: 240px;
    }

    .hero__content {
        padding: 2.5rem 1.4rem 3rem;
    }

    .intro__body {
        font-size: clamp(14px, 2.2vw, 18px);
        line-height: 1.6;
    }

    /* ─ Sections ─ */
    .intro {
        padding: 3rem 1.4rem;
        gap: 2rem;
    }

    .intro__images {
        height: 300px;
    }

    .banner {
        padding: 2.5rem 1.4rem;
    }

    .banner__title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .gallery {
        padding: 3rem 1.2rem;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .menus {
        padding: 3rem 1.2rem;
    }

    .menus__tabs {
        gap: 0.4rem;
    }

    .menus__tab {
        padding: 0.55rem 1rem;
        font-size: 0.72rem;
    }

    .menus__grid {
        grid-template-columns: 1fr;
    }

    .menus__grid--bebidas {
        grid-template-columns: 1fr;
    }

    /* ─ Location ─ */
    .location {
        padding: 3rem 1.2rem;
    }

    .location__body {
        grid-template-columns: 1fr;
    }

    .location__map {
        position: static;
    }

    .location__map-wrap {
        height: 320px;
    }

    /* ─ Footer ─ */
    .footer {
        padding: 2.5rem 1.4rem 0;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .footer__legal {
        gap: 1.2rem;
    }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
    :root {
        --header-h: 56px;
    }

    .header__logo-img {
        height: 38px;
    }

    /* Hero full width */
    .hero {
        display: flex;
        flex-direction: column;
    }

    .hero__image-wrap {
        height: 56vw;
        min-height: 220px;
        width: 100%;
    }

    .hero__content {
        padding: 2rem 1rem 2.5rem;
    }

    .intro__body {
        font-size: 15px;
        line-height: 1.55;
    }

    /* Intro images stack */
    .intro__images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0.8rem;
    }

    .intro__img-main {
        grid-column: 1;
        grid-row: auto;
        height: 220px;
    }

    .intro__img-secondary {
        height: 180px;
    }

    /* Gallery single column */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item {
        aspect-ratio: 1 / 1;
    }

    /* Menus tabs wrap */
    .menus__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .menus__tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Location */
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .hours-slots {
        justify-content: flex-start;
    }

    .location__map-wrap {
        height: 240px;
    }

    /* Legal pages */
    .legal__container {
        grid-template-columns: 1fr;
    }

    .legal__toc {
        position: static;
    }

    .legal__content {
        padding: 1.2rem 1rem;
    }

    /* Cookie banner */
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
    .header__nav a {
        font-size: 0.78rem;
        padding: 0.9rem 1.4rem;
    }

    .btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.75rem;
    }

    .intro__body {
        font-size: 14px;
        line-height: 1.5;
    }

    .banner__title {
        font-size: 1.4rem;
    }
}
/* ════════════════════════════════════════
   À EMPORTER
   ════════════════════════════════════════ */
.emporter__banner {
    max-width: var(--container);
    margin: 0 auto 2rem;
    background: var(--bleu-med);
    border-radius: 14px;
    overflow: hidden;
}

.emporter__banner-inner {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.4rem 2rem;
    color: var(--beige);
}

    .emporter__banner-inner svg {
        flex-shrink: 0;
        color: var(--jaune);
    }

.emporter__banner-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--jaune);
    margin-bottom: 0.3rem;
}

.emporter__banner-sub {
    font-size: 0.85rem;
    color: rgba(241,225,210,0.8);
    line-height: 1.5;
}

    .emporter__banner-sub a {
        color: var(--jaune);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* ── Intro nouvelles classes ── */
.intro__title em {
    font-style: italic;
    color: var(--bleu);
}

.intro__lead {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    border-left: 3px solid var(--jaune);
    padding-left: 1rem;
}

.intro__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

    .intro__features li {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        font-size: 0.9rem;
        color: var(--text-mid);
        line-height: 1.5;
        padding: 0.7rem 1rem;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 1px 6px rgba(26,78,99,0.06);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .intro__features li:hover {
            transform: translateX(4px);
            box-shadow: 0 3px 14px rgba(26,78,99,0.11);
        }

.intro__feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.intro__features strong {
    color: var(--bleu-med);
    font-weight: 600;
}

.intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

/* ── Footer logo image ── */
.footer__logo-img {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

/* ════════════════════════════════════════
   LOCATION — DÓNDE ENCONTRARNOS
   ════════════════════════════════════════ */
.location {
    padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
    background: #F5EFE3;
}

.location__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.location__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--bleu-med);
}

.location__body {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    max-width: var(--container);
    margin: 0 auto;
    align-items: start;
}

/* ── Cards ── */
.location__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(26,78,99,.07);
    border-left: 4px solid var(--bleu-med);
    transition: transform .2s, box-shadow .2s;
}

    .location__card:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 20px rgba(26,78,99,.12);
    }

.location__card--blue {
    border-left-color: var(--bleu);
}

.location__card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--bleu-med);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jaune);
}

.location__card-icon--blue {
    background: var(--bleu);
}

.location__card-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--bleu);
    margin-bottom: .3rem;
}

.location__card-text {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.location__card-phone {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bleu-med);
    transition: color .2s;
}

    .location__card-phone:hover {
        color: var(--bleu);
    }

/* ── Horaires ── */
.location__hours {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,78,99,.07);
}

.location__hours-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--bleu-med);
    color: var(--jaune);
    padding: .9rem 1.4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hours-grid {
    padding: .4rem 0;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .68rem 1.4rem;
    border-bottom: 1px solid rgba(241,225,210,.65);
    gap: .8rem;
    transition: background .15s;
}

    .hours-row:last-child {
        border-bottom: none;
    }

    .hours-row:hover {
        background: rgba(241,225,210,.35);
    }

.hours-day {
    font-size: .88rem;
    font-weight: 600;
    color: var(--bleu-med);
    min-width: 92px;
    flex-shrink: 0;
}

.hours-slots {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hours-badge {
    display: inline-block;
    background: rgba(61,97,146,.1);
    color: var(--bleu);
    font-size: .74rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.hours-badge--solo {
    background: rgba(255,200,61,.2);
    color: var(--bleu-med);
}

.hours-sep {
    color: var(--text-light);
    font-size: .7rem;
}

.hours-row--closed .hours-day {
    color: var(--text-light);
}

.hours-closed-badge {
    display: inline-block;
    background: rgba(239,176,138,.25);
    color: var(--terracotta);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 50px;
}

.hours-row--special {
    background: rgba(255,200,61,.04);
}

/* ── Carte Maps ── */
.location__map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: calc(var(--header-h, 70px) + 1.5rem);
}

.location__map-wrap {
    width: 100%;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,78,99,.15);
    border: 3px solid #fff;
}

.location__map-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    align-self: flex-start;
    background: var(--bleu-med);
    color: var(--beige);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .8rem 1.6rem;
    border-radius: 8px;
    transition: background .25s, transform .2s;
}

    .location__map-cta:hover {
        background: var(--bleu);
        transform: translateY(-2px);
    }

/* ── QR Code avis Google ── */
.location__review {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(26, 78, 99, 0.07);
}

.location__review-text {
    font-size: .95rem;
    font-weight: 600;
    color: var(--bleu);
    letter-spacing: .02em;
}

.location__review-qr img {
    display: block;
    border-radius: 8px;
    border: 3px solid var(--bleu-clair, #9EB8C6);
    transition: transform .3s ease, border-color .3s ease;
}

.location__review-qr:hover img {
    transform: scale(1.04);
    border-color: var(--bleu);
}

.location__review-hint {
    font-size: .78rem;
    color: var(--text-mid);
    letter-spacing: .03em;
}

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

    .location__map {
        position: static;
    }

    .location__map-wrap {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: .3rem;
    }

    .hours-slots {
        justify-content: flex-start;
    }

    .location__map-wrap {
        height: 260px;
    }
}

/* ════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(110%);
    transition: transform .38s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}

    .cookie-banner.is-visible {
        transform: translateY(0);
        pointer-events: all;
    }

    .cookie-banner.is-hiding {
        transform: translateY(110%);
    }

.cookie-banner__inner {
    background: var(--bleu-ocean);
    border-top: 3px solid var(--creme);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.cookie-banner__text {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex: 1;
    min-width: 180px;
}

    .cookie-banner__text svg {
        flex-shrink: 0;
        color: var(--jaune);
    }

    .cookie-banner__text p {
        font-size: .85rem;
        color: var(--beige);
        line-height: 1.5;
        margin: 0;
    }

    .cookie-banner__text strong {
        color: var(--jaune);
    }

.cookie-banner__link {
    color: var(--jaune);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s;
}

    .cookie-banner__link:hover {
        opacity: .75;
    }

.cookie-banner__actions {
    display: flex;
    gap: .7rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: var(--font-sans);
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .65rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

    .cookie-banner__btn:hover {
        transform: translateY(-1px);
    }

.cookie-banner__btn--decline {
    background: transparent;
    color: rgba(241,225,210,.65);
    border: 1.5px solid rgba(241,225,210,.3);
}

    .cookie-banner__btn--decline:hover {
        color: var(--beige);
        border-color: rgba(241,225,210,.6);
    }

.cookie-banner__btn--accept {
    background: var(--jaune);
    color: var(--bleu-med);
}

    .cookie-banner__btn--accept:hover {
        background: #ffd35a;
    }

@media (max-width: 560px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}

/* ════════════════════════════════════════
   LANGUAGE SWITCHER
   ════════════════════════════════════════ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.8rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: rgba(255,255,255,0.07);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    padding: 0;
}

    .lang-btn:hover {
        background: rgba(255,255,255,0.18);
        transform: scale(1.12);
    }

    .lang-btn.is-active {
        border-color: var(--jaune);
        background: rgba(255,200,61,0.15);
    }
/* Catalan text badge */
.flag-ca {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--beige);
    line-height: 1;
}

.lang-btn.is-active .flag-ca {
    color: var(--jaune);
}

/* On mobile: compact switcher */
@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 0.3rem;
        gap: 0.1rem;
    }

    .lang-btn {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        gap: 0.08rem;
        margin-right: 0.2rem;
    }

    .lang-btn {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
        border-width: 1.5px;
    }
}

/* ════════════════════════════════════════
   LANGUAGE SWITCHER
   ════════════════════════════════════════ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.8rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: rgba(255,255,255,0.07);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

    .lang-btn:hover {
        background: rgba(255,255,255,0.18);
        transform: scale(1.12);
    }

    .lang-btn.is-active {
        border-color: var(--jaune);
        background: rgba(255,200,61,0.15);
    }

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 0.4rem;
        gap: 0.2rem;
    }

    .lang-btn {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
    }
}

/* ════════════════════════════════════════
   PAGES LÉGALES — HERO
   ════════════════════════════════════════ */
.legal-hero {
    padding-top: var(--header-h);
    background: var(--bleu-ocean);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .legal-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    }

.legal-hero__inner {
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}

.legal-hero .section-label {
    color: var(--jaune);
    border-bottom-color: var(--terracotta);
}

.legal-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    font-style: italic;
    color: var(--jaune);
    margin: 0.6rem 0 1rem;
}

.legal-hero__sub {
    font-size: 0.85rem;
    color: rgba(241,225,210,0.65);
    line-height: 1.7;
}

    .legal-hero__sub strong {
        color: var(--beige);
    }

/* ════════════════════════════════════════
   PAGES LÉGALES — LAYOUT
   ════════════════════════════════════════ */
.legal {
    background: #F5EFE3;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.legal__container {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    max-width: var(--container);
    margin: 0 auto;
    align-items: start;
}

/* ── Table des matières ── */
.legal__toc {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    background: #fff;
    border-radius: 12px;
    padding: 1.4rem 1.2rem;
    box-shadow: 0 2px 14px rgba(26,78,99,.07);
    border-top: 4px solid var(--jaune);
}

.legal__toc-title {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bleu);
    margin-bottom: 0.9rem;
}

.legal__toc-list {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

    .legal__toc-list li a {
        display: block;
        font-size: 0.79rem;
        color: var(--text-mid);
        padding: 0.32rem 0.5rem;
        border-radius: 4px;
        transition: background 0.15s, color 0.15s;
    }

        .legal__toc-list li a:hover {
            background: rgba(26,78,99,.07);
            color: var(--bleu-med);
        }

/* ── Article ── */
.legal__content {
    background: #fff;
    border-radius: 14px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 2px 14px rgba(26,78,99,.07);
}

.legal__section {
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
    border-bottom: 1px solid rgba(241,225,210,.8);
}

    .legal__section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.legal__h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: var(--bleu-med);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--jaune);
    display: inline-block;
}

.legal__h3 {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bleu);
    margin: 1.3rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.legal__content p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 0.85rem;
}

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

.legal__content a {
    color: var(--bleu-med);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

    .legal__content a:hover {
        color: var(--bleu);
    }

.legal__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0.8rem 0;
    padding-left: 0;
}

    .legal__list li {
        font-size: 0.9rem;
        color: var(--text-mid);
        padding-left: 1.1rem;
        position: relative;
        line-height: 1.75;
    }

        .legal__list li::before {
            content: '–';
            position: absolute;
            left: 0;
            color: var(--jaune);
            font-weight: 700;
        }

.legal__note {
    font-size: 0.82rem !important;
    color: var(--text-light) !important;
    background: rgba(241,225,210,.45);
    border-left: 3px solid var(--terracotta);
    padding: 0.7rem 1rem !important;
    border-radius: 0 6px 6px 0;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

    .legal__note a {
        color: var(--bleu) !important;
        font-weight: 600;
    }

/* ── Tableau ── */
.legal__table-wrap {
    overflow-x: auto;
    margin: 1.2rem 0 0;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(26,78,99,.08);
}

.legal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

    .legal__table thead {
        background: var(--bleu-med);
        color: var(--jaune);
    }

    .legal__table th {
        padding: 0.75rem 1rem;
        font-weight: 700;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: left;
    }

    .legal__table td {
        padding: 0.7rem 1rem;
        color: var(--text-mid);
        border-bottom: 1px solid rgba(241,225,210,.7);
        line-height: 1.5;
    }

    .legal__table tr:last-child td {
        border-bottom: none;
    }

    .legal__table tr:nth-child(even) td {
        background: rgba(241,225,210,.25);
    }

/* ── Responsive ── */
@media (max-width: 900px) {
    .legal__container {
        grid-template-columns: 1fr;
    }

    .legal__toc {
        position: static;
    }
}

@media (max-width: 600px) {
    .legal__content {
        padding: 1.4rem 1.1rem;
    }
}

/* ════════════════════════════════════════
   LANGUAGE SWITCHER AVEC DRAPEAUX
   ════════════════════════════════════════ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 0.8rem;
}

.lang-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all .2s ease;
}

    .lang-btn:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.15);
    }

    .lang-btn.is-active {
        border-color: var(--jaune);
        box-shadow: 0 0 0 3px rgba(255,200,61,0.2);
    }

/* Base drapeau */
.flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    background-size: cover;
    background-position: center;
}

/* 🇪🇸 Espagne */
.flag-es {
    background: linear-gradient( to bottom, #c60b1e 0%, #c60b1e 25%, #ffc400 25%, #ffc400 75%, #c60b1e 75%, #c60b1e 100% );
}

/* 🇫🇷 France */
.flag-fr {
    background: linear-gradient( to right, #0055a4 0%, #0055a4 33%, #ffffff 33%, #ffffff 66%, #ef4135 66%, #ef4135 100% );
}

/* 🇬🇧 UK (simplifié rond) */
/* 🇬🇧 UK (Union Jack) – version CSS correcte */
.flag-gb {
    background:
    /* croix rouge centrale */
    linear-gradient(to bottom, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%), linear-gradient(to right, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
    /* bord blanc autour de la croix */
    linear-gradient(to bottom, transparent 35%, #FFFFFF 35%, #FFFFFF 65%, transparent 65%), linear-gradient(to right, transparent 35%, #FFFFFF 35%, #FFFFFF 65%, transparent 65%),
    /* diagonales rouges */
    linear-gradient(45deg, transparent 46%, #C8102E 46%, #C8102E 54%, transparent 54%), linear-gradient(-45deg, transparent 46%, #C8102E 46%, #C8102E 54%, transparent 54%),
    /* diagonales blanches */
    linear-gradient(45deg, transparent 42%, #FFFFFF 42%, #FFFFFF 58%, transparent 58%), linear-gradient(-45deg, transparent 42%, #FFFFFF 42%, #FFFFFF 58%, transparent 58%),
    /* fond bleu */
    #012169;
    background-size: cover;
    background-position: center;
}

/* 🇮🇹 Italie */
.flag-it {
    background: linear-gradient( to right, #009246 0%, #009246 33%, #ffffff 33%, #ffffff 66%, #ce2b37 66%, #ce2b37 100% );
}

/* 🟡🔴 Català */
.flag-ca {
    background: repeating-linear-gradient( to bottom, #fcdc04 0px, #fcdc04 6px, #d40000 6px, #d40000 12px );
}

/* Responsive */
@media (max-width: 768px) {
    .lang-switcher {
        gap: 4px;
        margin-right: 0.3rem;
    }

    .lang-btn {
        width: 26px;
        height: 26px;
    }

    .flag {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        gap: 3px;
        margin-right: 0.2rem;
    }

    .lang-btn {
        width: 22px;
        height: 22px;
        border-width: 1.5px;
    }

    .flag {
        width: 12px;
        height: 12px;
    }
}

/* ════════════════════════════════════════
   GALERIE PHOTOS
   ════════════════════════════════════════ */
.gallery {
    padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
    background: #F5EFE3;
}

.gallery__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.gallery__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--bleu-med);
    margin-bottom: .6rem;
}

    .gallery__title em {
        font-style: italic;
        color: var(--bleu);
    }

.gallery__subtitle {
    font-size: .9rem;
    color: var(--text-mid);
    letter-spacing: .04em;
    max-width: 56ch;
}

.gallery__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery__item {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(26, 78, 99, 0.07);
    aspect-ratio: 1 / 1;
}

/* ── Mosaïque 2×2 ── */
.mosaic__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    width: 100%;
    height: 100%;
}

    .mosaic__grid .gallery__link {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: block;
    }

        .mosaic__grid .gallery__link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.02);
            transition: transform .6s ease;
        }

        .mosaic__grid .gallery__link:hover img {
            transform: scale(1.08);
        }

/* Responsive galerie */
@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 3.5rem 1.5rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: .9rem;
    }
}

/* ════════════════════════════════════════
   GALERIE — Lightbox (zoom)
   ════════════════════════════════════════ */

.gallery__link {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
}

    .gallery__link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Lock scroll quand la lightbox est ouverte */
.no-scroll {
    overflow: hidden;
}

/* Lightbox wrapper */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

    .lightbox.is-open {
        opacity: 1;
        pointer-events: auto;
    }

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 78, 99, 0.78);
    backdrop-filter: blur(4px);
}

/* Stage (conteneur image) + zoom animation */
.lightbox__stage {
    position: relative;
    max-width: min(92vw, 980px);
    max-height: 88vh;
    display: grid;
    place-items: center;
    transform: scale(.92);
    opacity: 0;
    transition: transform .26s ease, opacity .26s ease;
    z-index: 1;
}

.lightbox.is-open .lightbox__stage {
    transform: scale(1);
    opacity: 1;
}

.lightbox__img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 14px;
    box-shadow: 0 18px 70px rgba(0,0,0,0.35);
    transform: scale(.98);
    transition: transform .30s ease;
}

.lightbox.is-open .lightbox__img {
    transform: scale(1);
}

/* Bouton fermer */
.lightbox__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(241,225,210,0.55);
    background: rgba(26, 78, 99, 0.9);
    color: var(--beige);
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 10;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

    .lightbox__close:hover {
        transform: translateY(-1px);
        border-color: var(--jaune);
    }

/* Accessibilité: réduit les animations si demandé */
@media (prefers-reduced-motion: reduce) {
    .lightbox,
    .lightbox__stage,
    .lightbox__img {
        transition: none !important;
    }
}
