/* ================================================================
   TABLE CONFIDENTIELLE · Charte Graphique Officielle
   Private Dining · Côte d'Azur
   ================================================================ */

/* ---------------------------------------------------------------
   1. VARIABLES & TOKENS
--------------------------------------------------------------- */
:root {
    /* Palette principale */
    --navy:        #0B1629;
    --navy-mid:    #152238;
    --navy-light:  #1E3050;
    --gold:        #B8965A;
    --gold-light:  #D4AF78;
    --gold-dark:   #8A6E3A;
    --cream:       #F8F3EC;
    --cream-dark:  #EDE4D4;
    --white:       #FFFFFF;

    /* Textes */
    --text-dark:   #1A1A1A;
    --text-mid:    #4A4A4A;
    --text-muted:  #6B7A8D;
    --text-light:  #9AABB8;

    /* Typographie */
    --font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    --font-sans:  'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Timing */
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:   cubic-bezier(0, 0, 0.2, 1);
    --t:          0.4s;
    --t-slow:     0.8s;

    /* Layout */
    --max-w:      1200px;
    --pad-section: 120px;
    --pad-h:      40px;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Désactiver curseur perso sur tactile */
@media (hover: none) {
    body { cursor: auto; }
    .cursor, .cursor-dot { display: none !important; }
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: none;
    font-family: inherit;
}

/* ---------------------------------------------------------------
   3. CURSEUR PERSONNALISÉ
--------------------------------------------------------------- */
.cursor {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(184, 150, 90, 0.7);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: width var(--t) var(--ease),
                height var(--t) var(--ease),
                background var(--t) var(--ease),
                border-color var(--t) var(--ease);
    will-change: left, top;
}

.cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10001;
    will-change: left, top;
}

.cursor.hovering {
    width: 56px;
    height: 56px;
    background: rgba(184, 150, 90, 0.08);
    border-color: var(--gold);
}

.cursor.clicking {
    width: 28px;
    height: 28px;
    background: rgba(184, 150, 90, 0.2);
}

/* ---------------------------------------------------------------
   4. CONTAINER
--------------------------------------------------------------- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-h);
}

/* ---------------------------------------------------------------
   5. NAVIGATION
--------------------------------------------------------------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 28px 0;
    transition: background var(--t) var(--ease),
                padding var(--t) var(--ease),
                box-shadow var(--t) var(--ease),
                backdrop-filter var(--t) var(--ease);
}

#navbar.scrolled {
    background: rgba(11, 22, 41, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(184, 150, 90, 0.18);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 62px;
    width: auto;
    opacity: 0.92;
    transition: opacity var(--t);
}

.nav-logo:hover img { opacity: 1; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--t);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--t) var(--ease);
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    width: 36px;
    height: 36px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: transform var(--t) var(--ease), opacity var(--t);
}

/* ---------------------------------------------------------------
   6. MENU MOBILE
--------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    overflow: hidden;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 28px;
    right: 28px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--t);
    padding: 8px;
}

.mobile-close:hover { color: var(--gold); }

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
    padding: 40px;
}

.mobile-logo {
    height: 56px;
    opacity: 0.7;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.04em;
    transition: color var(--t);
}

.mobile-link:hover { color: var(--gold); }

.mobile-footer {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---------------------------------------------------------------
   7. SECTION HERO
--------------------------------------------------------------- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
}

/* Photo de fond du hero */
.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('../Photos/table-confidentielle-private-dining-cote-azur.jpg');
    background-size: cover;
    background-position: center 55%;
    transform: scale(1.05);
}

/* Fond dégradé navy par-dessus la photo */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg,
            rgba(11, 22, 41, 0.6) 0%,
            rgba(11, 22, 41, 0.38) 50%,
            rgba(11, 22, 41, 0.55) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(11, 22, 41, 0.25) 0%,
        transparent 40%,
        rgba(11, 22, 41, 0.4) 100%);
    z-index: 2;
}

/* Cadre décoratif */
#hero::before {
    content: '';
    position: absolute;
    inset: 32px;
    border: 1px solid rgba(184, 150, 90, 0.12);
    pointer-events: none;
    z-index: 1;
}

/* Coins dorés */
#hero::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 32px;
    width: 40px;
    height: 40px;
    border-top: 1px solid rgba(184, 150, 90, 0.4);
    border-left: 1px solid rgba(184, 150, 90, 0.4);
    pointer-events: none;
    z-index: 1;
    box-shadow:
        calc(100vw - 64px - 40px) 0 0 0 transparent,
        0 calc(100vh - 64px - 40px) 0 0 transparent;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-logo-wrap { margin-bottom: 36px; }

.hero-logo {
    height: 220px;
    width: auto;
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 0 40px rgba(184, 150, 90, 0.15));
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.ornament-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 90, 0.6), transparent);
}

.ornament-icon { flex-shrink: 0; }

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.25;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.hero-tagline em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 52px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    border: 1px solid rgba(184, 150, 90, 0.45);
    color: var(--gold-light);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color var(--t);
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
    z-index: 0;
}

.hero-cta span, .hero-cta svg {
    position: relative;
    z-index: 1;
}

.hero-cta:hover {
    color: var(--navy);
    border-color: var(--gold);
}

.hero-cta:hover::before { transform: scaleX(1); }

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollFloat 3.5s ease-in-out infinite;
}

@keyframes scrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-line-wrap {
    width: 1px;
    height: 54px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.scroll-line-inner {
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: translateY(-100%); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateY(200%); opacity: 0; }
}

/* Animations d'entrée Hero */
.animate-fade-up {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUpIn 0.9s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUpIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------
   8. ANIMATIONS SCROLL REVEAL
--------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.9s var(--ease),
        transform 0.9s var(--ease);
    transition-delay: var(--card-delay, 0s);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------
   9. SECTION MANIFESTE / L'EXPÉRIENCE
--------------------------------------------------------------- */
.section-manifeste {
    background: var(--cream);
    padding: var(--pad-section) 0 0;
    position: relative;
}

.manifeste-inner {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}

.manifeste-ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.manifeste-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.38;
    margin-bottom: 28px;
}

.manifeste-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.ornament-line-dark {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 90, 0.5), transparent);
}

.manifeste-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text-muted);
    margin-bottom: 64px;
}

.manifeste-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    vertical-align: top;
    margin-top: 4px;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.stat-divider-v {
    opacity: 0.6;
}

/* Vague de transition */
.wave-bottom, .wave-bottom-light {
    line-height: 0;
    overflow: hidden;
}

.wave-bottom svg,
.wave-bottom-light svg {
    display: block;
    width: 100%;
}

/* ---------------------------------------------------------------
   10. SECTION PILIERS
--------------------------------------------------------------- */
.section-piliers {
    background: var(--navy);
    padding: var(--pad-section) 0 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label-light {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title-light {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
}

.section-title-light em {
    font-style: italic;
    color: var(--gold-light);
}

.piliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(184, 150, 90, 0.12);
    margin-bottom: 80px;
}

.pilier-card {
    padding: 60px 44px 56px;
    text-align: center;
    border-right: 1px solid rgba(184, 150, 90, 0.1);
    position: relative;
    transition: background var(--t);
    overflow: hidden;
}

.pilier-card:last-child { border-right: none; }

/* Ligne dorée en haut au hover */
.pilier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
}

.pilier-card:hover::before { transform: scaleX(1); }

.pilier-card:hover {
    background: rgba(184, 150, 90, 0.04);
}

.pilier-card--featured {
    background: rgba(184, 150, 90, 0.04);
}

.pilier-num {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(184, 150, 90, 0.35);
    margin-bottom: 24px;
}

.pilier-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
    opacity: 0.85;
    transition: opacity var(--t), transform var(--t);
}

.pilier-card:hover .pilier-icon-wrap {
    opacity: 1;
    transform: translateY(-3px);
}

.pilier-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.pilier-text {
    font-family: var(--font-sans);
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(248, 243, 236, 0.55);
}

/* ---------------------------------------------------------------
   11. SECTION SERVICES
--------------------------------------------------------------- */
.section-services {
    background: var(--cream);
    padding: var(--pad-section) 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-top: 8px;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-intro {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 540px;
    margin-top: 20px;
}

.section-intro--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.service-card {
    background: var(--white);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 2px 20px rgba(11, 22, 41, 0.06);
    transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11, 22, 41, 0.12);
}

.service-img-wrap {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

/* Overlays visuels pour les cartes service
   → Remplacer les background-color par des background-image + url('...')
     avec une belle photo une fois disponible */
.service-img-villa {
    background-color: var(--navy-mid);
    background-image:
        linear-gradient(160deg, rgba(11, 22, 41, 0.4) 0%, rgba(11, 22, 41, 0.25) 100%),
        url('../Photos/diner-prive-villa-cote-azur.jpg');
    background-size: cover;
    background-position: center 50%;
}

.service-img-yacht {
    background-color: #1A2F4A;
    background-image:
        linear-gradient(160deg, rgba(11, 22, 41, 0.4) 0%, rgba(11, 22, 41, 0.25) 100%),
        url('../Photos/repas-prive-yacht-mediterranee.jpg');
    background-size: cover;
    background-position: 85% 40%;
}

.service-img-event {
    background-color: #2A1F15;
    background-image:
        linear-gradient(160deg, rgba(42, 31, 21, 0.8) 0%, rgba(58, 44, 30, 0.65) 100%),
        url('../Photos/table-confidentielle-private-dining-cote-azur.jpg');
    background-size: cover;
    background-position: center;
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 22, 41, 0.5) 0%, transparent 50%);
}

.service-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.service-body {
    padding: 32px 32px 36px;
}

.service-num {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: rgba(184, 150, 90, 0.4);
    margin-bottom: 12px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-zone {
    font-family: var(--font-sans);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.service-desc {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-ornament {
    display: flex;
    align-items: center;
}

.ornament-line-dark {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.35;
    transition: width var(--t) var(--ease), opacity var(--t);
}

.service-card:hover .ornament-line-dark {
    width: 56px;
    opacity: 0.6;
}

/* Bandeau infos services */
.services-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 44px;
    padding: 32px 44px;
    border: 1px solid rgba(11, 22, 41, 0.08);
    background: var(--white);
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 150, 90, 0.2);
    margin-bottom: 4px;
}

.strip-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.strip-value {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--navy);
}

.strip-sep {
    flex-shrink: 0;
}

/* ---------------------------------------------------------------
   12. SECTION HISTOIRE
--------------------------------------------------------------- */
.section-histoire {
    background: var(--navy);
    padding: var(--pad-section) 0;
    position: relative;
    overflow: hidden;
}

.histoire-bg-deco {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.6;
}

.histoire-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 96px;
    align-items: center;
}

.histoire-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.portrait-frame {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
    border: 1px solid rgba(184, 150, 90, 0.3);
    position: relative;
    overflow: hidden;
    background: var(--navy-mid);
}

/* Coin décoratif du cadre */
.portrait-frame::before {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 48px;
    height: 48px;
    border-bottom: 1px solid rgba(184, 150, 90, 0.5);
    border-right: 1px solid rgba(184, 150, 90, 0.5);
    z-index: 1;
}

.portrait-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-light) 100%);
    /* Note : Remplacer ce placeholder par une vraie photo de Guillaume */
}

.portrait-placeholder span {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 200;
    color: rgba(184, 150, 90, 0.18);
    letter-spacing: 0.1em;
}

.portrait-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(11, 22, 41, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 150, 90, 0.25);
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    z-index: 2;
}

.badge-year {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: none;
}

.histoire-credentials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 320px;
}

.credential {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(184, 150, 90, 0.15);
    width: 100%;
}

.credential:last-child {
    border-bottom: none;
}

.cred-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gold-light);
    min-width: 80px;
    text-align: left;
}

.cred-label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    text-align: left;
}

.histoire-text {
    color: var(--cream);
}

.histoire-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 32px;
}

.ornament-line-gold {
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.5;
}

.histoire-desc {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.95;
    color: rgba(248, 243, 236, 0.65);
    margin-bottom: 22px;
}

.histoire-desc strong {
    color: var(--cream);
    font-weight: 400;
}

.histoire-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.65;
    padding: 24px 0 24px 24px;
    border-left: 1px solid rgba(184, 150, 90, 0.35);
    margin: 32px 0 16px;
}

.histoire-signature {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(248, 243, 236, 0.3);
    margin-bottom: 36px;
}

.histoire-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hist-value-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(184, 150, 90, 0.2);
    font-family: var(--font-sans);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(184, 150, 90, 0.6);
    transition: border-color var(--t), color var(--t);
}

.hist-value-tag:hover {
    border-color: rgba(184, 150, 90, 0.5);
    color: var(--gold);
}

/* ---------------------------------------------------------------
   13. SECTION CONTACT
--------------------------------------------------------------- */
.section-contact {
    background: var(--cream);
    padding: var(--pad-section) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 88px;
    margin-top: 72px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info--centered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
    margin-top: 64px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .contact-info--centered {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 150, 90, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background var(--t), border-color var(--t);
}

.contact-item:hover .contact-icon-wrap {
    background: rgba(184, 150, 90, 0.08);
    border-color: rgba(184, 150, 90, 0.4);
}

.contact-label {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-value {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.65;
    transition: color var(--t);
}

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

.contact-value em {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-social {
    display: flex;
    gap: 20px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--navy);
    transition: color var(--t);
}

.contact-social-link:hover {
    color: var(--gold-dark);
}

.contact-social-link:hover svg {
    stroke: var(--gold-dark);
    fill: var(--gold-dark);
}

/* --- Formulaire --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
}

.required {
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    border: 1px solid rgba(11, 22, 41, 0.12);
    border-bottom: 1px solid rgba(11, 22, 41, 0.25);
    padding: 14px 0;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--navy);
    background: transparent;
    outline: none;
    transition: border-color var(--t);
    border-radius: 0;
    width: 100%;

    /* Ligne simple minimaliste */
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(11, 22, 41, 0.2);
    padding: 12px 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

.form-group textarea {
    resize: none;
    height: 110px;
}

.form-group input[type="date"] {
    color: var(--text-mid);
}

/* Select personnalisé */
.select-wrap {
    position: relative;
}

.select-wrap select {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(11, 22, 41, 0.2);
    padding: 12px 32px 12px 2px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-mid);
    background: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color var(--t);
    border-radius: 0;
}

.select-wrap select:focus {
    border-bottom-color: var(--gold);
}

.select-arrow {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-note {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 280px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--navy);
    color: var(--cream);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color var(--t);
    white-space: nowrap;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
    z-index: 0;
}

.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:hover { color: var(--navy); }

.btn-text, .btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Message succès */
.form-success {
    display: none;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(184, 150, 90, 0.06);
    border: 1px solid rgba(184, 150, 90, 0.25);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.6;
}

.form-success.visible { display: flex; }

.form-error {
    padding: 14px 20px;
    background: rgba(192, 57, 43, 0.06);
    border: 1px solid rgba(192, 57, 43, 0.25);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: #C0392B;
    line-height: 1.6;
    margin-top: 8px;
}

/* ---------------------------------------------------------------
   14. FOOTER
--------------------------------------------------------------- */
.footer {
    background: var(--navy);
    padding: 80px var(--pad-h) 48px;
    border-top: 1px solid rgba(184, 150, 90, 0.12);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 80px;
    opacity: 0.85;
    transition: opacity var(--t);
}

.footer-logo:hover img { opacity: 1; }

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 36px;
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.footer-divider .ornament-line {
    width: 60px;
    background: rgba(184, 150, 90, 0.2);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 28px;
}

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    transition: color var(--t);
}

.footer-nav a:hover { color: var(--gold); }

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: #ffffff;
}

.footer-contact a {
    transition: color var(--t);
}

.footer-contact a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 150, 90, 0.3);
    border-radius: 50%;
    color: #ffffff;
    transition: color var(--t), border-color var(--t), background var(--t);
}

.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(184, 150, 90, 0.08);
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: #ffffff;
}

.footer-legal {
    display: flex;
    gap: 16px;
    font-size: 0.68rem;
    color: #ffffff;
}

.footer-legal a {
    color: inherit;
    transition: color var(--t);
}

.footer-legal a:hover { color: rgba(184, 150, 90, 0.6); }

.footer-credit {
    margin-top: 20px;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 300;
    color: #ffffff;
}

.footer-credit a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--t);
}

.footer-credit a:hover { color: var(--gold); }

/* ---------------------------------------------------------------
   14b-bis. SECTION PRESTATIONS (Décoration & Entertainment)
--------------------------------------------------------------- */
.section-prestations {
    background: var(--cream);
    padding: var(--pad-section) 0;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.presta-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(11, 22, 41, 0.06);
    transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}

.presta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11, 22, 41, 0.12);
}

.presta-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.presta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

.presta-body {
    padding: 32px;
}

.presta-body--full {
    padding: 40px 32px;
}

.presta-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
}

.presta-divider {
    margin: 14px 0 18px;
}

.presta-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
}

.presta-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.presta-list li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.presta-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #B8965A;
    font-weight: 600;
}

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

/* ---------------------------------------------------------------
   14b. SECTION LA CARTE
--------------------------------------------------------------- */
.section-carte {
    background: var(--cream-dark);
    padding: var(--pad-section) 0;
}

.carte-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 72px;
}

.carte-card {
    background: var(--white);
    padding: 0;
    position: relative;
    border: 1px solid rgba(11, 22, 41, 0.07);
    transition: background var(--t), box-shadow var(--t), transform var(--t);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.carte-card-header,
.carte-title,
.carte-divider,
.carte-list,
.carte-note {
    padding-left: 32px;
    padding-right: 32px;
}

.carte-card-header { padding-top: 28px; }
.carte-note { padding-bottom: 28px; }

/* Ligne dorée en haut au hover */
.carte-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
}

.carte-card:hover::before { transform: scaleX(1); }

.carte-card:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(11, 22, 41, 0.08);
    transform: translateY(-4px);
}

.carte-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.carte-icon {
    opacity: 0.65;
    transition: opacity var(--t), transform var(--t);
}

.carte-card:hover .carte-icon {
    opacity: 1;
    transform: translateY(-2px);
}

.carte-num {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(184, 150, 90, 0.4);
}

.carte-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.carte-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin-bottom: 22px;
    transition: width var(--t) var(--ease), opacity var(--t);
}

.carte-card:hover .carte-divider {
    width: 52px;
    opacity: 0.8;
}

.carte-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 24px;
}

.carte-list li {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.55;
    color: var(--text-muted);
    padding-left: 14px;
    position: relative;
}

.carte-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.carte-note {
    font-family: var(--font-sans);
    font-size: 0.67rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    padding-top: 18px;
    border-top: 1px solid rgba(11, 22, 41, 0.07);
}

/* CTA sous la grille */
.carte-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 40px;
    padding: 32px 40px;
    border: 1px solid rgba(11, 22, 41, 0.09);
    background: var(--white);
    flex-wrap: wrap;
}

.carte-cta p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    min-width: 240px;
}

.btn-carte {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 1px solid rgba(184, 150, 90, 0.5);
    color: var(--gold-dark);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: color var(--t), border-color var(--t);
}

.btn-carte::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
    z-index: 0;
}

.btn-carte span,
.btn-carte svg {
    position: relative;
    z-index: 1;
    transition: color var(--t);
}

.btn-carte:hover {
    color: var(--cream);
    border-color: var(--navy);
}

.btn-carte:hover::before { transform: scaleX(1); }

/* ---------------------------------------------------------------
   14c. INTERLUDE IMAGE PLEINE LARGEUR
--------------------------------------------------------------- */
.section-interlude {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.interlude-img {
    position: absolute;
    inset: 0;
    background-image: url('../Photos/table-dressee-elegante-provence.jpg');
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
    will-change: transform;
}

.interlude-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(11, 22, 41, 0.55) 0%,
        rgba(11, 22, 41, 0.32) 50%,
        rgba(11, 22, 41, 0.55) 100%);
}

.interlude-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 2;
}

.interlude-caption p {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(248, 243, 236, 0.85);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.interlude-caption .ornament-line {
    width: 80px;
    flex-shrink: 0;
}

/* ---------------------------------------------------------------
   14d. PHOTOS CARTES DE LA CARTE
--------------------------------------------------------------- */
.carte-photo {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s var(--ease);
    flex-shrink: 0;
}

.carte-card:hover .carte-photo {
    transform: scale(1.04);
}

.carte-photo--entrees {
    background-image: url('../Photos/entree-gastronomique-chef-prive.jpg');
    background-position: center 40%;
}

.carte-photo--plats {
    background-image: url('../Photos/plat-gastronomie-francaise-chef-prive.jpg');
    background-position: center 50%;
}

.carte-photo--desserts {
    background-image: url('../Photos/dessert-patisserie-gastronomique.jpg');
    background-position: center 60%;
}

.carte-photo--boissons {
    background-image: url('../Photos/selection-vins-champagnes-private-dining.jpg');
    background-position: center 40%;
}

/* Encart Mets d'Exception */
.carte-exception {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.carte-exception > .ornament-line-dark {
    flex: 1;
}

.carte-exception-inner {
    padding: 20px 40px;
    border-top: 1px solid rgba(184, 150, 90, 0.35);
    border-bottom: 1px solid rgba(184, 150, 90, 0.35);
}

.carte-exception-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B8965A;
    margin-bottom: 6px;
}

.carte-exception-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-style: italic;
    color: var(--navy);
    letter-spacing: 0.04em;
    opacity: 0.75;
}

/* ---------------------------------------------------------------
   14e. HISTOIRE — PHOTO DE FOND
--------------------------------------------------------------- */
.histoire-photo-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../Photos/guillaume-chapelle-chef-maitre-hotel-michelin.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
}

/* ---------------------------------------------------------------
   15. RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --pad-section: 88px;
    }

    .piliers-grid {
        grid-template-columns: 1fr;
    }

    .carte-grid {
        grid-template-columns: 1fr 1fr;
    }

    .carte-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 32px;
    }

    .pilier-card {
        border-right: none;
        border-bottom: 1px solid rgba(184, 150, 90, 0.1);
    }

    .pilier-card:last-child {
        border-bottom: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-img-wrap {
        min-height: 260px;
    }

    .histoire-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .histoire-visual {
        flex-direction: row;
        align-items: flex-start;
    }

    .portrait-frame {
        width: 200px;
        max-width: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .section-interlude { height: 260px; }
    .interlude-img { background-attachment: scroll; }
    .interlude-caption p { white-space: normal; text-align: center; }
    .interlude-caption .ornament-line { width: 40px; }
    .carte-photo { height: 140px; }
    .histoire-photo-bg { display: none; }

    :root {
        --pad-section: 64px;
        --pad-h: 24px;
    }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero-logo { height: 110px; max-width: 320px; }
    .hero-tagline { font-size: 2.1rem; }
    .hero-subtitle { letter-spacing: 0.2em; }

    .hero-cta {
        padding: 13px 28px;
    }

    #hero::before { inset: 16px; }
    #hero::after { display: none; }

    .manifeste-stats {
        flex-direction: column;
        gap: 28px;
    }

    .stat-divider-v { display: none; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-strip {
        flex-direction: column;
        gap: 24px;
        padding: 28px 24px;
    }

    .strip-sep { display: none; }

    .carte-grid {
        grid-template-columns: 1fr;
    }

    .histoire-visual {
        flex-direction: column;
        align-items: center;
    }

    .histoire-credentials {
        max-width: 100%;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav { gap: 24px; }
}

@media (max-width: 480px) {
    .hero-tagline { font-size: 1.8rem; }
    .manifeste-quote { font-size: 1.6rem; }

    .mobile-link { font-size: 1.8rem; }

    .histoire-quote {
        font-size: 1.05rem;
    }
}

/* ---------------------------------------------------------------
   17. OPTIMISATIONS MOBILES COMPLÉMENTAIRES
--------------------------------------------------------------- */

/* Curseur pointer sur appareils tactiles (boutons) */
@media (hover: none) {
    button { cursor: pointer; }
}

/* Supprime le délai de 300ms sur les éléments interactifs */
a, button, .faq-question, .mobile-link, .nav-link,
.cookie-btn, summary {
    touch-action: manipulation;
}

/* ---- ≤ 768px ---- */
@media (max-width: 768px) {

    /* Logo nav réduit */
    .nav-logo img { height: 46px; }

    /* Nav toggle & close – zone de touch plus grande */
    .nav-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    .mobile-close {
        top: 20px;
        right: 20px;
        padding: 12px;
        font-size: 1.4rem;
    }

    /* En-têtes de section */
    .section-header { margin-bottom: 48px; }

    /* Manifeste */
    .manifeste-inner { padding-bottom: 56px; }
    .manifeste-text  { margin-bottom: 40px; }

    /* Piliers – padding interne réduit */
    .pilier-card { padding: 40px 28px 36px; }

    /* Services – body plus compact */
    .service-body { padding: 24px 24px 28px; }

    /* La Carte – CTA bouton pleine largeur */
    .btn-carte {
        width: 100%;
        justify-content: center;
    }
    .carte-cta {
        padding: 24px;
    }
    .carte-cta p {
        min-width: unset;
    }

    /* Histoire – portrait bien centré */
    .portrait-frame    { width: 220px; }
    .histoire-credentials { max-width: 100%; }

    /* FAQ – désactive background-attachment: fixed (bug iOS) */
    .section-faq {
        background-attachment: scroll;
    }

    /* FAQ – padding réduit */
    .faq-question { padding: 22px 24px; }
    .faq-answer   { padding: 0 24px 22px; }

    /* Contacts – empêche l'email long de déborder */
    .contact-value,
    .strip-value {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Footer */
    .footer { padding: 60px var(--pad-h) 36px; }
    .footer-contact {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .footer-contact a {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ---- ≤ 480px ---- */
@media (max-width: 480px) {

    :root {
        --pad-section: 52px;
        --pad-h: 18px;
    }

    /* Logo hero */
    .hero-logo { height: 90px; max-width: 260px; }

    /* Logo nav */
    .nav-logo img { height: 40px; }

    /* Piliers encore plus compacts */
    .pilier-card { padding: 32px 20px 28px; }

    /* Footer */
    .footer         { padding: 48px var(--pad-h) 28px; }
    .footer-logo img { height: 60px; }
    .footer-nav      { gap: 18px; }
    .footer-bottom   { gap: 8px; }

    /* Strip info – texte légèrement réduit */
    .strip-value { font-size: 0.78rem; }

    /* La Carte CTA */
    .carte-cta  { padding: 22px 20px; gap: 20px; }

    /* Contact centré sur très petit écran */
    .contact-info--centered { gap: 24px; }
}

/* ---------------------------------------------------------------
   15b. SECTION FAQ
--------------------------------------------------------------- */
.section-faq {
    background-color: var(--navy);
    background-image:
        linear-gradient(rgba(11, 22, 41, 0.6), rgba(11, 22, 41, 0.6)),
        url('../Photos/faq-private-dining-table-confidentielle.jpg');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
    padding: var(--pad-section) 0;
}

.section-faq .section-label {
    color: var(--gold);
    opacity: 1;
}

.section-faq .section-title {
    color: var(--cream);
}

.section-faq .section-title em {
    color: var(--gold-light);
}

.section-faq .ornament-line {
    background: rgba(184, 150, 90, 0.35);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 64px;
    border: 1px solid rgba(184, 150, 90, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(184, 150, 90, 0.2);
    border-right: 1px solid rgba(184, 150, 90, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transition: background var(--t);
}

.faq-item:nth-child(even) {
    border-right: none;
}

.faq-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.faq-item[open] {
    background: rgba(184, 150, 90, 0.07);
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    padding: 28px 32px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--t);
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid rgba(184, 150, 90, 0.5);
    flex-shrink: 0;
    position: relative;
    background-image:
        linear-gradient(var(--gold), var(--gold)),
        linear-gradient(var(--gold), var(--gold));
    background-size: 1px 10px, 10px 1px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform var(--t) var(--ease), background-color var(--t);
}

.faq-item[open] .faq-question {
    color: var(--gold-light);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
    border-color: var(--gold);
}

.faq-answer {
    padding: 0 32px 28px;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(248, 243, 236, 0.65);
}

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

    .faq-item {
        border-right: none;
    }

    .faq-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(184, 150, 90, 0.2);
    }

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

/* ---------------------------------------------------------------
   16. UTILITAIRES & MICRO-INTERACTIONS
--------------------------------------------------------------- */

/* Selection text couleur or */
::selection {
    background: rgba(184, 150, 90, 0.25);
    color: var(--navy);
}

/* Focus visible pour accessibilité */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 2px;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
    background: rgba(184, 150, 90, 0.35);
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 150, 90, 0.55);
}

/* ---------------------------------------------------------------
   PAGE MENTIONS LÉGALES & CONFIDENTIALITÉ
--------------------------------------------------------------- */

/* Hero de la page légale */
.legal-hero {
    position: relative;
    background: var(--navy);
    padding: 160px 40px 80px;
    text-align: center;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(184,150,90,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../Photos/table-confidentielle-private-dining-cote-azur.jpg') center / cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.legal-hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.legal-hero-ornament .ornament-line {
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(184, 150, 90, 0.4);
}

.legal-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 32px;
}

.legal-hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--t);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.legal-breadcrumb a:hover {
    color: var(--gold);
    border-bottom-color: rgba(184,150,90,0.4);
}

.legal-breadcrumb span {
    color: rgba(184, 150, 90, 0.4);
}

/* Zone principale */
.legal-main {
    background: var(--cream);
    padding: 80px 0 100px;
}

/* Bloc article (Mentions / Confidentialité) */
.legal-block {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 0 64px;
}

.legal-block-header {
    text-align: center;
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(11, 22, 41, 0.1);
}

.legal-block-header .section-label {
    color: var(--gold);
    opacity: 1;
    margin-bottom: 12px;
}

.legal-block-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--navy);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.legal-block-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.legal-update {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* Sections de contenu */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-section {
    border-bottom: 1px solid rgba(11, 22, 41, 0.08);
    padding: 36px 0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section-title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.legal-section-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-section-body p {
    font-family: var(--font-sans);
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
}

.legal-section-body strong {
    font-weight: 500;
    color: var(--text-dark);
}

.legal-section-body a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--t);
}

.legal-section-body a:hover {
    color: var(--gold);
}

/* Liste légale */
.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

.legal-list li {
    font-family: var(--font-sans);
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 1px;
    background: var(--gold);
}

/* Tableau légal */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    margin: 8px 0;
}

.legal-table th {
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 12px 16px;
    text-align: left;
    background: rgba(11, 22, 41, 0.05);
    border-bottom: 1px solid rgba(11, 22, 41, 0.12);
}

.legal-table td {
    font-weight: 300;
    color: var(--text-mid);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(11, 22, 41, 0.06);
    vertical-align: top;
    line-height: 1.6;
}

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

.legal-table code {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: var(--navy);
    background: rgba(11, 22, 41, 0.06);
    padding: 2px 6px;
    border-radius: 2px;
}

/* Bouton reset cookies */
.btn-reset-cookies {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: transparent;
    border: 1px solid rgba(11, 22, 41, 0.3);
    padding: 10px 20px;
    cursor: pointer;
    transition: background var(--t), border-color var(--t), color var(--t);
    margin-top: 8px;
}

.btn-reset-cookies:hover {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}

.btn-reset-cookies:disabled {
    opacity: 0.5;
    cursor: default;
}

/* Séparateur entre les deux blocs */
.legal-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 16px auto 80px;
    max-width: 860px;
}

.legal-separator .ornament-line-dark {
    flex: 1;
    max-width: 200px;
    display: block;
    height: 1px;
    background: rgba(11, 22, 41, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 24px 60px;
    }

    .legal-breadcrumb {
        flex-direction: column;
        gap: 10px;
    }

    .legal-breadcrumb span { display: none; }

    .legal-block {
        padding: 0 0 48px;
    }

    .legal-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .legal-section {
        padding: 28px 0;
    }
}

/* ---------------------------------------------------------------
   BANDEAU COOKIES
--------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    border-top: 1px solid rgba(184, 150, 90, 0.3);
    padding: 20px 40px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.cookie-link:hover {
    color: var(--gold-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid rgba(184, 150, 90, 0.5);
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
    white-space: nowrap;
}

.cookie-btn--refuse {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn--refuse:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.cookie-btn--accept {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.cookie-btn--accept:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 18px 20px;
    }

    .cookie-inner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
