  :root {
    --brun: #1A1208;
    --brun2: #2C1E0F;
    --or: #D4A843;
    --or2: #F0C060;
    --rouge: #B83025;
    --creme: #F7F0E3;
    --beige: #EDE0C8;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--brun); color: var(--creme); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 200;
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 64px;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled { background: rgba(26,18,8,0.97); padding: 14px 64px; }
  .logo { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--or); letter-spacing: 1px; }
  .logo span { color: var(--creme); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { color: var(--creme); text-decoration: none; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
  .nav-links a:hover { opacity: 1; color: var(--or); }
  .nav-cta { background: var(--rouge); color: white; border: none; padding: 11px 28px; font-family: 'Outfit', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-weight: 500; transition: background 0.2s; text-decoration: none; }
  .nav-cta:hover { background: #961f16; }

  .hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--creme);
    margin: 3px 0;
    transition: 0.3s;
  }
  .nav-links.active {
    display: flex !important;
  }

  /* ─── HERO ─── */
  .hero {
    height: 100vh; position: relative; display: flex; align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
  }
  .hero-img {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1529006557810-274b9b2fc783?w=1600&q=80') center/cover no-repeat;
  }
  .hero-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.97) 0%, rgba(26,18,8,0.55) 50%, rgba(26,18,8,0.2) 100%);
  }
  .hero-content { position: relative; z-index: 2; padding: 0 64px; width: 100%; display: flex; justify-content: space-between; align-items: flex-end; }
  .hero-left { max-width: 680px; }
  .hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
  .hero-eyebrow span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); }
  .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--or); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 8vw, 100px);
    line-height: 1;
    font-weight: 900;
    color: var(--creme);
    margin-bottom: 24px;
  }
  .hero h1 em { color: var(--or); font-style: italic; }
  .hero p { font-size: 16px; line-height: 1.75; opacity: 0.7; max-width: 460px; margin-bottom: 40px; }
  .hero-btns { display: flex; gap: 16px; align-items: center; }
  .btn-primary { background: var(--or); color: var(--brun); padding: 16px 40px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; font-weight: 600; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-primary:hover { background: var(--or2); transform: translateY(-2px); }
  .btn-ghost { color: var(--creme); font-size: 13px; letter-spacing: 1px; text-decoration: none; opacity: 0.6; border-bottom: 1px solid rgba(247,240,227,0.3); padding-bottom: 2px; transition: opacity 0.2s; }
  .btn-ghost:hover { opacity: 1; }
  .hero-stats { display: flex; flex-direction: column; gap: 32px; align-items: flex-end; }
  .hero-stat { text-align: right; }
  .hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 40px; color: var(--or); line-height: 1; }
  .hero-stat span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; }
  .scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--or)); animation: scroll-fade 1.5s ease-in-out infinite; }
  @keyframes scroll-fade { 0%,100%{opacity:0;transform:scaleY(0.3)} 50%{opacity:1;transform:scaleY(1)} }

  /* ─── BANDE ─── */
  .bande { background: var(--or); display: flex; }
  .bande-item { flex: 1; padding: 22px 0; text-align: center; border-right: 1px solid rgba(26,18,8,0.15); }
  .bande-item:last-child { border-right: none; }
  .bande-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 20px; color: var(--brun); }
  .bande-item span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--brun); opacity: 0.65; }

  /* ─── SPECIALITES ─── */
  .specialites { padding: 110px 64px; }
  .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
  .section-kicker { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-bottom: 10px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); line-height: 1.1; }
  .section-title em { color: var(--or); font-style: italic; }
  .section-sub { font-size: 14px; opacity: 0.5; max-width: 260px; text-align: right; line-height: 1.6; }

  .plats-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 340px 340px; gap: 12px; }
  .plat-card { position: relative; overflow: hidden; cursor: default; }
  .plat-card:first-child { grid-row: 1 / 3; }
  .plat-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
  .plat-card:hover .plat-img { transform: scale(1.06); }
  .plat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.92) 0%, rgba(26,18,8,0.2) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
  }
  .plat-tag { display: inline-block; background: var(--rouge); color: white; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; margin-bottom: 10px; align-self: flex-start; }
  .plat-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--creme); margin-bottom: 4px; }
  .plat-card:first-child .plat-name { font-size: 32px; }
  .plat-desc { font-size: 12px; opacity: 0.6; line-height: 1.5; margin-bottom: 12px; }
  .plat-prix { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--or); }

  /* ─── AMBIANCE / ABOUT ─── */
  .about { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
  .about-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; }
  .about-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-imgs img:first-child { grid-column: 1 / 3; }
  .about-text { background: var(--brun2); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
  .quote-mark { font-family: 'Playfair Display', serif; font-size: 120px; color: var(--or); opacity: 0.15; line-height: 0.6; margin-bottom: 20px; }
  .about-text blockquote { font-family: 'Playfair Display', serif; font-size: 24px; line-height: 1.5; color: var(--creme); font-style: italic; margin-bottom: 32px; }
  .about-text p { font-size: 14px; line-height: 1.8; opacity: 0.55; margin-bottom: 16px; }
  .signature { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--or); font-style: italic; margin-top: 16px; }

  /* ─── MENU LISTE ─── */
  .menu-section { padding: 110px 64px; background: var(--brun2); }
  .menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; margin-top: 64px; }
  .menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(247,240,227,0.07); gap: 20px; }
  .menu-item:last-child { border-bottom: none; }
  .menu-item-left h4 { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 4px; }
  .menu-item-left p { font-size: 12px; opacity: 0.45; line-height: 1.5; }
  .menu-item-price { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--or); white-space: nowrap; }
  .menu-divider { display: flex; align-items: center; gap: 16px; margin: 40px 0 20px; }
  .menu-divider span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); white-space: nowrap; }
  .menu-divider::before, .menu-divider::after { content: ''; flex: 1; height: 1px; background: rgba(212,168,67,0.2); }

  /* ─── GALERIE ─── */
  .galerie { padding: 110px 64px 0; }
  .galerie-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 48px; }
  .galerie-item { overflow: hidden; aspect-ratio: 3/4; }
  .galerie-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; filter: brightness(0.85); }
  .galerie-item:hover img { transform: scale(1.08); filter: brightness(1); }
  .galerie-item:nth-child(2) { aspect-ratio: 3/5; }
  .galerie-item:nth-child(3) { aspect-ratio: 3/3; margin-top: -60px; }

  /* ─── CONTACT ─── */
  .contact { padding: 110px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-map { position: relative; overflow: hidden; border: 1px solid rgba(212,168,67,0.15); }
  .contact-map img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 400px; filter: brightness(0.6) sepia(0.4); }
  .contact-map-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .map-pin { background: var(--rouge); color: white; padding: 16px 28px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
  .contact-items { display: flex; flex-direction: column; gap: 36px; justify-content: center; }
  .contact-item { display: flex; gap: 20px; align-items: flex-start; }
  .contact-dot { width: 8px; height: 8px; background: var(--or); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
  .contact-item h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-bottom: 6px; }
  .contact-item p { font-size: 15px; opacity: 0.7; line-height: 1.6; }

  /* ─── FOOTER ─── */
  footer { background: #0C0A05; padding: 40px 64px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(212,168,67,0.1); }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--or); }
  footer p { font-size: 11px; opacity: 0.3; letter-spacing: 1px; }

  /* ─── ANIMATIONS ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.up { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .hamburger { display: flex; }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--brun);
      flex-direction: column;
      padding: 20px;
      display: none;
      gap: 20px;
    }
    .nav-cta { display: none; }
    .hero-content { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 32px; }
    .hero-stats { flex-direction: row; align-items: center; }
    .specialites, .menu-section, .galerie, .contact { padding: 60px 24px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .section-sub { text-align: left; }
    .plats-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .plat-card:first-child { grid-row: auto; }
    .about { grid-template-columns: 1fr; }
    .about-imgs { height: 320px; }
    .about-text { padding: 48px 24px; }
    .menu-cols { grid-template-columns: 1fr; gap: 0; }
    .galerie-grid { grid-template-columns: 1fr 1fr; }
    .galerie-item:nth-child(2), .galerie-item:nth-child(3) { aspect-ratio: 3/4; margin-top: 0; }
    .contact { grid-template-columns: 1fr; gap: 40px; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 24px; }
    .bande { flex-wrap: wrap; }
    .bande-item { flex: 1 1 50%; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: clamp(48px, 12vw, 80px); }
    .specialites, .menu-section, .galerie, .contact { padding: 40px 20px; }
    .plats-grid { gap: 8px; }
    .plat-card { padding: 20px; }
    .galerie-grid { grid-template-columns: 1fr; }
    .contact { padding: 40px 20px; }
  }