    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --rouge:     #C41E3A;
      --rouge-dark:#9B1530;
      --cuivre:    #B87333;
      --cuivre-light:#D4956A;
      --pierre:    #F0EBE3;
      --pierre-mid:#DDD5C8;
      --anthracite:#2C2828;
      --noir:      #1A1A1A;
      --blanc:     #FAF7F4;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Lato', sans-serif; background: var(--blanc); color: var(--noir); cursor: none; overflow-x: hidden; }

    .cursor { position: fixed; width: 12px; height: 12px; background: var(--rouge); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s ease, background 0.2s; }
    .cursor-ring { position: fixed; width: 36px; height: 36px; border: 1.5px solid var(--cuivre); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform 0.18s ease, width 0.2s, height 0.2s; }

    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; transition: background 0.4s, padding 0.4s; }
    nav.scrolled { background: rgba(26,26,26,0.95); backdrop-filter: blur(12px); padding: 16px 60px; }
    .nav-logo { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 900; color: var(--blanc); letter-spacing: 0.12em; text-decoration: none; }
    .nav-logo span { color: var(--cuivre); }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--cuivre); transition: width 0.3s ease; }
    .nav-links a:hover { color: var(--blanc); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta { background: var(--rouge); color: var(--blanc) !important; padding: 10px 24px; border-radius: 2px; font-weight: 700 !important; letter-spacing: 0.15em !important; transition: background 0.2s !important; }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--rouge-dark) !important; }

    #hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; background: url('../images/artemis.jpg') center/cover no-repeat; transform: scale(1.05); animation: heroZoom 18s ease-in-out infinite alternate; }
    @keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.48) 50%, rgba(196,30,58,0.22) 100%); }
    .hero-grain { position: absolute; inset: 0; opacity: 0.06; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 200px; }
    .hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
    .hero-eyebrow { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
    .hero-title { font-family: 'Cinzel', serif; font-size: clamp(72px, 12vw, 140px); font-weight: 900; color: var(--blanc); line-height: 0.9; letter-spacing: 0.04em; opacity: 0; animation: fadeUp 0.9s 0.5s forwards; }
    .hero-title em { font-style: italic; font-family: 'Cormorant Garamond', serif; color: var(--cuivre-light); font-size: 0.6em; display: block; letter-spacing: 0.25em; font-weight: 400; }
    .hero-line { width: 60px; height: 2px; background: var(--cuivre); margin: 32px auto; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
    .hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.5vw, 26px); font-weight: 400; font-style: italic; color: rgba(250,247,244,0.85); letter-spacing: 0.05em; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
    .hero-actions { margin-top: 48px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 1.1s forwards; }
    .btn-primary { background: var(--rouge); color: var(--blanc); padding: 16px 40px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.25s, transform 0.2s; display: inline-block; }
    .btn-primary:hover { background: var(--rouge-dark); transform: translateY(-2px); }
    .btn-outline { border: 1.5px solid rgba(250,247,244,0.5); color: var(--blanc); padding: 16px 40px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: border-color 0.25s, background 0.25s, transform 0.2s; display: inline-block; }
    .btn-outline:hover { border-color: var(--cuivre); color: var(--cuivre); transform: translateY(-2px); }
    .hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(250,247,244,0.5); font-family: 'Lato', sans-serif; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; animation: bounce 2s 2s infinite; }
    .hero-scroll::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(184,115,51,0.8), transparent); display: block; }
    @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    .bandeau { background: var(--rouge); padding: 16px 0; overflow: hidden; }
    .bandeau-track { display: flex; gap: 0; animation: marquee 20s linear infinite; white-space: nowrap; }
    .bandeau-item { font-family: 'Cinzel', serif; font-size: 12px; font-weight: 600; letter-spacing: 0.25em; color: rgba(250,247,244,0.9); padding: 0 40px; display: inline-flex; align-items: center; gap: 20px; }
    .bandeau-item::after { content: '✦'; color: var(--cuivre-light); font-size: 10px; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    section { padding: 120px 60px; }
    .section-eyebrow { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 16px; }
    .section-title { font-family: 'Cinzel', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.05; color: var(--anthracite); }
    .section-title.light { color: var(--blanc); }
    .divider { width: 50px; height: 2px; background: var(--cuivre); margin: 28px 0; }

    #identite { background: var(--pierre); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; padding: 120px 60px; }
    .identite-img-wrap { position: relative; }
    .identite-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; filter: sepia(0.08) contrast(1.05); }
    .identite-badge { position: absolute; bottom: -24px; right: -24px; width: 110px; height: 110px; background: var(--rouge); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 4px solid var(--blanc); box-shadow: 0 12px 40px rgba(196,30,58,0.4); }
    .identite-badge strong { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 900; color: var(--blanc); line-height: 1; }
    .identite-badge span { font-family: 'Lato', sans-serif; font-size: 9px; letter-spacing: 0.15em; color: rgba(250,247,244,0.8); text-transform: uppercase; text-align: center; padding: 0 8px; }
    .identite-text p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; line-height: 1.75; color: #4A4040; margin-bottom: 24px; }
    .identite-stats { display: flex; gap: 48px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--pierre-mid); }
    .stat-item strong { font-family: 'Cinzel', serif; font-size: 40px; font-weight: 900; color: var(--rouge); display: block; line-height: 1; }
    .stat-item span { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #888; margin-top: 6px; display: block; }

    /* ===== MENU ===== */
    #menu { background: var(--anthracite); padding: 120px 60px; }
    .menu-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
    .menu-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.06); padding: 6px; border-radius: 4px; flex-wrap: wrap; }
    .menu-tab { padding: 10px 22px; font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,244,0.5); border: none; background: none; border-radius: 2px; cursor: none; transition: all 0.2s; }
    .menu-tab.active { background: var(--rouge); color: var(--blanc); }
    .menu-tab:hover:not(.active) { color: var(--blanc); }

    /* Bannière image catégorie */
    .menu-cat-banner {
      width: 100%; height: 220px; position: relative; overflow: hidden; margin-bottom: 32px;
      border-radius: 2px;
    }
    .menu-cat-banner img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.7) saturate(1.1); }
    .menu-cat-banner-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 100%);
      display: flex; align-items: center; padding: 0 48px;
    }
    .menu-cat-title { font-family: 'Cinzel', serif; font-size: clamp(28px,4vw,48px); font-weight: 900; color: white; letter-spacing: 0.06em; }
    .menu-cat-title span { color: var(--cuivre); }

    .menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .menu-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 28px 28px; position: relative; overflow: hidden; transition: background 0.3s, border-color 0.3s, transform 0.3s; cursor: none; }
    .menu-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--rouge); transition: height 0.35s ease; }
    .menu-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
    .menu-card:hover::before { height: 100%; }
    .menu-card.featured { background: rgba(196,30,58,0.12); border-color: rgba(196,30,58,0.35); }
    .menu-card.featured::before { background: var(--cuivre); }
    .card-tag { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 10px; display: block; }
    .card-name { font-family: 'Cinzel', serif; font-size: 17px; font-weight: 600; color: var(--blanc); margin-bottom: 8px; line-height: 1.2; }
    .card-desc { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: rgba(250,247,244,0.5); line-height: 1.5; margin-bottom: 20px; }
    .card-pricing { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
    .card-price { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 900; color: var(--rouge); }
    .card-price small { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 400; color: rgba(250,247,244,0.35); margin-left: 4px; }
    .card-menu-price { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; color: rgba(250,247,244,0.4); letter-spacing: 0.05em; }
    .card-menu-price span { color: var(--cuivre-light); font-size: 13px; font-family: 'Cinzel', serif; font-weight: 700; }
    .card-bestseller { position: absolute; top: 16px; right: 16px; background: var(--cuivre); color: var(--blanc); font-family: 'Lato', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }

    /* Note menu */
    .menu-note { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: rgba(250,247,244,0.4); margin-top: 24px; text-align: right; }

    #ambiance { background: var(--blanc); padding: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
    .ambiance-text { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; background: var(--pierre); }
    .ambiance-text p { font-family: 'Cormorant Garamond', serif; font-size: 20px; line-height: 1.8; color: #5A5050; margin-bottom: 16px; }
    .ambiance-img { position: relative; overflow: hidden; }
    .ambiance-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(0.1) saturate(1.1); transition: transform 0.6s ease; }
    .ambiance-img:hover img { transform: scale(1.04); }
    .ambiance-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(240,235,227,0.15), transparent); }
    .review-card { position: absolute; bottom: 32px; left: 32px; right: 32px; background: rgba(26,26,26,0.88); backdrop-filter: blur(16px); padding: 24px 28px; border-left: 3px solid var(--cuivre); }
    .review-stars { color: var(--cuivre); font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
    .review-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; color: rgba(250,247,244,0.9); line-height: 1.5; margin-bottom: 12px; }
    .review-author { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cuivre); }

    /* RESERVATION */
    #reservation { background: var(--pierre); padding: 120px 60px; position: relative; overflow: hidden; }
    #reservation::before { content: 'RÉSERVER'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Cinzel', serif; font-size: clamp(72px,13vw,160px); font-weight: 900; color: rgba(196,30,58,0.04); white-space: nowrap; pointer-events: none; letter-spacing: 0.06em; }
    .resa-wrap { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
    .resa-header { text-align: center; margin-bottom: 64px; }
    .resa-header .section-eyebrow { display: block; }
    .resa-header .section-title { color: var(--anthracite); }
    .resa-header p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: #7A6F6F; margin-top: 20px; line-height: 1.6; }
    .resa-card { background: white; box-shadow: 0 20px 80px rgba(26,26,26,0.1); border: 1px solid var(--pierre-mid); }
    .resa-steps { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--pierre-mid); }
    .resa-step { padding: 22px 28px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--pierre-mid); transition: background 0.3s; }
    .resa-step:last-child { border-right: none; }
    .resa-step.active { background: var(--rouge); }
    .resa-step.done   { background: var(--anthracite); }
    .step-num { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 13px; font-weight: 900; background: rgba(196,30,58,0.1); color: var(--rouge); transition: all 0.3s; }
    .resa-step.active .step-num { background: rgba(255,255,255,0.2); color: white; }
    .resa-step.done   .step-num { background: rgba(255,255,255,0.15); color: white; }
    .step-info { display: flex; flex-direction: column; gap: 2px; }
    .step-label { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--anthracite); transition: color 0.3s; }
    .resa-step.active .step-label, .resa-step.done .step-label { color: rgba(255,255,255,0.9); }
    .step-sub { font-family: 'Lato', sans-serif; font-size: 11px; color: rgba(44,40,40,0.4); transition: color 0.3s; }
    .resa-step.active .step-sub { color: rgba(255,255,255,0.6); }
    .resa-step.done   .step-sub { color: rgba(255,255,255,0.5); }
    .resa-body { padding: 52px 52px 44px; }
    .resa-panel { display: none; animation: fadeUp 0.35s forwards; }
    .resa-panel.active { display: block; }
    .resa-row { display: grid; gap: 24px; margin-bottom: 24px; }
    .resa-row.cols-2 { grid-template-columns: 1fr 1fr; }
    .resa-row.cols-1 { grid-template-columns: 1fr; }
    .resa-field { display: flex; flex-direction: column; gap: 8px; }
    .resa-field label { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #888; }
    .resa-field input, .resa-field select, .resa-field textarea { border: 1.5px solid var(--pierre-mid); background: var(--pierre); padding: 13px 16px; font-family: 'Lato', sans-serif; font-size: 14px; color: var(--anthracite); outline: none; border-radius: 2px; transition: border-color 0.2s, background 0.2s; appearance: none; cursor: none; }
    .resa-field input:focus, .resa-field select:focus, .resa-field textarea:focus { border-color: var(--rouge); background: white; }
    .resa-field textarea { resize: vertical; min-height: 90px; }
    .guests-wrap { display: flex; align-items: center; border: 1.5px solid var(--pierre-mid); background: var(--pierre); border-radius: 2px; overflow: hidden; transition: border-color 0.2s; }
    .guest-btn { width: 48px; height: 48px; border: none; background: none; font-size: 22px; font-weight: 300; color: var(--rouge); cursor: none; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
    .guest-btn:hover { background: rgba(196,30,58,0.07); }
    .guest-val { flex: 1; text-align: center; font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--anthracite); user-select: none; }
    .slots-label { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #888; margin-bottom: 14px; display: block; }
    .slots-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 24px; }
    .slot { padding: 13px 8px; border: 1.5px solid var(--pierre-mid); background: var(--pierre); text-align: center; font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; color: var(--anthracite); cursor: none; border-radius: 2px; transition: all 0.18s; }
    .slot:hover { border-color: var(--rouge); color: var(--rouge); background: rgba(196,30,58,0.04); }
    .slot.selected { background: var(--rouge); border-color: var(--rouge); color: white; }
    .resa-recap { background: var(--pierre); border-left: 3px solid var(--rouge); padding: 24px 28px; margin-bottom: 28px; }
    .recap-head { font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cuivre); margin-bottom: 16px; }
    .recap-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 32px; }
    .recap-item { display: flex; flex-direction: column; gap: 2px; }
    .recap-item span:first-child { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #aaa; font-weight: 700; }
    .recap-item span:last-child { font-family: 'Cinzel', serif; font-size: 14px; color: var(--anthracite); font-weight: 600; }
    .resa-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--pierre-mid); }
    .btn-back { border: 1.5px solid var(--pierre-mid); background: none; color: #888; padding: 13px 28px; font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: none; border-radius: 2px; transition: border-color 0.2s, color 0.2s; }
    .btn-back:hover { border-color: var(--anthracite); color: var(--anthracite); }
    .btn-next { background: var(--rouge); border: none; color: white; padding: 15px 44px; font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; cursor: none; border-radius: 2px; display: flex; align-items: center; gap: 12px; transition: background 0.2s, transform 0.2s; }
    .btn-next:hover { background: var(--rouge-dark); transform: translateY(-2px); }
    .btn-next svg { width: 14px; height: 14px; flex-shrink: 0; }
    .resa-success { display: none; text-align: center; padding: 64px 40px; }
    .resa-success.show { display: block; animation: fadeUp 0.5s forwards; }
    .success-check { width: 68px; height: 68px; border-radius: 50%; background: rgba(196,30,58,0.1); margin: 0 auto 28px; display: flex; align-items: center; justify-content: center; }
    .success-check svg { width: 32px; height: 32px; color: var(--rouge); }
    .success-title { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 900; color: var(--anthracite); margin-bottom: 16px; }
    .success-msg { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: #7A6F6F; line-height: 1.65; max-width: 420px; margin: 0 auto 28px; }
    .success-detail { display: inline-block; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cuivre); border-bottom: 1px solid rgba(184,115,51,0.3); padding-bottom: 2px; }

    #contact { background: var(--noir); padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-info .section-title { color: var(--blanc); }
    .contact-info p { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: rgba(250,247,244,0.6); line-height: 1.7; margin: 28px 0 48px; }
    .contact-details { display: flex; flex-direction: column; gap: 28px; }
    .contact-item { display: flex; gap: 20px; align-items: flex-start; }
    .contact-icon { width: 44px; height: 44px; border: 1px solid rgba(184,115,51,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
    .contact-item-text strong { display: block; font-family: 'Cinzel', serif; font-size: 13px; font-weight: 600; color: var(--cuivre); letter-spacing: 0.1em; margin-bottom: 4px; }
    .contact-item-text span { font-family: 'Lato', sans-serif; font-size: 14px; color: rgba(250,247,244,0.65); line-height: 1.5; }
    .horaires-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; margin-top: 8px; }
    .horaire-row { font-family: 'Lato', sans-serif; font-size: 13px; color: rgba(250,247,244,0.55); display: flex; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .horaire-row span:last-child { color: rgba(250,247,244,0.85); }
    .contact-map { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .map-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2C2828 0%, #1A1A1A 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
    .map-pin { font-size: 48px; opacity: 0.6; }
    .map-addr { font-family: 'Cinzel', serif; font-size: 14px; color: var(--cuivre); letter-spacing: 0.1em; text-align: center; line-height: 1.6; }
    .map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,115,51,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(184,115,51,0.08) 1px, transparent 1px); background-size: 40px 40px; }
    .btn-maps { margin-top: 24px; display: inline-block; background: var(--rouge); color: var(--blanc); padding: 14px 32px; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
    .btn-maps:hover { background: var(--rouge-dark); }

    footer { background: var(--noir); border-top: 1px solid rgba(255,255,255,0.07); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; }
    .footer-logo { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 900; color: var(--blanc); letter-spacing: 0.12em; }
    .footer-logo span { color: var(--cuivre); }
    footer p { font-family: 'Lato', sans-serif; font-size: 12px; color: rgba(250,247,244,0.3); letter-spacing: 0.1em; }
    .footer-socials { display: flex; gap: 20px; }
    .social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(250,247,244,0.5); text-decoration: none; font-size: 14px; border-radius: 2px; transition: border-color 0.2s, color 0.2s; }
    .social-link:hover { border-color: var(--cuivre); color: var(--cuivre); }

    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    @media (max-width: 900px) {
      nav { padding: 20px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      section { padding: 80px 24px; }
      #identite, #ambiance, #contact { grid-template-columns: 1fr; gap: 48px; }
      .menu-grid { grid-template-columns: 1fr; }
      .menu-header { flex-direction: column; gap: 32px; align-items: flex-start; }
      footer { flex-direction: column; gap: 20px; text-align: center; }
      .identite-badge { bottom: -16px; right: -8px; }
      .resa-steps { grid-template-columns: 1fr; }
      .resa-step { border-right: none; border-bottom: 1px solid var(--pierre-mid); }
      .resa-step:last-child { border-bottom: none; }
      .resa-body { padding: 32px 24px; }
      .resa-row.cols-2 { grid-template-columns: 1fr; }
      .slots-grid { grid-template-columns: repeat(3,1fr); }
      .recap-grid { grid-template-columns: 1fr; }
      .menu-cat-banner { height: 140px; }
      .menu-cat-banner-overlay { padding: 0 24px; }
    }