/* ═══════════════════════════════════════════════════════
   FLEUR DE SEL — PUBLIC STYLES
   ═══════════════════════════════════════════════════════ */

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

:root {
    --color-bg:      #0b0a10;
    --color-bg-alt:  #100f18;
    --color-surface: #1a1724;
    --color-text:    #e8e4ef;
    --color-muted:   #8a85a0;
    --color-accent:  #c9a96e;
    --color-accent2: #d4b87a;
    --color-white:   #f5f0f8;
    --color-dark:    #07060c;
    --color-purple:  #6c5ce7;
    --color-purple2: #a29bfe;
    --color-purple-glow: rgba(108, 92, 231, .12);

    --font-serif:  'Cormorant Garamond', 'Georgia', serif;
    --font-sans:   'Inter', -apple-system, 'Segoe UI', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

a { color: var(--color-accent); text-decoration: none; transition: color .3s; }
a:hover { color: var(--color-accent2); }

em { font-family: var(--font-serif); font-style: italic; color: var(--color-accent); }

.d-none { display: none !important; }
@media (min-width: 768px) { .d-none.d-md-block { display: block !important; } }


/* ── LOADER ── */
#loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--color-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s var(--ease-out), visibility .6s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }
.loader-text {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(24px, 5vw, 40px);
    color: var(--color-white);
    letter-spacing: 4px;
    margin-top: 20px;
}
.loader-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
    margin: 0 auto;
    animation: loaderPulse 1s ease infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.8); opacity: .5; }
}

/* ── NAVIGATION ── */
#mainNav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 40px;
    transition: all .5s var(--ease-out);
}
#mainNav.scrolled {
    padding: 14px 40px;
    background: rgba(11,10,16,.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(108,92,231,.1);
}

.nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 24px; font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
}
.nav-logo:hover { color: var(--color-white); }
.nav-logo em { font-size: 20px; }

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

.nav-link {
    font-size: 13px; font-weight: 500;
    color: var(--color-muted);
    letter-spacing: .5px;
    text-transform: uppercase;
    position: relative;
    transition: color .3s;
}
.nav-link:hover { color: var(--color-white); }
.nav-link::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
    transition: width .4s var(--ease-out);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
    font-size: 13px; font-weight: 500;
    color: var(--color-bg); background: var(--color-accent);
    padding: 10px 24px; border-radius: 100px;
    letter-spacing: .5px; transition: all .3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--color-accent2); color: var(--color-bg); transform: translateY(-1px); }

.nav-toggle {
    display: none; background: none; border: none;
    width: 28px; height: 20px; position: relative; cursor: pointer; z-index: 1003;
}
.nav-toggle span {
    display: block; width: 100%; height: 1.5px;
    background: var(--color-white); position: absolute; left: 0;
    transition: all .3s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .nav-link { font-size: 12px; }
    .nav-cta { padding: 8px 18px; font-size: 12px; }
}
@media (max-width: 768px) {
    #mainNav { padding: 16px 20px; }
    #mainNav.scrolled { padding: 12px 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed; inset: 0; z-index: 1002;
    background: var(--color-dark);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .5s var(--ease-out), visibility .5s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }

.mobile-menu-inner {
    text-align: center; padding: 80px 24px 40px;
    max-height: 100vh; max-height: 100dvh;
    overflow-y: auto; width: 100%;
}
.mobile-link {
    display: block; font-family: var(--font-serif);
    font-size: clamp(28px, 7vw, 44px); color: var(--color-white);
    padding: clamp(6px, 2vh, 14px) 0;
    transition: color .3s, transform .3s;
    opacity: 0; transform: translateY(20px);
}
.mobile-menu.open .mobile-link {
    opacity: 1; transform: translateY(0);
}
.mobile-link:nth-child(1) { transition-delay: .1s; }
.mobile-link:nth-child(2) { transition-delay: .15s; }
.mobile-link:nth-child(3) { transition-delay: .2s; }
.mobile-link:nth-child(4) { transition-delay: .25s; }
.mobile-link:nth-child(5) { transition-delay: .3s; }
.mobile-link:nth-child(6) { transition-delay: .35s; }
.mobile-link:hover { color: var(--color-accent); transform: translateX(8px); }
.mobile-divider {
    width: 40px; height: 1px; background: var(--color-accent);
    margin: clamp(16px, 3vh, 28px) auto;
    opacity: 0; transition: opacity .5s .4s;
}
.mobile-menu.open .mobile-divider { opacity: 1; }
.mobile-cta {
    font-family: var(--font-serif); font-size: clamp(22px, 5vw, 28px);
    color: var(--color-accent); display: block;
    opacity: 0; transform: translateY(10px);
    transition: opacity .5s .45s, transform .5s .45s, color .3s;
}
.mobile-menu.open .mobile-cta { opacity: 1; transform: translateY(0); }
.mobile-cta:hover { color: var(--color-accent2); }
.mobile-address {
    color: var(--color-muted); font-size: 13px; margin-top: 10px;
    opacity: 0; transition: opacity .5s .5s;
}
.mobile-menu.open .mobile-address { opacity: 1; }

/* ── HERO ── */
#hero {
    height: 100vh; min-height: 600px;
    position: relative; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: -10%;
    background: linear-gradient(160deg, #14101f 0%, #0d0a14 40%, var(--color-bg) 100%);
}

.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(108,92,231,.1) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(201,169,110,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(108,92,231,.05) 0%, transparent 40%);
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px;
}

.hero-badge {
    font-size: 12px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--color-accent); margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(56px, 12vw, 140px);
    font-weight: 300; line-height: .95;
    color: var(--color-white);
    margin-bottom: 32px;
}

.hero-line {
    display: block; overflow: hidden;
}
.hero-line span { display: inline-block; }
.hero-line-em { margin-top: -8px; }

.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--color-muted); line-height: 1.7;
    max-width: 500px; margin: 0 auto 40px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding: 0 16px; }

.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--color-accent); color: var(--color-bg);
    padding: 16px 32px; border-radius: 100px;
    font-size: 14px; font-weight: 600; letter-spacing: .3px;
    transition: all .4s var(--ease-out); border: none; cursor: pointer;
}
.btn-primary-custom:hover { background: var(--color-accent2); color: var(--color-bg); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(201,169,110,.2), 0 0 60px rgba(108,92,231,.1); }
.btn-primary-custom.btn-lg { padding: 20px 40px; font-size: 16px; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--color-white); padding: 16px 32px;
    border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
    font-size: 14px; font-weight: 500;
    transition: all .4s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--color-purple2); color: var(--color-purple2); box-shadow: 0 0 30px rgba(108,92,231,.1); }

.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--color-muted); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--color-purple), var(--color-accent)); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 768px) {
    #hero { min-height: 100svh; }
    .hero-content { padding: 0 20px; }
    .hero-badge { letter-spacing: 2px; font-size: 11px; margin-bottom: 24px; }
    .hero-sub { margin-bottom: 32px; }
    .hero-scroll { bottom: 24px; }
    .btn-primary-custom { padding: 14px 28px; font-size: 13px; }
    .btn-primary-custom.btn-lg { padding: 16px 32px; font-size: 14px; }
    .btn-ghost { padding: 14px 24px; font-size: 13px; }
    .hero-actions { gap: 12px; }
}
@media (max-width: 380px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-ghost,
    .hero-actions .btn-primary-custom { width: 100%; justify-content: center; }
}

/* ── MARQUEE ── */
#marquee {
    padding: 20px 0;
    border-top: 1px solid rgba(108,92,231,.1);
    border-bottom: 1px solid rgba(108,92,231,.1);
    overflow: hidden;
    background: linear-gradient(90deg, var(--color-bg) 0%, rgba(108,92,231,.03) 50%, var(--color-bg) 100%);
}

.marquee-track {
    display: flex; gap: 0;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    font-family: var(--font-serif);
    font-size: clamp(14px, 2vw, 18px);
    color: var(--color-muted);
    letter-spacing: 2px; text-transform: uppercase;
    padding: 0 20px; flex-shrink: 0;
}
.marquee-dot {
    color: var(--color-purple2); font-size: 10px;
    display: flex; align-items: center; padding: 0 8px; flex-shrink: 0;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ── SECTIONS ── */
.section {
    padding: clamp(80px, 12vw, 160px) 24px;
    position: relative;
}
.section-dark {
    background: var(--color-bg-alt);
    position: relative;
}
.section-dark::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(108,92,231,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(201,169,110,.04) 0%, transparent 50%);
}

.section-inner {
    max-width: 1100px; margin: 0 auto;
}

.section-label {
    font-size: 12px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--color-accent);
    display: block; margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300; line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 0;
}

.section-divider {
    width: 48px; height: 1px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
    margin: 28px 0;
}

.section-desc {
    font-size: clamp(14px, 2.5vw, 16px); line-height: 1.8;
    color: var(--color-muted); max-width: 520px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section { padding: clamp(56px, 10vw, 100px) 20px; }
    .section-label { letter-spacing: 2.5px; font-size: 11px; }
    .section-divider { margin: 20px 0; }
}
@media (max-width: 480px) {
    .section { padding: 48px 16px; }
}

/* ── HISTOIRE ── */
.histoire-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px); align-items: center;
}

.histoire-visual { position: relative; }

.histoire-img {
    aspect-ratio: 4/5; border-radius: 8px; overflow: hidden;
    background: var(--color-surface);
}
.img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--color-muted); gap: 12px;
}
.img-placeholder i { font-size: 48px; opacity: .3; }
.img-placeholder span { font-size: 14px; opacity: .4; }

.demo-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.histoire-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 60%; height: 60%;
    border: 1px solid var(--color-purple);
    border-radius: 8px; opacity: .2;
    z-index: -1;
    box-shadow: 0 0 80px rgba(108,92,231,.08);
}

.histoire-details {
    display: flex; gap: 32px; margin-top: 40px;
    padding-top: 32px; border-top: 1px solid rgba(108,92,231,.15);
}

.detail-item { display: flex; flex-direction: column; }
.detail-number {
    font-family: var(--font-serif);
    font-size: 28px; color: var(--color-accent); line-height: 1;
}
.detail-label { font-size: 12px; color: var(--color-muted); margin-top: 6px; letter-spacing: .5px; }

@media (max-width: 768px) {
    .histoire-grid { grid-template-columns: 1fr; gap: 40px; }
    .histoire-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .histoire-img { aspect-ratio: 4/3; }
    .histoire-accent { display: none; }
    .histoire-details { gap: 0; flex-wrap: nowrap; justify-content: space-between; }
    .detail-number { font-size: 24px; }
    .detail-label { font-size: 11px; }
}
@media (max-width: 380px) {
    .histoire-details { flex-direction: column; gap: 16px; }
}

/* ── CARTE ── */
.carte-header { text-align: center; margin-bottom: 60px; }
.carte-header .section-divider { margin: 28px auto; }

.subsection-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 32px);
    color: var(--color-white);
    text-align: center; margin-bottom: 32px;
}

/* Formules */
.formulas-grid {
    display: grid; grid-template-columns: repeat(var(--formula-cols, 3), 1fr);
    gap: 24px; margin-bottom: 80px;
}

.formula-card {
    background: var(--color-surface);
    border: 1px solid rgba(108,92,231,.1);
    border-radius: 12px; padding: 32px;
    transition: border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
    cursor: pointer; text-align: left;
    font-family: var(--font-sans);
    display: flex; flex-direction: column;
    color: var(--color-text);
}
.formula-card:hover {
    border-color: rgba(108,92,231,.3); transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(108,92,231,.08), 0 0 0 1px rgba(201,169,110,.1);
}

.formula-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.formula-header h4 { font-family: var(--font-serif); font-size: 22px; color: var(--color-white); }
.formula-price { font-family: var(--font-serif); font-size: 28px; color: var(--color-accent); font-weight: 600; white-space: nowrap; }
.formula-desc { font-size: 14px; color: var(--color-muted); margin-bottom: 0; flex-grow: 1; }

.formula-cta {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px;
    font-size: 13px; font-weight: 600;
    color: var(--color-accent);
    transition: gap .3s var(--ease-out), color .3s;
}
.formula-card:hover .formula-cta { gap: 10px; color: var(--color-accent2); }

/* ── Modal formule ── */
.formula-modal {
    position: fixed; inset: 0; z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; visibility: hidden;
    transition: opacity .35s var(--ease-out), visibility .35s;
}
.formula-modal.open { opacity: 1; visibility: visible; }

.formula-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(7,6,12,.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.formula-modal-content {
    position: relative; z-index: 2;
    background: var(--color-surface);
    border: 1px solid rgba(108,92,231,.15);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 48px);
    max-width: 520px; width: 100%;
    max-height: 85vh; overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(108,92,231,.08);
    transform: translateY(20px) scale(.97);
    transition: transform .4s var(--ease-out);
}
.formula-modal.open .formula-modal-content {
    transform: translateY(0) scale(1);
}

.formula-modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    color: var(--color-muted); font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .3s var(--ease-out);
}
.formula-modal-close:hover {
    background: rgba(255,255,255,.1);
    color: var(--color-white);
    transform: rotate(90deg);
}

.formula-modal-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 16px;
    padding-right: 40px;
}
.formula-modal-header h3 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 4vw, 34px);
    color: var(--color-white); font-weight: 400;
}
.formula-modal-price {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    color: var(--color-accent); font-weight: 600;
    white-space: nowrap; line-height: 1;
}

.formula-modal-divider {
    width: 48px; height: 1px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
    margin: 24px 0;
}

.formula-modal-desc {
    font-size: 15px; color: var(--color-muted);
    line-height: 1.7; margin-bottom: 20px;
}
.formula-modal-desc:empty { display: none; }

.formula-modal-body {
    font-size: 14px; color: var(--color-text);
    line-height: 1.9;
    padding: 20px 24px;
    background: rgba(108,92,231,.04);
    border: 1px solid rgba(108,92,231,.08);
    border-radius: 10px;
    margin-bottom: 20px;
}
.formula-modal-body:empty { display: none; }

.formula-modal-conditions {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; color: var(--color-accent);
    margin-bottom: 24px;
    line-height: 1.5;
}
.formula-modal-conditions:empty { display: none; }

.formula-modal-reserve {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    background: var(--color-accent); color: var(--color-bg);
    padding: 16px 32px; border-radius: 100px;
    font-size: 14px; font-weight: 600;
    transition: all .4s var(--ease-out);
}
.formula-modal-reserve:hover {
    background: var(--color-accent2); color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(201,169,110,.2);
}

/* Scrollbar dans le modal */
.formula-modal-content::-webkit-scrollbar { width: 4px; }
.formula-modal-content::-webkit-scrollbar-track { background: transparent; }
.formula-modal-content::-webkit-scrollbar-thumb { background: rgba(108,92,231,.2); border-radius: 2px; }

@media (max-width: 580px) {
    .formula-modal { padding: 16px; align-items: flex-end; }
    .formula-modal-content {
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        padding: 28px 20px 32px;
    }
}

/* Tabs */
.carte-tabs {
    display: flex; justify-content: center; gap: 8px;
    margin-bottom: 48px; flex-wrap: wrap;
}
.carte-tab {
    background: transparent; border: 1px solid rgba(255,255,255,.1);
    color: var(--color-muted); padding: 10px 20px;
    border-radius: 100px; font-size: 13px; font-weight: 500;
    cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    transition: all .3s var(--ease-out);
    font-family: var(--font-sans);
}
.carte-tab:hover { border-color: var(--color-purple2); color: var(--color-purple2); }
.carte-tab.active {
    background: var(--color-accent); border-color: var(--color-accent);
    color: var(--color-bg); font-weight: 600;
}

@media (max-width: 768px) {
    .carte-header { margin-bottom: 40px; }
    .carte-tabs {
        justify-content: flex-start;
        overflow-x: auto; flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; padding-bottom: 8px;
        margin-bottom: 32px; gap: 6px;
    }
    .carte-tabs::-webkit-scrollbar { display: none; }
    .carte-tab { flex-shrink: 0; padding: 8px 16px; font-size: 12px; }
    .formulas-grid { gap: 16px; margin-bottom: 48px; }
    .formula-card { padding: 24px; }
    .formula-header h4 { font-size: 18px; }
    .formula-price { font-size: 22px; }
    .carte-item-name { font-size: 16px; flex-shrink: 1; min-width: 0; }
    .carte-item-price { font-size: 16px; }
    .carte-legend { gap: 16px; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
    .formulas-grid { grid-template-columns: 1fr; }
    .carte-item-top { flex-wrap: wrap; }
    .carte-item-dots { display: none; }
    .carte-item-price { margin-left: auto; }
}

.carte-category { display: none; }
.carte-category.active { display: block; }

.carte-cat-desc { text-align: center; color: var(--color-muted); font-size: 15px; margin-bottom: 40px; }

/* Items */
.carte-items { max-width: 700px; margin: 0 auto; }

.carte-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: padding .3s;
}
.carte-item:hover { padding-left: 8px; }
.carte-item:last-child { border-bottom: none; }

.carte-item-top {
    display: flex; align-items: baseline; gap: 8px;
}
.carte-item-name {
    font-family: var(--font-serif);
    font-size: 18px; color: var(--color-white);
    flex-shrink: 0;
}
.carte-item-dots {
    flex-grow: 1; min-width: 20px;
    border-bottom: 1px dotted rgba(108,92,231,.2);
    margin-bottom: 5px;
}
.carte-item-price {
    font-family: var(--font-serif);
    font-size: 18px; color: var(--color-accent);
    white-space: nowrap; flex-shrink: 0;
}

.carte-item-desc {
    font-size: 13px; color: var(--color-muted);
    margin-top: 6px; line-height: 1.5;
}

.carte-tag {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-sans); font-size: 9px; font-weight: 700;
    background: linear-gradient(135deg, rgba(108,92,231,.2), rgba(201,169,110,.15));
    color: var(--color-purple2);
    padding: 2px 6px; border-radius: 4px;
    vertical-align: middle; margin-left: 6px;
    letter-spacing: .5px;
}

.carte-legend {
    display: flex; justify-content: center; gap: 24px;
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.carte-legend span { font-size: 12px; color: var(--color-muted); display: flex; align-items: center; gap: 6px; }

/* ── GALERIE ── */
.galerie-header { text-align: center; margin-bottom: 48px; }
.galerie-header .section-divider { margin: 28px auto; }
.galerie-desc { text-align: center; margin: 0 auto 48px; max-width: 560px; }

/*
 * Desktop (3 cols):
 *   salle    entrees   desserts
 *   salle    dressage  terrasse
 *   produits vins      terrasse
 */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px 240px;
    grid-template-areas:
        "salle entrees  desserts"
        "salle dressage terrasse"
        "produits vins   terrasse";
    gap: 14px;
}

.gi-salle    { grid-area: salle; }
.gi-entrees  { grid-area: entrees; }
.gi-desserts { grid-area: desserts; }
.gi-dressage { grid-area: dressage; }
.gi-terrasse { grid-area: terrasse; }
.gi-produits { grid-area: produits; }
.gi-vins     { grid-area: vins; }

.galerie-item {
    position: relative; border-radius: 10px; overflow: hidden;
    background: var(--color-surface);
}
.galerie-img {
    width: 100%; height: 100%;
    background: var(--color-surface);
}

.galerie-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,6,12,.7) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity .4s var(--ease-out);
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay span {
    font-family: var(--font-serif);
    font-size: 20px; color: var(--color-white);
    transform: translateY(8px);
    transition: transform .4s var(--ease-out);
}
.galerie-item:hover .galerie-overlay span { transform: translateY(0); }

/*
 * Tablet (2 cols):
 *   salle    entrees
 *   salle    desserts
 *   dressage terrasse
 *   produits terrasse
 *   vins     vins
 */
@media (max-width: 768px) {
    .galerie-header { margin-bottom: 32px; }
    .galerie-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, 180px);
        grid-template-areas:
            "salle    entrees"
            "salle    desserts"
            "dressage terrasse"
            "produits terrasse"
            "vins     vins";
        gap: 10px;
    }
    .galerie-overlay { opacity: 1; padding: 12px; }
    .galerie-overlay span { transform: translateY(0); font-size: 16px; }
}

/*
 * Small phone (2 cols, simpler):
 *   salle    entrees
 *   desserts dressage
 *   terrasse terrasse
 *   produits vins
 */
@media (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 150px);
        grid-template-areas:
            "salle    entrees"
            "desserts dressage"
            "terrasse terrasse"
            "produits vins";
        gap: 8px;
    }
    .galerie-overlay span { font-size: 14px; }
}

/*
 * Very small phone (1 col):
 */
@media (max-width: 360px) {
    .galerie-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 170px);
        grid-template-areas:
            "salle" "entrees" "desserts" "dressage"
            "terrasse" "produits" "vins";
        gap: 8px;
    }
}

/* ── LE CHEF ── */
.chef-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px); align-items: center;
}

.chef-text .section-desc { max-width: 480px; }

.chef-quote {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--color-white);
    line-height: 1.6;
    padding-left: 20px;
    border-left: 2px solid var(--color-accent);
    margin-top: 32px;
    position: relative;
}
.chef-quote span {
    font-size: 48px;
    color: var(--color-accent); opacity: .4;
    position: absolute; top: -14px; left: -6px;
    font-family: var(--font-serif);
}

.chef-visual { position: relative; }
.chef-img {
    aspect-ratio: 3/4; border-radius: 8px; overflow: hidden;
    background: var(--color-surface);
}
.chef-img .img-placeholder { height: 100%; }

.chef-accent {
    position: absolute;
    top: -20px; left: -20px;
    width: 60%; height: 60%;
    border: 1px solid var(--color-accent);
    border-radius: 8px; opacity: .15;
    z-index: -1;
}

.chef-badge {
    position: absolute;
    bottom: 32px; left: -32px;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(201,169,110,.3);
}
.chef-badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px; font-weight: 700;
    line-height: 1;
}
.chef-badge-text {
    display: block;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin-top: 4px; line-height: 1.3;
}

@media (max-width: 768px) {
    .chef-grid { grid-template-columns: 1fr; gap: 40px; }
    .chef-visual { max-width: 400px; margin: 0 auto; }
    .chef-img { aspect-ratio: 3/3.5; }
    .chef-accent { display: none; }
    .chef-badge {
        left: auto; right: 16px; bottom: -20px;
        padding: 14px 18px;
    }
    .chef-badge-number { font-size: 26px; }
    .chef-badge-text { font-size: 10px; }
    .chef-quote { font-size: 17px; margin-top: 24px; padding-left: 16px; }
    .chef-quote span { font-size: 36px; top: -10px; left: -4px; }
    .chef-text .section-desc { max-width: 100%; }
}

/* ── ENGAGEMENTS ── */
.engagements-header { text-align: center; margin-bottom: 72px; }
.engagements-header .section-divider { margin: 28px auto; }
.engagements-desc { text-align: center; margin: 0 auto; max-width: 540px; }

.engagements-list { display: flex; flex-direction: column; gap: 0; }

/* Row layout — image left, text right */
.engagement-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}
.engagement-row-reverse { direction: rtl; }
.engagement-row-reverse > * { direction: ltr; }

/* Visual / image side */
.engagement-visual { position: relative; }
.engagement-img {
    aspect-ratio: 4/3; border-radius: 10px; overflow: hidden;
    background: var(--color-surface);
    position: relative;
}
.engagement-img .img-placeholder { height: 100%; }
.engagement-img::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 10px;
    border: 1px solid rgba(108,92,231,.1);
    pointer-events: none;
}

/* Body / text side */
.engagement-body { position: relative; padding: 8px 0; }

/* Large number watermark */
.engagement-num {
    font-family: var(--font-serif);
    font-size: clamp(64px, 10vw, 100px);
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(108,92,231,.12);
    position: absolute;
    top: -20px; right: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Icon badge */
.engagement-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(108,92,231,.1), rgba(201,169,110,.08));
    border: 1px solid rgba(108,92,231,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--color-purple2);
    margin-bottom: 20px;
    transition: transform .4s var(--ease-out), box-shadow .4s;
}
.engagement-row:hover .engagement-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(108,92,231,.15);
}

.engagement-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3.5vw, 32px);
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 14px;
}

.engagement-text {
    font-size: 15px; color: var(--color-muted);
    line-height: 1.8; max-width: 420px;
    margin-bottom: 24px;
}

/* Stat highlight */
.engagement-stat {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 12px 20px;
    background: rgba(108,92,231,.05);
    border: 1px solid rgba(108,92,231,.1);
    border-radius: 8px;
}
.engagement-stat-number {
    font-family: var(--font-serif);
    font-size: 28px; font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}
.engagement-stat-label {
    font-size: 12px; color: var(--color-muted);
    letter-spacing: .3px; line-height: 1.3;
}

/* Separator between rows */
.engagement-separator {
    width: 1px; height: 64px;
    background: linear-gradient(180deg, rgba(108,92,231,.2), rgba(201,169,110,.1), transparent);
    margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .engagements-header { margin-bottom: 48px; }
    .engagement-row,
    .engagement-row-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr;
    }
    .engagement-visual { max-width: 480px; }
    .engagement-img { aspect-ratio: 16/9; }
    .engagement-num {
        position: static;
        display: block;
        font-size: 48px;
        -webkit-text-stroke: 1px rgba(108,92,231,.18);
        margin-bottom: -8px;
    }
    .engagement-body { padding: 0; }
    .engagement-text { max-width: 100%; }
    .engagement-separator { height: 40px; }
    .engagement-stat { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .engagement-icon { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; margin-bottom: 16px; }
    .engagement-title { font-size: 22px; }
    .engagement-text { font-size: 14px; }
    .engagement-stat { flex-direction: column; gap: 4px; text-align: center; padding: 14px 16px; }
    .engagement-stat-number { font-size: 24px; }
}

/* ── PARALLAX BREAK ── */
.parallax-section {
    position: relative;
    height: clamp(400px, 50vh, 600px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    top: -30%; bottom: -30%; left: 0; right: 0;
    background: var(--color-surface);
}
.parallax-bg .demo-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.parallax-bg .img-placeholder {
    height: 100%;
    font-size: 18px;
}
.parallax-overlay {
    position: absolute; inset: 0;
    background: rgba(7,6,12,.6);
    backdrop-filter: blur(2px);
}
.parallax-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px;
}
.parallax-label {
    font-size: 12px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--color-accent);
    display: block; margin-bottom: 20px;
}
.parallax-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 300; line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .parallax-section { height: clamp(320px, 45vh, 450px); }
    .parallax-label { letter-spacing: 2px; font-size: 11px; margin-bottom: 14px; }
    .parallax-title { margin-bottom: 24px; }
}

/* ── CITATION ── */
#citation { text-align: center; }

.big-quote {
    position: relative;
    font-family: var(--font-serif);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 300; line-height: 1.3;
    color: var(--color-white);
    max-width: 800px; margin: 0 auto;
}
.quote-mark {
    font-size: clamp(80px, 15vw, 200px);
    background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: .2;
    position: absolute; top: -40px; left: -10px; line-height: 1;
    font-family: var(--font-serif);
}

@media (max-width: 768px) {
    .big-quote { padding: 0 8px; }
    .quote-mark { top: -24px; left: -4px; }
}

/* ── INFOS ── */
.infos-header { text-align: center; margin-bottom: 72px; }
.infos-header .section-divider { margin: 28px auto; }

/* ── Split layout (comme histoire / chef) ── */
.infos-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
}

/* ── Carte côté gauche ── */
.infos-map-visual {
    position: relative;
}
.infos-map {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3.5;
    background: var(--color-surface);
    border: 1px solid rgba(108,92,231,.1);
}
.infos-map iframe {
    width: 100%; height: 100%;
    border: none;
    filter: saturate(.18) brightness(.7) contrast(1.2) hue-rotate(15deg);
    transition: filter .6s var(--ease-out);
}
.infos-map:hover iframe {
    filter: saturate(.5) brightness(.82) contrast(1.1) hue-rotate(0deg);
}
.infos-map-accent {
    position: absolute;
    bottom: -16px; right: -16px;
    width: 55%; height: 55%;
    border: 1px solid var(--color-accent);
    border-radius: 10px;
    opacity: .12;
    z-index: -1;
    box-shadow: 0 0 60px rgba(201,169,110,.06);
}

/* ── Détails côté droit ── */
.infos-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.infos-detail-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
}

.infos-detail-body {
    width: 100%;
}

.infos-detail-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(108,92,231,.1), rgba(201,169,110,.06));
    border: 1px solid rgba(108,92,231,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--color-purple2);
    transition: transform .4s var(--ease-out), box-shadow .4s;
}
.infos-detail-block:hover .infos-detail-icon {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 20px rgba(108,92,231,.12);
}

.infos-detail-body h4 {
    font-family: var(--font-serif);
    font-size: 20px; color: var(--color-white);
    margin-bottom: 6px;
}
.infos-detail-body p {
    font-size: 14px; color: var(--color-muted); line-height: 1.7;
}
.infos-detail-sub {
    font-size: 13px !important; margin-top: 6px; opacity: .7;
}

/* Lien itinéraire */
.infos-detail-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    font-size: 13px; font-weight: 600;
    color: var(--color-accent);
    padding: 6px 16px;
    border: 1px solid rgba(201,169,110,.25);
    border-radius: 100px;
    transition: all .3s var(--ease-out);
}
.infos-detail-link:hover {
    background: rgba(201,169,110,.08);
    border-color: var(--color-accent);
    color: var(--color-accent2);
    transform: translateX(3px);
}

/* Téléphone */
.infos-detail-phone {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 28px);
    color: var(--color-accent);
    transition: color .3s;
    margin-bottom: 2px;
}
.infos-detail-phone:hover { color: var(--color-accent2); }

/* Séparateurs */
.infos-detail-sep {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, rgba(108,92,231,.15), rgba(201,169,110,.08), transparent);
}

/* Horaires inline */
.infos-horaires {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 4px;
    width: 100%;
}
.infos-h-row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: 14px;
}
.infos-h-row:last-child { border-bottom: none; }
.infos-h-row span:first-child { color: var(--color-muted); }
.infos-h-row span:last-child { color: var(--color-text); font-weight: 500; }
.infos-h-closed { color: var(--color-muted) !important; opacity: .45; font-weight: 400 !important; }

/* ── CTA ── */
.infos-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.infos-cta p {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 28px);
    color: var(--color-white);
    margin-bottom: 24px;
}
.infos-cta-phone {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 16px;
    font-family: var(--font-serif);
    font-size: 18px; color: var(--color-muted);
    transition: color .3s;
}
.infos-cta-phone:hover { color: var(--color-accent); }
.infos-cta-phone i { font-size: 15px; color: var(--color-accent); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .infos-split { gap: clamp(32px, 5vw, 60px); }
    .infos-map-visual { position: static; }
}
@media (max-width: 768px) {
    .infos-header { margin-bottom: 48px; }
    .infos-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .infos-map-visual { max-width: 520px; }
    .infos-map { aspect-ratio: 16/10; }
    .infos-map-accent { display: none; }
    .infos-detail-block { padding: 20px 0; }
    .infos-detail-body h4 { font-size: 18px; }
    .infos-detail-phone { font-size: 24px; }
    .infos-cta { margin-top: 48px; padding-top: 40px; }
    .infos-cta-phone { font-size: 16px; }
}
@media (max-width: 480px) {
    .infos-map { aspect-ratio: 4/3; }
    .infos-detail-icon { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
    .infos-detail-body h4 { font-size: 17px; }
    .infos-h-row { font-size: 13px; }
}

/* ── FOOTER ── */
#footer {
    position: relative;
    background: var(--color-dark);
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px 24px; }

/* Back to top */
.footer-btt {
    position: absolute; top: -24px; right: 40px;
    width: 48px; height: 48px;
    background: var(--color-accent); color: var(--color-bg);
    border: none; border-radius: 50%;
    font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .4s var(--ease-out);
    box-shadow: 0 8px 24px rgba(201,169,110,.25);
    z-index: 10;
}
.footer-btt:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(201,169,110,.35); background: var(--color-accent2); }

/* Grid */
.footer-grid {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 40px; padding: 64px 0 48px;
}

/* Brand */
.footer-logo {
    font-family: var(--font-serif);
    font-size: 32px; color: var(--color-white);
    margin-bottom: 10px;
}
.footer-tagline { font-size: 14px; color: var(--color-muted); line-height: 1.6; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(108,92,231,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--color-muted);
    transition: all .3s var(--ease-out);
}
.footer-social a:hover {
    border-color: var(--color-purple); color: var(--color-purple2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(108,92,231,.15);
}

/* Columns */
.footer-col h6 {
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-accent); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    font-size: 14px; color: var(--color-muted);
    transition: all .3s; display: inline-flex; align-items: center; gap: 6px;
}
.footer-col a:hover { color: var(--color-white); transform: translateX(3px); }

.footer-contact-line {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--color-muted);
}
.footer-contact-line i { color: var(--color-accent); font-size: 13px; flex-shrink: 0; }

/* Horaires */
.footer-horaires { display: flex; flex-direction: column; gap: 0; }
.footer-h-row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.03);
    font-size: 12px;
}
.footer-h-row span:first-child { color: var(--color-muted); }
.footer-h-row span:last-child { color: var(--color-text); font-weight: 500; text-align: right; }
.footer-h-closed { color: var(--color-muted) !important; opacity: .4; font-weight: 400 !important; }

/* Deco separator */
.footer-deco {
    display: flex; align-items: center; gap: 16px;
    padding: 8px 0 24px;
}
.footer-deco-line { flex-grow: 1; height: 1px; background: rgba(255,255,255,.06); }
.footer-deco-star { color: var(--color-purple2); font-size: 10px; opacity: .5; }

/* Bottom */
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(255,255,255,.25);
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-dot { opacity: .3; }
.footer-bottom a { color: rgba(255,255,255,.25); font-size: 12px; transition: color .3s; }
.footer-bottom a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 768px) {
    .footer-inner { padding: 0 20px 20px; }
    .footer-grid { padding: 48px 0 36px; gap: 32px 24px; }
    .footer-logo { font-size: 28px; }
}
@media (max-width: 580px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-btt { right: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── REVEAL ANIMATIONS (initial states, GSAP handles the rest) ── */
[data-reveal] { opacity: 0; transform: translateY(40px); }
[data-reveal-line] span { transform: translateY(110%); display: inline-block; }
[data-parallax] { will-change: transform; }

/* ── RESERVATION ── */
.resa-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 8vw, 100px); align-items: start;
}

.resa-phone {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-serif); font-size: 24px;
    color: var(--color-accent); margin-top: 8px;
    transition: color .3s; padding: 12px 0;
}
.resa-phone:hover { color: var(--color-accent2); }
.resa-phone i { font-size: 20px; }

.resa-info { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.resa-info-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--color-muted);
}
.resa-info-item i { color: var(--color-accent); font-size: 16px; flex-shrink: 0; }

/* Form */
.resa-form-wrap {
    background: var(--color-surface);
    border: 1px solid rgba(108,92,231,.12);
    border-radius: 16px; padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 24px 64px rgba(108,92,231,.06);
}

.resa-form { display: flex; flex-direction: column; gap: 20px; }

.resa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.resa-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.resa-field { display: flex; flex-direction: column; gap: 6px; }
.resa-field label {
    font-size: 12px; font-weight: 500;
    color: var(--color-muted); letter-spacing: .5px;
    text-transform: uppercase;
}

.resa-field input,
.resa-field select,
.resa-field textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px; padding: 14px 16px;
    color: var(--color-white); font-family: var(--font-sans);
    font-size: 15px; transition: all .3s var(--ease-out);
    outline: none; width: 100%;
}
.resa-field input::placeholder,
.resa-field textarea::placeholder { color: rgba(255,255,255,.2); }
.resa-field input:focus,
.resa-field select:focus,
.resa-field textarea:focus {
    border-color: var(--color-purple);
    background: rgba(108,92,231,.04);
    box-shadow: 0 0 0 3px rgba(108,92,231,.1);
}

.resa-field select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a8580' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
}
.resa-field select option { background: var(--color-surface); color: var(--color-white); }

.resa-field textarea { resize: vertical; min-height: 80px; }

/* Guests stepper */
.resa-guests {
    display: flex; align-items: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px; overflow: hidden;
}
.resa-guests input {
    border: none !important; background: transparent !important;
    text-align: center; font-size: 20px; font-weight: 600;
    color: var(--color-white); width: 100%;
    padding: 10px 0; box-shadow: none !important;
    -moz-appearance: textfield;
}
.resa-guests input::-webkit-outer-spin-button,
.resa-guests input::-webkit-inner-spin-button { -webkit-appearance: none; }

.resa-guests-btn {
    background: none; border: none; color: var(--color-accent);
    font-size: 22px; font-weight: 300;
    width: 48px; height: 48px;
    cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.resa-guests-btn:hover { background: rgba(201,169,110,.1); color: var(--color-accent2); }

/* Notice (shared: full + group hint) */
.resa-notice {
    background: rgba(201,169,110,.07);
    border: 1px solid rgba(201,169,110,.25);
    border-radius: 10px; padding: 20px;
    text-align: center;
}
.resa-notice-icon {
    font-size: 28px; color: var(--color-accent2);
    margin-bottom: 6px;
}
.resa-notice p {
    font-size: 14px; color: var(--color-text);
    line-height: 1.5; margin: 0 0 14px;
}
.resa-notice-phone {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--color-accent2); color: #fff;
    padding: 10px 22px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all .25s;
}
.resa-notice-phone:hover {
    background: var(--color-accent); color: #fff;
    transform: translateY(-1px);
}

/* Warning */
.resa-warning {
    display: flex; align-items: center; gap: 10px;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.2);
    border-radius: 8px; padding: 12px 16px;
    font-size: 13px; color: #f59e0b;
}

/* Error */
.resa-error {
    display: flex; align-items: center; gap: 10px;
    background: rgba(220,53,69,.08);
    border: 1px solid rgba(220,53,69,.2);
    border-radius: 8px; padding: 14px 16px;
    font-size: 14px; color: #f87171; margin-bottom: 16px;
}

/* Submit */
.resa-submit {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--color-accent); color: var(--color-bg);
    border: none; border-radius: 100px;
    padding: 18px 32px; font-size: 15px; font-weight: 600;
    font-family: var(--font-sans); cursor: pointer;
    transition: all .4s var(--ease-out);
    width: 100%;
}
.resa-submit:hover { background: var(--color-accent2); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(201,169,110,.2), 0 0 60px rgba(108,92,231,.1); }
.resa-submit:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

.resa-legal { font-size: 11px; color: var(--color-muted); text-align: center; line-height: 1.5; margin-top: 4px; }

/* Success */
.resa-success {
    text-align: center; padding: 40px 20px;
}
.resa-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108,92,231,.15), rgba(201,169,110,.1));
    border: 2px solid var(--color-purple);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 28px; color: var(--color-accent);
}
.resa-success h4 {
    font-family: var(--font-serif); font-size: 28px;
    color: var(--color-white); margin-bottom: 12px;
}
.resa-success p {
    font-size: 15px; color: var(--color-muted);
    line-height: 1.7; margin-bottom: 24px; max-width: 380px; margin-left: auto; margin-right: auto;
}

@media (max-width: 768px) {
    .resa-grid { grid-template-columns: 1fr; gap: 40px; }
    .resa-text { text-align: center; }
    .resa-text .section-desc { max-width: 100%; }
    .resa-text .section-divider { margin: 20px auto; }
    .resa-phone { justify-content: center; font-size: 22px; }
    .resa-info { align-items: center; }
    .resa-form-wrap { padding: 24px 20px; }
    .resa-row { grid-template-columns: 1fr; }
    .resa-row-3 { grid-template-columns: 1fr 1fr; }
    .resa-row-3 .resa-field:last-child { grid-column: 1 / -1; }
    .resa-field input,
    .resa-field select,
    .resa-field textarea { padding: 12px 14px; font-size: 14px; }
    .resa-submit { padding: 16px 24px; font-size: 14px; }
}
@media (max-width: 480px) {
    .resa-row-3 { grid-template-columns: 1fr; }
    .resa-row-3 .resa-field:last-child { grid-column: auto; }
    .resa-form-wrap { padding: 20px 16px; border-radius: 12px; }
}

/* ── AVIS CLIENTS ── */
.avis-header { text-align: center; margin-bottom: 64px; }
.avis-header .section-divider { margin: 28px auto; }
.avis-desc { margin: 0 auto; }

.avis-carousel { position: relative; overflow: hidden; }

.avis-track {
    display: flex; gap: 24px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.avis-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 20px;
    transition: border-color .3s, transform .3s;
}
.avis-card:hover {
    border-color: rgba(108,92,231,.3);
    transform: translateY(-4px);
}

.avis-stars { display: flex; gap: 3px; }
.avis-stars i {
    font-size: 14px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.avis-text {
    font-size: 15px; line-height: 1.75;
    color: var(--color-muted);
    font-style: italic;
    flex: 1;
    margin: 0;
}
.avis-text::before { content: "\201C"; }
.avis-text::after { content: "\201D"; }

.avis-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.avis-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 600;
    color: var(--color-white);
    flex-shrink: 0;
}

.avis-info { display: flex; flex-direction: column; gap: 2px; }
.avis-name { font-size: 14px; font-weight: 500; color: var(--color-white); }
.avis-date { font-size: 12px; color: var(--color-muted); opacity: .7; }

.avis-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-top: 48px;
}

.avis-nav-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: var(--color-white);
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, border-color .3s;
}
.avis-nav-btn:hover {
    background: rgba(108,92,231,.15);
    border-color: var(--color-purple);
}

.avis-dots { display: flex; gap: 8px; }
.avis-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    transition: background .3s, transform .3s;
    cursor: pointer; border: none;
}
.avis-dot.active {
    background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
    transform: scale(1.3);
}

.avis-cta { text-align: center; margin-top: 48px; }

@media (max-width: 1024px) {
    .avis-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 640px) {
    .avis-card { flex: 0 0 100%; padding: 28px 24px; }
    .avis-header { margin-bottom: 40px; }
    .avis-nav { margin-top: 32px; }
}

/* ── SCROLLBAR ── */
* { scrollbar-width: thin; scrollbar-color: rgba(108,92,231,.3) var(--color-bg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(108,92,231,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(108,92,231,.5); }
