/* ============================================ */
/* VARIABLES & RESET                            */
/* ============================================ */
:root {
    --bleu-nuit: #0E1A2B;
    --bleu-petrole: #1F3442;
    --dore: #C7A35D;
    --ivoire: #F4EBDD;
    --brun-cafe: #3A2C25;
    --blanc: #FFFFFF;
    --noir: #000000;
    --gris-clair: #f8f6f3;
    --dore-clair: rgba(199, 163, 93, 0.12);
    --ombre: 0 4px 30px rgba(14, 26, 43, 0.08);
    --ombre-forte: 0 12px 48px rgba(14, 26, 43, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--bleu-nuit);
    background-color: var(--ivoire);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

.container--narrow {
    max-width: 750px;
}

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

/* ============================================ */
/* COMMON ELEMENTS                              */
/* ============================================ */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dore);
    margin-bottom: 14px;
}

.section-tag--light { color: var(--dore); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    color: var(--bleu-nuit);
    margin-bottom: 24px;
    line-height: 1.15;
}

.section-title--light { color: var(--ivoire); }
.section-title--small { font-size: clamp(1rem, 2.2vw, 1.6rem); }

/* Curved section dividers (inspired by bonjourlepouliguen) */
.curve-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.curve-divider--top {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
}

.curve-divider--ivoire {
    background: transparent;
}
.curve-divider--ivoire::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--ivoire);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.curve-divider--blanc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--blanc);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.curve-divider--dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bleu-nuit);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--dore);
    color: var(--bleu-nuit);
    border-color: var(--dore);
}
.btn--primary:hover {
    background-color: #b8913e;
    border-color: #b8913e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 163, 93, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--ivoire);
    border-color: rgba(244, 235, 221, 0.5);
}
.btn--outline:hover {
    background-color: var(--ivoire);
    color: var(--bleu-nuit);
    border-color: var(--ivoire);
    transform: translateY(-2px);
}

.btn--outline-dark {
    background: transparent;
    color: var(--bleu-nuit);
    border-color: var(--bleu-nuit);
}
.btn--outline-dark:hover {
    background-color: var(--bleu-nuit);
    color: var(--ivoire);
    transform: translateY(-2px);
}

.btn--gold {
    background: linear-gradient(135deg, var(--dore), #d4b06a);
    color: var(--bleu-nuit);
    border-color: var(--dore);
}
.btn--gold:hover {
    background: linear-gradient(135deg, #b8913e, var(--dore));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 163, 93, 0.35);
}

/* ============================================ */
/* HEADER                                       */
/* ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header--scrolled {
    background: rgba(14, 26, 43, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    text-decoration: none;
}

.header__logo-img {
    display: block;
    border-radius: 50%;
    transition: var(--transition);
}

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

.header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header__logo-text strong {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ivoire);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header__logo-text strong:last-child {
    font-weight: 300;
    color: rgba(244, 235, 221, 0.7);
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__nav-link {
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(244, 235, 221, 0.75);
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.2px;
}
.header__nav-link:hover {
    color: var(--ivoire);
    background: rgba(244, 235, 221, 0.08);
}

.header__nav-link--cta {
    background: var(--dore);
    color: var(--bleu-nuit) !important;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 50px;
    margin-left: 8px;
}
.header__nav-link--cta:hover {
    background: #b8913e;
    transform: translateY(-1px);
}

/* Burger menu */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.header__burger span {
    width: 26px;
    height: 2px;
    background: var(--ivoire);
    border-radius: 2px;
    transition: var(--transition);
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
    position: relative;
    overflow: hidden;
}

.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--bleu-nuit);
}

.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 40px;
}

.hero__image img {
    width: 85%;
    max-height: 75vh;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 60px 60px;
}

.hero__content {
    max-width: 560px;
}

.hero__surtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dore);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--ivoire);
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(244, 235, 221, 0.8);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__badges-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 0;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(244, 235, 221, 0.85);
    font-size: 0.78rem;
    font-weight: 400;
    padding: 8px 16px;
    border: 1px solid rgba(199, 163, 93, 0.25);
    border-radius: 50px;
    background: rgba(31, 52, 66, 0.5);
}

.hero__badge-icon {
    color: var(--dore);
    font-size: 1rem;
}

/* ============================================ */
/* PROMESSE                                     */
/* ============================================ */
.promesse {
    padding: 60px 0 80px;
    background: var(--ivoire);
}

.promesse__intro {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 400;
    color: var(--bleu-petrole);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 64px;
    font-style: italic;
}

.promesse__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promesse__card {
    text-align: center;
    padding: 40px 20px 36px;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre);
    transition: var(--transition);
    border: 1px solid rgba(199, 163, 93, 0.08);
}
.promesse__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ombre-forte);
    border-color: rgba(199, 163, 93, 0.2);
}

.promesse__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--dore-clair);
    color: var(--dore);
    margin-bottom: 18px;
}

.promesse__title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bleu-nuit);
}

.promesse__text {
    font-size: 0.85rem;
    color: var(--bleu-petrole);
    line-height: 1.6;
}

/* ============================================ */
/* FORMULE MIDI                                 */
/* ============================================ */
.formule {
    padding: 120px 0 100px;
    background: var(--blanc);
    position: relative;
}

.formule__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.formule__collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-forte);
    height: 520px;
}

.formule__collage-item {
    overflow: hidden;
    display: block;
    position: relative;
    cursor: pointer;
}

.formule__collage-item::after {
    content: '\f00e';
    font-family: inherit;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 26, 43, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.formule__collage-item:hover::after {
    opacity: 1;
}

.formule__collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.formule__badge-price {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--dore);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(199, 163, 93, 0.5);
    animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.formule__badge-amount {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bleu-nuit);
    line-height: 1;
}
.formule__badge-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--bleu-nuit);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formule__desc {
    font-size: 1.05rem;
    color: var(--bleu-petrole);
    line-height: 1.8;
    margin-bottom: 36px;
}

.formule__menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.formule__menu-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: var(--gris-clair);
    border-radius: var(--radius);
    border-left: 3px solid var(--dore);
    transition: var(--transition);
}
.formule__menu-item:hover {
    background: var(--dore-clair);
}

.formule__menu-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dore);
    color: var(--bleu-nuit);
    font-weight: 700;
    font-size: 0.82rem;
}

.formule__menu-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bleu-nuit);
    margin-bottom: 3px;
}
.formule__menu-text {
    font-size: 0.85rem;
    color: var(--bleu-petrole);
}

.formule__footer {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.formule__price-big {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.formule__price-value {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dore);
    line-height: 1;
}
.formule__price-currency {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dore);
}
.formule__price-period {
    font-size: 0.85rem;
    color: var(--bleu-petrole);
    margin-left: 4px;
}

/* ============================================ */
/* GALERIE PLATS                                */
/* ============================================ */
.galerie-plats { overflow: hidden; }

.galerie-plats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.galerie-plats__item {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.galerie-plats__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.galerie-plats__item:hover img {
    transform: scale(1.05);
}

/* (Ardoise section removed) */

/* ============================================ */
/* LE RESTAURANT                                */
/* ============================================ */
.restaurant {
    padding: 100px 0 60px;
    background: var(--ivoire);
}

.restaurant__intro {
    font-size: 0.95rem;
    color: var(--bleu-petrole);
    line-height: 1.8;
    margin-bottom: 52px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.restaurant__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
    align-items: stretch;
}

.restaurant__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.restaurant__card--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.restaurant__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.restaurant__card:hover img {
    transform: scale(1.05);
}

.restaurant__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 26, 43, 0.8) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}
.restaurant__card:hover .restaurant__card-overlay {
    background: linear-gradient(0deg, rgba(14, 26, 43, 0.88) 0%, rgba(14, 26, 43, 0.15) 65%);
}

.restaurant__card-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ivoire);
    margin-bottom: 4px;
}
.restaurant__card-overlay p {
    font-size: 0.82rem;
    color: rgba(244, 235, 221, 0.75);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.restaurant__card:hover .restaurant__card-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* INSTAGRAM                                    */
/* ============================================ */
.instagram {
    background: var(--bleu-nuit);
    padding: 50px 0 30px;
    position: relative;
}

.instagram__header-wrap {
    margin-bottom: 24px;
}

.instagram__subtitle {
    color: rgba(244, 235, 221, 0.6);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.instagram__posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 60%;
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 0;
}

.instagram__post {
    background: var(--blanc);
    overflow: hidden;
    min-height: 650px;
}

.instagram__post iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    border: none;
}

.instagram__cta {
    margin-top: 12px;
    padding-bottom: 40px;
}

.instagram--light {
    background: var(--blanc);
    padding: 60px 0 40px;
}

.instagram--light .section-title {
    color: var(--bleu-nuit);
}

/* ============================================ */
/* SERVICES                                     */
/* ============================================ */
.services {
    padding: 50px 0 110px;
    background: var(--ivoire);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.services__card {
    text-align: center;
    padding: 40px 24px 36px;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(199, 163, 93, 0.08);
}
.services__card:hover {
    border-color: rgba(199, 163, 93, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--ombre);
}

.services__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dore-clair);
    color: var(--dore);
    margin-bottom: 16px;
}

.services__card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bleu-nuit);
    margin-bottom: 8px;
}
.services__card p {
    font-size: 0.85rem;
    color: var(--bleu-petrole);
    line-height: 1.6;
}

/* ============================================ */
/* PRIVATISATION                                */
/* ============================================ */
.privatisation {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.privatisation__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.privatisation__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privatisation__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.9), rgba(31, 52, 66, 0.85));
}

.privatisation__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.privatisation__text {
    font-size: 1.05rem;
    color: rgba(244, 235, 221, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

.privatisation__features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.privatisation__feature {
    padding: 10px 22px;
    border: 1px solid rgba(199, 163, 93, 0.35);
    border-radius: 50px;
    color: var(--dore);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================ */
/* INFOS PRATIQUES                              */
/* ============================================ */
.infos {
    padding: 100px 0 120px;
    background: var(--ivoire);
}

.infos__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    margin-top: 52px;
}

.infos__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.infos__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: var(--blanc);
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    border: 1px solid rgba(199, 163, 93, 0.06);
}

.infos__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--dore-clair);
    color: var(--dore);
}

.infos__card h3 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bleu-nuit);
    margin-bottom: 4px;
}
.infos__card p {
    font-size: 0.88rem;
    color: var(--bleu-petrole);
    line-height: 1.6;
}
.infos__card a {
    color: var(--dore);
    font-weight: 500;
}
.infos__card a:hover { color: #b8913e; }

.infos__buttons {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.infos__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-forte);
    min-height: 420px;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
    background: var(--bleu-nuit);
    padding: 64px 0 0;
    color: rgba(244, 235, 221, 0.65);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo-svg {
    display: block;
    margin-bottom: 16px;
}

.footer__address {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer__phone a {
    color: var(--dore);
    font-weight: 500;
    font-size: 0.92rem;
}
.footer__phone a:hover { color: #b8913e; }

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    font-size: 0.85rem;
    color: rgba(244, 235, 221, 0.55);
    transition: var(--transition);
}
.footer__links a:hover {
    color: var(--dore);
    transform: translateX(4px);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(244, 235, 221, 0.07);
    color: rgba(244, 235, 221, 0.6);
    transition: var(--transition);
}
.footer__social-link:hover {
    background: var(--dore);
    color: var(--bleu-nuit);
    transform: translateY(-3px);
}

.footer__separator {
    height: 1px;
    background: rgba(199, 163, 93, 0.12);
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.78rem;
    color: rgba(244, 235, 221, 0.35);
}
.footer__bottom a {
    color: rgba(244, 235, 221, 0.45);
    text-decoration: underline;
}
.footer__bottom a:hover { color: var(--dore); }

/* ============================================ */
/* ANIMATIONS                                   */
/* ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 1024px) {
    .header__nav { display: none; }
    .header__nav.active {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(14, 26, 43, 0.98);
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }
    .header__nav.active .header__nav-list {
        flex-direction: column;
        gap: 16px;
    }
    .header__nav.active .header__nav-link {
        font-size: 1.15rem;
        padding: 12px 24px;
    }
    .header__burger { display: flex; }

    .formule__inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .formule__collage { min-height: 360px; }
    .promesse__grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant__grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant__card--large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .infos__grid { grid-template-columns: 1fr; }
    .curve-divider { height: 50px; }
}

@media (max-width: 640px) {
    .hero__split { grid-template-columns: 1fr; }
    .hero__image { min-height: 50vh; }
    .hero__right { padding: 40px 24px 50px; }
    .hero__title { font-size: 2.2rem; }
    .hero__surtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .hero__badges-bar { gap: 8px; padding-top: 24px; }
    .hero__badge { font-size: 0.72rem; padding: 7px 14px; }
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        padding: 13px 28px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
    .promesse__grid { grid-template-columns: 1fr; }
    .promesse__intro { font-size: 1.1rem; }
    .formule__collage { min-height: 280px; }
    .formule__footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .galerie-plats__grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant__grid { grid-template-columns: 1fr; }
    .restaurant__card--large {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
    .services__grid { grid-template-columns: 1fr; }
    .privatisation__features { gap: 6px; }
    .privatisation__feature { padding: 8px 14px; font-size: 0.78rem; }
    .infos__buttons { flex-direction: column; }
    .infos__buttons .btn { max-width: 100%; }
    .footer__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer__inner .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer__links { align-items: center; }
    .formule { padding-bottom: 40px; }
    .instagram--light { padding-top: 20px; }
    .restaurant { padding-bottom: 40px; }
    .services { padding-top: 40px; }
    .instagram__posts { grid-template-columns: 1fr; }
    .instagram__post { min-height: 550px; }
    .instagram__post iframe { min-height: 550px; }
    .curve-divider { height: 36px; }
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(14, 26, 43, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox--active {
    opacity: 1;
    pointer-events: all;
}
.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox--active .lightbox__img {
    transform: scale(1);
}
.lightbox__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--ivoire);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}
.lightbox__close:hover {
    transform: scale(1.2);
}

/* ============================================ */
/* MENUS & CARTE (ardoise style)               */
/* ============================================ */
.menus {
    background: var(--bleu-nuit);
    padding: 80px 0;
    position: relative;
}

.menus__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.menus__card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 40%, #1e1e1e 100%);
    border: 2px solid #1F3442;
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle chalk texture effect */
.menus__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.menus__card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--ivoire);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: var(--dore);
}

.menus__card-title--gold {
    color: var(--dore);
}

.menus__card-subtitle {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--dore);
    margin-bottom: 16px;
    font-style: italic;
}

.menus__card-content p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: rgba(244, 235, 221, 0.85);
    margin-bottom: 6px;
    line-height: 1.6;
}

.menus__card-content p strong {
    color: var(--ivoire);
    font-weight: 600;
}

.menus__card-ou {
    font-style: italic;
    font-size: 0.85rem !important;
    color: rgba(244, 235, 221, 0.5) !important;
}

.menus__card-fait-maison {
    font-style: italic;
    color: var(--dore) !important;
    font-weight: 500;
    margin-top: 8px !important;
}

.menus__card-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--dore);
    margin-bottom: 16px;
}

.menus__card-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--dore);
    font-size: 0.8rem;
}

.menus__card-separator::before,
.menus__card-separator::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dore);
    opacity: 0.5;
}

.menus--carte {
    background: var(--bleu-petrole);
    padding-top: 60px;
}

@media (max-width: 1024px) {
    .menus__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .menus__grid { grid-template-columns: 1fr; }
    .menus { padding: 50px 0; }
}
