
    /* ---------- VARIABLES ---------- */
    :root {
      --primary: #e11d48;       /* Rouge principal */
      --primary-dark: #be123c;
      --bg: #0f172a;            /* Fond sombre */
      --card-bg: #111827;
      --text: #f9fafb;
      --muted: #9ca3af;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
    }

    /* ---------- RESET SIMPLE ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
      color: var(--text);
      line-height: 1.5;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ---------- LAYOUT GLOBAL ---------- */
    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.4rem;
    }

    /* ---------- HEADER / NAVBAR ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.98),
        rgba(15, 23, 42, 0.85),
        transparent
      );
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
      gap: 0.75rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand-logo {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: radial-gradient(circle at 20% 20%, #fb7185, #be123c);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.12rem;
      box-shadow: 0 0 0 2px rgba(248, 250, 252, 0.08);
    }

    .brand-text-title {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.05em;
    }

    .brand-text-sub {
      font-size: 0.7rem;
      text-transform: uppercase;
      color: var(--muted);
      letter-spacing: 0.16em;
    }

    .nav-links {
      display: none;
      gap: 1.4rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .nav-links a:hover {
      color: #e5e7eb;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .phone {
      display: none;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .btn-primary {
      border: none;
      border-radius: 999px;
      padding: 0.55rem 1.35rem;
      font-size: 0.9rem;
      font-weight: 600;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fdf2f8;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(248, 113, 113, 0.35);
      transition: transform 0.12s ease, box-shadow 0.12s ease,
        filter 0.12s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.08);
      box-shadow: 0 16px 40px rgba(248, 113, 113, 0.45);
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 8px 22px rgba(248, 113, 113, 0.35);
    }

    /* ---------- HERO / BANNIÈRE ---------- */
    .hero {
      padding: 2rem 0 2.5rem;
    }

    .hero-grid {
      display: grid;
      gap: 1.8rem;
    }

    .hero-left-title {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(248, 113, 113, 0.35);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #fecaca;
      margin-bottom: 0.9rem;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.28);
    }

    .hero-title {
      font-size: 2rem;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 0.85rem;
    }

    .hero-title span {
      color: #fb7185;
    }

    .hero-subtitle {
      font-size: 0.96rem;
      color: var(--muted);
      max-width: 32rem;
      margin-bottom: 1.3rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
      margin-bottom: 1.4rem;
    }

    .btn-secondary {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      padding: 0.5rem 1.1rem;
      background: rgba(15, 23, 42, 0.8);
      font-size: 0.85rem;
      color: #e5e7eb;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-badges {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.75rem;
      color: var(--muted);
    }

    .hero-badge-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #fde68a;
    }

    .hero-right {
      background: radial-gradient(circle at 0% 0%, #fb7185, #111827 50%);
      border-radius: 26px;
      padding: 1rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.28);
      position: relative;
      overflow: hidden;
    }

    .hero-burger-card {
      background: rgba(15, 23, 42, 0.88);
      border-radius: 22px;
      padding: 1rem;
      display: grid;
      grid-template-columns: 1.4fr 1.1fr;
      gap: 0.75rem;
      align-items: center;
    }

    .hero-burger-text h2 {
      font-size: 1.15rem;
      margin-bottom: 0.35rem;
    }

    .hero-burger-text p {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .hero-burger-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fbbf24;
      margin-bottom: 0.4rem;
    }

    .hero-burger-tagline {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      color: #a5b4fc;
    }

    .hero-burger-image {
      border-radius: 999px;
      overflow: hidden;
      border: 2px solid rgba(248, 250, 252, 0.12);
      background: radial-gradient(circle at 30% 10%, #f9a8d4, #b91c1c);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      color: rgba(15, 23, 42, 0.9);
      font-weight: 700;
      text-transform: uppercase;
    }

    .hero-floating {
      position: absolute;
      right: 0.8rem;
      bottom: 0.7rem;
      background: rgba(15, 23, 42, 0.95);
      border-radius: 999px;
      padding: 0.4rem 0.9rem;
      font-size: 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.45rem;
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    .dot-pulse {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.28);
    }

    /* ---------- SECTION MENU ---------- */
    .section {
      padding: 0 0 2.5rem;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.5rem;
      margin-bottom: 1.2rem;
    }

    .section-title {
      font-size: 1.15rem;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .menu-card {
      background: rgba(15, 23, 42, 0.9);
      border-radius: var(--radius-lg);
      display: flex;
      gap: 0.9rem;
      padding: 0.75rem;
      border: 1px solid rgba(31, 41, 55, 0.9);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
    }

    .menu-thumb {
      width: 88px;
      border-radius: 16px;
      overflow: hidden;
      background: radial-gradient(circle at 0% 0%, #fed7aa, #f97316);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #1f2937;
    }

    .menu-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .menu-title-line {
      display: flex;
      justify-content: space-between;
      gap: 0.6rem;
      align-items: baseline;
    }

    .menu-name {
      font-weight: 600;
      font-size: 0.98rem;
    }

    .menu-price {
      font-weight: 700;
      font-size: 0.95rem;
      color: #fde68a;
    }

    .menu-desc {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .menu-meta {
      margin-top: 0.35rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: var(--muted);
    }

    .menu-tag {
      background: rgba(31, 41, 55, 0.95);
      border-radius: 999px;
      padding: 0.15rem 0.55rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* ---------- BLOC COMMANDE RAPIDE ---------- */
    .cta {
      margin-top: 2rem;
      border-radius: 24px;
      background: radial-gradient(circle at 0% 0%, #1d4ed8, #020617);
      padding: 1.2rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      border: 1px solid rgba(129, 140, 248, 0.4);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    }

    .cta-text-main {
      font-size: 1rem;
      font-weight: 600;
    }

    .cta-text-sub {
      font-size: 0.8rem;
      color: #e5e7eb;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .cta-input {
      flex: 1 1 160px;
      min-width: 0;
      border-radius: 999px;
      border: none;
      padding: 0.55rem 0.9rem;
      font-size: 0.85rem;
      outline: none;
    }

    .cta-note {
      font-size: 0.7rem;
      color: #cbd5f5;
    }

    /* ---------- FOOTER ---------- */
    footer {
      margin-top: auto;
      padding: 1.5rem 0 2rem;
      border-top: 1px solid rgba(30, 64, 175, 0.5);
      background: radial-gradient(circle at bottom, #0b1120, #020617 55%);
    }

    .footer-inner {
      font-size: 0.75rem;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .footer-links {
      display: flex;
      gap: 0.9rem;
    }

    .footer-links a:hover {
      color: #e5e7eb;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (min-width: 640px) {
      .hero {
        padding-top: 2.6rem;
      }

      .hero-title {
        font-size: 2.4rem;
      }

      .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }

      .phone {
        display: inline-flex;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        align-items: center;
      }

      .hero {
        padding-bottom: 3rem;
      }

      .section-header {
        margin-bottom: 1.6rem;
      }

      .cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }

      .cta-texts {
        max-width: 50%;
      }

      .cta-row {
        flex: 1;
        justify-content: flex-end;
      }
    }

    @media (min-width: 1024px) {
      .hero-title {
        font-size: 2.8rem;
      }

      .menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hero-burger-card {
        padding: 1.1rem;
      }
    }
