:root {
    /* Couleurs - Inspirée du mur sauge naturel du Lion d'Or */
    --vert: #3A6460;          /* Sauge foncé — header, footer, titres, boutons */
    --vert-light: #4D7A76;    /* Sauge moyen */
    --or: #C9A24B;            /* Or champagne — CTA, accents */
    --ivoire: #F3F5F5;        /* Blanc sauge — fond de page */
    --beige: #DDE5E4;         /* Sauge très clair — fonds alternés */
    --anthracite: #211F1C;    /* Texte principal */
    --bordeaux: #7A2E2E;      /* Accent restaurant (badge spécialité) */
    --blanc: #FFFFFF;
    --radius: 18px;
    --shadow: 0 14px 40px rgba(33, 31, 28, 0.12);
    --shadow-soft: 0 8px 26px rgba(33, 31, 28, 0.07);
    --transition: 0.3s ease;
    --header-h: 84px;         /* hauteur approx. du header replié, sert au scroll-margin */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--anthracite);
    background: var(--ivoire);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;           /* évite tout débordement horizontal sur mobile */
    -webkit-tap-highlight-color: transparent;
}
body.menu-open {
    overflow: hidden;
}
img { background-color: var(--beige); }
.hero-bg, .banner { background-color: var(--vert); }
h1, h2, h3, h4 { font-family: 'Fraunces', serif; color: var(--vert); margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100%, 1440px); max-width: 1440px; margin: 0 auto; padding: 20px 20px; }

/* Focus clavier visible partout (accessibilité) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--or);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (max-width: 960px) {
    .container { padding: 50px 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
}

/* --- Typographie fluide (s'adapte en continu, plus de "sauts" brusques) --- */
.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}
h1 { font-size: clamp(2rem, 4.4vw + 1rem, 3.4rem); font-weight: 600; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 2.6vw + 1rem, 2.2rem); font-weight: 600; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: clamp(1.12rem, 1vw + 0.9rem, 1.3rem); font-weight: 600; }
p { opacity: 0.85; }
.body-text { font-size: 1.02rem; max-width: 540px; }
.link-underline {
    display: inline-block;
    margin-top: 18px;
    font-weight: 600;
    color: var(--vert);
    border-bottom: 1.5px solid var(--or);
    padding-bottom: 3px;
    transition: var(--transition);
}
.link-underline:hover {
    transform: scale(1.03);
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent;
}
header.scrolled, header.solid {
    background: rgba(250, 246, 239, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 14px 0;
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    position: relative;
}
.logo {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.2rem, 1.6vw + 0.6rem, 1.5rem);
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
    letter-spacing: 0.01em;
    flex-shrink: 0;
}
header.scrolled .logo, header.solid .logo { color: var(--vert); }
.nav-links {
    display: flex;
    gap: clamp(18px, 2.2vw, 34px);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    opacity: 0.92;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}
header.scrolled .nav-links a, header.solid .nav-links a { color: var(--anthracite); }
.nav-links a:hover, .nav-links a.active { opacity: 1; border-color: var(--or); }
.nav-ctas { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 26px;
    min-height: 46px;              /* cible tactile confortable (>=44px) */
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-solid {
    background: var(--or);
    color: var(--vert);
}
.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 162, 75, 0.4);
}
.btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}
header.scrolled .btn-outline, header.solid .btn-outline {
    border-color: var(--vert);
    color: var(--vert);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}
.btn-outline-dark {
    border-color: var(--vert);
    color: var(--vert);
}
.btn-outline-dark:hover {
    background: var(--vert);
    color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 30px; font-size: 0.95rem; min-height: 52px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* --- Menu mobile --- */
.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.mobile-nav-toggle:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    background: rgba(255, 255, 255, 0.2);
}
.mobile-nav-toggle:active {
    transform: scale(0.97);
}
header.scrolled .mobile-nav-toggle, header.solid .mobile-nav-toggle {
    color: var(--vert);
    border-color: rgba(58, 100, 96, 0.18);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(18, 39, 37, 0.12);
}
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    max-width: 360px;
    background: linear-gradient(180deg, var(--vert) 0%, var(--vert-light) 100%);
    z-index: 160;
    padding: 96px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.2);
}
.mobile-nav-drawer.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-nav-drawer a {
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.16);
}
.mobile-nav-drawer .btn {
    margin-top: 16px;
    align-self: flex-start;
}
.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #fff;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-ctas .btn-outline { display: none; }
    .mobile-nav-toggle { display: inline-flex; }
}
@media (max-width: 600px) {
    .nav-ctas { display: none; }
    .nav-row { gap: 12px; }
    .logo { font-size: 1.08rem; }
    .mobile-nav-drawer { padding: 90px 20px 28px; width: min(92vw, 360px); }
}

/* --- Hero (accueil) --- */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;         /* tient compte des barres d'adresse mobiles */
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./img/hero.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58, 100, 96, 0.38) 0%, rgba(58, 100, 96, 0.58) 55%, rgba(30, 55, 52, 0.88) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p.lead {
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--or);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(250%); }
}
@media (max-width: 760px) {
    .hero-content { padding: 0 6px; }
}
@media (max-width: 480px) {
    .hero-buttons .btn { flex: 1 1 100%; }   /* boutons empilés en pleine largeur sur très petit écran */
    .scroll-cue { display: none; }             /* évite d'empiéter sur le CTA sticky mobile */
}
/* Écrans très bas (mobile en paysage) : éviter un hero disproportionné */
@media (max-height: 480px) and (orientation: landscape) {
    .hero { height: auto; min-height: 100svh; padding: 120px 0 60px; }
}

/* --- Page-hero (pages secondaires) --- */
.page-hero {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
    padding-top: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--vert);
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33,31,28,0.15) 0%, rgba(30, 55, 52, 0.85) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-bottom: 46px;
    max-width: 720px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 520px; }
.breadcrumb {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--or); }
@media (max-width: 600px) {
    .page-hero { min-height: 38vh; padding-top: 118px; }
    .page-hero-content { padding-bottom: 32px; }
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--beige);
    padding: 18px 0;
}
.trust-row {
    display: flex;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--vert);
    text-align: center;
}
.trust-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 600px) {
    .trust-row { gap: 14px 28px; font-size: 0.8rem; }
}

/* --- Sections --- */
.section { padding: 110px 0; scroll-margin-top: var(--header-h); }
@media (max-width: 760px) { .section { padding: 64px 0; } }
@media (max-width: 480px) { .section { padding: 48px 0; } }
.section-tight { padding: 70px 0; scroll-margin-top: var(--header-h); }
#top, #hotel, #restaurant, #evenements, #galerie, #contact, #reservation, [id] {
    scroll-margin-top: var(--header-h);   /* évite que le header fixe masque le titre visé par une ancre */
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Cinema Banners --- */
.banner {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58, 100, 96, 0.15) 0%, rgba(30, 55, 52, 0.84) 100%);
}
.banner-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 560px;
}
.banner h2 { color: #fff; font-size: clamp(1.6rem, 2.6vw + 1rem, 2.3rem); }
.banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin: 16px 0 30px;
}
@media (max-width: 760px) {
    .banner { min-height: 60vh; padding: 60px 0; }
}
.hotel-block { background: var(--vert); color: #fff; }
.hotel-block h2 { color: #fff; }
.icon-grid {
    display: flex;
    gap: 16px 30px;
    margin: 28px 0 32px;
    flex-wrap: wrap;
}
.icon-grid div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1 1 auto;
    text-align: center;
}
@media (max-width: 480px) {
    .icon-grid div { flex: 1 1 calc(50% - 8px); }
}

/* --- Chambres (cartes) : compactes, sobres et élégantes --- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 42px;
}

@media (min-width: 860px) {
    .rooms-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.room-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(33, 31, 28, 0.06);
    border: 1px solid rgba(58, 100, 96, 0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(33, 31, 28, 0.12);
    border-color: rgba(58, 100, 96, 0.2);
}
.room-visual {
    position: relative;
    padding: 12px 12px 0;
}
.room-image-stack {
    position: relative;
    height: 176px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--beige);
}
.room-image-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.room-image-stack img:nth-child(1) {
    z-index: 3;
    transform: scale(1.02);
}
.room-image-stack img:nth-child(2) {
    z-index: 2;
    transform: translate(10px, 10px) scale(0.96);
    opacity: 0.9;
}
.room-image-stack img:nth-child(3) {
    z-index: 1;
    transform: translate(20px, 20px) scale(0.92);
    opacity: 0.8;
}
.room-card:hover .room-image-stack img:nth-child(1) {
    transform: scale(1.05);
}
.room-card:hover .room-image-stack img:nth-child(2) {
    transform: translate(12px, 12px) scale(0.97);
}
.room-card:hover .room-image-stack img:nth-child(3) {
    transform: translate(22px, 22px) scale(0.93);
}
.room-visual-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    background: rgba(255,255,255,0.96);
    color: var(--vert);
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(33,31,28,0.14);
    backdrop-filter: blur(8px);
}
.room-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 18px 18px;
}
.room-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 6px;
}
.room-body .tag {
    display: inline-flex;
    align-self: flex-start;
    background: var(--beige);
    color: var(--vert);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}
.room-body h3 {
    margin-bottom: 2px;
    font-size: 1.05rem;
}
.room-body p {
    font-size: 0.86rem;
    margin: 8px 0 12px;
    line-height: 1.6;
    opacity: 0.78;
}
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.room-features li {
    background: rgba(58, 100, 96, 0.07);
    color: var(--vert);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(58, 100, 96, 0.10);
}
.room-price {
    font-family: 'Fraunces', serif;
    color: var(--or);
    font-size: 1.15rem;
    font-weight: 600;
}
.room-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--anthracite);
    opacity: 0.7;
    font-weight: 500;
}
.room-link {
    padding: 8px 12px;
    min-height: 38px;
    font-size: 0.74rem;
}

.room-gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 16, 15, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 24px;
}
.room-gallery-modal.open { display: flex; }
.room-gallery-content {
    position: relative;
    width: min(100%, 1080px);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.room-gallery-main {
    background: #f3f5f5;
}
.room-gallery-main img {
    width: 100%;
    max-height: 78vh;
    object-fit: cover;
    display: block;
}
.room-gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow-x: auto;
    background: #fff;
}
.room-gallery-thumbs img {
    width: 92px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
}
.room-gallery-thumbs img.active {
    border-color: var(--or);
}
.room-gallery-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--vert);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
}

/* --- Timeline (Notre Histoire) --- */
.timeline { margin-top: 50px; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--beige);
}
.timeline-item {
    position: relative;
    padding-left: 44px;
    margin-bottom: 38px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--or);
    border: 3px solid var(--ivoire);
}
.timeline-year {
    font-family: 'Fraunces', serif;
    color: var(--vert);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.timeline-item p { max-width: 560px; }

/* --- Valeurs (grille fluide) --- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    margin-top: 20px;
}
.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}
.value-card .value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; }

/* --- Galerie --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 20px;
    min-height: 42px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--ivoire);
    border: 1.5px solid var(--beige);
    color: var(--vert);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active {
    background: var(--vert);
    color: #fff;
    border-color: var(--vert);
}
.filter-btn:hover:not(.active) {
    border-color: var(--or);
    color: var(--or);
}
.masonry {
    column-count: 3;
    column-gap: 18px;
}
.masonry img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-soft);
    break-inside: avoid;          /* évite qu'une image soit coupée entre deux colonnes */
}
.masonry img:hover {
    transform: scale(1.025);
    box-shadow: var(--shadow);
}
@media (max-width: 760px) {
    .masonry { column-count: 2; column-gap: 12px; }
    .masonry img { margin-bottom: 12px; }
}
@media (max-width: 500px) {
    .masonry { column-count: 1; }
}
.center-cta { text-align: center; margin-top: 36px; }
.gallery-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--vert);
    opacity: 0.6;
    font-size: 0.92rem;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 18, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
}

/* --- Avis Clients --- */
.reviews-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.rating-big {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.6rem, 5vw + 1rem, 3.6rem);
    font-weight: 600;
    color: var(--vert);
}
.stars {
    color: var(--or);
    font-size: 1.3rem;
    letter-spacing: 3px;
}
.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 320px);
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 18px;
    scroll-padding: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--vert) rgba(58, 100, 96, 0.14);
    position: relative;
}
.carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(243,245,245,0.35), transparent 12%, transparent 88%, rgba(243,245,245,0.35));
}
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-track {
    background: rgba(58, 100, 96, 0.14);
    border-radius: 999px;
}
.carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--vert) 0%, var(--vert-light) 100%);
    border-radius: 999px;
}
.review-card {
    scroll-snap-align: start;
    min-height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfb 100%);
    border: 1px solid rgba(58, 100, 96, 0.12);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 10px 28px rgba(33, 31, 28, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(33, 31, 28, 0.12);
    border-color: rgba(58, 100, 96, 0.2);
}
.review-card .stars {
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
}
.review-card p {
    font-style: italic;
    color: var(--anthracite);
    opacity: 0.9;
    margin-bottom: 16px;
    line-height: 1.75;
}
.review-source {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--vert);
    letter-spacing: 0.02em;
}

/* --- Événements : cartes plus grandes et plus habillées --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 44px;
}
.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(33, 31, 28, 0.09);
    border: 1px solid rgba(58, 100, 96, 0.10);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    min-height: 100%;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(33, 31, 28, 0.16);
    border-color: rgba(58, 100, 96, 0.22);
}
.event-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}
.event-card:hover img {
    transform: scale(1.06);
}
.event-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 32px 30px;
}
.event-body h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 14px;
}
.event-body h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 2px;
    background: var(--or);
}
.event-body p {
    font-size: 0.98rem;
    margin-bottom: 26px;
    opacity: 0.78;
    line-height: 1.7;
    flex: 1;
}
.event-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
}
@media (max-width: 480px) {
    .event-card img { height: 220px; }
    .event-body { padding: 26px 22px; }
}
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.1rem, 3vw + 1rem, 2.8rem);
    font-weight: 600;
    color: var(--or);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--vert);
    margin-top: 6px;
}
/* --- Formulaire de devis élargi --- */
.devis-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 40px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 1000px !important;
    margin: 48px auto 0;
}
.devis-form .field {
    margin-bottom: 16px;
}
.textarea { resize: vertical; min-height: 80px; }
.devis-form .field select,
.devis-form .field textarea {
    width: 100%;
    border: 1.5px solid var(--beige);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;             /* >=16px : évite le zoom auto de Safari iOS au focus */
}
.field input, .field select {
    width: 100%;
    border: 1.5px solid var(--beige);
    background: var(--ivoire);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;             /* idem : 16px minimum sur mobile */
    color: var(--anthracite);
}
.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--vert);
    margin-bottom: 6px;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 2px solid var(--or);
    border-color: var(--or);
}
.devis-form .btn {
    width: 100%;
    margin-top: 10px;
}
.form-success {
    display: none;
    background: var(--beige);
    color: var(--vert);
    border-radius: 12px;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 16px;
}
.form-success.show { display: block; }
@media (max-width: 760px) {
    .devis-form { padding: 24px; }
}
/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 380px;
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}
.info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 34px;
}
.info-card h3 {
    color: var(--vert);
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.94rem;
}
table.hours {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 22px;
    font-size: 0.88rem;
}
table.hours td {
    padding: 7px 0;
    border-bottom: 1px solid var(--beige);
}
table.hours td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--vert);
}
.info-card .btn { margin-right: 10px; margin-top: 6px; }
@media (max-width: 480px) {
    .info-card { padding: 24px; }
    .info-card .btn { width: 100%; margin-right: 0; }
}

/* --- Footer --- */
footer {
    background: var(--vert);
    color: rgba(255, 255, 255, 0.85);
    padding: 70px 0 26px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}
@media (max-width: 820px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 460px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
footer h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
}
footer a:hover { color: var(--or); }
.footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}
.newsletter {
    display: flex;
    margin-top: 14px;
}
.newsletter input {
    flex: 1;
    min-width: 0;                 /* empêche l'input de forcer un débordement horizontal */
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 11px 16px;
    font-size: 16px;              /* évite le zoom auto iOS */
}
.newsletter button {
    border: none;
    background: var(--or);
    color: var(--vert);
    font-weight: 700;
    border-radius: 0 30px 30px 0;
    padding: 0 18px;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Sticky Mobile CTA --- */
.sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
    z-index: 200;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));  /* respecte l'encoche / barre de gestes iOS */
    align-items: center;
    gap: 12px;
}
@media (max-width: 760px) {
    .sticky-mobile { display: flex; }
    body { padding-bottom: 78px; }   /* évite que le CTA sticky cache le bas de page */
}
.sticky-mobile .btn-solid {
    flex: 1;
    text-align: center;
    justify-content: center;
}
.call-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --- Popup d'annonce (message modifiable par le client) --- */
.annonce-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 14, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 24px;
}
.annonce-overlay.open { display: flex; }
.annonce-box {
    background: var(--ivoire);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 440px;
    width: 100%;
    padding: 34px 30px 28px;
    position: relative;
    text-align: center;
    border-top: 6px solid var(--vert);
    max-height: 90vh;
    overflow-y: auto;
}
.annonce-box .eyebrow { justify-content: center; display: flex; }
.annonce-box h3 {
    font-family: 'Fraunces', serif;
    color: var(--vert);
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.annonce-box p {
    font-size: 0.96rem;
    color: var(--anthracite);
    opacity: 0.9;
    margin-bottom: 22px;
}
.annonce-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--anthracite);
    opacity: 0.5;
    cursor: pointer;
    padding: 10px;
}
.annonce-close:hover { opacity: 0.9; }
@media (max-width: 480px) {
    .annonce-box { padding: 28px 22px 22px; }
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .scroll-line::after { animation: none; }
}

.menu-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 0;
    max-width: 720px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.menu-card-badge {
    position: absolute;
    top: 16px;
    left: 24px;
    background: var(--bordeaux);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    z-index: 1;
}
.menu-card-image {
    width: 100%;
    height: 420px;
    max-height: 520px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.25s ease;
}
.menu-card-image:hover {
    transform: scale(1.01);
}
@media (max-width: 760px) {
    .menu-card {
        padding: 0;
    }
    .menu-card-image {
        height: 300px;
    }
}

/* ============================================================
   RÉSERVATION — iFrame Amenitiz
   ============================================================ */
#reservation, .reservation-block { background: var(--beige); padding: 90px 0; }
.reservation-header { text-align: center; max-width: 620px; margin: 0 auto 40px; }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 14px 22px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.trust-badges span {
    background: #fff;
    border: 1px solid rgba(58, 100, 96, 0.12);
    color: var(--vert);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.amenitiz-frame-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(58, 100, 96, 0.08);
}
.amenitiz-frame-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: linear-gradient(180deg, #fbfcfb, #f3f5f5);
    border-bottom: 1px solid rgba(58, 100, 96, 0.08);
}
.amenitiz-frame-dots { display: flex; gap: 6px; }
.amenitiz-frame-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--beige);
}
.amenitiz-frame-url {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--vert);
    opacity: 0.7;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.amenitiz-iframe-wrap {
    position: relative;
    min-height: 820px;
    background: #fff;
}
.amenitiz-iframe-wrap iframe {
    width: 100%;
    min-height: 820px; /* Hauteur minimale pour éviter les sauts */
    border: 0;
    display: block;
    position: relative;
    z-index: 1;
    height: auto; /* La hauteur sera gérée par JavaScript */
}

.amenitiz-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #fff;
    z-index: 2;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.amenitiz-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.amenitiz-loader p { font-size: 0.86rem; color: var(--vert); opacity: 0.7; }
.loader-spinner {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--beige);
    border-top-color: var(--or);
    animation: amenitizSpin 0.9s linear infinite;
}
@keyframes amenitizSpin { to { transform: rotate(360deg); } }

.disclaimer { font-size: 0.9rem; color: var(--anthracite); opacity: 0.55; text-align: center; margin-top: 16px; }

@media (max-width: 760px) {
    #reservation, .reservation-block { padding: 56px 0; }
    .amenitiz-iframe-wrap, .amenitiz-iframe-wrap iframe { min-height: 680px; height: 680px; }
}
@media (max-width: 400px) {
    .amenitiz-iframe-wrap, .amenitiz-iframe-wrap iframe { min-height: 600px; height: 600px; }
}
@media (prefers-reduced-motion: reduce) {
    .loader-spinner { animation: none; }
}