  :root {
    --rouge: #E8190A;
    --jaune: #FFD000;
    --noir: #111;
    --blanc: #F9F6F0;
    --gris: #EBEBEB;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--blanc); color: var(--noir); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav {
    background: var(--rouge);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 40px;
    height: 58px;
    position: sticky; top: 0; z-index: 100;
  }
  .logo {
    font-family: 'Anton', sans-serif;
    font-size: 26px; letter-spacing: 1px;
    color: white;
  }
  .logo span { color: var(--jaune); }
  .nav-links { display: flex; gap: 0; list-style: none; }
  .nav-links a {
    color: white; text-decoration: none;
    font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    padding: 0 18px; height: 58px; display: flex; align-items: center;
    transition: background 0.15s;
  }
  .nav-links a:hover { background: rgba(0,0,0,0.2); }
  .nav-tel {
    background: var(--jaune); color: var(--noir);
    font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: 1px;
    padding: 0 20px; height: 58px; display: flex; align-items: center;
    text-decoration: none; transition: background 0.15s;
  }
  .nav-tel:hover { background: #e6be00; }

  /* ─── HERO ─── */
  .hero {
    background: var(--noir);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 520px;
    overflow: hidden;
  }
  .hero-left {
    padding: 60px 50px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
  }
  .hero-sticker {
    background: var(--jaune);
    color: var(--noir);
    font-family: 'Anton', sans-serif;
    font-size: 12px; letter-spacing: 2px;
    padding: 6px 14px;
    display: inline-block; margin-bottom: 20px; width: fit-content;
    transform: rotate(-1.5deg);
  }
  .hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.92;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .hero h1 .rouge { color: var(--rouge); }
  .hero h1 .jaune { color: var(--jaune); }
  .hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 15px; line-height: 1.65;
    margin: 24px 0 36px;
    max-width: 360px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-jaune {
    background: var(--jaune); color: var(--noir);
    font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: 1px;
    padding: 14px 32px; text-decoration: none;
    transition: transform 0.15s;
    display: inline-block;
  }
  .btn-jaune:hover { transform: translateY(-2px); }
  .btn-blanc {
    background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.25);
    font-family: 'Anton', sans-serif; font-size: 15px; letter-spacing: 1px;
    padding: 12px 28px; text-decoration: none;
    transition: border-color 0.15s;
    display: inline-block;
  }
  .btn-blanc:hover { border-color: white; }
  .hero-right {
    position: relative; overflow: hidden;
  }
  .hero-right img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    filter: brightness(0.85);
  }
  .hero-prix-badge {
    position: absolute; top: 30px; right: 30px;
    background: var(--rouge);
    width: 100px; height: 100px; border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    border: 3px solid var(--jaune);
    transform: rotate(8deg);
  }
  .hero-prix-badge span:first-child {
    font-family: 'Anton', sans-serif; font-size: 11px;
    letter-spacing: 1px; color: var(--jaune); text-transform: uppercase;
  }
  .hero-prix-badge span:last-child {
    font-family: 'Anton', sans-serif; font-size: 28px;
    color: white; line-height: 1;
  }

  /* ─── INFOS RAPIDES ─── */
  .infos {
    background: var(--noir);
    border-top: 4px solid var(--rouge);
    display: flex;
  }
  .info-item {
    flex: 1; padding: 18px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; gap: 14px;
  }
  .info-item:last-child { border-right: none; }
  .info-icon {
    width: 36px; height: 36px;
    background: var(--rouge);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Anton', sans-serif; font-size: 14px; color: white;
    flex-shrink: 0;
  }
  .info-item strong { display: block; color: white; font-size: 14px; font-weight: 600; }
  .info-item span { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

  /* ─── MENU ─── */
  .menu { padding: 70px 40px; }
  .titre-section {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    text-transform: uppercase; letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .sous-titre { font-size: 14px; color: #888; margin-bottom: 48px; }

  .menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

  .carte {
    background: var(--gris);
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s;
  }
  .carte:hover { transform: translateY(-4px); }
  .carte-img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .carte-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
  .carte-nom {
    font-family: 'Anton', sans-serif;
    font-size: 22px; letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .carte-desc { font-size: 13px; color: #666; line-height: 1.55; flex: 1; margin-bottom: 16px; }
  .carte-footer { display: flex; justify-content: space-between; align-items: center; }
  .carte-prix {
    font-family: 'Anton', sans-serif;
    font-size: 28px; color: var(--rouge);
    letter-spacing: 0.5px;
  }
  .carte-badge {
    background: var(--rouge); color: white;
    font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 10px;
  }
  .carte-badge.jaune { background: var(--jaune); color: var(--noir); }

  /* ─── PROMO BANDE ─── */
  .promo {
    background: var(--rouge);
    padding: 28px 40px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px;
  }
  .promo-txt {
    font-family: 'Anton', sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    color: white; text-transform: uppercase; letter-spacing: 1px;
  }
  .promo-txt span { color: var(--jaune); }
  .promo a {
    background: white; color: var(--rouge);
    font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 1px;
    padding: 14px 32px; text-decoration: none; white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0;
  }
  .promo a:hover { background: var(--jaune); color: var(--noir); }

  /* ─── GALERIE PHOTOS ─── */
  .galerie { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 3px; }
  .galerie-item { overflow: hidden; }
  .galerie-item:first-child { grid-row: 1 / 3; }
  .galerie-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .galerie-item:hover img { transform: scale(1.05); }

  /* ─── CONTACT ─── */
  .contact {
    padding: 70px 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start;
  }
  .contact-bloc h2 { font-family: 'Anton', sans-serif; font-size: 48px; text-transform: uppercase; margin-bottom: 32px; line-height: 1; }
  .contact-bloc h2 span { color: var(--rouge); }
  .contact-ligne {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 0;
    border-bottom: 2px solid var(--gris);
  }
  .contact-ligne:last-child { border-bottom: none; }
  .contact-carre {
    width: 40px; height: 40px; background: var(--rouge);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Anton', sans-serif; font-size: 16px; color: white; flex-shrink: 0;
  }
  .contact-ligne strong { display: block; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #999; margin-bottom: 3px; }
  .contact-ligne p { font-size: 16px; font-weight: 600; line-height: 1.5; }

  .contact-img { position: relative; }
  .contact-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
  .contact-img-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--rouge); padding: 16px 20px;
    font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 1px;
    color: white; text-transform: uppercase;
    display: flex; justify-content: space-between; align-items: center;
  }
  .contact-img-label span { color: var(--jaune); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--noir);
    padding: 28px 40px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 4px solid var(--rouge);
  }
  .footer-logo { font-family: 'Anton', sans-serif; font-size: 20px; color: white; }
  .footer-logo span { color: var(--jaune); }
  footer p { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-halal {
    background: var(--jaune); color: var(--noir);
    font-family: 'Anton', sans-serif; font-size: 12px; letter-spacing: 2px;
    padding: 6px 14px;
  }

  @media (max-width: 768px) {
    nav { padding: 0 16px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 240px; }
    .hero-left { padding: 40px 24px; }
    .infos { flex-direction: column; }
    .info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .menu { padding: 48px 16px; }
    .menu-grid { grid-template-columns: 1fr; }
    .promo { flex-direction: column; text-align: center; padding: 28px 24px; }
    .galerie { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .galerie-item:first-child { grid-row: auto; grid-column: 1 / 3; }
    .contact { grid-template-columns: 1fr; padding: 48px 16px; gap: 40px; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px 16px; }
  }