/* =====================================================================
   Esthétik-A — Vitrine publique « La Revue »
   Direction : luxe éditorial (menu de spa imprimé) + souffle romantique.
   Palette du logo : rose poudré, crème, brun chaud ; doré = ornement SEUL
   (jamais une couleur de texte sur fond clair — contraste insuffisant).
   Typographie auto-hébergée : Cormorant Garamond (serif) + Parisienne (script).
   ===================================================================== */

@font-face {
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("vendor/fonts/cormorant-garamond.woff2") format("woff2");
}
@font-face {
    font-family: "Parisienne";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("vendor/fonts/parisienne.woff2") format("woff2");
}

:root {
    --rose: #d8a294;
    --rose-deep: #c4836f;
    --rose-darker: #ad6e5b;
    --rose-ink: #9a5a41;          /* rose assez foncé pour du petit texte sur crème */
    --rose-soft: #e7c7bc;
    --rose-tint: #f7ece7;
    --cream: #f6ede4;
    --paper: #fbf6ef;
    --gold: #bd9a63;              /* ornement uniquement : filets, points, fleurons */
    --gold-soft: #d9c19a;
    --gold-ink: #826538;          /* doré « encre » lisible pour petites capitales */
    --ink: #463630;
    --ink-soft: #6f5b53;
    --muted: #9a857c;
    --bg: #fffaf6;
    --white: #ffffff;
    --sage: #6f8a68;              /* pastille « ouvert » */
    --shadow-sm: 0 4px 16px rgba(120, 80, 70, .08);
    --shadow: 0 18px 44px rgba(120, 80, 70, .16);
    --shadow-rose: 0 22px 50px rgba(176, 110, 91, .22);
    --radius: 22px;
    --radius-sm: 14px;
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --script: "Parisienne", "Segoe Script", "Brush Script MT", cursive;
    --sans: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    /* Grain papier (tuile SVG feTurbulence, très subtile) */
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body.site {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    font-size: 1.02rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.site a { color: var(--rose-darker); text-decoration: none; transition: color .15s ease; }
body.site a:hover { color: var(--rose-deep); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.12; }

/* Apparition au défilement (repli : tout visible sans JS / reduced-motion) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
    .hero__bloom, .btn-breathe::after, .hero__scroll { animation: none !important; }
    .js .hairline { transform: scaleX(1) !important; }
    .js .flourish line, .js .flourish path { stroke-dashoffset: 0 !important; }
    .js .menu-row { clip-path: none !important; }
    .js .menu-row__price { opacity: 1 !important; }
}

/* --------------------------- Ornements dorés ------------------------ */
/* Filet doré qui se trace à l'apparition */
.hairline {
    height: 1px; border: 0; margin: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.js .reveal .hairline, .js .hairline.reveal-line { transform: scaleX(0); transition: transform 1s cubic-bezier(.2, .7, .2, 1) .15s; }
.js .reveal.is-visible .hairline, .js .hairline.reveal-line.is-visible { transform: scaleX(1); }

/* Fioriture florale : les traits se dessinent à l'apparition */
.flourish { display: block; margin: 1.3rem auto 0; width: 220px; max-width: 70%; height: 26px; color: var(--gold); }
.flourish line, .flourish path { stroke: currentColor; stroke-width: 1.3; fill: none; stroke-linecap: round; }
.flourish circle { fill: currentColor; stroke: none; }
.flourish .leaf { fill: var(--rose-soft); stroke: var(--rose-deep); stroke-width: 1; }
.js .reveal .flourish line, .js .reveal .flourish path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.3s ease .3s; }
.js .reveal.is-visible .flourish line, .js .reveal.is-visible .flourish path { stroke-dashoffset: 0; }

/* ----------------------------- Boutons ----------------------------- */
.btn-rose {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .85rem 1.9rem;
    border-radius: 999px;
    background: var(--rose-deep);
    color: var(--white) !important;
    font-weight: 600; letter-spacing: .2px;
    border: 1.5px solid var(--rose-deep);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.btn-rose:hover { background: var(--rose-darker); border-color: var(--rose-darker); color: var(--white) !important; transform: translateY(-2px); box-shadow: var(--shadow-rose); }
.btn-rose--outline { background: transparent; color: var(--rose-darker) !important; border-color: var(--rose-soft); box-shadow: none; }
.btn-rose--outline:hover { background: var(--white); color: var(--rose-darker) !important; border-color: var(--rose-deep); }
.btn-rose--cream { background: var(--cream); color: var(--rose-darker) !important; border-color: var(--cream); }
.btn-rose--cream:hover { background: var(--white); border-color: var(--white); color: var(--rose-darker) !important; }

/* Anneau qui respire (invitation discrète) */
.btn-breathe { position: relative; }
.btn-breathe::after {
    content: ""; position: absolute; inset: -3px; border-radius: inherit;
    border: 1.5px solid currentColor; opacity: 0; pointer-events: none;
    animation: breathe 3.8s ease-in-out infinite;
}
@keyframes breathe {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: .35; transform: scale(1.06); }
}

/* ------------------------------ En-tête ----------------------------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 1000;
    background: rgba(255, 250, 246, .55);
    backdrop-filter: saturate(170%) blur(14px);
    -webkit-backdrop-filter: saturate(170%) blur(14px);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    padding: .7rem 0;
}
.site-header.is-scrolled { background: rgba(255, 250, 246, .96); box-shadow: 0 1px 0 var(--gold-soft), var(--shadow-sm); padding: .4rem 0; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-brand { display: inline-flex; align-items: center; gap: .7rem; }
.site-brand__logo { border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); border: 2px solid rgba(255, 255, 255, .8); }
.site-brand__name { font-family: var(--script); font-size: 1.85rem; line-height: 1; color: var(--rose-darker); padding-top: .25rem; }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a { color: var(--ink-soft); font-weight: 500; font-size: .96rem; position: relative; }
.site-nav a:not(.site-nav__cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1.5px;
    background: var(--gold); transition: right .25s ease;
}
.site-nav a:not(.site-nav__cta):hover { color: var(--rose-darker); }
.site-nav a:not(.site-nav__cta):hover::after { right: 0; }
.site-nav__cta { padding: .5rem 1.15rem; border-radius: 999px; background: var(--rose-deep); color: var(--white) !important; font-weight: 600; box-shadow: var(--shadow-sm); }
.site-nav__cta:hover { background: var(--rose-darker); color: var(--white) !important; }
.site-nav__burger { display: none; font-size: 1.8rem; color: var(--ink); cursor: pointer; line-height: 1; }

@media (max-width: 880px) {
    .site-nav__burger { display: inline-flex; }
    .site-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(255, 250, 246, .99); box-shadow: var(--shadow);
        padding: 0 1.4rem; max-height: 0; overflow: hidden;
        transition: max-height .35s ease, padding .35s ease;
    }
    .site-nav a { padding: .9rem .25rem; border-bottom: 1px solid var(--rose-tint); }
    .site-nav a:not(.site-nav__cta)::after { display: none; }
    .site-nav__cta { margin: .85rem 0; text-align: center; border-bottom: none; }
    .site-nav__toggle:checked ~ .site-nav { max-height: 440px; padding: .5rem 1.4rem 1rem; }
}

/* ------------------------- Héro « couverture » ----------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 6.5rem 1rem 4.5rem;
    background: linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%);
    overflow: hidden;
}
.hero::after { /* grain papier, concentré là où il se voit */
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: var(--grain);
}
.hero__bloom { /* l'aube qui respire — un seul calque, lent, GPU-friendly */
    position: absolute; width: min(72vmin, 560px); height: min(72vmin, 560px);
    left: 50%; top: 8%; margin-left: calc(min(72vmin, 560px) / -2);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, rgba(216, 162, 148, .5), rgba(216, 162, 148, 0) 64%);
    filter: blur(46px);
    animation: bloomBreathe 18s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes bloomBreathe {
    from { transform: scale(1) translateY(0); opacity: .8; }
    to   { transform: scale(1.14) translateY(4%); opacity: 1; }
}
.hero__content { position: relative; z-index: 1; max-width: 720px; width: 100%; }

.hero__edition {
    display: flex; align-items: center; gap: 1rem; justify-content: center;
    margin-bottom: 2.2rem;
}
.hero__edition .hairline { flex: 1; max-width: 130px; }
.hero__edition-text {
    font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
    color: var(--gold-ink); white-space: nowrap; font-weight: 600;
}

.hero__logo {
    width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
    margin-bottom: 1.6rem;
}

/* Masthead : serif géant + mot Parisienne en contrepoint (grid 1 cellule) */
.masthead { display: grid; justify-items: center; margin-bottom: .4rem; }
.masthead__title {
    grid-area: 1 / 1;
    font-size: clamp(3rem, 12.5vw, 6.8rem);
    font-weight: 600; letter-spacing: .01em; line-height: .95;
    margin: 0; color: var(--ink);
}
.masthead__script {
    grid-area: 1 / 1; align-self: end; justify-self: center;
    font-family: var(--script); font-weight: 400;
    font-size: clamp(1.7rem, 6.2vw, 3.4rem);
    color: var(--rose-deep);
    transform: rotate(-6deg) translate(16%, 58%);
    padding: .25em .4em; /* les hampes de Parisienne débordent : on leur laisse la place */
    pointer-events: none;
    text-shadow: 0 1px 0 var(--paper), 0 2px 14px rgba(255, 250, 246, .9);
}

.hero__tagline {
    font-variant-caps: all-small-caps; letter-spacing: .22em;
    color: var(--ink-soft); font-size: 1.06rem;
    margin: 2.4rem 0 .8rem;
}

/* Badge « ouvert / fermé » en direct */
.open-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--white); border: 1px solid var(--rose-tint);
    border-radius: 999px; padding: .35rem 1rem;
    font-size: .88rem; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.open-badge__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); flex: none; }
.open-badge.is-open .open-badge__dot { background: var(--sage); box-shadow: 0 0 0 3px rgba(111, 138, 104, .18); }
.open-badge.is-open { color: var(--ink); }

/* Sommaire de couverture (table des matières à points de conduite) */
.toc {
    list-style: none; margin: 2.3rem auto 0; padding: 1.2rem 1.6rem;
    max-width: 430px; text-align: left;
    border-top: 1px solid var(--gold-soft); border-bottom: 1px solid var(--gold-soft);
}
.toc__row { display: flex; align-items: baseline; gap: .7rem; padding: .42rem 0; }
.toc__num { font-family: var(--serif); font-size: .95rem; font-weight: 700; color: var(--rose-ink); min-width: 1.9em; }
.toc__row a { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--ink); }
.toc__row a:hover { color: var(--rose-darker); }
.toc__leader {
    flex: 1; min-width: 1.5rem; height: 1em; transform: translateY(-.18em);
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.4px);
    background-size: 9px 3px; background-repeat: repeat-x; background-position: bottom;
}
.toc__icon { color: var(--rose-deep); font-size: .95rem; }

.hero__actions { margin-top: 2.2rem; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
    position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
    color: var(--rose-darker) !important; font-size: 1.5rem; opacity: .8;
    animation: heroBounce 2s ease-in-out infinite; z-index: 1;
}
@keyframes heroBounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ----------------------------- Sections ----------------------------- */
.section { padding: 5.5rem 0; position: relative; }
.section--tint { background: linear-gradient(180deg, var(--rose-tint) 0%, #faf1ea 100%); }
.section__narrow { max-width: 780px; }
.section__eyebrow {
    display: inline-flex; align-items: center; gap: .85rem;
    text-transform: uppercase; letter-spacing: 3.5px; font-size: .74rem; font-weight: 700;
    color: var(--gold-ink); margin-bottom: .7rem;
}
.section__eyebrow::before, .section__eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--gold-soft); }
.section__title { font-size: clamp(2.1rem, 5.5vw, 3.2rem); margin: 0 0 .6rem; font-weight: 600; }
.section__subtitle { color: var(--ink-soft); margin: 0 auto; max-width: 620px; font-size: 1.08rem; }
.lead-text { color: var(--ink-soft); font-size: 1.18rem; line-height: 1.9; }
.lead-text--script { font-family: var(--script); font-size: 2rem; line-height: 1.3; color: var(--rose-darker); }

/* Lettrine de magazine sur l'intro */
.lead-text--lettrine { text-align: left; }
.lead-text--lettrine::first-letter {
    font-family: var(--serif); font-weight: 600; font-size: 3.4em; line-height: .8;
    float: left; padding: .06em .14em 0 0; color: var(--rose-darker);
}

/* Filigrane « A » gaufré derrière la section À propos */
.watermark {
    position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(14rem, 36vw, 30rem); line-height: 1;
    color: transparent; -webkit-text-stroke: 1px var(--rose-soft);
    opacity: .6; pointer-events: none; user-select: none;
}

/* ------------------------ Le Menu des Soins ------------------------- */
.menu-frame {
    max-width: 700px; margin: 2.6rem auto 0;
    background: var(--paper);
    border: 1px solid var(--gold-soft);
    outline: 1px solid var(--gold-soft); outline-offset: 4px; /* double filet d'encadrement */
    border-radius: 4px;
    padding: clamp(1.4rem, 5vw, 3rem);
    box-shadow: var(--shadow-sm);
    counter-reset: soin;
}
.menu-frame__head { text-align: center; margin-bottom: 1.6rem; }
.menu-frame__script { font-family: var(--script); font-size: 2.1rem; color: var(--rose-darker); display: block; line-height: 1.1; }
.menu-frame__sub { font-variant-caps: all-small-caps; letter-spacing: .2em; color: var(--ink-soft); font-size: .98rem; }

.menu-row { border-bottom: 1px solid var(--rose-tint); }
.menu-row:last-of-type { border-bottom: none; }
/* « Le menu qui s'imprime » : chaque ligne se révèle de gauche à droite */
.js .menu-frame.reveal .menu-row { clip-path: inset(0 100% 0 0); transition: clip-path .7s cubic-bezier(.2, .7, .2, 1); transition-delay: inherit; }
.js .menu-frame.reveal.is-visible .menu-row { clip-path: inset(0 0 0 0); }
.js .menu-frame.reveal .menu-row__price { opacity: 0; transition: opacity .5s ease; transition-delay: inherit; }
.js .menu-frame.reveal.is-visible .menu-row__price { opacity: 1; transition-delay: calc(var(--d, 0s) + .55s); }
.js .menu-frame.reveal .menu-row { transition-delay: var(--d, 0s); }

.menu-row__summary {
    list-style: none; cursor: default; padding: .95rem 0 .8rem;
}
.menu-row__summary::-webkit-details-marker { display: none; }
details.menu-row .menu-row__summary { cursor: pointer; }
.menu-row__num {
    display: block;
    font-size: .74rem; font-weight: 700; letter-spacing: .18em;
    color: var(--rose-ink); margin-bottom: .1rem;
}
.menu-row__num::before { counter-increment: soin; content: "N° " counter(soin, decimal-leading-zero); }
.menu-row__line { display: flex; align-items: baseline; gap: .65rem; }
.menu-row__name { font-family: var(--serif); font-size: clamp(1.25rem, 4vw, 1.5rem); font-weight: 600; color: var(--ink); line-height: 1.25; }
.menu-row__leader {
    flex: 1; min-width: 1.6rem; height: 1em; transform: translateY(-.18em);
    background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.4px);
    background-size: 9px 3px; background-repeat: repeat-x; background-position: bottom;
}
.menu-row__price {
    font-family: var(--serif); font-variant-numeric: tabular-nums;
    font-size: clamp(1.3rem, 4vw, 1.55rem); font-weight: 700; color: var(--rose-ink);
    white-space: nowrap;
}
.menu-row__meta { display: flex; align-items: center; gap: .8rem; margin-top: .15rem; }
.menu-row__duration { font-variant-caps: all-small-caps; letter-spacing: .14em; color: var(--ink-soft); font-size: .95rem; }
.menu-row__more { font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: .3rem; }
details.menu-row[open] .menu-row__more .bi-chevron-down { transform: rotate(180deg); }
.menu-row__more .bi-chevron-down { transition: transform .25s ease; }
.menu-row__desc {
    font-family: var(--serif); font-size: 1.08rem; color: var(--ink-soft);
    padding: 0 0 1rem; margin: 0; max-width: 56ch;
}
.menu-note { text-align: center; color: var(--muted); font-size: .9rem; margin: 1.8rem auto 0; max-width: 60ch; }
.menu-note::before { content: "✻ "; color: var(--gold); }

/* ----------------------------- Galerie ------------------------------ */
.gallery {
    margin-top: 2.6rem;
    columns: 4 220px;
    column-gap: 16px;
}
.gallery__item {
    position: relative; display: block; break-inside: avoid; margin-bottom: 16px;
    border-radius: var(--radius-sm); overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--rose-tint);
    line-height: 0;
}
.gallery__img { width: 100%; height: auto; display: block; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.gallery__item:hover .gallery__img { transform: scale(1.06); }
.gallery__zoom {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.4rem;
    background: linear-gradient(180deg, rgba(70, 54, 48, 0) 40%, rgba(70, 54, 48, .45));
    opacity: 0; transition: opacity .3s ease; line-height: 1;
}
.gallery__item:hover .gallery__zoom { opacity: 1; }

/* Lightbox CSS pur (ouverte via :target) */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    display: none; align-items: center; justify-content: center;
    background: rgba(40, 28, 24, .9);
    padding: 4vh 4vw;
    opacity: 0; transition: opacity .3s ease;
}
.lightbox:target { display: flex; opacity: 1; }
.lightbox__img {
    max-width: 100%; max-height: 92vh; width: auto; height: auto;
    border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    border: 3px solid rgba(246, 237, 228, .85);
}
.lightbox__close {
    position: absolute; top: 4vh; right: 4vw; z-index: 2;
    width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(246, 237, 228, .15); color: var(--cream) !important; font-size: 1.2rem;
    backdrop-filter: blur(4px);
}
.lightbox__close:hover { background: rgba(246, 237, 228, .3); color: var(--white) !important; }
.lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 50px; height: 50px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(246, 237, 228, .15); color: var(--cream) !important; font-size: 1.4rem;
    backdrop-filter: blur(4px);
}
.lightbox__nav:hover { background: rgba(246, 237, 228, .3); color: var(--white) !important; }
.lightbox__nav--prev { left: 3vw; }
.lightbox__nav--next { right: 3vw; }
@media (max-width: 575px) {
    .lightbox__nav { width: 40px; height: 40px; font-size: 1.1rem; }
    .lightbox__nav--prev { left: 1vw; }
    .lightbox__nav--next { right: 1vw; }
}

/* --------------------- Carnet d'heures à filets --------------------- */
.hours-card {
    max-width: 560px; margin: 2.2rem auto 0;
    background: var(--white); border: 1px solid var(--gold-soft);
    border-radius: 6px; padding: 1.6rem clamp(1.2rem, 4vw, 2.2rem) 1.8rem;
    box-shadow: var(--shadow-sm);
}
.hours-card__script { font-family: var(--script); font-size: 1.9rem; color: var(--rose-darker); text-align: center; display: block; margin-bottom: .9rem; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
    padding: .8rem .2rem;
    background: linear-gradient(90deg, transparent, var(--rose-tint) 18%, var(--rose-tint) 82%, transparent) bottom / 100% 1px no-repeat;
}
.hours-row:last-child { background: none; }
.hours-row__day { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; display: inline-flex; align-items: baseline; gap: .55rem; }
.hours-row__fleuron { color: var(--gold); font-size: 1rem; }
.hours-row__today { font-variant-caps: all-small-caps; letter-spacing: .12em; font-family: var(--sans); font-size: .92rem; color: var(--rose-ink); font-weight: 600; }
.hours-row__time { color: var(--ink-soft); font-variant-numeric: tabular-nums; text-align: right; font-size: 1.02rem; }
.hours-row__sep { color: var(--gold); margin: 0 .15rem; }
.hours-row.is-closed .hours-row__time { color: var(--muted); }
.hours-row.is-today .hours-row__day, .hours-row.is-today .hours-row__time { color: var(--ink); }
.hours-card__badge { text-align: center; margin-top: 1.3rem; }

/* ---------------------- Bandeau CTA immersif ------------------------ */
.cta-band {
    position: relative; overflow: hidden;
    background: linear-gradient(150deg, #54413a 0%, #6f5347 48%, #9c6b59 100%);
    color: var(--cream);
    padding: 5rem 0;
    text-align: center;
}
.cta-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: var(--grain); }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__script {
    font-family: var(--script); font-weight: 400;
    font-size: clamp(2.4rem, 8vw, 4.2rem); line-height: 1.15;
    color: var(--gold-soft); display: block; margin-bottom: .6rem;
    padding: 0 .4em; /* hampes */
}
.cta-band__text { color: rgba(246, 237, 228, .88); max-width: 520px; margin: 0 auto 1.9rem; font-size: 1.06rem; }
.cta-band .hairline { max-width: 180px; margin: 0 auto 2rem; }
.cta-band__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------ Contact ----------------------------- */
.contact-card {
    height: 100%; background: var(--white);
    border: 1px solid var(--rose-tint); border-radius: var(--radius);
    padding: 2rem; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
}
.contact-list { list-style: none; margin: 0 0 .5rem; padding: 0; }
.contact-list li { display: flex; align-items: flex-start; gap: .95rem; padding: .8rem 0; border-bottom: 1px solid var(--rose-tint); }
.contact-list li:last-child { border-bottom: none; }
.contact-list .ci {
    flex: none; width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--rose-tint); color: var(--rose-darker); font-size: 1.1rem;
}
.contact-list__label { font-size: .76rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); display: block; }
.contact-list__value { font-size: 1.05rem; color: var(--ink); }
.contact-list a.contact-list__value:hover { color: var(--rose-darker); }
.contact-socials { display: flex; gap: .75rem; margin: 1rem 0 .25rem; }
.contact-socials a {
    width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--rose-tint); color: var(--rose-darker); font-size: 1.25rem;
    transition: background .15s ease, transform .15s ease, color .15s ease;
}
.contact-socials a:hover { background: var(--rose-deep); color: var(--white); transform: translateY(-3px); }
.contact-map {
    width: 100%; height: 100%; min-height: 380px; border: 0;
    border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block;
}
.map-frame { position: relative; height: 100%; border-radius: var(--radius); padding: 6px; border: 1px solid var(--gold-soft); }

/* ------------------------------- Pied ------------------------------- */
.site-footer { background: linear-gradient(160deg, #4f3d36 0%, var(--ink) 100%); color: var(--cream); padding: 3.25rem 0 1.75rem; }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.75rem; }
.site-footer__brand { display: flex; align-items: center; gap: 1rem; }
.site-footer__logo { border-radius: 50%; object-fit: cover; border: 2px solid rgba(246, 237, 228, .35); }
.site-footer__name { font-family: var(--script); font-size: 1.9rem; line-height: 1; color: var(--cream); }
.site-footer__tag { color: rgba(246, 237, 228, .72); font-size: .92rem; margin-top: .15rem; }
.site-footer__links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.site-footer__links a { color: rgba(246, 237, 228, .82); font-size: .95rem; }
.site-footer__links a:hover { color: var(--white); }
.site-footer__pro { border: 1px solid rgba(246, 237, 228, .35); padding: .45rem 1.05rem; border-radius: 999px; }
.site-footer__legal { text-align: center; color: rgba(246, 237, 228, .55); font-size: .82rem; margin-top: 2.25rem; padding-top: 1.3rem; border-top: 1px solid rgba(246, 237, 228, .15); }

/* ----------------- Dock d'action collant (mobile) ------------------- */
.dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
    display: none;
    background: rgba(251, 246, 239, .97);
    border-top: 1px solid var(--gold-soft);
    box-shadow: 0 -6px 24px rgba(120, 80, 70, .12);
    padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
body.dock-visible .dock { transform: translateY(0); }
.dock__btn {
    flex: 1; display: inline-flex; flex-direction: column; align-items: center; gap: .1rem;
    padding: .35rem .2rem; border-radius: 12px;
    color: var(--rose-darker) !important; font-size: .72rem; font-weight: 600;
    letter-spacing: .02em;
}
.dock__btn i { font-size: 1.25rem; }
.dock__btn:active { background: var(--rose-tint); }
@media (max-width: 767px) {
    .dock { display: flex; gap: .3rem; }
    body.site.dock-visible { padding-bottom: 76px; }
}

@media (max-width: 575px) {
    .section { padding: 3.75rem 0; }
    .site-footer__inner { justify-content: center; text-align: center; }
    .toc { padding: 1rem .6rem; }
    .watermark { right: -14%; opacity: .45; }
}
