/* ═══════════════════════════════════════════════════════════
   LA TABLE MÉDITERRANÉENNE — style.css (global)
   Typographie : Cormorant Garamond (display) + DM Sans (corps)
   Police hébergées en local → /fonts/
   ═══════════════════════════════════════════════════════════ */

/* ── POLICES LOCALES ────────────────────────────────────────── */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
    /* Palette */
    --or: #B8975A;
    /* or chaud — accent principal */
    --or-light: #D4B47A;
    /* or clair */
    --or-dark: #8A6E3E;
    /* or profond */
    --creme: #F5EFE4;
    /* fond crème sable */
    --creme-deep: #EDE5D5;
    /* crème légèrement plus foncé */
    --brun: #2C2016;
    /* brun très foncé — texte titres */
    --brun-mid: #5C4A30;
    /* brun moyen */
    --gris-txt: #6B5F50;
    /* texte courant */
    --gris-light: #C8BEB0;
    /* séparateurs */
    --blanc: #FDFAF6;
    /* blanc chaud */
    --noir-over: rgba(20, 12, 5, .55);
    /* overlay photos */

    /* Typographie */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Tailles base */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.75rem;
    --fs-2xl: 2.25rem;
    --fs-3xl: 3rem;
    --fs-4xl: 4rem;
    --fs-hero: clamp(3rem, 7vw, 6.5rem);

    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 7rem;
    --space-2xl: 10rem;

    /* Layout */
    --max-width: 1240px;
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Transitions */
    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --dur: .55s;
    --dur-fast: .25s;

    /* Header */
    --header-h: 90px;
}

/* ══════════════════════════════════════════════════════
   FIX ANTI-DÉBORDEMENT UNIVERSEL
   Empêche n'importe quel élément de dépasser 100vw
   ══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    max-width: 100%;
    /* aucun élément ne peut dépasser son parent */
}

/* Exception pour les éléments fixed qui doivent ignorer cette règle */
.wa-btn,
.wa-popup,
.wa-popup *,
.mobile-menu,
.mobile-menu *,
.lang-dropdown,
.site-header {
    max-width: none;
}

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




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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gris-txt);
    background-color: var(--creme);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ── TYPOGRAPHIE GLOBALE ────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--brun);
    line-height: 1.15;
}

h1 {
    font-size: var(--fs-hero);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h2 em,
h1 em {
    font-style: italic;
    color: var(--or);
}

p {
    line-height: 1.8;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: var(--space-sm);
}


/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    padding-inline: clamp(1rem, 4vw, 2rem);
    margin-inline: auto;
    box-sizing: border-box;
}

.section-head {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head.center {
    text-align: center;
}

section {
    padding-block: var(--space-xl);
}


/* ── BOUTONS ─────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.25rem;
    background-color: var(--or);
    color: var(--blanc);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid var(--or);
    transition: background-color var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--or);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-block;
    padding: 1rem 2.25rem;
    background-color: transparent;
    color: var(--blanc);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, .55);
    transition: border-color var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease);
}

.btn-ghost:hover {
    border-color: var(--blanc);
    color: var(--blanc);
    transform: translateY(-2px);
}

.btn-ghost.dark {
    color: var(--brun);
    border-color: var(--brun-mid);
}

.btn-ghost.dark:hover {
    border-color: var(--or);
    color: var(--or);
}

.btn-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--or);
    text-transform: uppercase;
    border-bottom: 1px solid var(--or-light);
    padding-bottom: 2px;
    transition: color var(--dur-fast) var(--ease),
        border-color var(--dur-fast) var(--ease);
}

.btn-link:hover {
    color: var(--or-dark);
    border-color: var(--or-dark);
}

.btn-resa {
    display: inline-block;
    padding: .7rem 1.6rem;
    background-color: var(--or);
    color: var(--blanc) !important;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background-color var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease);
}

.btn-resa:hover {
    background-color: var(--or-dark);
    transform: translateY(-1px);
}


/* ── HEADER ──────────────────────────────────────────────────── */

/*
  STRATÉGIE MOBILE-FIRST
  Desktop (>900px) : logo + nav + bouton WA + lang-switcher + pas de burger
  Mobile  (≤900px) : logo + burger seulement — tout le reste dans le menu overlay
*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--header-h);
    display: flex;
    align-items: center;
    /* Dégradé sombre pour lisibilité sur photos claires */
    background: linear-gradient(to bottom,
            rgba(10, 6, 2, 0.72) 0%,
            rgba(10, 6, 2, 0.0) 100%);
    transition: background var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        height .2s var(--ease);
}

.site-header.scrolled {
    background: var(--blanc);
    box-shadow: 0 2px 24px rgba(44, 32, 22, .09);
    height: 70px;
}

/* ─ Conteneur interne ─────────────────────────── */
.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 1.25rem;
    /* padding simple, pas de calc() */
    gap: 1.25rem;
    box-sizing: border-box;
}

/* ─ Logo ─────────────────────────────────────── */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--blanc);
    transition: color var(--dur) var(--ease);
    /* NE PAS mettre flex-shrink:0 — il doit pouvoir rétrécir */
    min-width: 0;
}

.site-header.scrolled .logo {
    color: var(--brun);
}

.logo-name {
    font-family: var(--font-display);
    font-size: clamp(.95rem, 2vw, 1.35rem);
    /* rétrécit naturellement */
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─ Nav desktop ──────────────────────────────── */
.main-nav {
    margin-left: auto;
    flex-shrink: 1;
    min-width: 0;
}

.main-nav ul {
    display: flex;
    gap: clamp(.5rem, 1.2vw, 1.4rem);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: clamp(.6rem, .8vw, .75rem);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color var(--dur-fast) var(--ease);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--or);
    transition: width var(--dur-fast) var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--or-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.site-header.scrolled .main-nav a {
    color: var(--brun-mid);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: var(--or);
}

/* ─ Bouton WhatsApp header ───────────────────── */
.header-resa {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
    padding: .55rem 1rem;
    background-color: #25D366;
    color: white !important;
    font-family: var(--font-body);
    font-size: clamp(.6rem, .75vw, .72rem);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease);
}

.header-resa::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347zM12 0C5.373 0 0 5.373 0 12c0 2.127.558 4.126 1.533 5.862L.057 23.428a.75.75 0 0 0 .916.916l5.649-1.476A11.943 11.943 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 22c-1.891 0-3.667-.519-5.188-1.42l-.372-.217-3.853 1.006 1.025-3.744-.238-.386A9.959 9.959 0 0 1 2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.header-resa:hover {
    background-color: #1DA851 !important;
    transform: translateY(-1px);
}

/* ─ Sélecteur de langue ──────────────────────── */
.lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-body);
    font-size: clamp(.6rem, .75vw, .72rem);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    background: none;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: .45rem .6rem;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    transition: border-color var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease);
}

.lang-current:hover {
    border-color: var(--or-light);
    color: var(--or-light);
}

.lang-arrow {
    font-size: .5rem;
    opacity: .7;
    display: inline-block;
    transition: transform var(--dur-fast) var(--ease);
}

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

.site-header.scrolled .lang-current {
    color: var(--brun-mid);
    border-color: var(--gris-light);
}

.site-header.scrolled .lang-current:hover {
    border-color: var(--or);
    color: var(--or);
}

/* Dropdown langue */
.lang-dropdown {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    z-index: 9999;
    background-color: var(--blanc);
    border: 1px solid var(--gris-light);
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(44, 32, 22, .14);
    min-width: 138px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease);
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .9rem;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--brun-mid);
    text-decoration: none;
    transition: background-color var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease);
}

.lang-dropdown a+a {
    border-top: 1px solid var(--creme-deep);
}

.lang-dropdown a:hover {
    background-color: var(--creme);
    color: var(--or);
}

.lang-dropdown a.active {
    color: var(--or);
    background-color: var(--creme-deep);
}

.lang-flag {
    font-size: .9rem;
}

/* ─ Burger ───────────────────────────────────── */
.burger {
    display: none;
    /* caché par défaut sur desktop */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    margin-left: auto;
    /* toujours poussé à droite */
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease, background-color var(--dur) var(--ease);
}

.site-header.scrolled .burger span {
    background-color: var(--brun);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─ Menu mobile plein écran ──────────────────── */
.mobile-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 800;
    background-color: #1A0F06;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: opacity var(--dur) var(--ease),
        visibility 0s linear var(--dur);
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transition: opacity var(--dur) var(--ease),
        visibility 0s linear 0s;
}

.mobile-menu nav ul {
    list-style: none;
    padding: var(--header-h) 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    text-align: center;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 400;
    color: var(--creme);
    text-decoration: none;
    letter-spacing: .03em;
    transition: color var(--dur-fast) var(--ease);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--or-light);
}

.mobile-menu nav ul li:last-child {
    padding-top: 1.25rem;
    margin-top: .5rem;
    border-top: 1px solid rgba(184, 151, 90, .2);
}

.mobile-menu .btn-resa {
    font-family: var(--font-body);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1.5rem;
    background-color: #25D366;
    color: white !important;
}

/* Bouton croix fermeture */
.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 2px;
    background-color: rgba(245, 239, 228, .7);
    border-radius: 2px;
}

.mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
    background-color: var(--or-light);
}

/* Langue dans le menu mobile */
.mobile-lang {
    display: none;
    align-items: center;
    gap: .6rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 151, 90, .15);
}

.mobile-lang-link {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245, 239, 228, .4);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

.mobile-lang-link:hover,
.mobile-lang-link.active {
    color: var(--or-light);
}

.mobile-lang-sep {
    color: rgba(245, 239, 228, .15);
    font-size: .7rem;
}

/* ═══════════════════════════════════════════
   BREAKPOINT MOBILE — ≤ 900px
   Tout ce qui change en mobile est ICI,
   nulle part ailleurs dans le fichier.
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Cacher éléments desktop */
    .main-nav,
    .header-resa,
    .lang-switcher {
        display: none !important;
    }

    /* Header mobile : logo à gauche, burger à droite, rien d'autre */
    .header-inner {
        padding: 0 1rem;
        gap: 0;
        justify-content: space-between;
    }

    /* Burger FIXED → impossible à faire sortir de l'écran */
    .burger {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        height: var(--header-h) !important;
        width: 56px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        z-index: 950 !important;
        padding: 0 !important;
    }

    /* Logo aussi en fixed sur mobile */
    .logo {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        height: var(--header-h) !important;
        display: flex !important;
        align-items: center !important;
        padding-left: 1rem !important;
        z-index: 950 !important;
        max-width: calc(100vw - 60px) !important;
    }

    /* Header mobile devient juste un fond */
    .site-header {
        pointer-events: none;
    }

    .site-header>* {
        pointer-events: auto;
    }

    /* Afficher éléments du menu mobile */
    .mobile-menu-close {
        display: block !important;
    }

    .mobile-lang {
        display: flex !important;
    }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100svh;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(4rem, 8vw, 8rem);
    padding: 0;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.04);
    animation: heroZoom 12s var(--ease) forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 6, 2, .45) 0%,
            /* haut : nav lisible */
            rgba(10, 6, 2, .20) 40%,
            /* milieu : image visible */
            rgba(10, 6, 2, .70) 75%,
            /* bas : textes lisibles */
            rgba(10, 6, 2, .82) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-inline: clamp(1rem, 5vw, 2rem);
    margin-top: auto;
    padding-bottom: clamp(4rem, 8vw, 7rem);
    max-width: 860px;
    box-sizing: border-box;
}

.hero-eyebrow {
    text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--or-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: var(--fs-hero);
    color: var(--blanc);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.hero-title em {
    color: var(--or-light);
    font-style: italic;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, .82);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    word-wrap: break-word;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: clamp(1.5rem, 4vw, 4rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .5);
    font-family: var(--font-body);
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

.br-desktop {
    display: none;
}

@media (min-width: 768px) {
    .br-desktop {
        display: block;
    }
}


/* ── SECTION SIGNATURE ───────────────────────────────────────── */
.section-signature {
    background-color: var(--blanc);
}

.signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.signature-text {
    max-width: 520px;
}

.signature-text h2 {
    margin-bottom: 1.5rem;
}

.signature-text p {
    margin-bottom: 1.25rem;
}

.signature-text .btn-link {
    margin-top: .5rem;
}

.signature-images {
    position: relative;
    display: flex;
    gap: 1.25rem;
    align-items: flex-end;
}

.sig-img-main {
    flex: 0 0 62%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 32, 22, .15);
}

.sig-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.sig-img-main:hover img {
    transform: scale(1.04);
}

.sig-img-accent {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 32, 22, .12);
}

.sig-img-accent img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.accent-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--or);
    color: var(--blanc);
    padding: .75rem 1.25rem;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.badge-txt {
    display: block;
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin-top: .25rem;
}


/* ── SECTION PLATS ───────────────────────────────────────────── */
.section-plats {
    background-color: var(--creme);
}

.plats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.plat-card {
    background-color: var(--blanc);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 32, 22, .07);
    transition: transform var(--dur-fast) var(--ease),
        box-shadow var(--dur-fast) var(--ease);
}

.plat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(44, 32, 22, .13);
}

.plat-img-wrap {
    position: relative;
    overflow: hidden;
}

.plat-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.plat-card:hover .plat-img-wrap img {
    transform: scale(1.06);
}

.plat-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--or);
    color: var(--blanc);
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 2px;
}

.plat-body {
    padding: 1.5rem;
}

.plat-body h3 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.plat-body p {
    font-size: var(--fs-sm);
    color: var(--gris-txt);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.plat-prix {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--or);
}

.plats-cta {
    text-align: center;
}


/* ── SECTION AMBIANCE ────────────────────────────────────────── */
.section-ambiance {
    position: relative;
    padding-block: 0;
    overflow: hidden;
}

.ambiance-bg {
    position: absolute;
    inset: 0;
}

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

.ambiance-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 12, 5, .8) 0%, rgba(20, 12, 5, .55) 100%);
}

.ambiance-inner {
    position: relative;
    z-index: 2;
    padding-block: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ambiance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--or-light);
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--or-light);
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-top: .4rem;
}

.ambiance-quote {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(184, 151, 90, .35);
    background-color: rgba(20, 12, 5, .25);
}

.ambiance-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-style: italic;
    color: var(--creme);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.ambiance-quote cite {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--or-light);
}


/* ── GALERIE APERÇU ──────────────────────────────────────────── */
.section-galerie-preview {
    background-color: var(--blanc);
}

.galerie-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gal-large {
    grid-row: 1 / 3;
}

.gal-item {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.gal-item:hover img {
    transform: scale(1.05);
}

.galerie-cta {
    text-align: center;
}


/* ── AVIS CLIENTS ────────────────────────────────────────────── */
.section-avis {
    background-color: var(--creme-deep);
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.avis-card {
    background-color: var(--blanc);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(44, 32, 22, .06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.avis-stars {
    color: var(--or);
    font-size: 1.1rem;
    letter-spacing: .1em;
}

.avis-card blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--brun);
    line-height: 1.65;
    flex: 1;
}

.avis-card footer {
    display: flex;
    align-items: center;
    gap: .9rem;
    border-top: 1px solid var(--gris-light);
    padding-top: 1rem;
}

.avis-initiale {
    width: 40px;
    height: 40px;
    background-color: var(--or);
    color: var(--blanc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.avis-card footer strong {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--brun);
    font-weight: 500;
}

.avis-card footer span {
    font-size: var(--fs-xs);
    color: var(--gris-txt);
}


/* ── CTA RÉSERVATION ─────────────────────────────────────────── */
.section-cta-resa {
    background-color: var(--brun);
    padding-block: var(--space-xl);
}

.cta-inner {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
}

.section-cta-resa .section-label {
    color: var(--or-light);
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--creme);
    margin-bottom: 1.25rem;
}

.cta-inner p {
    color: rgba(245, 239, 228, .7);
    font-size: var(--fs-md);
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.cta-horaires {
    font-size: var(--fs-xs);
    letter-spacing: .1em;
    color: rgba(245, 239, 228, .45);
    text-transform: uppercase;
    margin-bottom: 0 !important;
}


/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    background-color: #1A0F06;
    color: rgba(245, 239, 228, .7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-block: var(--space-lg);
}

.footer-brand .logo-footer {
    display: flex;
    flex-direction: column;
    color: var(--creme);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: rgba(245, 239, 228, .55);
}

.site-footer h3 {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.25rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.footer-nav a {
    font-size: var(--fs-sm);
    color: rgba(245, 239, 228, .65);
    transition: color var(--dur-fast) var(--ease);
}

.footer-nav a:hover {
    color: var(--or-light);
}

.footer-contact address {
    font-size: var(--fs-sm);
    line-height: 1.9;
    color: rgba(245, 239, 228, .65);
}

.footer-contact a {
    transition: color var(--dur-fast) var(--ease);
}

.footer-contact a:hover {
    color: var(--or-light);
}

.footer-horaires {
    font-size: var(--fs-xs);
    color: rgba(245, 239, 228, .4);
    margin-top: .75rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 239, 228, .08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    padding-block: 1.25rem;
    font-size: var(--fs-xs);
    color: rgba(245, 239, 228, .35);
}

.footer-bottom ul {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom a {
    transition: color var(--dur-fast) var(--ease);
}

.footer-bottom a:hover {
    color: var(--or-light);
}


/* ── ANIMATIONS REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}

.delay-3 {
    transition-delay: .36s;
}


/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .signature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .signature-images {
        max-width: 580px;
        margin-inline: auto;
    }

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

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

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-md: 1rem;
    }

    /* ── Sections : réduire le padding ── */
    section {
        padding-block: 3.5rem;
    }

    /* ── Grids → colonne unique ── */
    .signature-grid,
    .ambiance-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

    .ambiance-stats {
        grid-template-columns: 1fr 1fr;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gal-large {
        grid-row: auto;
    }

    .gal-item img {
        height: 240px;
    }

    /* ── Images signature ── */
    .sig-img-main img {
        height: 320px;
    }

    /* ── Footer ── */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
    }

    .footer-bottom ul {
        justify-content: center;
    }

    /* ── Hero ── */
    .hero-scroll {
        display: none;
    }

    /* ── CTA ── */
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn-primary,
    .cta-btns .btn-ghost {
        width: 100%;
        text-align: center;
    }

    /* ── Ambiance ── */
    .ambiance-inner {
        text-align: center;
        padding-block: 3rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 3rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .signature-images {
        flex-direction: column;
    }

    .sig-img-accent {
        display: none;
    }

    /* Cacher la petite image sur très petit écran */

    .ambiance-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }


    .wa-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }

    .wa-popup {
        width: calc(100vw - 2.5rem);
        right: 1.25rem;
        bottom: 5.5rem;
    }
}


.wa-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 950;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
    transform: translateZ(0);
    /* isolation GPU */
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .5);
}

.wa-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Cercle pulsant */
.wa-pulse {
    display: none;
}



/* Popup */
.wa-popup {
    position: fixed;
    bottom: 6.5rem;
    right: 1.5rem;
    z-index: 949;
    width: min(280px, calc(100vw - 3rem));
    background-color: var(--blanc);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(44, 32, 22, .18);
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(.95);
    pointer-events: none;
    transition: opacity .35s var(--ease-out),
        transform .35s var(--ease-out);
}

.wa-popup.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Bouton fermeture */
.wa-popup-close {
    position: absolute;
    top: .6rem;
    right: .75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1;
    padding: 4px;
    transition: color var(--dur-fast) var(--ease);
    z-index: 2;
}

.wa-popup-close:hover {
    color: white;
}

/* Header du popup */
.wa-popup-header {
    background-color: #1B8A4E;
    padding: 1rem 1.1rem .9rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wa-popup-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-popup-info strong {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: white;
    font-weight: 500;
}

.wa-online {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-body);
    font-size: .7rem;
    color: rgba(255, 255, 255, .75);
}

.wa-dot {
    width: 7px;
    height: 7px;
    background-color: #9AE6B4;
    border-radius: 50%;
    display: inline-block;
    animation: waDot 2s ease-in-out infinite;
}

@keyframes waDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

/* Bulle de message */
.wa-popup-bubble {
    padding: 1rem 1.1rem;
    background-color: #ECF8F1;
    position: relative;
}

.wa-popup-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.2rem;
    border: 8px solid transparent;
    border-bottom-color: #ECF8F1;
    transform: translateY(-100%);
}

.wa-popup-bubble p {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--brun);
    line-height: 1.55;
    margin-bottom: .4rem;
}

.wa-popup-bubble p:last-child {
    margin-bottom: 0;
}

/* Bouton CTA */
.wa-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin: .85rem 1.1rem;
    padding: .75rem 1rem;
    background-color: #25D366;
    color: white;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color var(--dur-fast) var(--ease);
}

.wa-popup-cta:hover {
    background-color: #1DA851;
}

/* Note bas de popup */
.wa-popup-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: .65rem;
    color: var(--gris-txt);
    opacity: .7;
    padding: 0 1rem .85rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile : ajuster position */


/* Nav à 7 liens */
.main-nav ul {
    gap: 1.25rem;
}

/* Entre 900px et 1200px : compresser progressivement */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: .9rem;
    }

    .main-nav a {
        font-size: .65rem;
        letter-spacing: .08em;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .header-inner {
        gap: .75rem;
    }

    .wa-header-btn {
        padding: .6rem .85rem;
        font-size: .65rem;
    }
}