    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --rouge: #c0392b;
      --or: #d4a017;
      --sombre: #1a1a1a;
      --clair: #f9f5f0;
    }

    body {
      font-family: 'Georgia', serif;
      color: var(--sombre);
      background: var(--clair);
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; width: 100%;
      background: rgba(26,26,26,0.95);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 60px;
      z-index: 100;
    }

    .logo {
      color: var(--or);
      font-size: 1.4rem;
      letter-spacing: 2px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-family: 'Arial', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 1px;
      transition: color 0.3s;
    }

    nav ul li a:hover { color: var(--or); }

    .hamburger {
      display: none;
      flex-direction: column;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background: #fff;
      margin: 3px 0;
      transition: 0.3s;
    }
    .nav-links.active {
      display: flex !important;
    }

    /* HERO */
    #hero {
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1563245372-f21724e3856d?w=1600') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    #hero .tag {
      font-family: 'Arial', sans-serif;
      letter-spacing: 4px;
      font-size: 0.85rem;
      color: var(--or);
      margin-bottom: 16px;
    }

    #hero h1 {
      font-size: 4rem;
      font-weight: normal;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    #hero p {
      font-size: 1.1rem;
      opacity: 0.85;
      margin-bottom: 40px;
      font-family: 'Arial', sans-serif;
    }

    .btn {
      background: var(--rouge);
      color: #fff;
      padding: 14px 36px;
      border: none;
      font-size: 0.95rem;
      letter-spacing: 1px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s;
      font-family: 'Arial', sans-serif;
    }

    .btn:hover { background: #a93226; }

    /* SECTIONS COMMUNES */
    section { padding: 90px 60px; }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title span {
      display: block;
      color: var(--or);
      font-family: 'Arial', sans-serif;
      letter-spacing: 4px;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }

    .section-title h2 {
      font-size: 2.4rem;
      font-weight: normal;
    }

    /* À PROPOS */
    #apropos {
      background: #fff;
      display: flex;
      gap: 70px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 90px 60px;
    }

    #apropos img {
      width: 45%;
      object-fit: cover;
      height: 400px;
    }

    #apropos .texte h2 {
      font-size: 2rem;
      font-weight: normal;
      margin-bottom: 20px;
    }

    #apropos .texte p {
      font-family: 'Arial', sans-serif;
      line-height: 1.8;
      color: #555;
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .ligne-or {
      width: 50px;
      height: 3px;
      background: var(--or);
      margin-bottom: 20px;
    }

    /* MENU */
    #menu { background: var(--clair); }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .menu-card {
      background: #fff;
      padding: 30px;
      border-top: 3px solid var(--or);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .menu-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .menu-card .emoji { font-size: 2rem; margin-bottom: 14px; }

    .menu-card h3 {
      font-size: 1.2rem;
      font-weight: normal;
      margin-bottom: 10px;
    }

    .menu-card p {
      font-family: 'Arial', sans-serif;
      font-size: 0.88rem;
      color: #777;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .menu-card .prix {
      color: var(--rouge);
      font-size: 1.1rem;
    }

    /* GALERIE */
    #galerie { background: var(--sombre); }
    #galerie .section-title h2 { color: #fff; }

    .galerie-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .galerie-grid img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: opacity 0.3s;
    }

    .galerie-grid img:hover { opacity: 0.75; }

    /* CONTACT */
    #contact {
      background: #fff;
      text-align: center;
    }

    .contact-infos {
      display: flex;
      justify-content: center;
      gap: 70px;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto 50px;
    }

    .contact-bloc h4 {
      color: var(--or);
      font-family: 'Arial', sans-serif;
      letter-spacing: 2px;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }

    .contact-bloc p {
      font-family: 'Arial', sans-serif;
      font-size: 0.95rem;
      line-height: 1.8;
      color: #555;
    }

    /* FOOTER */
    footer {
      background: var(--sombre);
      color: #888;
      text-align: center;
      padding: 28px;
      font-family: 'Arial', sans-serif;
      font-size: 0.85rem;
    }

    footer span { color: var(--or); }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 16px 20px; }
      .hamburger { display: flex; }
      nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26,26,26,0.95);
        flex-direction: column;
        padding: 20px;
        display: none;
        gap: 20px;
      }
      #hero h1 { font-size: 2.5rem; }
      section { padding: 70px 20px; }
      #apropos { flex-direction: column; padding: 60px 20px; }
      #apropos img { width: 100%; }
      .galerie-grid { grid-template-columns: repeat(2, 1fr); }
      .menu-grid { grid-template-columns: 1fr; }
    }