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

    :root {
      --black: #0a0a0a;
      --deep: #111111;
      --red: #9b1a1a;
      --red-light: #c0392b;
      --gold: #c9a96e;
      --white: #f5f0ea;
      --grey: #888;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 28px 60px;
      transition: background 0.4s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.95);
      padding: 16px 60px;
      backdrop-filter: blur(8px);
    }

    .nav-logo img {
      height: 52px;
      width: auto;
      display: block;
      filter: drop-shadow(0 0 0 transparent);
    }
    nav.scrolled .nav-logo img { height: 40px; }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.2s, color 0.2s;
    }
    .nav-links a:hover { opacity: 1; color: var(--gold); }

    .nav-reserve {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.45);
      padding: 10px 24px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .nav-reserve:hover { background: var(--red); border-color: var(--red); }

    .lang-toggle {
      margin-left: 18px;
      background: none; border: 1px solid rgba(255,255,255,0.3);
      color: var(--white); cursor: pointer;
      font-family: inherit; font-size: 0.62rem; letter-spacing: 0.15em;
      padding: 7px 11px; border-radius: 20px; transition: all 0.3s;
    }
    .lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

    .lang-switch { position: relative; margin-left: 18px; display: inline-block; }
    .lang-switch .lang-toggle { margin-left: 0; display: inline-flex; align-items: center; gap: 7px; }
    .lang-caret { width: 9px; height: 9px; transition: transform 0.3s; }
    .lang-switch.open .lang-caret { transform: rotate(180deg); }
    .lang-menu {
      position: absolute; top: calc(100% + 8px); right: 0;
      list-style: none; margin: 0; padding: 6px; min-width: 132px;
      background: #141414; border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,0.45);
      opacity: 0; visibility: hidden; transform: translateY(-6px);
      transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
      z-index: 1200;
    }
    .lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .lang-menu li { margin: 0; }
    .lang-menu button {
      width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      color: var(--white); font-family: inherit; font-size: 0.72rem; letter-spacing: 0.08em;
      padding: 9px 12px; border-radius: 8px; transition: background 0.2s, color 0.2s;
    }
    .lang-menu button:hover { background: rgba(255,255,255,0.06); color: var(--gold); }
    .lang-menu button.active { color: var(--gold); }

    html[dir="rtl"] .lang-menu { right: auto; left: 0; }
    html[dir="rtl"] .lang-menu button { text-align: right; }
    html[dir="rtl"] .menu-section,
    html[dir="rtl"] .footer-col,
    html[dir="rtl"] .concept-text { text-align: right; }
    html[dir="rtl"] .badge-soon { margin-left: 0; margin-right: 12px; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Mobile menu overlay (toggled by JS) */
    .nav-links.nav-open {
      display: flex;
      flex-direction: column;
      position: fixed;
      inset: 0;
      background: rgba(10,10,10,0.98);
      align-items: center;
      justify-content: center;
      gap: 36px;
      z-index: 99;
    }
    .nav-reserve.nav-open {
      display: block;
      position: fixed;
      bottom: 44px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
    }
    body.menu-locked { overflow: hidden; }

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

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('/photos/hero.jpg');
      background-size: cover;
      background-position: center;
      background-color: #1a0000;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
    }

    .hero-dim {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.38) 45%,
        rgba(0,0,0,0.72) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }

    .hero-logo img {
      height: clamp(180px, 30vw, 300px);
      width: auto;
      filter: drop-shadow(0 4px 18px rgba(0,0,0,0.6));
          }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.05rem, 2.5vw, 1.5rem);
      font-weight: 500;
      font-style: italic;
      letter-spacing: 0.08em;
      color: #fff;
      text-shadow: 0 2px 14px rgba(0,0,0,0.7);
    }

    .hero-ctas {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      display: inline-block;
      font-family: inherit;
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--red);
      padding: 14px 36px;
      border: none;
      border-radius: 0;
      cursor: pointer;
      line-height: 1.2;
      text-align: center;
      text-decoration: none;
      -webkit-appearance: none;
      appearance: none;
      transition: background 0.3s;
    }
    .btn-primary:hover { background: var(--red-light); }

    .btn-secondary {
      display: inline-block;
      font-family: inherit;
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 0;
      padding: 14px 36px;
      cursor: pointer;
      line-height: 1.2;
      text-align: center;
      text-decoration: none;
      -webkit-appearance: none;
      appearance: none;
      transition: all 0.3s;
    }
    .btn-secondary:hover { border-color: var(--white); }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 2;
    }
    .hero-scroll span {
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      opacity: 0.55;
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, rgba(245,240,234,0.7), transparent);
      animation: scrollPulse 1.8s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); }
      100% { opacity: 0; }
    }

    /* ── COMMON ── */
    .section-label {
      font-size: 0.6rem;
      letter-spacing: 0.42em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
    }
    .divider {
      width: 56px; height: 1px;
      background: var(--red);
      margin: 22px 0;
    }
    .section-text {
      font-size: 0.9rem;
      line-height: 1.95;
      color: rgba(245,240,234,0.82);
      max-width: 520px;
    }

    /* ── CONCEPT ── */
    #concept {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: var(--deep);
    }

    .concept-image {
      position: relative;
      overflow: hidden;
      min-height: 600px;
    }
    .concept-image img,
    .concept-image video {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s ease;
    }
    .concept-image:hover img,
    .concept-image:hover video { transform: scale(1.03); }

    .concept-text {
      padding: 100px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .concept-text .section-title em {
      font-style: italic;
      color: var(--gold);
    }
    .concept-text .section-text { margin-top: 0; }

    .values-row {
      display: flex;
      gap: 32px;
      margin-top: 40px;
    }
    .value-item {
      flex: 1;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 16px;
    }
    .value-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .value-desc {
      font-size: 0.72rem;
      color: rgba(245,240,234,0.5);
      line-height: 1.6;
      letter-spacing: 0.03em;
    }

    /* ── GALLERY ── */
    #gallery {
      background: var(--black);
      padding: 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 320px 280px;
      gap: 3px;
    }

    .gallery-item {
      overflow: hidden;
      position: relative;
      background: #1a0808;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }

    /* Layout: row1: [6col | 3col | 3col], row2: [3col | 3col | 6col] */
    .g1 { grid-column: 1 / 7; }
    .g2 { grid-column: 7 / 10; }
    .g3 { grid-column: 10 / 13; }
    .g4 { grid-column: 1 / 4; }
    .g5 { grid-column: 4 / 7; }
    .g6 { grid-column: 7 / 13; }

    /* ── MENU ── */
    #menu {
      background: var(--deep);
      padding: 100px 60px;
      text-align: center;
    }

    .menu-header {
      max-width: 600px;
      margin: 0 auto 70px;
    }
    .menu-header .divider { margin: 22px auto; }

    /* Tab system */
    .menu-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 9px;
      margin-bottom: 50px;
      position: sticky;
      top: 72px;
      z-index: 50;
      background: var(--black);
      padding: 16px 0 20px;
    }
    .menu-tab {
      font-size: 0.64rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 11px 22px;
      cursor: pointer;
      color: rgba(245,240,234,0.55);
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 100px;
      font-family: inherit;
      white-space: nowrap;
      transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }
    .menu-tab:hover {
      color: var(--white);
      border-color: rgba(201,169,110,0.55);
      background: rgba(255,255,255,0.06);
    }
    .menu-tab.active {
      color: var(--white);
      background: linear-gradient(135deg, var(--red-light), var(--red));
      border-color: var(--red);
      box-shadow: 0 8px 22px rgba(155,26,26,0.35);
      transform: translateY(-1px);
    }

    .menu-panel { display: none; }
    .menu-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; max-width: 900px; margin: 0 auto; }

    .menu-section {
      padding: 36px 40px;
      border: 1px solid rgba(255,255,255,0.06);
      text-align: left;
    }
    .menu-section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .wine-type {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      margin: 22px 0 10px;
    }
    .wine-type:first-of-type { margin-top: 6px; }
    .badge-soon {
      display: inline-block;
      margin-left: 12px;
      vertical-align: middle;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.52rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,169,110,0.12);
      border: 1px solid rgba(201,169,110,0.45);
      border-radius: 100px;
      padding: 5px 12px;
      white-space: nowrap;
    }
    .menu-section.is-soon .menu-item { opacity: 0.42; }
    .menu-section.is-soon .item-price { color: var(--gold); }
    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      gap: 12px;
    }
    .menu-item:last-child { border-bottom: none; }
    .item-name { font-size: 0.82rem; color: rgba(245,240,234,0.82); flex: 1; }
    .item-sub { font-size: 0.7rem; color: rgba(245,240,234,0.4); display: block; margin-top: 2px; }
    .item-price { font-size: 0.8rem; color: var(--gold); font-weight: 400; white-space: nowrap; }
    .badge-halal {
      display: inline-flex; align-items: center; gap: 5px;
      margin-left: 8px; vertical-align: middle;
      font-size: 0.52rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--gold); border: 1px solid rgba(198,164,92,0.5); border-radius: 20px; padding: 2px 8px;
    }
    .badge-halal svg { width: 8px; height: 8px; display: block; }
    .badge-halal svg path { fill: var(--gold); }

    .diet { display: inline-flex; align-items: center; gap: 5px; margin-left: 8px; vertical-align: middle; }
    .diet .db, .menu-legend .db {
      display: inline-flex; align-items: center; justify-content: center;
      width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
    }
    .db svg { width: 11px; height: 11px; display: block; }
    .db-veg, .db-vegan { background: rgba(76,175,114,0.16); }
    .db-veg svg, .db-vegan svg { fill: #5cbf85; }
    .db-spicy { background: rgba(217,104,79,0.18); }
    .db-spicy svg { fill: #e0735a; }
    .halal-stamp { display: inline-flex; vertical-align: middle; margin-left: 8px; color: #5cbf85; }
    .halal-stamp svg { width: 18px; height: 18px; display: block; }

    .menu-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 22px; margin-top: 28px; }
    .menu-legend .leg {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(245,240,234,0.5);
    }

    .menu-single { grid-column: span 2; }

    .menu-cta { margin-top: 50px; }

    /* ── HORAIRES STRIP ── */
    #horaires-strip {
      background: var(--red);
      padding: 28px 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      flex-wrap: wrap;
    }
    .hs-item {
      text-align: center;
    }
    .hs-label {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      opacity: 0.7;
      margin-bottom: 4px;
    }
    .hs-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
    }
    .hs-sep {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.3);
    }

    /* ── AMBIANCE (full-width image) ── */
    #ambiance {
      position: relative;
      height: 70vh;
      overflow: hidden;
    }
    #ambiance img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .ambiance-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ambiance-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.04em;
      color: var(--white);
      text-align: center;
      text-shadow: 0 2px 24px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.6);
    }
    .ambiance-text span { color: var(--white); }

    /* ── RESERVATION ── */
    #reservation {
      background: var(--black);
      padding: 100px 60px;
      text-align: center;
    }
    .reservation-inner { max-width: 680px; margin: 0 auto; }
    .reservation-inner .divider { margin: 22px auto; }
    .reservation-inner .section-text { margin: 0 auto 50px; text-align: center; }

    .zenchef-zone {
      border: 1px solid rgba(255,255,255,0.1);
      padding: 60px 40px;
      margin-bottom: 50px;
      position: relative;
    }
    .zenchef-tag {
      position: absolute;
      top: -10px; left: 50%;
      transform: translateX(-50%);
      background: var(--black);
      padding: 0 16px;
      font-size: 0.58rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--red);
    }
    #zenchef-widget p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-style: italic;
      color: rgba(245,240,234,0.4);
      margin-bottom: 10px;
    }
    #zenchef-widget small {
      font-size: 0.68rem;
      color: var(--grey);
      letter-spacing: 0.08em;
    }

    .reservation-contacts {
      display: flex;
      justify-content: center;
      gap: 56px;
      flex-wrap: wrap;
    }
    .res-item .res-label {
      font-size: 0.58rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }
    .res-item a, .res-item p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s;
    }
    .res-item a:hover { color: var(--gold); }

    /* ── FOOTER ── */
    footer {
      background: #060606;
      padding: 80px 60px 40px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 36px;
    }

    .footer-brand img { height: 72px; width: auto; margin-bottom: 24px; display: block; mix-blend-mode: screen; }
    .footer-brand p {
      font-size: 0.82rem;
      line-height: 1.85;
      color: rgba(245,240,234,0.45);
      max-width: 260px;
    }
    .social-links {
      display: flex; gap: 12px; margin-top: 28px;
    }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.18);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; color: var(--white);
      transition: all 0.3s;
    }
    .social-link:hover { background: var(--red); border-color: var(--red); }

    .footer-col-title {
      font-size: 0.58rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 22px;
    }
    .footer-col p, .footer-col a {
      font-size: 0.84rem;
      line-height: 2;
      color: rgba(245,240,234,0.6);
      text-decoration: none;
      display: block;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--white); }

    .nav-apps-label {
      font-size: 0.58rem; letter-spacing: 0.38em; text-transform: uppercase;
      color: var(--red); margin: 20px 0 12px;
    }
    .nav-apps { display: flex; flex-wrap: wrap; gap: 8px; }
    .footer-col .nav-apps a {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 7px 13px; line-height: 1;
      border: 1px solid rgba(255,255,255,0.18); border-radius: 20px;
      font-size: 0.72rem; letter-spacing: 0.05em; color: rgba(245,240,234,0.85);
      transition: border-color 0.25s, color 0.25s;
    }
    .footer-col .nav-apps a:hover { border-color: var(--red); color: var(--white); }
    .nav-apps a svg { width: 13px; height: 13px; flex-shrink: 0; }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      font-size: 0.68rem;
      color: rgba(245,240,234,0.25);
    }
    .footer-legal { display: flex; gap: 10px; align-items: center; justify-content: center; }
    .footer-legal a { color: rgba(245,240,234,0.45); text-decoration: none; }
    .footer-legal a:hover { color: var(--gold); }
    .footer-credit {
      flex-basis: 100%;
      text-align: center;
      color: var(--gold);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      margin-top: 14px;
    }

    /* ── AVIS ── */
    #avis {
      background: var(--deep);
      padding: 110px 60px;
      text-align: center;
    }
    .avis-header { margin-bottom: 56px; }
    .avis-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .avis-card {
      background: var(--black);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 38px 32px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .avis-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.95rem; }
    .avis-card blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.18rem;
      font-style: italic;
      line-height: 1.55;
      color: rgba(245,240,234,0.9);
    }
    .avis-card figcaption {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245,240,234,0.5);
      margin-top: auto;
    }
    .avis-widget { max-width: 1100px; margin: 0 auto; }
    .avis-cta { margin-top: 50px; }
    @media (max-width: 960px) {
      #avis { padding: 70px 24px; }
      .avis-grid { grid-template-columns: 1fr; gap: 20px; }
    }

    /* ── CONSENT / COOKIES ── */
    .consent-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 16px; text-align: center; padding: 24px;
      background: var(--deep);
      color: rgba(245,240,234,0.6); font-size: 0.85rem;
    }
    #avis-consent { position: relative; min-height: 220px; }
    #cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      display: none;
      background: rgba(6,6,6,0.97); backdrop-filter: blur(8px);
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 18px 28px;
      align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    }
    #cookie-banner.show { display: flex; }
    .cookie-text { font-size: 0.78rem; color: rgba(245,240,234,0.75); max-width: 720px; line-height: 1.6; }
    .cookie-actions { display: flex; align-items: center; gap: 14px; }
    .cookie-link { font-size: 0.72rem; color: var(--gold); text-decoration: underline; white-space: nowrap; }
    .cookie-btn {
      font-family: inherit; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
      padding: 10px 22px; border-radius: 22px; cursor: pointer; border: 1px solid transparent; transition: all 0.25s;
    }
    .cookie-refuse { background: none; border-color: rgba(255,255,255,0.35); color: var(--white); }
    .cookie-refuse:hover { border-color: var(--white); }
    .cookie-accept { background: var(--red); color: var(--white); }
    .cookie-accept:hover { background: var(--red-light); }
    @media (max-width: 960px) {
      #cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 20px; }
      .cookie-actions { width: 100%; justify-content: flex-end; }
    }

    /* ── MAP ── */

    /* ── OPEN STATUS PILL ── */
    .open-pill {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
      padding: 4px 12px; border-radius: 20px; white-space: nowrap;
    }
    .open-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
    .open-pill.is-open { color: #4caf72; background: rgba(76,175,114,0.12); }
    .open-pill.is-soon { color: #e0962f; background: rgba(224,150,47,0.14); }
    .open-pill.is-closed { color: #d9684f; background: rgba(217,104,79,0.12); }

    /* ── FADE UP ── */
    .fade-up {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── MOBILE ── */
    @media (max-width: 960px) {
      nav { padding: 18px 24px; }
      nav.scrolled { padding: 12px 24px; }
      .nav-links, .nav-reserve { display: none; }
      .hamburger { display: flex; }

      .hero-video { display: block; }
      .hero-bg { display: none; }

      #concept { grid-template-columns: 1fr; }
      .concept-image { min-height: 300px; }
      .concept-text { padding: 60px 28px; }
      .values-row { flex-direction: column; gap: 20px; }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 200px);
      }
      .g1 { grid-column: span 2; }
      .g2, .g3, .g4, .g5 { grid-column: span 1; }
      .g6 { grid-column: span 2; }

      #menu { padding: 70px 24px; }
      .menu-panel.active { grid-template-columns: 1fr; }
      .menu-single { grid-column: span 1; }
      .menu-tabs { top: 60px; gap: 7px; padding: 14px 12px 16px; }
      .menu-tab { font-size: 0.6rem; padding: 9px 16px; letter-spacing: 0.12em; }

      #horaires-strip { gap: 24px; padding: 24px; }
      .hs-sep { display: none; }

      #reservation { padding: 70px 24px; }
      .reservation-contacts { gap: 28px; }

      footer { padding: 60px 24px 32px; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
      .footer-brand img { margin-left: auto; margin-right: auto; }
      .footer-brand p { max-width: 320px; }
      .social-links { justify-content: center; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    }

    /* ── OUVERTURE / INTRO (rideau + logo) ── */
    /* Voile noir de l'ouverture : couvre au chargement puis se dissipe,
       révélant le hero (vidéo + nav + boutons) déjà en place, comme sur Kasumi */
    #intro-veil {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--black);
      pointer-events: none;
      opacity: 1;
      will-change: opacity;
      transition: opacity 1.6s ease;
    }
    #intro-veil.intro-done { opacity: 0; }
    body.intro-active { overflow: hidden; }

    @media (prefers-reduced-motion: reduce) {
      #intro-veil { transition: opacity 0.4s ease; }
    }

    /* ══ EFFETS ÉLÉGANTS ══ */

    /* Parallaxe (translation douce pilotée en JS) */
    [data-parallax] { will-change: transform; }

    /* Ken Burns : lent zoom/panoramique sur les photos d'ambiance */
    #ambiance img {
      transform: scale(1.06);
      animation: kenBurns 22s ease-in-out infinite alternate;
    }
    @keyframes kenBurns {
      0%   { transform: scale(1.06) translate(0, 0); }
      100% { transform: scale(1.15) translate(-1.5%, -1.5%); }
    }

    #ambiance .ambiance-overlay { z-index: 2; }

    /* Néon vacillant sur le titre "Honest Food to Share" */
    .neon-text {
      color: #fff;
      animation: neonFlicker 6s infinite;
    }
    @keyframes neonFlicker {
      0%, 100%   { text-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 18px rgba(192,57,43,0.7), 0 0 38px rgba(155,26,26,0.6); }
      92%        { text-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 18px rgba(192,57,43,0.7), 0 0 38px rgba(155,26,26,0.6); }
      93%        { text-shadow: none; color: #e8d8d0; }
      94%        { text-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 18px rgba(192,57,43,0.7), 0 0 38px rgba(155,26,26,0.6); color: #fff; }
      96%        { text-shadow: none; color: #e8d8d0; }
      97%        { text-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 18px rgba(192,57,43,0.7), 0 0 38px rgba(155,26,26,0.6); color: #fff; }
    }

    /* Bandeau doré défilant */
    .marquee {
      background: var(--deep);
      border-top: 1px solid rgba(201,169,110,0.18);
      border-bottom: 1px solid rgba(201,169,110,0.18);
      overflow: hidden;
      padding: 16px 0;
    }
    .marquee-track {
      display: inline-flex;
      white-space: nowrap;
      will-change: transform;
      animation: marqueeScroll 30s linear infinite;
    }
    .marquee-track span {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.15rem;
      letter-spacing: 0.18em;
      color: var(--gold);
      padding: 0 26px;
      opacity: 0.85;
    }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    @keyframes marqueeScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Galerie cliquable */
    .gallery-item { cursor: pointer; }
    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(155,26,26,0);
      transition: background 0.4s ease;
    }
    .gallery-item:hover::after { background: rgba(155,26,26,0.12); }

    /* Lightbox */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(6,6,6,0.94);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      padding: 4vw;
    }
    #lightbox.open { opacity: 1; visibility: visible; }
    #lightbox img {
      max-width: 92vw;
      max-height: 88vh;
      object-fit: contain;
      box-shadow: 0 24px 80px rgba(0,0,0,0.7);
      transform: scale(0.96);
      transition: transform 0.35s ease;
    }
    #lightbox.open img { transform: scale(1); }
    #lightbox .lb-close {
      position: absolute;
      top: 22px; right: 30px;
      font-size: 2rem;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
      line-height: 1;
      opacity: 0.8;
    }
    #lightbox .lb-close:hover { opacity: 1; }

    @media (prefers-reduced-motion: reduce) {
      #ambiance img { animation: none; transform: scale(1.02); }
      .neon-text { animation: none; text-shadow: 0 0 12px rgba(192,57,43,0.6); }
      .marquee-track { animation: none; }
    }


/* ── Page carte : en-tête & pied ── */
.carte-bar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.carte-bar .carte-logo img { height: 40px; width: auto; display: block; }
.carte-bar .lang-switch { margin-left: 0; }
#menu.carte-menu { padding-top: 48px; }
@media (max-width: 768px) { #menu.carte-menu { padding-top: 36px; } .carte-bar { padding: 10px 16px; } .carte-bar .carte-logo img { height: 34px; } }
.carte-foot {
  text-align: center; padding: 34px 24px 54px; background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.carte-foot a { color: var(--gold); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.06em; }
.carte-foot a:hover { text-decoration: underline; }

/* ── Page Actualités ── */
#actu { padding: 48px 24px 20px; max-width: 760px; margin: 0 auto; }
.actu-head { text-align: center; margin-bottom: 40px; }
.news-list { display: flex; flex-direction: column; gap: 22px; }
.news-card { background: var(--deep); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 26px 28px; }
.news-date { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.news-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--white); margin: 0 0 12px; }
.news-body { color: rgba(245,240,234,0.8); line-height: 1.7; font-size: 0.98rem; }
.news-empty { text-align: center; color: var(--grey); padding: 40px 0; }
@media (max-width:600px){ .news-card { padding: 20px; } .news-title { font-size: 1.35rem; } }

/* ── Actualités sur l'accueil ── */
#home-news { padding: 90px 24px; max-width: 780px; margin: 0 auto; text-align: center; }
#home-news .home-news-head { margin-bottom: 40px; }
#home-news .news-list { text-align: left; }
#home-news .home-news-cta { margin-top: 34px; }
