/* ===================================================================
   LES VOLETS BLEUS — Feuille de style
   ===================================================================

   COMMENT MODIFIER LE LOOK DU SITE ?

   Toutes les valeurs modifiables sont dans la section ":root" ci-dessous.
   Changez une valeur, ça s'applique partout sur le site.

   Vous voulez :
   - changer une couleur ? → section COULEURS
   - changer la taille des titres ? → section TAILLES DE TEXTE
   - changer la largeur du contenu ? → section MISE EN PAGE

   ⚠️ NE TOUCHEZ PAS AU RESTE DU FICHIER, sauf si vous savez ce que vous faites.
   =================================================================== */

:root {

    /* ===== COULEURS ===== */

    /* Couleurs principales — la charte Les Volets Bleus */
    --bleu: #203d63;          /* bleu volet, couleur principale */
    --orange: #e96c4a;         /* orange cuivré, accent principal */
    --beige: #efe1c7;          /* beige sable, fond doux */
    --creme: #fdf9ef;          /* crème ivoire, fond principal */

    /* Variations automatiques — ne pas modifier */
    --bleu-deep: #15294a;
    --bleu-soft: #3a5a85;
    --orange-deep: #c8542f;
    --orange-soft: #f08d70;
    --beige-deep: #d8c8a9;

    /* Couleurs des badges (vins) */
    --badge-bio: #5c8a3f;       /* vert pour BIO */
    --badge-biodynamie: #94b35f; /* vert clair pour BIODYNAMIE */
    --badge-nature: var(--orange);  /* orange pour NATURE */

    /* Couleurs de texte */
    --texte-principal: #1a1a1a;
    --texte-doux: #2c2c2c;

    /* Lignes de séparation */
    --ligne: rgba(32, 61, 99, 0.15);
    --ligne-forte: rgba(32, 61, 99, 0.3);


    /* ===== TYPOGRAPHIES ===== */

    --font-serif: 'Fraunces', 'Times New Roman', Georgia, serif;
    --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;


    /* ===== TAILLES DE TEXTE ===== */
    /* Vous pouvez ajuster ces valeurs en pixels (px) ou rem */

    --titre-hero-mini: 48px;     /* sur mobile */
    --titre-hero: 72px;          /* la grande phrase d'accueil */
    --titre-page: 64px;          /* titres des autres pages */
    --titre-section: 26px;       /* "Pour commencer", "Au cœur de l'assiette" */
    --titre-plat: 19px;          /* nom d'un plat */
    --titre-plat-signature: 21px; /* nom du plat signature */

    --texte-courant: 14px;
    --texte-petit: 12px;
    --texte-tres-petit: 11px;
    --texte-eyebrow: 11px;       /* les petits labels en haut des sections */


    /* ===== MISE EN PAGE ===== */

    --largeur-max: 1400px;
    --largeur-contenu: 1100px;
    --largeur-lecture: 720px;
    --gouttiere: clamp(1.25rem, 4vw, 3rem);

    /* Espacements verticaux */
    --espace-3xs: 0.25rem;
    --espace-2xs: 0.5rem;
    --espace-xs: 0.75rem;
    --espace-s: 1rem;
    --espace-m: 1.5rem;
    --espace-l: 2.5rem;
    --espace-xl: 4rem;
    --espace-2xl: 6rem;

    /* Coins arrondis */
    --radius-petit: 8px;
    --radius-grand: 12px;
    --radius-pilule: 999px;


    /* ===== TRANSITIONS ===== */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ===================================================================
   À PARTIR D'ICI, NE TOUCHEZ PAS — sauf si vous savez ce que vous faites
   =================================================================== */

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--texte-principal);
    background: var(--creme);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
::selection { background: var(--orange); color: var(--creme); }


/* ============== NAVIGATION ============== */
.site-nav {
    background: var(--creme);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--ligne);
    backdrop-filter: blur(10px);
}

.site-nav.nav-on-orange {
    background: var(--orange);
    border-bottom: none;
}

.nav-inner {
    max-width: var(--largeur-max);
    margin: 0 auto;
    padding: 1.1rem var(--gouttiere);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--espace-m);
}

.nav-brand {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--bleu);
    letter-spacing: -0.01em;
    transition: opacity 0.3s var(--ease);
}

.nav-on-orange .nav-brand { color: var(--creme); }

.nav-brand:hover { opacity: 0.75; }

.nav-links {
    display: flex;
    gap: var(--espace-m);
    align-items: center;
}

.nav-link {
    font-size: 11px;
    color: var(--bleu);
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: var(--radius-pilule);
    transition: all 0.3s var(--ease);
    font-weight: 400;
}

.nav-on-orange .nav-link { color: var(--creme); }

.nav-link:hover { background: rgba(32, 61, 99, 0.08); }

.nav-on-orange .nav-link:hover { background: rgba(255, 255, 255, 0.15); }

.nav-link.active {
    color: var(--orange);
    background: rgba(233, 108, 74, 0.12);
    font-weight: 500;
}

.nav-on-orange .nav-link.active {
    color: var(--creme);
    background: rgba(255, 255, 255, 0.18);
    font-weight: 500;
}

.nav-cta {
    background: var(--bleu);
    color: var(--creme);
    padding: 7px 16px;
    border-radius: var(--radius-pilule);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-on-orange .nav-cta {
    background: var(--bleu);
    color: var(--creme);
}

.nav-cta:hover {
    background: var(--bleu-deep);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--bleu);
    transition: all 0.3s var(--ease);
}

.nav-on-orange .nav-toggle span { background: var(--creme); }


/* ============== HERO BANDEAU ORANGE ============== */
.hero-orange {
    background: var(--orange);
    color: var(--creme);
    padding: var(--espace-2xl) var(--gouttiere);
}

.hero-orange-inner {
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: var(--texte-eyebrow);
    letter-spacing: 0.3em;
    color: var(--creme);
    text-transform: uppercase;
    margin-bottom: var(--espace-m);
    font-weight: 500;
    opacity: 0.92;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: var(--titre-hero);
    line-height: 0.92;
    color: var(--creme);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.025em;
}

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

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 19px;
    color: var(--creme);
    margin-top: var(--espace-l);
    opacity: 0.92;
    max-width: 480px;
}

@media (max-width: 720px) {
    .hero-title { font-size: var(--titre-hero-mini); }
}


/* ============== PAGE HEADER (titres internes) ============== */
.page-header {
    background: var(--orange);
    padding: var(--espace-2xl) var(--gouttiere);
}

.page-header-inner {
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-serif);
    font-size: var(--titre-page);
    line-height: 0.92;
    color: var(--creme);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.025em;
}

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

.page-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--creme);
    margin-top: var(--espace-l);
    opacity: 0.92;
}

@media (max-width: 720px) {
    .page-title { font-size: 42px; }
}


/* ============== ACCUEIL : 3 SECTIONS ============== */
.three-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.three-sections-card {
    padding: var(--espace-l) var(--espace-m);
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.3s var(--ease);
}

.three-sections-card:hover { opacity: 0.85; }

.three-sections-card-1 { background: var(--beige); }
.three-sections-card-2 { background: var(--creme); }
.three-sections-card-3 { background: var(--bleu); color: var(--creme); }

.three-sections-label {
    font-size: var(--texte-tres-petit);
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 500;
}

.three-sections-titre {
    font-family: var(--font-serif);
    font-size: 22px;
    margin: 0 0 4px;
    line-height: 1.05;
    color: var(--bleu);
}

.three-sections-card-3 .three-sections-titre { color: var(--creme); }

.three-sections-desc {
    font-size: var(--texte-petit);
    opacity: 0.7;
    color: var(--bleu);
}

.three-sections-card-3 .three-sections-desc { color: var(--creme); }

@media (max-width: 720px) {
    .three-sections { grid-template-columns: 1fr; }
}


/* ============== ACCUEIL : DATE PIVOT ============== */
.date-pivot {
    text-align: center;
    padding: var(--espace-2xl) var(--gouttiere) 0;
}

.date-pivot-pill {
    display: inline-block;
    padding: 10px 22px;
    background: var(--bleu);
    color: var(--creme);
    border-radius: var(--radius-pilule);
}

.date-pivot-label {
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 500;
}

.date-pivot-date {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    margin-left: 8px;
}


/* ============== ACCUEIL : TEXTE HISTOIRE ============== */
.histoire-texte {
    padding: var(--espace-l) var(--gouttiere) var(--espace-xl);
    max-width: var(--largeur-lecture);
    margin: 0 auto;
    text-align: center;
}

.histoire-intro {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--bleu);
    line-height: 1.5;
    margin-bottom: var(--espace-l);
    font-weight: 400;
}

.histoire-corps {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--bleu);
    line-height: 1.65;
    opacity: 0.85;
}

.histoire-corps em {
    color: var(--orange);
    font-style: italic;
}


/* ============== ACCUEIL : 3 PILIERS ============== */
.piliers {
    padding: 0 var(--gouttiere);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--espace-m);
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.pilier {
    padding: var(--espace-l) var(--espace-m);
    background: var(--beige);
    border-radius: var(--radius-grand);
    text-align: center;
}

.pilier-chiffre {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--orange);
    margin: 0;
    line-height: 1;
    font-weight: 500;
}

.pilier-chiffre.pilier-chiffre-petit { font-size: 26px; line-height: 1.1; }

.pilier-label {
    font-size: var(--texte-tres-petit);
    color: var(--bleu);
    margin: 6px 0 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.pilier-desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--bleu);
    margin: 0;
    line-height: 1.5;
    opacity: 0.85;
}

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


/* ============== ACCUEIL : CITATION FINALE ============== */
.citation-bloc {
    margin: var(--espace-xl) var(--gouttiere) 0;
    max-width: var(--largeur-max);
    margin-left: auto;
    margin-right: auto;
    padding: var(--espace-xl) var(--espace-l);
    background: var(--bleu);
    border-radius: var(--radius-grand);
    text-align: center;
    color: var(--creme);
}

.citation-quote {
    font-family: var(--font-serif);
    font-size: 60px;
    line-height: 0.4;
    color: var(--orange);
    opacity: 0.9;
    display: block;
    height: 24px;
}

.citation-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--creme);
    line-height: 1.4;
    margin: 18px auto 16px;
    max-width: 480px;
}

.citation-text em {
    color: var(--orange);
    font-style: italic;
}

.citation-complement {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--creme);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 460px;
    opacity: 0.85;
}


/* ============== ACCUEIL : INFOS PRATIQUES ============== */
.infos-pratiques {
    padding: var(--espace-xl) var(--gouttiere);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espace-m);
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.info-card {
    padding: var(--espace-l) var(--espace-m);
    border-radius: var(--radius-petit);
}

.info-card-beige { background: var(--beige); }
.info-card-orange { background: var(--orange); color: var(--creme); }

.info-card-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-card-orange .info-card-label { color: var(--creme); opacity: 0.92; }

.info-card-value {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.4;
    color: var(--bleu);
    margin: 0;
}

.info-card-orange .info-card-value { color: var(--creme); }

.info-card a {
    color: inherit;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

@media (max-width: 720px) {
    .infos-pratiques { grid-template-columns: 1fr; }
}


/* ============== CONTENU DE PAGE ============== */
.page-content {
    max-width: var(--largeur-lecture);
    margin: 0 auto;
    padding: var(--espace-xl) var(--gouttiere);
}

.page-content.wide {
    max-width: var(--largeur-contenu);
}


/* ============== CARTE : SECTIONS ============== */
.menu-intro {
    text-align: center;
    margin-bottom: var(--espace-xl);
    padding-bottom: var(--espace-l);
    border-bottom: 1px solid var(--ligne);
}

.menu-intro-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--bleu);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: var(--espace-2xl);
}

.menu-section:last-child { margin-bottom: 0; }

.menu-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--espace-l);
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--bleu);
    flex-wrap: wrap;
    gap: var(--espace-s);
}

.menu-section-titre {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--titre-section);
    color: var(--bleu);
    margin: 0;
    font-weight: 500;
}

.menu-section-count {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 500;
}

.menu-item {
    margin-bottom: var(--espace-m);
    padding-bottom: var(--espace-m);
    border-bottom: 0.5px dashed var(--ligne-forte);
}

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

.menu-item-name {
    font-family: var(--font-serif);
    font-size: var(--titre-plat);
    color: var(--bleu);
    margin: 0 0 6px;
    font-weight: 500;
    line-height: 1.2;
}

.menu-item-name .sep {
    color: var(--orange);
}

.menu-item-desc {
    font-style: italic;
    font-size: 13px;
    color: var(--bleu);
    margin: 0 0 10px;
    line-height: 1.6;
    opacity: 0.78;
    font-family: var(--font-sans);
}

.menu-item-pairing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    background: rgba(233, 108, 74, 0.1);
    border-radius: var(--radius-pilule);
}

.menu-item-pairing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
    color: var(--creme);
    font-size: 9px;
    font-weight: 500;
}

.menu-item-pairing-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 12px;
    color: var(--bleu);
}

.menu-item-signature {
    padding: 18px;
    background: var(--bleu);
    border-radius: var(--radius-petit);
    color: var(--creme);
    margin-bottom: var(--espace-m);
}

.menu-item-signature .menu-item-name { color: var(--creme); font-size: var(--titre-plat-signature); }
.menu-item-signature .menu-item-desc { color: var(--creme); opacity: 0.85; }

.menu-item-signature-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-sans);
}

.menu-item-signature .menu-item-pairing {
    background: rgba(255, 255, 255, 0.12);
}

.menu-item-signature .menu-item-pairing-text {
    color: var(--creme);
}


/* Plats spéciaux (héros en herbe, végan) */
.menu-special {
    background: var(--beige-soft);
    border-radius: var(--radius-petit);
    padding: var(--espace-m);
    margin-bottom: var(--espace-m);
    border-left: 3px solid var(--orange);
}

.menu-special-vegan {
    background: #e8f0e3;
    border-left-color: var(--badge-bio);
}

.menu-special-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--orange);
    margin-bottom: 8px;
}

.menu-special-vegan .menu-special-label { color: var(--badge-bio); }


/* ============== VINS ============== */
.vins-filtres {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--espace-xl);
}

.vins-filtre {
    background: rgba(32, 61, 99, 0.08);
    color: var(--bleu);
    padding: 7px 14px;
    border-radius: var(--radius-pilule);
    font-size: var(--texte-tres-petit);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: none;
    font-weight: 400;
}

.vins-filtre:hover { background: rgba(32, 61, 99, 0.15); }

.vins-filtre.active {
    background: var(--bleu);
    color: var(--creme);
    font-weight: 500;
}

.vins-categorie {
    margin-bottom: var(--espace-2xl);
}

.vin-item {
    margin-bottom: var(--espace-m);
    padding-bottom: var(--espace-m);
    border-bottom: 0.5px dashed var(--ligne-forte);
}

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

.vin-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.vin-item-name {
    font-family: var(--font-serif);
    font-size: var(--titre-plat);
    color: var(--bleu);
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

.vin-item-name .sep { color: var(--orange); }

.vin-item-prices {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    color: var(--orange-deep);
    margin: 0;
    white-space: nowrap;
}

.vin-item-info {
    font-size: 12px;
    color: var(--bleu);
    margin: 0 0 10px;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.vin-item-labels {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.vin-label {
    font-size: 10px;
    padding: 3px 9px;
    color: var(--creme);
    border-radius: var(--radius-pilule);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.vin-label-bio { background: var(--badge-bio); }
.vin-label-biodynamie { background: var(--badge-biodynamie); color: var(--bleu); }
.vin-label-nature { background: var(--orange); }

.vin-item-desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--bleu);
    margin: 0;
    line-height: 1.6;
    opacity: 0.85;
}

.vin-coup-de-coeur {
    padding: 18px;
    background: var(--bleu);
    border-radius: var(--radius-petit);
    color: var(--creme);
}

.vin-coup-de-coeur .vin-item-name { color: var(--creme); }
.vin-coup-de-coeur .vin-item-info { color: var(--creme); opacity: 0.7; }
.vin-coup-de-coeur .vin-item-desc { color: var(--creme); opacity: 0.92; }

.vin-coup-de-coeur-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
    font-family: var(--font-sans);
}


/* ============== ÉVÈNEMENTS ============== */
.evenement-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 0.5px dashed var(--ligne-forte);
}

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

.evenement-date { text-align: center; }

.evenement-date-jour {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--orange);
    margin: 0;
    line-height: 1;
    font-weight: 500;
}

.evenement-date-jour.italic {
    font-style: italic;
    font-size: 22px;
    line-height: 1.1;
}

.evenement-date-complement {
    font-size: 10px;
    color: var(--bleu);
    margin: 4px 0 0;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.evenement-titre {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--bleu);
    margin: 0 0 6px;
    line-height: 1.2;
    font-weight: 500;
}

.evenement-desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--bleu);
    margin: 0;
    line-height: 1.5;
    opacity: 0.85;
}

.evenement-statut {
    font-size: var(--texte-tres-petit);
    padding: 5px 12px;
    border-radius: var(--radius-pilule);
    font-weight: 500;
    white-space: nowrap;
}

.evenement-statut.statut-orange-clair {
    color: var(--orange);
    background: rgba(233, 108, 74, 0.12);
}

.evenement-statut.statut-bleu {
    color: var(--creme);
    background: var(--bleu);
}

.evenement-statut.statut-orange {
    color: var(--creme);
    background: var(--orange);
}

@media (max-width: 720px) {
    .evenement-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }
    .evenement-statut {
        grid-column: 1 / -1;
        justify-self: start;
    }
}


/* ============== RÉSERVER ============== */
.reserver-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--bleu);
    margin: 0 0 var(--espace-xl);
    line-height: 1.5;
    text-align: center;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.reserver-cta {
    display: block;
    padding: var(--espace-l) var(--espace-m);
    border-radius: var(--radius-grand);
    margin-bottom: 14px;
    text-align: left;
    transition: transform 0.3s var(--ease);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.reserver-cta:hover { transform: translateY(-2px); }

.reserver-cta-bleu { background: var(--bleu); color: var(--creme); }
.reserver-cta-beige { background: var(--beige); }

.reserver-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reserver-cta-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
}

.reserver-cta-value {
    font-family: var(--font-serif);
    font-size: 28px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    word-break: break-all;
}

.reserver-cta-bleu .reserver-cta-value { color: var(--creme); }
.reserver-cta-beige .reserver-cta-value { color: var(--bleu); font-size: 22px; }

.reserver-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.reserver-cta-bleu .reserver-cta-icon { background: var(--orange); }
.reserver-cta-beige .reserver-cta-icon { background: var(--bleu); }

.reserver-note {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--bleu);
    margin: var(--espace-xl) 0 0;
    opacity: 0.7;
    text-align: center;
}


/* ============== CONTACT ============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espace-l);
}

.contact-block { margin-bottom: var(--espace-l); }

.contact-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--bleu);
    margin: 0;
    line-height: 1.4;
}

.contact-value a {
    color: var(--bleu);
    border-bottom: 1px solid var(--orange);
    padding-bottom: 4px;
    display: inline-block;
}

.contact-value a:hover { color: var(--orange); }

.contact-value-email {
    font-size: 17px;
    word-break: break-all;
}

.hours-table {
    width: 100%;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--bleu);
}

.hours-table tr {
    border-bottom: 0.5px dashed var(--ligne-forte);
}

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

.hours-table td {
    padding: 6px 0;
}

.hours-table td:first-child { font-weight: 500; }
.hours-table td:last-child { text-align: right; font-style: italic; }
.hours-table td.closed { color: var(--orange); }

.contact-map {
    background: var(--beige);
    border-radius: var(--radius-grand);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--ligne);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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


/* ============== FOOTER ============== */
.site-footer {
    background: var(--bleu);
    color: var(--beige);
    padding: var(--espace-2xl) var(--gouttiere) var(--espace-l);
}

.footer-inner {
    max-width: var(--largeur-max);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--espace-xl);
    margin-bottom: var(--espace-xl);
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--creme);
    margin: 0 0 6px;
    font-style: italic;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.5;
    color: var(--beige);
    opacity: 0.85;
    margin: 0 0 var(--espace-s);
}

.footer-mama {
    font-size: 11px;
    color: var(--orange-soft);
}

.footer-mama a {
    color: var(--orange-soft);
    border-bottom: 1px solid var(--orange);
}

.footer-col-title {
    font-size: var(--texte-eyebrow);
    letter-spacing: 0.22em;
    color: var(--orange);
    text-transform: uppercase;
    margin: 0 0 var(--espace-m);
    font-weight: 500;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    color: var(--beige);
    font-size: 13px;
    transition: color 0.3s var(--ease);
}

.footer-list a:hover { color: var(--creme); }

.footer-bottom {
    border-top: 1px solid rgba(239, 225, 199, 0.15);
    padding-top: var(--espace-m);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    opacity: 0.7;
}

@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: var(--espace-l); }
    .footer-bottom { flex-direction: column; gap: var(--espace-xs); text-align: center; }
}


/* ============== UTILITAIRES ============== */
.text-center { text-align: center; }
.italic { font-style: italic; }
.muted { opacity: 0.6; }

.loading-state {
    text-align: center;
    padding: var(--espace-xl) var(--espace-l);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--bleu);
    opacity: 0.5;
}


/* ============== RESPONSIVE NAV ============== */
@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--creme);
        flex-direction: column;
        padding: var(--espace-xl) var(--gouttiere);
        align-items: stretch;
        gap: var(--espace-s);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 99;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-link, .nav-cta {
        font-family: var(--font-serif);
        font-size: 20px;
        padding: 12px 16px;
        text-align: center;
    }
    .nav-on-orange .nav-links { background: var(--orange); }
}


/* ============== ACCESSIBILITÉ ============== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
