


@supports (height: 100svh) {
    :root { --viewport-height: 100svh; }
}

@supports (height: 100dvh) {
    :root { --viewport-height: 100dvh; }
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    background: #111111;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

img, svg, video, canvas, iframe {
    max-width: 100%;
}

button, input, select, textarea {
    max-width: 100%;
    font: inherit;
}

main, section, header, footer {
    max-width: 100vw;
}

a {
    color: inherit;
}

:root {
    --bg-main: #121212;
    --bg-card: #1e1e1e;
    --bg-input: #2a2a2a;
    --accent: #cca43b;
    --accent-light: #f2d36b;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --site-max-width: 1180px;
    --side-space: clamp(14px, 4vw, 40px);
    --bottom-safe-space: max(76px, calc(56px + env(safe-area-inset-bottom, 0px)));
    --desktop-header-space: clamp(52px, 7vh, 70px);
    --desktop-side-space: clamp(14px, 2.6vw, 32px);
    --desktop-bottom-space: clamp(24px, 3.8vh, 38px);
    --viewport-height: 100vh;
    --bg-site-image: url("/ressources/background1.webp");
    --bg-accueil-image: var(--bg-site-image);
    --bg-menu-image: var(--bg-site-image);
    --bg-contact-image: var(--bg-site-image);
    --bg-reservation-image: var(--bg-site-image);
    --bg-horaire-image: var(--bg-site-image);
    --bg-radial-gold: radial-gradient(circle at center, rgba(204, 164, 59, 0.10), transparent 30%);
    --bg-overlay-default: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85));
    --bg-overlay-contact: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.86));
    --bg-overlay-home-index: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.88));
}


.background_acceuil {
    --page-bg-image: var(--bg-accueil-image);
    --page-bg-overlay: var(--bg-overlay-default);
}

.background_menu {
    --page-bg-image: var(--bg-menu-image);
    --page-bg-overlay: var(--bg-overlay-default);
}

.background_contact, .contact-page {
    --page-bg-image: var(--bg-contact-image);
    --page-bg-overlay: var(--bg-overlay-contact);
}

.background_res {
    --page-bg-image: var(--bg-reservation-image);
    --page-bg-overlay: var(--bg-overlay-default);
}

.background_horaire {
    --page-bg-image: var(--bg-horaire-image);
    --page-bg-overlay: var(--bg-overlay-default);
}


.background_acceuil,
.background_res,
.background_menu,
.background_horaire,
.background_contact,
.contact-page {
    position: relative;
    isolation: isolate;
    background: #111111;
}


.background_acceuil::before,
.background_acceuil::after,
.background_res::before,
.background_res::after,
.background_menu::before,
.background_menu::after,
.background_horaire::before,
.background_horaire::after,
.background_contact::before,
.background_contact::after,
.contact-page::before,
.contact-page::after {
    content: "";
    pointer-events: none;
}

.background-layer {
    display: none;
}


header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, border-color 0.3s ease;
    -webkit-backdrop-filter: blur(12px);
}

nav {
    width: min(100%, var(--site-max-width));
    margin: 0 auto;
    padding: clamp(8px, 1.3vh, 14px) var(--desktop-side-space);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 1.8vw, 24px);
}

.logo-icon {
    flex: 0 0 auto;
    width: clamp(34px, 4.6vh, 50px);
    height: auto;
}

.logo {
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 30px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: clamp(0.78rem, 1.5vw, 0.95rem);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-links a.active {
    border-bottom: 2px solid var(--accent);
}

.btn, .btn-carte, .btn-tel, .btn-animated, .luxe-btn, .btn-submit-animated {
    max-width: 100%;
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: normal;
}

.btn-carte, .btn-tel, .btn-animated {
    padding: 12px clamp(22px, 5vw, 34px);
    color: #d4af37;
    background: transparent;
    border: 2px solid #d4af37;
    border-radius: 5px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-animated {
    border-radius: 30px;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-carte:hover, .btn-tel:hover, .btn-animated:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(204, 164, 59, 0.35);
}

.btn-submit-animated {
    width: 100%;
    padding: 12px;
    color: #121212;
    background: var(--accent);
    border: 0;
    border-radius: 8px;
    font-weight: 800;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.btn-submit-animated:hover:not(:disabled) {
    background: #ffdb7d;
    box-shadow: 0 5px 15px rgba(204, 164, 59, 0.4);
}

.btn-submit-animated:disabled {
    background: #333333;
    color: #666666;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

.success-message, .full-message {
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    color: #2db852;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid #28a745;
}

.full-message {
    color: #ea4354;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid #dc3545;
}

.menu-section, .booking-section, .contact-section, .horaires-section {
    width: min(100%, 1100px);
    margin: 140px auto 80px auto;
    padding: 0 20px;
}

.section-title {
    margin: 0 0 clamp(16px, 2.4vh, 30px) 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.55rem, 5vw, 2.25rem);
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

p, .card-text {
    font-family: "Lato", "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
}

.yellow {
    color: #d4af37;
    font-weight: 700;
}

.hero {
    position: relative;
    width: 100%;
    min-height: var(--viewport-height);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 3.4vw, 40px);
    padding: calc(var(--desktop-header-space) + 18px) var(--side-space) var(--bottom-safe-space);
    overflow: visible;
}

.hero::before, .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 260px;
    pointer-events: none;
}

.hero::before {
    top: -1px;
}

.hero::after {
    bottom: -1px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 780px);
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2.2vw, 22px);
    text-align: center;
}

.hero h1, .hero h2, .first_d, .mobile_text {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    overflow-wrap: anywhere;
}

.hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 7vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(204, 164, 59, 0.3);
}

.hero h2 {
    width: 100%;
    margin: 0;
    font-size: clamp(1.25rem, 4.5vw, 2.7rem);
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.first_d {
    width: min(100%, 760px);
    margin: 0;
    font-size: clamp(0.95rem, 2.3vw, 1.08rem);
    line-height: 1.65;
}

#announcement-grid {
    position: relative;
    z-index: 2;
    width: min(100%, var(--site-max-width));
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    align-items: stretch;
    justify-items: center;
    gap: clamp(18px, 3vw, 34px);
    margin: 0 auto;
    padding: clamp(12px, 4vw, 42px) 0;
    overflow: visible;
}

.announcement-container {
    width: 100%;
}

.announcement-card {
    width: 100%;
    max-width: 360px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.992);
    transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.announcement-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.announcement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55),
        0 0 42px rgba(204, 164, 59, 0.16);
}

.announcement-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    transition: transform 0.65s ease;
}

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

.card-content {
    min-width: 0;
    padding: 18px;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.card-content h3 {
    margin: 0 0 8px 0;
    color: var(--accent);
    overflow-wrap: anywhere;
}

.card-content p {
    margin: 0;
    color: #d5d5d5;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.menu-page-main {
    width: 100%;
    min-height: calc(var(--viewport-height) - var(--desktop-header-space));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--desktop-header-space) + 18px) var(--side-space) var(--bottom-safe-space);
    background: transparent;
}

.notrecarte {
    margin-bottom: clamp(16px, 4vw, 42px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.menu-card {
    padding: 35px;
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
}

.menu-card h3 {
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    color: var(--accent);
    border-bottom: 1px solid #2a2a2a;
    font-size: 1.3rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.menu-item span {
    color: #ffffff;
    font-weight: 700;
}

.menu-carousel-container {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    max-width: min(92vw, 560px);
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
    border-radius: 16px;
    box-shadow: none;
    animation: cardFadeInUp 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.menu-carousel-track {
    width: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-slide {
    width: 100%;
    height: auto;
    max-height: min(70svh, 720px);
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    background: rgba(0, 0, 0, 0.28);
    cursor: zoom-in;
}

.carousel-controls-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 10;
    height: clamp(54px, 10vw, 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 4vw, 30px);
    background: transparent;
}

.carousel-btn {
    width: clamp(38px, 9vw, 46px);
    height: clamp(38px, 9vw, 46px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: clamp(1rem, 4vw, 1.4rem);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.carousel-btn:hover {
    color: var(--accent);
    background: rgba(10, 10, 10, 0.9);
    border-color: var(--accent);
    transform: scale(1.12);
    box-shadow: 0 0 15px rgba(204, 164, 59, 0.6);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: background 0.25s ease, transform 0.25s ease;
}

.dot.active {
    background: #f0cc00;
    transform: scale(1.2);
}

.menu-info-notes {
    width: min(100%, 720px);
    margin: clamp(18px, 4vw, 40px) auto 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    text-align: center;
    animation: cardFadeInUp 1080ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.menu-info-notes .tip-text {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 0.98rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.menu-info-notes .allergen-text {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

.menu-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vw, 46px);
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-lightbox.is-open {
    display: flex;
}

.menu-lightbox img {
    max-width: min(96vw, 1100px);
    max-height: 88dvh;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
    cursor: zoom-out;
}

.menu-lightbox-close {
    position: fixed;
    top: clamp(12px, 2vw, 24px);
    right: clamp(12px, 2vw, 24px);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(10, 10, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.menu-lightbox-close:hover {
    color: var(--accent);
    border-color: var(--accent);
}

body.menu-lightbox-open {
    overflow: hidden;
}

.booking-section {
    width: min(100%, 560px);
    max-width: 560px;
    min-height: auto;
    margin: calc(var(--desktop-header-space) + 58px) auto var(--bottom-safe-space) auto;
    padding: 0 var(--side-space);
    background: transparent;
    overflow: visible;
}

.capacity-box {
    width: 100%;
    margin-bottom: 16px;
    padding: 16px 17px;
    background: var(--bg-card);
    border: 1px solid #2a2a2a;
    border-radius: 9px;
}

.capacity-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.02rem;
}

.capacity-overview, .capacity-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.capacity-date, .capacity-date-text, .selected-date-text, #form-selected-date-text, #capacity-status, #booking-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.capacity-date, .selected-date-text, #form-selected-date-text {
    text-transform: capitalize;
}

.selected-date-text, #form-selected-date-text {
    color: var(--accent);
}

.capacity-service-row, .service-capacity-card {
    padding: 12px;
    background: rgba(42, 42, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.capacity-service-header, .service-capacity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-width: 0;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.capacity-service-header span:first-child, .service-capacity-title strong {
    color: #ffffff;
    font-weight: 700;
}

.capacity-service-header span:last-child, .capacity-pill {
    color: var(--accent);
    text-align: right;
}

.capacity-pill {
    padding: 3px 8px;
    border: 1px solid rgba(204, 164, 59, 0.28);
    border-radius: 999px;
    font-size: 0.78rem;
    white-space: nowrap;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label, .form-field-modern label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.form-group input, .form-group select, .form-group textarea, .form-field-modern input, .form-field-modern select, .form-field-modern textarea, #service, #date, #name, #phone, #notes {
    width: 100%;
    min-height: 40px;
    padding: 10px 11px;
    color: #ffffff;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 7px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea, .form-field-modern textarea, #notes {
    min-height: 82px;
    resize: vertical;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .form-field-modern input:focus, .form-field-modern select:focus, .form-field-modern textarea:focus {
    border-color: rgba(204, 164, 59, 0.75);
    box-shadow: 0 0 0 3px rgba(204, 164, 59, 0.12);
}

.stepper-wrapper {
    width: 100%;
    height: 41px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-input);
    border: 1px solid #3a3a3a;
    border-radius: 8px;
}

.stepper-wrapper input {
    height: 41px;
    flex-grow: 1;
    color: #ffffff;
    background: transparent;
    border: 0;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 700;
    pointer-events: none;
}

.stepper-wrapper input::-webkit-outer-spin-button, .stepper-wrapper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.stepper-btn {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(10, 10, 10, 0.6);
    border: 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.stepper-btn:hover {
    color: var(--accent);
    background: rgba(10, 10, 10, 0.9);
    box-shadow: inset 0 0 10px rgba(204, 164, 59, 0.2);
}

.progress-bar {
    position: relative;
    height: 6px;
    overflow: hidden;
    background: #2a2a2a;
    border-radius: 999px;
}

.progress-fill-dual, #progress-fill-midi, #progress-fill-soir {
    position: relative;
    width: 0%;
    height: 100%;
    min-width: 0;
    display: block;
    background: linear-gradient(90deg, #b88d21 0%, #cca43b 55%, #f2d36b 100%);
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(204, 164, 59, 0.45);
    transition: width 0.7s ease;
}

.progress-fill-dual.available::after, #progress-fill-midi.available::after, #progress-fill-soir.available::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    transform: translate(50%, -50%);
    background: #fff2a8;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 242, 168, 0.9),
        0 0 14px rgba(204, 164, 59, 0.8);
    animation: progressSparkle 1.2s ease-in-out infinite;
}

.progress-fill-dual.full, #progress-fill-midi.full, #progress-fill-soir.full {
    background: linear-gradient(90deg, #8b1e1e 0%, #dc3545 70%, #ff7b84 100%);
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.45);
}

.progress-fill-dual.error, #progress-fill-midi.error, #progress-fill-soir.error {
    background: #555555;
    box-shadow: none;
}

.page-luxe {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.page-luxe main, .luxe-main {
    width: 100%;
    min-height: calc(var(--viewport-height) - var(--desktop-header-space));
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--desktop-header-space) + 52px) var(--side-space) var(--bottom-safe-space);
    overflow: visible;
}

.luxe-panel {
    width: min(100%, 1080px);
    max-width: 1080px;
    padding: clamp(18px, 4vw, 42px);
    background: rgba(20, 20, 20, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.luxe-kicker {
    margin: 0 0 12px 0;
    color: var(--accent);
    font-size: 0.85rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.luxe-title {
    margin: 0 0 clamp(12px, 1.9vh, 24px) 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 5.5vw, 3.1rem);
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    overflow-wrap: anywhere;
}

.luxe-subtitle {
    width: min(100%, 820px);
    margin: 0 auto 28px auto;
    color: var(--text-main);
    font-size: clamp(0.94rem, 1.45vw, 1.05rem);
    line-height: 1.65;
    text-align: center;
}

.luxe-btn {
    padding: 13px 22px;
    color: #ffffff;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.luxe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(204, 164, 59, 0.22);
}

.luxe-btn.primary {
    color: #121212;
    background: var(--accent);
}

.luxe-actions, .contact-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-panel {
    max-width: 1120px;
}

.contact-layout-modern {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.contact-card-modern, .contact-form-modern, .luxe-info-grid article, .schedule-modern-row {
    min-width: 0;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
}

.contact-card-modern, .contact-form-modern {
    padding: 22px;
}

.contact-card-modern h2, .contact-form-modern h2 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-intro, .contact-form-modern p, .contact-card-modern p, .contact-mini-info p, .luxe-info-grid p, .schedule-modern-row small, .contact-list-modern small {
    color: var(--text-muted);
    overflow-wrap: anywhere;
}

.contact-list-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-list-modern a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px;
    color: inherit;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.contact-list-modern a:hover {
    transform: translateY(-2px);
    border-color: rgba(204, 164, 59, 0.45);
}

.contact-list-modern a span {
    font-size: 1.25rem;
}

.contact-list-modern strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
}

.contact-list-modern small {
    font-size: 0.86rem;
}

.contact-mini-info {
    margin: 12px 0 18px 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-field-modern {
    margin-bottom: 14px;
}

.contact-submit {
    width: 100%;
    border-radius: 12px;
    margin-top: 4px;
}

.contact-form-status {
    min-height: 20px;
    margin-top: 12px;
    font-size: 0.88rem;
    text-align: center;
}

.contact-form-status.success {
    color: #2db852;
}

.contact-form-status.error {
    color: #dc3545;
}

.horaires-panel {
    max-width: 900px;
}


.schedule-modern {
    max-width: 760px;
    margin: 0 auto 28px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-modern-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 16px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.schedule-modern-row:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(204, 164, 59, 0.45);
}

.schedule-modern-row div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-modern-row strong {
    color: #ffffff;
    font-size: 1rem;
}

.schedule-modern-row small {
    font-size: 0.78rem;
}

.schedule-modern-row span {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.schedule-modern-row span em {
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.2);
    vertical-align: middle;
}

.schedule-modern-row.closed span {
    color: #ff5a66;
    font-style: italic;
}

.luxe-info-grid {
    max-width: 760px;
    margin: 0 auto 24px auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.luxe-info-grid article {
    padding: 16px;
    background: rgba(204, 164, 59, 0.06);
    border-color: rgba(204, 164, 59, 0.18);
}

.luxe-info-grid h3 {
    margin: 0 0 7px 0;
    color: #ffffff;
    font-size: 1rem;
}

.luxe-info-grid p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

footer {
    margin-top: 120px;
    padding: 40px 20px;
    color: var(--text-muted);
    background: #111111;
    border-top: 1px solid #1e1e1e;
    font-size: 0.85rem;
    text-align: center;
}

.mobile_text1, #global-address-footer {
    position: fixed;
    left: 50%;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    z-index: 99999;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100vw - 24px);
    margin: 0;
    padding: 7px 14px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    font-size: 0.82rem;
    line-height: 1.32;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
    white-space: normal;
    overflow-wrap: break-word;
    pointer-events: none;
    -webkit-backdrop-filter: blur(6px);
}

.mobile_text1.social-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.55);
    font-size: 0.72rem;
    line-height: 1.25;
    pointer-events: auto;
}

.mobile_text1.social-footer a {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cca43b;
    background: rgba(204, 164, 59, 0.18);
    border: 1px solid rgba(204, 164, 59, 0.45);
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 900;
}

.mobile_text1.social-footer a:hover {
    color: #111111;
    background: #cca43b;
}


@supports selector(html:has(body.home-index)) {
    html:has(body.home-index) {
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

body.home-index.background_acceuil {
    --page-bg-image: var(--bg-accueil-image);
    --page-bg-overlay: var(--bg-overlay-home-index);
}

body.home-index {
    --home-content-width: 1180px;
    --home-section-space: clamp(64px, 8vw, 112px);
    --home-card-radius: 26px;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--text-main);
    background-color: #111111;
}

body.home-index main,
body.home-index section {
    max-width: 100%;
}

body.home-index .home-main {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: clip;
}

body.home-index .home-hero-section {
    position: relative;
    width: 100%;
    min-height: max(760px, 100svh);
    display: grid;
    place-items: center;
    padding: clamp(112px, 10vw, 142px) var(--side-space) clamp(72px, 7vw, 94px);
    overflow: hidden;
}

body.home-index .home-hero-section::before {
    content: "";
    position: absolute;
    top: 13%;
    right: -16%;
    width: min(52vw, 720px);
    aspect-ratio: 1;
    border: 1px solid rgba(204, 164, 59, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(204, 164, 59, 0.025),
        0 0 0 140px rgba(204, 164, 59, 0.018);
    pointer-events: none;
}

body.home-index .home-hero-shell,
body.home-index .home-section,
body.home-index .home-cta-panel {
    width: min(100%, var(--home-content-width));
    margin-inline: auto;
}

body.home-index .home-hero-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
    align-items: center;
    gap: clamp(42px, 6vw, 86px);
}

body.home-index .home-hero-copy {
    width: 100%;
    max-width: 760px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(16px, 2vw, 24px);
    text-align: left;
}

body.home-index .home-kicker {
    margin: 0;
    color: var(--accent-light);
    font-size: clamp(0.74rem, 1vw, 0.86rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.home-index .home-title {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 5.75vw, 3.75rem);
    font-weight: 900;
    line-height: 0.91;
    letter-spacing: -0.052em;
    text-align: left;
    text-wrap: balance;
    text-shadow: 0 22px 72px rgba(0, 0, 0, 0.68);
}

body.home-index .home-title-line {
    display: block;
}

body.home-index .home-title-accent {
    margin-top: 0.06em;
    color: var(--accent-light);
    font-style: italic;
}

body.home-index .home-lead {
    width: min(100%, 690px);
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Lato", sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.16rem);
    font-weight: 300;
    line-height: 1.78;
    text-align: left;
}

body.home-index .home-actions,
body.home-index .home-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

body.home-index .btn-carte,
body.home-index .btn-tel,
body.home-index .home-btn-secondary {
    min-height: 48px;
    margin: 0;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: clamp(0.92rem, 1.1vw, 1.02rem);
    line-height: 1.2;
}

body.home-index .home-btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

body.home-index .home-btn-secondary:hover {
    color: var(--accent-light);
    background: rgba(204, 164, 59, 0.08);
    border-color: rgba(204, 164, 59, 0.65);
    transform: translateY(-2px);
}

body.home-index .home-proof-list {
    width: 100%;
    margin: clamp(8px, 1vw, 16px) 0 0;
    padding: clamp(16px, 2vw, 22px) 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

body.home-index .home-proof-list li {
    min-width: 0;
}

body.home-index .home-proof-list strong,
body.home-index .home-proof-list span {
    display: block;
}

body.home-index .home-proof-list strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 0.82rem;
    line-height: 1.3;
}

body.home-index .home-proof-list span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
    line-height: 1.45;
}

body.home-index .home-hero-card,
body.home-index .home-feature-card,
body.home-index .home-person-card,
body.home-index .home-why-grid article,
body.home-index .home-cta-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.095);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.home-index .home-hero-card {
    position: relative;
    min-width: 0;
    padding: clamp(24px, 3vw, 36px);
    overflow: hidden;
    border-radius: 32px 32px 32px 8px;
}

body.home-index .home-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 0%, rgba(204, 164, 59, 0.25), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 46%);
    pointer-events: none;
}

body.home-index .home-hero-card > * {
    position: relative;
    z-index: 1;
}

body.home-index .home-hero-card-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

body.home-index .home-card-label {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    color: var(--accent-light);
    background: rgba(204, 164, 59, 0.1);
    border: 1px solid rgba(204, 164, 59, 0.34);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

body.home-index .home-card-mark {
    color: rgba(255, 255, 255, 0.12);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 0.8;
}

body.home-index .home-hero-card-quote {
    margin: clamp(22px, 2.8vw, 32px) 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.48rem, 2.15vw, 2.05rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

body.home-index .home-promise-list {
    display: flex;
    flex-direction: column;
    
}

body.home-index .home-promise-list > div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    
}

body.home-index .home-promise-index {
    margin-top: 8px;
    width: 90%;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

body.home-index .home-promise-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.84rem;
    line-height: 1.55;
}

body.home-index .home-promise-list strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 0.92rem;
}

body.home-index .home-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: var(--accent-light);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

body.home-index .home-card-link span {
    transition: transform 0.25s ease;
}

body.home-index .home-card-link:hover span {
    transform: translateX(4px);
}

body.home-index .home-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

body.home-index .home-scroll-cue i {
    position: relative;
    width: 1px;
    height: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
}

body.home-index .home-scroll-cue i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent-light);
    transform: translateY(-100%);
    animation: homeScrollCue 2.1s ease-in-out infinite;
}

@keyframes homeScrollCue {
    0% { transform: translateY(-100%); }
    48%, 62% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

body.home-index .home-section {
    position: relative;
    padding-top: var(--home-section-space);
    padding-bottom: var(--home-section-space);
}

body.home-index .home-section + .home-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 1180px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
    transform: translateX(-50%);
}

body.home-index .home-section-header {
    width: min(100%, 820px);
    margin: 0 auto clamp(28px, 4vw, 48px);
    text-align: center;
}

body.home-index .home-section-header-left {
    margin-left: 0;
    text-align: left;
}

body.home-index .home-section-header h2,
body.home-index .home-cta-panel h2 {
    margin: 10px 0 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.35rem, 4.8vw, 4.65rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

body.home-index .home-section-header p:not(.home-kicker),
body.home-index .home-cta-panel p {
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Lato", sans-serif;
    font-size: clamp(0.96rem, 1.35vw, 1.08rem);
    font-weight: 300;
    line-height: 1.7;
}

body.home-index .home-section-header-left p:not(.home-kicker) {
    margin-left: 0;
}


body.home-index .home-news-section {
    padding-top: clamp(42px, 5vw, 68px);
}

body.home-index .home-news-section #announcement-grid {
    width: min(100%, 1120px);
    min-height: 0;
    height: auto;
    max-height: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
    gap: clamp(18px, 2.8vw, 30px);
    align-items: stretch;
    justify-items: center;
    overflow: visible;
}

body.home-index .home-news-section .announcement-card {
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.home-index .home-news-section .announcement-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

body.home-index .home-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: clamp(18px, 2.4vw, 28px);
}

body.home-index .home-feature-card {
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--home-card-radius);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.home-index .home-feature-card-large {
    grid-row: 1 / 3;
}

body.home-index .home-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(204, 164, 59, 0.3);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
}

body.home-index .home-feature-image {
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 8.7;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.26);
}

body.home-index .home-feature-card-large .home-feature-image {
    aspect-ratio: 16 / 10;
}

body.home-index .home-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.56), transparent 58%);
    pointer-events: none;
}

body.home-index .home-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-index .home-feature-card:hover .home-feature-image img {
    transform: scale(1.045);
}

body.home-index .home-feature-content {
    min-width: 0;
    padding: clamp(22px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

body.home-index .home-feature-number {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 15px;
    color: var(--accent-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.home-index .home-feature-card h3,
body.home-index .home-person-card h3,
body.home-index .home-why-grid h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.3rem, 2.1vw, 2rem);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.025em;
}
body.home-index .home-feature-card p,
body.home-index .home-person-card p,
body.home-index .home-why-grid p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Lato", sans-serif;
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.68;
    
}
body.home-index .home-person-card p.biographie,
body.home-index .home-person-card p.home-person-signature {
    margin: 14px 0 0 30%;
}

body.home-index .home-feature-note {
    margin-top: auto !important;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.52) !important;
    font-size: 0.8rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.home-index .home-team-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
    align-items: end;
    gap: 42px;
    margin-bottom: clamp(28px, 4vw, 48px);
}

body.home-index .home-team-heading .home-section-header {
    margin-bottom: 0;
}

body.home-index .home-team-intro {
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.96rem;
    line-height: 1.7;
}

body.home-index .home-team-grid {
    gap: clamp(18px, 2.4vw, 28px);
}

body.home-index .home-person-card {
    position: relative;
    min-width: 0;
    min-height: 340px;
    padding: clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--home-card-radius);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

body.home-index .home-person-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -68px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(204, 164, 59, 0.13);
    border-radius: 50%;
}

body.home-index .home-person-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 164, 59, 0.3);
}

body.home-index .home-person-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: auto;
}

body.home-index .home-person-number {
    color: rgba(255, 255, 255, 0.16);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 0.82;
    margin-left: 30%;
}

body.home-index .home-person-role {
    max-width: 150px;
    padding: 7px 10px;
    color: var(--accent-light);
    background: rgba(204, 164, 59, 0.08);
    border: 1px solid rgba(204, 164, 59, 0.28);
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

body.home-index .home-person-card h3 {
    margin-top: 54px;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    margin-left: 30%;
}

body.home-index .home-person-signature {
    color: var(--accent-light) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    margin-left: 30%;
}

body.home-index .home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
}

body.home-index .home-why-grid article {
    min-width: 0;
    min-height: 250px;
    padding: clamp(22px, 2.7vw, 30px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

body.home-index .home-why-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(204, 164, 59, 0.3);
}

body.home-index .home-why-symbol {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    color: var(--accent-light);
    background: rgba(204, 164, 59, 0.09);
    object-fit: contain;
    border: 1px solid rgba(204, 164, 59, 0.28);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 900;
}
body.home-index .home-why-symbol img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}
body.home-index .home-why-grid h3 {
    margin-top: 42px;
    font-size: 1.28rem;
}

body.home-index .home-cta-section {
    padding-bottom: max(124px, calc(92px + env(safe-area-inset-bottom, 0px)));
}

body.home-index .home-cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(34px, 5vw, 64px);
    padding: clamp(34px, 5vw, 58px);
    overflow: hidden;
    border-color: rgba(204, 164, 59, 0.24);
    border-radius: 34px;
}

body.home-index .home-cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 8% 12%, rgba(204, 164, 59, 0.2), transparent 30%);
    pointer-events: none;
}

body.home-index .home-cta-panel > * {
    position: relative;
    z-index: 1;
}

body.home-index .home-cta-copy {
    max-width: 760px;
}

body.home-index .home-cta-panel h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

body.home-index .home-cta-panel p:not(.home-kicker) {
    margin-left: 0;
}

body.home-index .home-cta-actions {
    justify-content: flex-end;
}

@media (min-width: 1180px) {
    body.home-index .home-feature-card:not(.home-feature-card-large) {
        display: grid;
        grid-template-columns: minmax(145px, 0.82fr) minmax(0, 1.18fr);
    }

    body.home-index .home-feature-card:not(.home-feature-card-large) .home-feature-image {
        height: 100%;
        aspect-ratio: auto;
    }

    body.home-index .home-feature-card:not(.home-feature-card-large) .home-feature-content {
        padding: 24px;
    }

    body.home-index .home-feature-card:not(.home-feature-card-large) h3 {
        font-size: clamp(1.22rem, 1.55vw, 1.6rem);
    }
}


@media (min-width: 700px) and (max-width: 1179px) {
    body.home-index {
        --home-section-space: clamp(56px, 8vw, 86px);
        --home-card-radius: 24px;
    }

    body.home-index .home-hero-section {
        min-height: auto;
        padding: clamp(112px, 12vw, 142px) var(--side-space) clamp(80px, 9vw, 104px);
    }

    body.home-index .home-hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
        gap: clamp(28px, 4vw, 48px);
    }

    body.home-index .home-title {
        font-size: clamp(3rem, 7vw, 4.8rem);
    }

    body.home-index .home-proof-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.home-index .home-proof-list li {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 12px;
    }

    body.home-index .home-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    body.home-index .home-feature-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
        display: grid;
        grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    }

    body.home-index .home-feature-card-large .home-feature-image {
        height: 100%;
        aspect-ratio: auto;
    }

    body.home-index .home-team-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body.home-index .home-team-intro {
        max-width: 720px;
    }

    body.home-index .home-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-index .home-person-card:last-child {
        grid-column: 1 / -1;
        min-height: 280px;
    }

    body.home-index .home-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-index .home-why-grid article {
        min-height: 230px;
    }

    body.home-index .home-hero-card,
    body.home-index .home-feature-card,
    body.home-index .home-person-card,
    body.home-index .home-why-grid article,
    body.home-index .home-cta-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
    }
}

@media (min-width: 700px) and (max-width: 960px) {
    body.home-index .home-hero-shell {
        grid-template-columns: 1fr;
    }

    body.home-index .home-hero-copy {
        max-width: 820px;
    }

    body.home-index .home-proof-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    body.home-index .home-proof-list li {
        display: block;
    }

    body.home-index .home-hero-card {
        display: grid;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 0 30px;
        border-radius: 28px;
    }

    body.home-index .home-hero-card-topline,
    body.home-index .home-hero-card-quote,
    body.home-index .home-card-link {
        grid-column: 1;
    }

    body.home-index .home-promise-list {
        grid-column: 2;
        grid-row: 1 / 4;
    }

    body.home-index .home-hero-card-quote {
        margin-bottom: 24px;
    }

    body.home-index .home-scroll-cue {
        display: none;
    }

    body.home-index .home-cta-panel {
        grid-template-columns: 1fr;
    }

    body.home-index .home-cta-actions {
        justify-content: flex-start;
    }
}


@media (max-width: 699px) {
    body.home-index {
        --home-section-space: 54px;
        --home-card-radius: 20px;
    }

    body.home-index .home-main {
        overflow: visible;
    }

    body.home-index .home-hero-section {
        min-height: auto;
        display: block;
        padding: clamp(42px, 9vw, 64px) var(--side-space) 66px;
    }

    body.home-index .home-hero-section::before,
    body.home-index .home-scroll-cue {
        display: none;
    }

    body.home-index .home-hero-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    body.home-index .home-hero-copy,
    body.home-index .home-title,
    body.home-index .home-lead,
    body.home-index .home-section-header,
    body.home-index .home-section-header-left {
        align-items: center;
        text-align: center;
    }

    body.home-index .home-title {
        font-size: clamp(2.55rem, 12.8vw, 4rem);
        line-height: 0.94;
    }

    body.home-index .home-lead {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    body.home-index .home-actions,
    body.home-index .home-cta-actions {
        width: 100%;
        justify-content: center;
    }

    body.home-index .btn-carte,
    body.home-index .btn-tel,
    body.home-index .home-btn-secondary {
        width: min(100%, 310px);
    }

    body.home-index .home-proof-list {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    body.home-index .home-proof-list li {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 12px;
    }

    body.home-index .home-proof-list strong {
        margin: 0;
    }

    body.home-index .home-hero-card {
        padding: 24px 20px;
        border-radius: 24px 24px 24px 7px;
    }

    body.home-index .home-card-mark {
        font-size: 2.7rem;
    }

    body.home-index .home-hero-card-quote {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    body.home-index .home-section {
        width: 100%;
        padding-right: var(--side-space);
        padding-left: var(--side-space);
    }

    body.home-index .home-section-header {
        margin-bottom: 26px;
    }

    body.home-index .home-section-header h2,
    body.home-index .home-cta-panel h2 {
        font-size: clamp(2rem, 9.5vw, 3rem);
        line-height: 1.04;
    }

    body.home-index .home-section-header p:not(.home-kicker),
    body.home-index .home-section-header-left p:not(.home-kicker) {
        margin-right: auto;
        margin-left: auto;
    }

    body.home-index .home-news-section #announcement-grid,
    body.home-index .home-story-grid,
    body.home-index .home-team-grid,
    body.home-index .home-why-grid {
        grid-template-columns: 1fr;
    }

    body.home-index .home-feature-card-large,
    body.home-index .home-person-card:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    body.home-index .home-feature-image,
    body.home-index .home-feature-card-large .home-feature-image {
        aspect-ratio: 16 / 9.5;
    }

    body.home-index .home-feature-content {
        padding: 22px 20px 24px;
    }

    body.home-index .home-feature-note {
        margin-top: 20px !important;
    }

    body.home-index .home-team-heading {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    body.home-index .home-team-intro {
        margin-inline: auto;
        text-align: center;
    }

    body.home-index .home-person-card {
        min-height: 300px;
        padding: 22px 20px;
    }

    body.home-index .home-person-card h3 {
        margin-top: 42px;
    }

    body.home-index .home-why-grid article {
        min-height: 220px;
        padding: 22px 20px;
    }

    body.home-index .home-why-grid h3 {
        margin-top: 32px;
    }

    body.home-index .home-cta-section {
        padding-bottom: max(118px, calc(86px + env(safe-area-inset-bottom, 0px)));
    }

    body.home-index .home-cta-panel {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px 20px;
        border-radius: 24px;
        text-align: center;
    }

    body.home-index .home-cta-panel p:not(.home-kicker) {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 420px) {
    body.home-index .home-title {
        font-size: clamp(2.25rem, 12.2vw, 3rem);
    }

    body.home-index .home-proof-list li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    body.home-index .home-hero-card-topline {
        align-items: flex-start;
    }

    body.home-index .home-card-label {
        max-width: 170px;
        line-height: 1.3;
    }

    body.home-index .home-promise-list > div {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
    }

    body.home-index .home-person-role {
        max-width: 126px;
        font-size: 0.61rem;
    }
}

@media (hover: none) {
    body.home-index .home-feature-card:hover,
    body.home-index .home-person-card:hover,
    body.home-index .home-why-grid article:hover,
    body.home-index .announcement-card:hover,
    body.home-index .announcement-card:hover img {
        transform: none;
    }
}

@media (prefers-reduced-motion: no-preference) {
    body.home-index .scroll-reveal {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0ms);
    }

    body.home-index .scroll-reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-index .home-scroll-cue i::after {
        animation: none;
        transform: none;
    }
}


body:not(.home-index) .section-title {
    font-size: clamp(1.55rem, 3.2vw, 2.05rem);
    line-height: 1.08;
    margin-bottom: clamp(14px, 2vh, 22px);
    letter-spacing: 1.2px;
}

body:not(.home-index) .luxe-title {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.05;
    margin-bottom: clamp(10px, 1.7vh, 18px);
    letter-spacing: 1.4px;
}

body:not(.home-index) .luxe-kicker {
    font-size: 0.76rem;
    margin-bottom: 8px;
}

body:not(.home-index) .luxe-subtitle {
    max-width: 760px;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: clamp(16px, 2.2vh, 22px);
}

body:not(.home-index) .page-luxe main, body:not(.home-index).page-luxe main, body:not(.home-index) .luxe-main, body:not(.home-index).background_horaire main, body:not(.home-index).background_contact main, body:not(.home-index).contact-page main {
    padding-top: calc(var(--desktop-header-space) + 28px);
    padding-bottom: max(70px, calc(52px + env(safe-area-inset-bottom, 0px)));
}

body:not(.home-index) .luxe-panel {
    width: min(900px, 94vw);
    max-width: 900px;
    padding: clamp(18px, 2.2vw, 28px);
    border-radius: 16px;
}

body:not(.home-index) .contact-panel {
    width: min(960px, 94vw);
    max-width: 960px;
}

body:not(.home-index) .schedule-modern {
    max-width: 800px;
    gap: 9px;
    margin-bottom: 20px;
}

body:not(.home-index) .schedule-modern-row {
    min-height: 0;
    padding: 10px 13px;
    border-radius: 11px;
    gap: 12px;
}

body:not(.home-index) .schedule-modern-row strong {
    font-size: 0.92rem;
}

body:not(.home-index) .schedule-modern-row small {
    font-size: 0.72rem;
}

body:not(.home-index) .schedule-modern-row span {
    font-size: 0.86rem;
}

body:not(.home-index) .luxe-info-grid {
    max-width: 800px;
    gap: 12px;
    margin-bottom: 18px;
}

body:not(.home-index) .luxe-info-grid article {
    padding: 13px 15px;
    border-radius: 12px;
}

body:not(.home-index) .luxe-info-grid h3 {
    font-size: 0.92rem;
    margin-bottom: 6px;
}

body:not(.home-index) .luxe-info-grid p {
    font-size: 0.82rem;
    line-height: 1.45;
}

body:not(.home-index) .luxe-btn {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 0.84rem;
}

body:not(.home-index) .contact-layout-modern {
    gap: 18px;
}

body:not(.home-index) .contact-card-modern, body:not(.home-index) .contact-form-modern {
    padding: 17px;
    border-radius: 14px;
}

body:not(.home-index) .contact-card-modern h2, body:not(.home-index) .contact-form-modern h2 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

body:not(.home-index) .contact-list-modern {
    gap: 8px;
    margin-bottom: 15px;
}

body:not(.home-index) .contact-list-modern a {
    padding: 10px 11px;
    border-radius: 10px;
}

body:not(.home-index) .form-field-modern {
    margin-bottom: 10px;
}

body:not(.home-index) .form-field-modern label {
    font-size: 0.76rem;
    margin-bottom: 5px;
}

body:not(.home-index) .form-field-modern input, body:not(.home-index) .form-field-modern select, body:not(.home-index) .form-field-modern textarea {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 0.84rem;
    border-radius: 8px;
}

body:not(.home-index) .form-field-modern textarea {
    min-height: 100px;
}

body:not(.home-index).background_res .booking-section {
    width: min(920px, calc(100vw - 2 * var(--desktop-side-space)));
    max-width: 920px;
    gap: 14px 18px;
}

body:not(.home-index).background_res .capacity-box {
    padding: 13px 14px;
    margin-bottom: 12px;
    border-radius: 10px;
}

body:not(.home-index).background_res .capacity-box h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

body:not(.home-index).background_res .capacity-service-row, body:not(.home-index).background_res .service-capacity-card {
    padding: 9px 10px;
    border-radius: 8px;
}

body:not(.home-index).background_res .capacity-service-header, body:not(.home-index).background_res .service-capacity-header {
    font-size: 0.8rem;
    margin-bottom: 6px;
}

body:not(.home-index).background_res #booking-form {
    gap: 8px 12px;
}

body:not(.home-index).background_res .form-group {
    margin-bottom: 9px;
}

body:not(.home-index).background_res .form-group label {
    font-size: 0.76rem;
    margin-bottom: 4px;
}

body:not(.home-index).background_res input, body:not(.home-index).background_res select, body:not(.home-index).background_res textarea, body:not(.home-index).background_res #service, body:not(.home-index).background_res #date, body:not(.home-index).background_res #name, body:not(.home-index).background_res #phone, body:not(.home-index).background_res #notes {
    min-height: 37px;
    padding: 8px 10px;
    font-size: 0.84rem;
    border-radius: 7px;
}

body:not(.home-index).background_res #notes {
    min-height: 72px;
}

body:not(.home-index).background_res .stepper-wrapper, body:not(.home-index).background_res .stepper-wrapper input, body:not(.home-index).background_res .stepper-btn {
    height: 37px;
    min-height: 37px;
}

body:not(.home-index).background_res .stepper-btn {
    width: 37px;
    font-size: 1rem;
}

body:not(.home-index).background_res .legal-consent {
    font-size: 0.76rem;
    line-height: 1.32;
    margin: 8px 0;
}

body:not(.home-index).background_res .reservation-validity-note {
    font-size: 0.72rem;
    line-height: 1.32;
    margin: 6px 0 10px;
}

body:not(.home-index).background_res .btn-submit-animated {
    min-height: 39px;
    padding: 9px 12px;
    font-size: 0.82rem;
}

body:not(.home-index).background_res input[type="checkbox"], body:not(.home-index).background_res #terms-accepted, body:not(.home-index).background_res #terms_accepted {
    -webkit-appearance: checkbox;
    appearance: checkbox;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
    margin: 0 8px 0 0;
    display: inline-block;
    visibility: visible;
    opacity: 1;
    accent-color: var(--accent);
    vertical-align: middle;
}

body:not(.home-index).background_menu .menu-page-main {
    padding-top: calc(var(--desktop-header-space) + 28px);
    padding-bottom: max(70px, calc(52px + env(safe-area-inset-bottom, 0px)));
}

body:not(.home-index).background_menu .notrecarte {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    margin-bottom: 18px;
}

body:not(.home-index).background_menu .menu-carousel-container {
    width: min(100%, 460px);
    max-width: min(88vw, 460px);
}

body:not(.home-index).background_menu .menu-slide {
    max-height: min(65svh, 620px);
    object-fit: contain;
}

body:not(.home-index).background_menu .menu-info-notes {
    max-width: 640px;
    margin-top: 20px;
}

body:not(.home-index).background_menu .menu-info-notes .tip-text {
    font-size: 0.9rem;
}

body:not(.home-index).background_menu .menu-info-notes .allergen-text {
    font-size: 0.82rem;
}


@keyframes cardFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0) scale(0.992);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes pageBackgroundIntro {
    from {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(1.018);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes progressSparkle {
    0%,
    100% {
        opacity: 0.45;
        transform: translate(50%, -50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(50%, -50%) scale(1.25);
    }
}


@media screen and (min-width: 1180px) {
    .background_acceuil::after,
    .background_res::after,
    .background_menu::after,
    .background_horaire::after,
    .background_contact::after,
    .contact-page::after {
        position: fixed;
        inset: -2vh -2vw;
        z-index: -2;
        background-image:
            var(--bg-radial-gold),
            var(--page-bg-overlay, var(--bg-overlay-default)),
            var(--page-bg-image);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        animation: pageBackgroundIntro 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .background_acceuil::before,
    .background_res::before,
    .background_menu::before,
    .background_horaire::before,
    .background_contact::before,
    .contact-page::before {
        position: fixed;
        inset: 0;
        z-index: -1;
        background: radial-gradient(
            circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(204, 164, 59, 0.085),
            transparent 30%
        );
        opacity: 0.9;
    }
}

@media (min-width: 769px) {

body:not(.background_acceuil) {
        height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
        overscroll-behavior: none;
    }

.hero, .booking-section, .page-luxe main, .luxe-main, .menu-page-main {
        padding-top: calc(var(--desktop-header-space) + clamp(16px, 3vh, 34px));
        padding-bottom: clamp(18px, 3vh, 32px);
    }

.hero:not(.hero_acceuil) {
        min-height: 100dvh;
        max-height: 100dvh;
    }

.booking-section, .page-luxe main, .luxe-main, .menu-page-main {
        max-height: 100dvh;
        overflow: visible;
    }

.booking-section {
        display: grid;
        grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
        gap: clamp(12px, 1.8vw, 24px);
        align-items: start;
        width: min(1060px, calc(100vw - 2 * var(--desktop-side-space)));
        max-width: 1060px;
        margin: 0 auto;
    }

.booking-section .section-title {
        grid-column: 1 / -1;
    }

#booking-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(7px, 1.1vh, 12px) clamp(10px, 1.6vw, 16px);
    }

#booking-form .form-group {
        margin-bottom: 0;
        min-width: 0;
    }

#booking-form .form-group:has(textarea), #booking-form button, #booking-message, .success-message, .full-message {
        grid-column: 1 / -1;
    }

.page-luxe main, .luxe-main {
        align-items: center;
    }

.luxe-panel {
        max-height: calc(100dvh - var(--desktop-header-space) - 36px);
        overflow: hidden;
    }

.contact-panel {
        max-height: calc(100dvh - var(--desktop-header-space) - 36px);
    }

.contact-layout-modern {
        grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    }

.horaires-page .schedule-modern {
        max-width: min(1050px, 100%);
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: repeat(4, minmax(42px, auto));
        grid-auto-flow: row;
        gap: clamp(7px, 1.1vh, 12px) clamp(12px, 1.7vw, 22px);
    }

.horaires-page .schedule-modern-row:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

.horaires-page .schedule-modern-row:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

.horaires-page .schedule-modern-row:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

.horaires-page .schedule-modern-row:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
    }

.horaires-page .schedule-modern-row:nth-child(5) {
        grid-column: 2;
        grid-row: 1;
    }

.horaires-page .schedule-modern-row:nth-child(6) {
        grid-column: 2;
        grid-row: 2;
    }

.horaires-page .schedule-modern-row:nth-child(7) {
        grid-column: 2;
        grid-row: 3;
    }


.mobile_text1, #global-address-footer {
        font-size: 0.86rem;
    }


}

@media (min-width: 769px) and (max-height: 740px) {

nav {
        padding-top: 7px;
        padding-bottom: 7px;
    }

.hero {
        gap: 8px;
    }

.first_d {
        max-height: 14vh;
        font-size: clamp(0.72rem, 1.45vh, 0.9rem);
        overflow: hidden;
    }

.menu-carousel-container {
        width: min(100%, 360px, 48vh);
        max-width: min(360px, 48vh);
    }

.menu-slide {
        max-height: 48vh;
    }

.capacity-box, .contact-card-modern, .contact-form-modern, .luxe-panel {
        padding: 12px;
    }

.schedule-modern-row {
        padding: 8px 10px;
    }

}


@media screen and (min-width: 1180px) {

body.background_menu .menu-page-main {
        padding-bottom: max(105px, calc(82px + env(safe-area-inset-bottom, 0px)));
    }

body.background_menu .menu-carousel-container {
        width: min(100%, 520px);
        max-width: min(88vw, 520px);
    }

body.background_menu .menu-slide {
        max-height: min(62svh, 650px);
    }

body.background_menu .menu-info-notes {
        margin-top: 6px;
        transform: translateY(-18px);
    }

body.background_menu .menu-info-notes .tip-text {
        margin-bottom: 6px;
        font-size: 0.92rem;
        line-height: 1.3;
    }

body.background_menu .menu-info-notes .allergen-text {
        padding-top: 7px;
        font-size: 0.84rem;
        line-height: 1.35;
    }

}


@media screen and (max-width: 1179px) {
    .background_acceuil,
    .background_res,
    .background_menu,
    .background_horaire,
    .background_contact,
    .contact-page {
        --mobile-bg-width: min(122vw, 1080px);
        --mobile-bg-height: clamp(310px, 68vw, 720px);
        min-height: 100%;
        background: #111111;
    }

    .background_acceuil::before,
    .background_res::before,
    .background_menu::before,
    .background_horaire::before,
    .background_contact::before,
    .contact-page::before,
    .background_acceuil::after,
    .background_res::after,
    .background_menu::after,
    .background_horaire::after,
    .background_contact::after,
    .contact-page::after {
        position: absolute;
        left: 0;
        width: 100%;
        height: var(--mobile-bg-height);
        z-index: -2;
        background-image:
            var(--page-bg-overlay, var(--bg-overlay-default)),
            var(--page-bg-image);
        background-repeat: no-repeat;
        background-size: var(--mobile-bg-width) auto;
    }

    .background_acceuil::before,
    .background_res::before,
    .background_menu::before,
    .background_horaire::before,
    .background_contact::before,
    .contact-page::before {
        top: 0;
        background-position: center top;
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 64%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 64%, transparent 100%);
    }

    .background_acceuil::after,
    .background_res::after,
    .background_menu::after,
    .background_horaire::after,
    .background_contact::after,
    .contact-page::after {
        bottom: 0;
        background-position: center bottom;
        -webkit-mask-image: linear-gradient(to top, #000 0%, #000 64%, transparent 100%);
        mask-image: linear-gradient(to top, #000 0%, #000 64%, transparent 100%);
    }
}

@media screen and (max-width: 700px) {
    .background_acceuil,
    .background_res,
    .background_menu,
    .background_horaire,
    .background_contact,
    .contact-page {
        --mobile-bg-width: 112vw;
        --mobile-bg-height: clamp(270px, 74vw, 560px);
    }
}

@media screen and (max-width: 420px) {
    .background_acceuil,
    .background_res,
    .background_menu,
    .background_horaire,
    .background_contact,
    .contact-page {
        --mobile-bg-width: 106vw;
        --mobile-bg-height: clamp(245px, 78vw, 440px);
    }
}

@media (min-width: 769px) and (max-width: 1179px) {

nav {
        flex-wrap: wrap;
    }

.nav-links {
        width: 100%;
        flex: 1 1 100%;
    }


.booking-section {
        grid-template-columns: 1fr 1fr;
    }

.contact-layout-modern {
        grid-template-columns: 1fr;
    }

}


@media screen and (max-width: 900px) {

html, body {
        height: auto;
        min-height: 100%;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y pinch-zoom;
    }

header {
        position: sticky;
        top: 0;
    }

nav {
        padding: 10px 12px;
        flex-wrap: wrap;
        gap: 10px;
    }

.logo-icon {
        width: 34px;
    }

.logo {
        flex-basis: calc(100% - 60px);
        font-size: 1rem;
        white-space: normal;
    }

.nav-links {
        flex: 1 1 100%;
        gap: 6px 12px;
        flex-wrap: wrap;
    }

.nav-links a {
        min-height: 30px;
        font-size: 0.78rem;
    }

.hero, .menu-page-main, .page-luxe main, .luxe-main {
        min-height: auto;
        height: auto;
        max-height: none;
        padding: clamp(28px, 6vw, 54px) var(--side-space) var(--bottom-safe-space);
        overflow: visible;
    }

.hero {
        gap: 18px;
    }

.hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
    }

.hero h2 {
        font-size: clamp(1.15rem, 6vw, 1.7rem);
    }

.first_d {
        font-size: 0.96rem;
        line-height: 1.5;
    }

.btn-carte, .btn-tel {
        width: min(100%, 260px);
        font-size: 1rem;
    }

#announcement-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 18px 14px 40px 14px;
    }

.announcement-card {
        width: min(100%, 360px);
        max-width: 360px;
        height: auto;
        max-height: none;
    }

.announcement-card:hover, .announcement-card:hover img {
        transform: none;
    }

.announcement-card img {
        height: auto;
        max-height: none;
        aspect-ratio: 16 / 9;
    }

.card-content {
        height: auto;
        max-height: none;
        overflow: visible;
    }

body.background_acceuil, html:has(body.background_acceuil) {
        height: auto;
        min-height: 100dvh;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

body.background_acceuil::-webkit-scrollbar, html:has(body.background_acceuil)::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }


.menu-section, .booking-section, .contact-section, .horaires-section {
        width: 100%;
        max-width: 100%;
        margin: 24px auto var(--bottom-safe-space);
        padding: 0 var(--side-space);
    }

.booking-section {
        width: 100%;
        max-width: 100%;
    }

.capacity-service-header, .service-capacity-header, .schedule-modern-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

.capacity-service-header span:last-child, .capacity-pill, .schedule-modern-row span {
        text-align: left;
        white-space: normal;
    }

.contact-layout-modern, .contact-form-grid, .luxe-info-grid {
        grid-template-columns: 1fr;
    }

.luxe-panel, .contact-card-modern, .contact-form-modern {
        padding: 16px;
    }

.luxe-actions, .contact-actions {
        width: 100%;
        flex-direction: column;
    }

.luxe-btn {
        width: 100%;
    }

.menu-carousel-container {
        width: min(100%, 520px);
        max-width: 96vw;
        aspect-ratio: auto;
        overflow: hidden;
        transform: none;
        animation: none;
        opacity: 1;
    }

.menu-slide {
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: auto;
        object-fit: contain;
        transform: none;
        animation: none;
        transition: none;
        will-change: auto;
    }

.menu-carousel-container:hover, .menu-slide:hover, .menu-slide:active {
        transform: none;
    }

.menu-info-notes {
        animation: none;
        opacity: 1;
        transform: none;
    }

input, select, textarea {
        font-size: 16px;
    }

.mobile_text1, #global-address-footer {
        max-width: calc(100vw - 24px);
    }


body:not(.home-index) .page-luxe main, body:not(.home-index).page-luxe main, body:not(.home-index) .luxe-main, body:not(.home-index).background_horaire main, body:not(.home-index).background_contact main, body:not(.home-index).contact-page main, body:not(.home-index).background_menu .menu-page-main {
        padding-top: 24px;
        padding-bottom: max(88px, calc(68px + env(safe-area-inset-bottom, 0px)));
    }

body:not(.home-index) .luxe-panel {
        width: 94vw;
        padding: 16px;
    }

body:not(.home-index).background_res .booking-section {
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 22px auto max(90px, calc(70px + env(safe-area-inset-bottom, 0px))) auto;
        padding: 0 var(--side-space);
    }

body:not(.home-index).background_res input, body:not(.home-index).background_res select, body:not(.home-index).background_res textarea, body:not(.home-index).background_res #service, body:not(.home-index).background_res #date, body:not(.home-index).background_res #name, body:not(.home-index).background_res #phone, body:not(.home-index).background_res #notes, body:not(.home-index) .form-field-modern input, body:not(.home-index) .form-field-modern select, body:not(.home-index) .form-field-modern textarea {
        font-size: 16px;
        min-height: 42px;
    }

body:not(.home-index).background_res .stepper-wrapper, body:not(.home-index).background_res .stepper-wrapper input, body:not(.home-index).background_res .stepper-btn {
        height: 42px;
        min-height: 42px;
    }

body:not(.home-index).background_res .stepper-btn {
        width: 42px;
    }

body:not(.home-index).background_menu .menu-carousel-container {
        width: min(100%, 430px);
        max-width: 92vw;
    }

body:not(.home-index).background_menu .menu-slide {
        max-height: none;
    }

body:not(.home-index) .luxe-title {
        font-size: 1.65rem;
    }

body:not(.home-index) .schedule-modern-row {
        padding: 10px 12px;
    }

}

@media screen and (min-width: 700px) and (max-width: 1179px) {

body.background_res {
        height: auto;
        min-height: 100dvh;
        max-height: none;
        overflow-y: auto;
    }

body.background_res .booking-section {
        width: min(980px, calc(100vw - 28px));
        max-width: 980px;
        gap: 8px 14px;
        padding-top: calc(var(--desktop-header-space) + 8px);
        padding-bottom: 24px;
        grid-template-columns: minmax(250px, 0.78fr) minmax(330px, 1fr);
    }

body.background_res .booking-section .section-title {
        margin-bottom: 6px;
        font-size: clamp(1.45rem, 3vw, 1.85rem);
        line-height: 1.05;
    }

body.background_res .capacity-box {
        padding: 10px 12px;
        margin-bottom: 8px;
        border-radius: 9px;
    }

body.background_res .capacity-box h3 {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

body.background_res .capacity-overview {
        gap: 7px;
    }

body.background_res .capacity-service-row {
        padding: 8px 9px;
        border-radius: 8px;
    }

body.background_res .capacity-service-header {
        margin-bottom: 5px;
        gap: 6px;
        font-size: 0.76rem;
        line-height: 1.2;
    }

body.background_res #capacity-status, body.background_res .capacity-date, body.background_res #booking-message {
        font-size: 0.72rem;
        line-height: 1.25;
        margin: 0;
    }

body.background_res #booking-form {
        gap: 6px 10px;
    }

body.background_res #booking-form .form-group {
        margin-bottom: 0;
    }

body.background_res .form-group label {
        margin-bottom: 3px;
        font-size: 0.72rem;
        line-height: 1.2;
    }

body.background_res input, body.background_res select, body.background_res textarea, body.background_res #service, body.background_res #date, body.background_res #name, body.background_res #phone, body.background_res #notes {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.8rem;
        border-radius: 7px;
    }

body.background_res #notes {
        min-height: 50px;
        max-height: 58px;
    }

body.background_res .stepper-wrapper {
        height: 34px;
    }

body.background_res .stepper-wrapper input {
        height: 34px;
        min-height: 34px;
        font-size: 0.86rem;
    }

body.background_res .stepper-btn {
        width: 34px;
        height: 34px;
        min-height: 34px;
        font-size: 0.95rem;
    }

body.background_res .legal-consent {
        grid-column: 1 / -1;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin: 4px 0 2px 0;
        font-size: 0.68rem;
        line-height: 1.22;
    }

body.background_res .legal-consent input[type="checkbox"] {
        width: 15px;
        min-width: 15px;
        height: 15px;
        min-height: 15px;
        margin-top: 1px;
        padding: 0;
    }

body.background_res .reservation-validity-note {
        grid-column: 1 / -1;
        margin: 0 0 4px 0;
        font-size: 0.66rem;
        line-height: 1.22;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

body.background_res #submit-btn, body.background_res .btn-submit-animated {
        grid-column: 1 / -1;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 0.78rem;
        border-radius: 7px;
    }


body.background_contact, body.contact-page {
        height: auto;
        min-height: 100dvh;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: auto;
    }

body.background_contact .page-luxe, body.contact-page .page-luxe {
        height: auto;
        min-height: 100dvh;
        max-height: none;
        overflow-y: visible;
    }

body.background_contact main, body.background_contact .luxe-main, body.background_contact .page-luxe main, body.contact-page main, body.contact-page .luxe-main, body.contact-page .page-luxe main {
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
        align-items: flex-start;
        padding-top: calc(var(--desktop-header-space) + 24px);
        padding-bottom: max(110px, calc(80px + env(safe-area-inset-bottom, 0px)));
    }

body.background_contact .luxe-panel, body.background_contact .contact-panel, body.contact-page .luxe-panel, body.contact-page .contact-panel {
        height: auto;
        min-height: 0;
        max-height: none;
        overflow: visible;
    }

body.background_contact .contact-layout-modern, body.contact-page .contact-layout-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

body.background_contact .contact-card-modern, body.background_contact .contact-form-modern, body.contact-page .contact-card-modern, body.contact-page .contact-form-modern {
        height: auto;
        max-height: none;
        overflow: visible;
    }

}


@media screen and (max-width: 420px) {

.mobile_text1.social-footer {
        flex-wrap: wrap;
        border-radius: 16px;
        white-space: normal;
    }

.logo {
        font-size: 0.92rem;
    }

.nav-links a {
        font-size: 0.72rem;
    }

.first_d {
        font-size: 0.9rem;
    }

}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}


.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.background_res .legal-consent {
    grid-column: 1 / -1;
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
    margin: 9px 0 3px !important;
    color: var(--text-muted) !important;
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
}

body.background_res .legal-consent span {
    min-width: 0;
}

body.background_res .legal-consent a {
    color: var(--accent-light);
    text-underline-offset: 3px;
}

body.background_res .reservation-validity-note {
    grid-column: 1 / -1;
}

body.reservation-modal-open {
    overflow: hidden !important;
}

.reservation-modal {
    position: fixed;
    inset: 0;
    z-index: 10000000;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 34px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.reservation-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.reservation-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: default;
}

.reservation-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: min(92dvh, 720px);
    overflow-y: auto;
    padding: clamp(28px, 6vw, 44px);
    color: var(--text-main);
    background:
        radial-gradient(circle at 50% 0%, rgba(204, 164, 59, 0.17), transparent 35%),
        linear-gradient(145deg, rgba(32, 32, 32, 0.98), rgba(18, 18, 18, 0.99));
    border: 1px solid rgba(242, 211, 107, 0.3);
    border-radius: 24px;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
    outline: none;
    transform: translateY(18px) scale(0.96);
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reservation-modal.is-open .reservation-modal__dialog {
    transform: translateY(0) scale(1);
}

.reservation-modal__close {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.reservation-modal__close:hover,
.reservation-modal__close:focus-visible {
    color: var(--accent-light);
    border-color: rgba(204, 164, 59, 0.55);
}

.reservation-success-icon {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.reservation-success-icon::before,
.reservation-success-icon::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(204, 164, 59, 0.28);
    border-radius: 50%;
    animation: reservationSuccessHalo 1.8s ease-out infinite;
}

.reservation-success-icon::after {
    animation-delay: 0.55s;
}

.reservation-success-icon svg {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    overflow: visible;
}

.reservation-success-icon__circle {
    fill: rgba(204, 164, 59, 0.12);
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
}

.reservation-success-icon__check {
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 45;
    stroke-dashoffset: 45;
}

.reservation-modal.is-open .reservation-success-icon__circle {
    animation: reservationCircleDraw 620ms ease 100ms forwards;
}

.reservation-modal.is-open .reservation-success-icon__check {
    animation: reservationCheckDraw 430ms cubic-bezier(0.65, 0, 0.35, 1) 570ms forwards;
}

.reservation-modal__kicker {
    margin: 0 0 8px;
    color: var(--accent-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reservation-modal h2 {
    margin: 0 auto 12px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.55rem, 5vw, 2.25rem);
    line-height: 1.12;
}

.reservation-modal__text {
    max-width: 410px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.94rem;
    line-height: 1.6;
}

.reservation-modal__text strong {
    color: #ffffff;
    font-weight: 700;
}

.reservation-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
}

.reservation-summary > div {
    min-width: 0;
    padding: 13px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
}

.reservation-summary dt {
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reservation-summary dd {
    margin: 0;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.reservation-modal__notice {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.reservation-modal__button {
    width: 100%;
    border: 0;
}

@keyframes reservationCircleDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes reservationCheckDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes reservationSuccessHalo {
    0% { transform: scale(0.82); opacity: 0.72; }
    75%, 100% { transform: scale(1.42); opacity: 0; }
}


body.legal-page {
    min-height: 100dvh;
    height: auto;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.92)),
        var(--bg-site-image) center top / cover fixed no-repeat,
        #111111;
}

body.legal-page .legal-main {
    width: 100%;
    min-height: 100dvh;
    max-height: none;
    align-items: flex-start;
    padding: calc(var(--desktop-header-space) + 54px) var(--side-space) max(70px, calc(48px + env(safe-area-inset-bottom, 0px)));
    overflow: visible;
}

body.legal-page .legal-panel {
    width: min(100%, 940px);
    max-width: 940px;
    max-height: none;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px);
    overflow: visible;
}

.legal-updated {
    margin: -8px 0 20px;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-align: center;
}

.legal-intro {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 42px);
}

.legal-content {
    width: min(100%, 800px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-section {
    width: 100%;
    padding: clamp(17px, 2.5vw, 24px);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 15px;
}

.legal-section h2 {
    margin: 0 0 10px;
    color: var(--accent-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.05rem, 2.4vw, 1.28rem);
    line-height: 1.25;
}

.legal-section p,
.legal-section li {
    color: rgba(255, 255, 255, 0.78);
    font-family: "Lato", "Segoe UI", sans-serif;
    font-size: clamp(0.88rem, 1.6vw, 0.98rem);
    font-weight: 300;
    line-height: 1.72;
}

.legal-section p {
    margin: 0 0 11px;
}

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

.legal-section ul {
    margin: 10px 0 12px;
    padding-left: 1.25rem;
}

.legal-section li + li {
    margin-top: 6px;
}

.legal-section strong {
    color: #ffffff;
}

.legal-callout {
    margin-top: 14px !important;
    padding: 13px 15px;
    color: rgba(255, 255, 255, 0.88) !important;
    background: rgba(204, 164, 59, 0.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
}

.legal-actions {
    width: min(100%, 800px);
    margin: clamp(26px, 4vw, 40px) auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media screen and (max-width: 699px) {
    .reservation-modal__dialog {
        padding: 28px 18px 22px;
        border-radius: 20px;
    }

    .reservation-success-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 14px;
    }

    .reservation-success-icon svg {
        width: 68px;
        height: 68px;
    }

    .reservation-summary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .reservation-summary > div {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        text-align: left;
    }

    .reservation-summary dt {
        margin: 0;
    }

    body.legal-page {
        background-attachment: scroll;
    }

    body.legal-page .legal-main {
        padding-top: calc(var(--desktop-header-space) + 30px);
        padding-right: 12px;
        padding-left: 12px;
    }

    body.legal-page .legal-panel {
        padding: 22px 14px;
        border-radius: 16px;
    }

    .legal-section {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .legal-actions {
        flex-direction: column;
    }

    .legal-actions .luxe-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reservation-success-icon::before,
    .reservation-success-icon::after,
    .reservation-success-icon__circle,
    .reservation-success-icon__check {
        animation: none !important;
    }

    .reservation-success-icon__circle,
    .reservation-success-icon__check {
        stroke-dashoffset: 0;
    }
}


body.home-index {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.home-index::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

@supports selector(html:has(body.home-index)) {
    html:has(body.home-index) {
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    html:has(body.home-index)::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }
}


body.home-index .home-scroll-cue {
    left: 0;
    right: 0;
    width: max-content;
    max-width: calc(100% - 32px);
    margin-inline: auto;
    text-align: center;
    transform: none;
}

body.home-index .home-scroll-cue span {
    display: block;
    width: 100%;
    text-align: center;
}


@media (prefers-reduced-motion: no-preference) {
    body.home-index .home-scroll-cue.scroll-reveal {
        transform: translate3d(0, 20px, 0);
    }

    body.home-index .home-scroll-cue.scroll-reveal.is-visible {
        transform: translate3d(0, 0, 0);
    }
}


body.home-index .home-news-section #announcement-grid {
    align-items: stretch;
}

body.home-index .home-news-section .announcement-card {
    position: relative;
    isolation: isolate;
    height: 100%;
    max-width: 390px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 8%, rgba(204, 164, 59, 0.14), transparent 30%),
        linear-gradient(155deg, rgba(35, 33, 28, 0.98), rgba(16, 16, 16, 0.99));
    border: 1px solid rgba(204, 164, 59, 0.24);
    border-radius: 22px;
    box-shadow:
        0 24px 62px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

body.home-index .home-news-section .announcement-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 18%, transparent 78%, rgba(204, 164, 59, 0.07));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        inset 0 -22px 55px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

body.home-index .home-news-section .announcement-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    z-index: 5;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
    opacity: 0.82;
    pointer-events: none;
}

body.home-index .home-news-section .announcement-card img {
    position: relative;
    z-index: 0;
    border-bottom: 1px solid rgba(204, 164, 59, 0.18);
    filter: saturate(0.92) contrast(1.04) brightness(0.9);
    transform: scale(1.001);
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 420ms ease;
}

body.home-index .home-news-section .card-content {
    position: relative;
    z-index: 2;
    min-height: 205px;
    padding: 22px 22px 24px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(204, 164, 59, 0.045), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 62%);
}

body.home-index .home-news-section .card-content::before {
    content: "Actualité";
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-bottom: 13px;
    padding: 5px 10px;
    color: var(--accent-light);
    background: rgba(204, 164, 59, 0.095);
    border: 1px solid rgba(204, 164, 59, 0.32);
    border-radius: 999px;
    font-size: 0.63rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}

body.home-index .home-news-section .card-content::after {
    content: "Da Giaccio e Lombardo  ·  Bernissart";
    display: block;
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.38);
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.home-index .home-news-section .card-content h3 {
    margin: 0 0 10px;
    color: #f0cb62;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.18rem, 1.6vw, 1.42rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.015em;
    text-align: left;
}

body.home-index .home-news-section .card-content h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 11px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 320ms ease;
}

body.home-index .home-news-section .card-content p {
    width: 100%;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.65;
    text-align: left;
}

@media (hover: hover) and (pointer: fine) {
    body.home-index .home-news-section .announcement-card:hover {
        transform: translateY(-8px);
        border-color: rgba(204, 164, 59, 0.58);
        box-shadow:
            0 34px 86px rgba(0, 0, 0, 0.58),
            0 0 38px rgba(204, 164, 59, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    body.home-index .home-news-section .announcement-card:hover img {
        filter: saturate(1.04) contrast(1.06) brightness(0.96);
        transform: scale(1.055);
    }

    body.home-index .home-news-section .announcement-card:hover .card-content::before {
        color: #14110a;
        background: var(--accent-light);
        border-color: var(--accent-light);
    }

    body.home-index .home-news-section .announcement-card:hover .card-content h3::after {
        width: 72px;
    }
}


@media (min-width: 700px) and (max-width: 1179px) {
    body.home-index .home-news-section {
        padding-right: var(--side-space);
        padding-left: var(--side-space);
    }
}


@media (min-width: 700px) and (max-width: 1024px) {
    body.home-index .home-news-section #announcement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    body.home-index .home-news-section .announcement-card {
        width: 100%;
        max-width: none;
    }

    body.home-index .home-news-section #announcement-grid > .announcement-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: min(100%, 540px);
        justify-self: center;
    }

    body.home-index .home-news-section .card-content {
        min-height: 196px;
        padding: 20px;
    }
}


@media (max-width: 699px) {
    body.home-index .home-news-section #announcement-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0;
    }

    body.home-index .home-news-section .announcement-card {
        width: min(100%, 420px);
        max-width: 420px;
        height: auto;
        border-radius: 19px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44);
    }

    body.home-index .home-news-section .card-content {
        min-height: 180px;
        padding: 19px 18px 21px;
    }

    body.home-index .home-news-section .card-content h3 {
        font-size: 1.18rem;
    }

    body.home-index .home-news-section .card-content p {
        margin-bottom: 16px;
        font-size: 0.91rem;
        line-height: 1.58;
    }

    body.home-index .home-news-section .card-content::after {
        padding-top: 13px;
        font-size: 0.58rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-index .home-news-section .announcement-card,
    body.home-index .home-news-section .announcement-card img,
    body.home-index .home-news-section .card-content::before,
    body.home-index .home-news-section .card-content h3::after {
        transition: none !important;
    }
}


body.reservation-page .section-title {
    position: relative;
    margin-bottom: clamp(12px, 2vh, 22px);
    text-transform: none;
    letter-spacing: 0.025em;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.72);
}

body.reservation-page .section-title::after {
    content: "";
    display: block;
    width: clamp(58px, 8vw, 92px);
    height: 2px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform-origin: center;
    animation: reservationTitleLine 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

body.reservation-page .capacity-box {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(204, 164, 59, 0.11), transparent 34%),
        linear-gradient(145deg, rgba(31, 31, 31, 0.94), rgba(18, 18, 18, 0.94));
    border-color: rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.reservation-page .capacity-box::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    z-index: -1;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 211, 107, 0.65), transparent);
    opacity: 0.8;
}

body.reservation-page .reservation-capacity-card {
    animation: reservationPanelIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

body.reservation-page .reservation-side-column {
    display: flex;
    flex-direction: column;
    align-self: start;
    min-width: 0;
    gap: 12px;
}

body.reservation-page .reservation-side-column .reservation-capacity-card {
    margin-bottom: 0;
}


body.reservation-page .reservation-form-card {
    animation: reservationPanelIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 210ms both;
}

body.reservation-page .capacity-box h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0.02em;
}

body.reservation-page .availability-live-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    background: var(--accent-light);
    border: 2px solid rgba(18, 18, 18, 0.85);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(204, 164, 59, 0.44);
    animation: availabilityPulse 1.9s ease-out infinite;
}

body.reservation-page .capacity-date {
    margin: -2px 0 2px;
    color: rgba(255, 255, 255, 0.64);
}

body.reservation-page .capacity-service-row {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022));
    border-color: rgba(255, 255, 255, 0.075);
    border-radius: 13px;
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

body.reservation-page .capacity-service-row::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-light), rgba(204, 164, 59, 0.18));
    opacity: 0.76;
}

body.reservation-page .capacity-service-row:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(204, 164, 59, 0.085), rgba(255, 255, 255, 0.025));
    border-color: rgba(204, 164, 59, 0.3);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

body.reservation-page .capacity-service-header span:last-child {
    padding: 3px 9px;
    background: rgba(204, 164, 59, 0.08);
    border: 1px solid rgba(204, 164, 59, 0.2);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

body.reservation-page .progress-bar {
    height: 9px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.48);
}

body.reservation-page .progress-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0 38%, rgba(255, 255, 255, 0.10) 50%, transparent 62% 100%);
    transform: translateX(-100%);
    animation: progressTrackSweep 2.8s ease-in-out infinite;
    pointer-events: none;
}

body.reservation-page #progress-fill-midi,
body.reservation-page #progress-fill-soir,
body.reservation-page .progress-fill-dual {
    background-size: 180% 100%;
    transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1), background 280ms ease, box-shadow 280ms ease;
    animation: progressGoldFlow 3.2s linear infinite;
}

body.reservation-page #progress-fill-midi::before,
body.reservation-page #progress-fill-soir::before,
body.reservation-page .progress-fill-dual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 24%, rgba(255, 255, 255, 0.38) 48%, transparent 72%);
    transform: translateX(-120%);
    animation: progressFillShine 2.15s ease-in-out infinite;
}

body.reservation-page #capacity-status,
body.reservation-page #booking-message {
    min-height: 1.35em;
    margin: 0;
}

body.reservation-page #capacity-status::before {
    content: "•";
    margin-right: 7px;
    color: var(--accent);
}

body.reservation-page #booking-form .form-group {
    position: relative;
    min-width: 0;
    padding: 7px 8px 8px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 12px;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body.reservation-page #booking-form .form-group:hover {
    border-color: rgba(204, 164, 59, 0.16);
    background: rgba(204, 164, 59, 0.035);
}

body.reservation-page #booking-form .form-group:focus-within {
    transform: translateY(-2px);
    border-color: rgba(204, 164, 59, 0.42);
    background: rgba(204, 164, 59, 0.055);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

body.reservation-page .form-group label {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 700;
    letter-spacing: 0.018em;
    transition: color 200ms ease;
}

body.reservation-page .form-group:focus-within label {
    color: var(--accent-light);
}

body.reservation-page .form-group input,
body.reservation-page .form-group select,
body.reservation-page .form-group textarea {
    color-scheme: dark;
    background: rgba(8, 8, 8, 0.4);
    border-color: rgba(255, 255, 255, 0.095);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

body.reservation-page .form-group input::placeholder,
body.reservation-page .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

body.reservation-page .form-group input:focus,
body.reservation-page .form-group select:focus,
body.reservation-page .form-group textarea:focus {
    border-color: rgba(242, 211, 107, 0.7);
    box-shadow: 0 0 0 3px rgba(204, 164, 59, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.reservation-page .stepper-wrapper {
    background: rgba(8, 8, 8, 0.42);
    border-color: rgba(255, 255, 255, 0.095);
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

body.reservation-page .form-group:focus-within .stepper-wrapper {
    border-color: rgba(242, 211, 107, 0.66);
    box-shadow: 0 0 0 3px rgba(204, 164, 59, 0.1);
}

body.reservation-page .stepper-btn {
    position: relative;
    overflow: hidden;
    color: var(--accent-light);
    background: rgba(204, 164, 59, 0.06);
}

body.reservation-page .stepper-btn:hover,
body.reservation-page .stepper-btn:focus-visible {
    color: #121212;
    background: var(--accent-light);
    box-shadow: none;
}

body.reservation-page .stepper-btn:active {
    transform: scale(0.92);
}

body.reservation-page .legal-consent {
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 11px;
}

body.reservation-page .legal-consent input[type="checkbox"] {
    accent-color: var(--accent);
}

body.reservation-page .reservation-validity-note {
    padding-left: 10px;
    border-left: 2px solid rgba(204, 164, 59, 0.35);
}

body.reservation-page #submit-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 44px;
    color: #17130a;
    background: linear-gradient(135deg, #b98c22, var(--accent-light) 52%, #c99a2d);
    border: 1px solid rgba(255, 237, 169, 0.55);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(204, 164, 59, 0.18);
    letter-spacing: 0.035em;
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

body.reservation-page #submit-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.55) 48%, transparent 76%);
    transform: translateX(-120%);
    animation: buttonLightPass 3.8s ease-in-out infinite;
}

body.reservation-page #submit-btn:hover:not(:disabled),
body.reservation-page #submit-btn:focus-visible:not(:disabled) {
    transform: translateY(-2px);
    filter: saturate(1.08) brightness(1.05);
    box-shadow: 0 18px 40px rgba(204, 164, 59, 0.3);
}

body.reservation-page #submit-btn:active:not(:disabled) {
    transform: translateY(0) scale(0.99);
}


body.contact-page .contact-panel {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 0%, rgba(204, 164, 59, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(22, 22, 22, 0.92), rgba(13, 13, 13, 0.91));
    border-color: rgba(255, 255, 255, 0.09);
}

body.contact-page .contact-card-modern,
body.contact-page .contact-form-modern {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.085);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

body.contact-page .contact-card-modern {
    animation: contactPanelIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

body.contact-page .contact-form-modern {
    animation: contactPanelIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

body.contact-page .contact-card-modern::before,
body.contact-page .contact-form-modern::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 211, 107, 0.66), transparent);
}

body.contact-page .contact-card-modern h2,
body.contact-page .contact-form-modern h2 {
    font-family: "Playfair Display", Georgia, serif;
    text-transform: none;
    letter-spacing: 0.025em;
}

body.contact-page .contact-list-modern a {
    position: relative;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.25);
    border-color: rgba(255, 255, 255, 0.07);
    transition: transform 230ms ease, border-color 230ms ease, background 230ms ease, box-shadow 230ms ease;
}

body.contact-page .contact-list-modern a::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-light), rgba(204, 164, 59, 0.15));
    transform: scaleY(0.25);
    transform-origin: center;
    opacity: 0.42;
    transition: transform 230ms ease, opacity 230ms ease;
}

body.contact-page .contact-list-modern a:hover,
body.contact-page .contact-list-modern a:focus-visible {
    transform: translateY(-2px);
    background: rgba(204, 164, 59, 0.055);
    border-color: rgba(204, 164, 59, 0.36);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

body.contact-page .contact-list-modern a:hover::after,
body.contact-page .contact-list-modern a:focus-visible::after {
    transform: scaleY(1);
    opacity: 1;
}

body.contact-page .contact-item-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    background: rgba(204, 164, 59, 0.09);
    border: 1px solid rgba(204, 164, 59, 0.2);
    border-radius: 12px;
    filter: saturate(0.8);
    transition: transform 230ms ease, background 230ms ease;
}

body.contact-page .contact-list-modern a:hover .contact-item-icon,
body.contact-page .contact-list-modern a:focus-visible .contact-item-icon {
    transform: rotate(-4deg) scale(1.04);
    background: rgba(204, 164, 59, 0.16);
}

body.contact-page .form-field-modern {
    position: relative;
    padding: 7px 8px 8px;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 12px;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body.contact-page .form-field-modern:hover {
    border-color: rgba(204, 164, 59, 0.16);
}

body.contact-page .form-field-modern:focus-within {
    transform: translateY(-2px);
    background: rgba(204, 164, 59, 0.05);
    border-color: rgba(204, 164, 59, 0.42);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

body.contact-page .form-field-modern label {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 700;
    letter-spacing: 0.018em;
    transition: color 200ms ease;
}

body.contact-page .form-field-modern:focus-within label {
    color: var(--accent-light);
}

body.contact-page .form-field-modern input,
body.contact-page .form-field-modern select,
body.contact-page .form-field-modern textarea {
    color-scheme: dark;
    background: rgba(6, 6, 6, 0.4);
    border-color: rgba(255, 255, 255, 0.095);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

body.contact-page .form-field-modern input::placeholder,
body.contact-page .form-field-modern textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

body.contact-page .form-field-modern input:focus,
body.contact-page .form-field-modern select:focus,
body.contact-page .form-field-modern textarea:focus {
    border-color: rgba(242, 211, 107, 0.7);
    box-shadow: 0 0 0 3px rgba(204, 164, 59, 0.11);
}

body.contact-page .form-field-modern input:user-invalid,
body.contact-page .form-field-modern select:user-invalid,
body.contact-page .form-field-modern textarea:user-invalid {
    border-color: rgba(255, 112, 124, 0.58);
}

body.contact-page .contact-form-errors {
    margin: 8px 0 0;
    padding-left: 20px;
    text-align: left;
}

body.contact-page .form-honeypot-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body.contact-page .contact-submit {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 46px;
    color: #17130a;
    background: linear-gradient(135deg, #b98c22, var(--accent-light) 52%, #c99a2d);
    border: 1px solid rgba(255, 237, 169, 0.55);
    box-shadow: 0 14px 30px rgba(204, 164, 59, 0.18);
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

body.contact-page .contact-submit::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.55) 48%, transparent 76%);
    transform: translateX(-120%);
    animation: buttonLightPass 3.8s ease-in-out infinite;
}

body.contact-page .contact-submit:hover:not(:disabled),
body.contact-page .contact-submit:focus-visible:not(:disabled) {
    transform: translateY(-2px);
    filter: saturate(1.08) brightness(1.05);
    box-shadow: 0 18px 40px rgba(204, 164, 59, 0.29);
}

body.contact-page .contact-form-modern.is-submitting {
    opacity: 0.82;
    pointer-events: none;
}

body.contact-page .contact-form-status {
    padding: 9px 11px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}


body.horaires-page .horaires-panel {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 0%, rgba(204, 164, 59, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(22, 22, 22, 0.92), rgba(13, 13, 13, 0.91));
    border-color: rgba(255, 255, 255, 0.09);
}

body.horaires-page .schedule-modern {
    counter-reset: scheduleDay;
}

body.horaires-page .schedule-modern-row {
    counter-increment: scheduleDay;
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    animation: scheduleRowIn 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.bgduo {
    position: absolute;
    left: 0;
    margin-left: 0;
    max-width: 100%;
    z-index: -1;
    bottom: 2px;
    width: 30%;
    
}
body.horaires-page .schedule-modern-row:nth-child(2) { animation-delay: 55ms; }
body.horaires-page .schedule-modern-row:nth-child(3) { animation-delay: 110ms; }
body.horaires-page .schedule-modern-row:nth-child(4) { animation-delay: 165ms; }
body.horaires-page .schedule-modern-row:nth-child(5) { animation-delay: 220ms; }
body.horaires-page .schedule-modern-row:nth-child(6) { animation-delay: 275ms; }
body.horaires-page .schedule-modern-row:nth-child(7) { animation-delay: 330ms; }

body.horaires-page .schedule-modern-row::before {
    content: counter(scheduleDay, decimal-leading-zero);
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--accent-light);
    background: rgba(204, 164, 59, 0.08);
    border: 1px solid rgba(204, 164, 59, 0.2);
    border-radius: 11px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    transition: color 230ms ease, background 230ms ease, transform 230ms ease;
}

body.horaires-page .schedule-modern-row::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 164, 59, 0.38), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 260ms ease;
}

body.horaires-page .schedule-modern-row:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(204, 164, 59, 0.085), rgba(255, 255, 255, 0.022));
    border-color: rgba(204, 164, 59, 0.36);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.23);
}

body.horaires-page .schedule-modern-row:hover::before {
    color: #17130a;
    background: var(--accent-light);
    transform: rotate(-4deg) scale(1.04);
}

body.horaires-page .schedule-modern-row:hover::after {
    transform: scaleX(1);
}

body.horaires-page .schedule-modern-row strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.02rem;
    letter-spacing: 0.02em;
}

body.horaires-page .schedule-modern-row small {
    color: rgba(255, 255, 255, 0.5);
}

body.horaires-page .schedule-modern-row > span {
    padding: 5px 10px;
    background: rgba(204, 164, 59, 0.07);
    border: 1px solid rgba(204, 164, 59, 0.17);
    border-radius: 999px;
    font-size: 0.86rem;
}

body.horaires-page .luxe-info-grid article {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(204, 164, 59, 0.09), rgba(255, 255, 255, 0.018));
    border-color: rgba(204, 164, 59, 0.2);
    transition: transform 230ms ease, border-color 230ms ease, box-shadow 230ms ease;
}

body.horaires-page .luxe-info-grid article:hover {
    transform: translateY(-2px);
    border-color: rgba(204, 164, 59, 0.38);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

@keyframes reservationTitleLine {
    from { opacity: 0; transform: scaleX(0.2); }
    to { opacity: 1; transform: scaleX(1); }
}

@keyframes reservationPanelIn {
    from { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.988); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes availabilityPulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 164, 59, 0.42); }
    70%, 100% { box-shadow: 0 0 0 9px rgba(204, 164, 59, 0); }
}

@keyframes progressTrackSweep {
    0%, 16% { transform: translateX(-110%); }
    62%, 100% { transform: translateX(110%); }
}

@keyframes progressGoldFlow {
    to { background-position: 180% 0; }
}

@keyframes progressFillShine {
    0%, 20% { transform: translateX(-125%); }
    68%, 100% { transform: translateX(125%); }
}

@keyframes buttonLightPass {
    0%, 38% { transform: translateX(-120%); }
    68%, 100% { transform: translateX(120%); }
}

@keyframes contactPanelIn {
    from { opacity: 0; transform: translate3d(0, 20px, 0) scale(0.99); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes scheduleRowIn {
    from { opacity: 0; transform: translate3d(0, 14px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media screen and (min-width: 700px) and (max-width: 1179px) {
    body.reservation-page .capacity-box {
        border-radius: 14px;
    }

    body.reservation-page #booking-form .form-group,
    body.contact-page .form-field-modern {
        padding: 5px 6px 6px;
        border-radius: 10px;
    }

    body.contact-page .contact-card-modern,
    body.contact-page .contact-form-modern {
        padding: 18px;
    }
}

@media screen and (max-width: 900px) {
    body.reservation-page .capacity-box,
    body.contact-page .contact-card-modern,
    body.contact-page .contact-form-modern,
    body.horaires-page .horaires-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.reservation-page #booking-form .form-group,
    body.contact-page .form-field-modern {
        padding: 9px 10px 10px;
    }

    body.horaires-page .schedule-modern-row {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 8px 11px;
    }

    body.horaires-page .schedule-modern-row > span {
        grid-column: 2;
        width: fit-content;
        white-space: normal;
    }
}

@media screen and (max-width: 420px) {
    body.reservation-page .capacity-service-header span:last-child {
        padding: 2px 7px;
        font-size: 0.72rem;
    }

    body.contact-page .contact-item-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    body.horaires-page .schedule-modern-row {
        grid-template-columns: 32px minmax(0, 1fr);
        padding: 11px;
    }

    body.horaires-page .schedule-modern-row::before {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        font-size: 0.66rem;
    }
}

@media (hover: none) {
    body.reservation-page .capacity-service-row:hover,
    body.reservation-page #booking-form .form-group:hover,
    body.contact-page .contact-list-modern a:hover,
    body.contact-page .form-field-modern:hover,
    body.horaires-page .schedule-modern-row:hover,
    body.horaires-page .luxe-info-grid article:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.reservation-page .section-title::after,
    body.reservation-page .reservation-capacity-card,
    body.reservation-page .reservation-group-notice,
    body.reservation-page .reservation-form-card,
    body.reservation-page .availability-live-dot,
    body.reservation-page .progress-bar::after,
    body.reservation-page #progress-fill-midi,
    body.reservation-page #progress-fill-soir,
    body.reservation-page .progress-fill-dual,
    body.reservation-page #progress-fill-midi::before,
    body.reservation-page #progress-fill-soir::before,
    body.reservation-page .progress-fill-dual::before,
    body.reservation-page #submit-btn::before,
    body.contact-page .contact-card-modern,
    body.contact-page .contact-form-modern,
    body.contact-page .contact-submit::before,
    body.horaires-page .schedule-modern-row {
        animation: none !important;
    }
}


.schedule-modern-row .schedule-closed {
    color: #ff5f58;
    border-color: rgba(255, 95, 88, .28);
    background: rgba(255, 95, 88, .07);
}


body.reservation-page .reservation-booking-info {
    position: relative;
    overflow: hidden;
    padding: 12px;
    background: linear-gradient(145deg, rgba(204, 164, 59, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(204, 164, 59, 0.22);
    border-radius: 13px;
}

body.reservation-page .reservation-booking-info::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, #f1d779, #9d7420);
}

body.reservation-page .reservation-booking-info__heading {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

body.reservation-page .reservation-booking-info__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #17130a;
    background: linear-gradient(145deg, #f1d779, #c2932d);
    border-radius: 11px;
    box-shadow: 0 9px 22px rgba(204, 164, 59, 0.18);
    font-size: 1.2rem;
}

body.reservation-page .reservation-booking-info__heading p,
body.reservation-page .reservation-group-notice__copy > p {
    margin: 0 0 2px;
    color: #d4b153;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

body.reservation-page .reservation-booking-info__heading h2,
body.reservation-page .reservation-group-notice__copy h2 {
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1rem;
    line-height: 1.22;
}

body.reservation-page .reservation-booking-info__intro {
    margin: 9px 0 8px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.72rem;
    line-height: 1.42;
}

body.reservation-page .reservation-booking-info__groups {
    display: grid;
    gap: 5px;
}

body.reservation-page .reservation-booking-info__groups p {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 6px 8px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.69rem;
    line-height: 1.35;
}

body.reservation-page .reservation-booking-info__groups strong {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

body.reservation-page .reservation-booking-info__groups span {
    flex: 0 0 auto;
    color: #e5c866;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

body.reservation-page .reservation-booking-info__groups .is-closed span {
    color: #ff7770;
}

body.reservation-page .reservation-group-notice {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 10px 12px;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 14px;
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 211, 107, 0.13), transparent 42%),
        linear-gradient(145deg, rgba(31, 31, 31, 0.96), rgba(17, 17, 17, 0.96));
    border: 1px solid rgba(204, 164, 59, 0.3);
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    animation: reservationPanelIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 170ms both;
}

body.reservation-page .reservation-group-notice::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, #f1d779, #9d7420);
}

body.reservation-page .reservation-group-notice__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #f1d779;
    background: rgba(204, 164, 59, 0.08);
    border: 1px solid rgba(204, 164, 59, 0.25);
    border-radius: 12px;
}

body.reservation-page .reservation-group-notice__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.reservation-page .reservation-group-notice__copy > span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    line-height: 1.5;
}

body.reservation-page .reservation-group-notice__button {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 13px;
    color: #17130a;
    background: linear-gradient(135deg, #f1d779, #c99c36);
    border-radius: 10px;
    box-shadow: 0 9px 22px rgba(204, 164, 59, 0.16);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 850;
    transition: transform 0.2s ease, filter 0.2s ease;
}

body.reservation-page .reservation-group-notice__button:hover,
body.reservation-page .reservation-group-notice__button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

body.reservation-page .reservation-time-help {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.74rem;
    line-height: 1.4;
}

body.reservation-page input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(82%) sepia(49%) saturate(481%) hue-rotate(358deg) brightness(93%);
    cursor: pointer;
}

body.reservation-page .reservation-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reservation-time-chip,
.floor-reservation-time {
    color: #f1d779;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
}

@media (min-width: 769px) {
    body.reservation-page {
        height: auto;
        min-height: 100dvh;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-y: auto;
    }

    body.reservation-page .booking-section {
        max-height: none;
        padding-bottom: max(88px, calc(68px + env(safe-area-inset-bottom, 0px)));
    }
}

@media (min-width: 901px) {
    body.reservation-page .booking-section {
        width: min(1100px, calc(100vw - 2 * var(--desktop-side-space)));
        max-width: 1100px;
        grid-template-columns: minmax(300px, 0.78fr) minmax(470px, 1.22fr);
    }

    body.reservation-page .reservation-capacity-card,
    body.reservation-page .reservation-form-card {
        align-self: start;
    }
}

@media screen and (max-width: 980px) {
    body.reservation-page .reservation-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
        .bgduo {
        width: 60%;
        opacity: 60%
    }
}

@media screen and (max-width: 699px) {
    body.reservation-page .reservation-booking-info__groups p {
        display: grid;
        gap: 2px;
    }

    body.reservation-page .reservation-booking-info__groups span {
        text-align: left;
    }

    body.reservation-page .reservation-summary {
        grid-template-columns: 1fr;
    }
        .bgduo {
        width: 60%;
        opacity: 60%
    }
}

@media screen and (max-width: 900px) {
    body.reservation-page .reservation-side-column {
        gap: 10px;
    }
        .bgduo {
        width: 60%;
        opacity: 60%
    }
}

@media screen and (max-width: 699px) {
    body.reservation-page .reservation-group-notice {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 12px;
    }

    body.reservation-page .reservation-group-notice__icon {
        width: 42px;
        height: 42px;
    }
        .bgduo {
        width: 60%;
        opacity: 60%;
    }
}

@media screen and (max-width: 430px) {
    body.reservation-page .reservation-booking-info,
    body.reservation-page .reservation-group-notice {
        padding: 10px;
        border-radius: 11px;
    }

    body.reservation-page .reservation-booking-info__heading {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 8px;
    }

    body.reservation-page .reservation-booking-info__icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
        .bgduo {
        width: 60%;
        opacity: 60%;
    }
}

