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

  :root {
    --fire: #E8320A;
    --ember: #FF6B35;
    --crust: #1A1208;
    --cheese: #F5C842;
    --cream: #FFF8F0;
    --smoke: #5C4A3A;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--crust);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(26,18,8,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(232,50,10,0.2);
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--cheese);
    letter-spacing: -0.5px;
  }

  .logo span { color: var(--fire); }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--fire);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.1s;
  }
  .nav-cta:hover { background: #c8270a; transform: scale(1.03); }
  .nav-cta svg { width: 16px; height: 16px; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 60%, rgba(232,50,10,0.18) 0%, transparent 70%), var(--crust);
  }

  .hero-eyebrow {
    display: inline-block;
    background: rgba(245,200,66,0.15);
    border: 1px solid rgba(245,200,66,0.35);
    color: var(--cheese);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    max-width: 820px;
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--fire);
    position: relative;
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,248,240,0.7);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 44px;
  }

  /* ── CALL BUTTON ── */
  .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--fire) 0%, #c8270a 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    box-shadow: 0 8px 32px rgba(232,50,10,0.45);
    transition: transform 0.15s, box-shadow 0.15s;
    animation: pulse-glow 2.5s ease-in-out infinite;
  }

  .call-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(232,50,10,0.6);
    animation: none;
  }

  .call-icon {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(232,50,10,0.45); }
    50% { box-shadow: 0 8px 48px rgba(232,50,10,0.75); }
  }

  .call-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: rgba(255,248,240,0.45);
    letter-spacing: 0.5px;
  }

  /* ── FOOD GRID ── */
  .section-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 48px;
  }

  .food-section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .food-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
  }

  .food-section h2 span { color: var(--cheese); }

  .food-section .sub {
    text-align: center;
    color: rgba(255,248,240,0.55);
    margin-bottom: 56px;
    font-size: 1rem;
  }

  .food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .food-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
  }

  .food-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232,50,10,0.4);
  }

  .food-emoji {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 0 20px;
    background: rgba(255,255,255,0.025);
  }

  .food-card-body {
    padding: 16px 20px 22px;
  }

  .food-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--cream);
  }

  .food-card-body p {
    font-size: 0.82rem;
    color: rgba(255,248,240,0.5);
    line-height: 1.5;
  }

  .food-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ember);
    background: rgba(255,107,53,0.12);
    padding: 4px 10px;
    border-radius: 50px;
  }

  /* ── WHY CALL ── */
  .why-section {
    background: rgba(255,255,255,0.025);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 80px 24px;
  }

  .why-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .why-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    text-align: center;
    margin-bottom: 56px;
    font-weight: 700;
  }

  .why-inner h2 span { color: var(--fire); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
  }

  .why-item {
    text-align: center;
  }

  .why-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
  }

  .why-item h3 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--cream);
  }

  .why-item p {
    font-size: 0.85rem;
    color: rgba(255,248,240,0.5);
    line-height: 1.6;
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    text-align: center;
    padding: 100px 24px;
    background: radial-gradient(ellipse at 50% 50%, rgba(232,50,10,0.15) 0%, transparent 65%);
  }

  .cta-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.1;
  }

  .cta-strip h2 span { color: var(--cheese); }

  .cta-strip p {
    color: rgba(255,248,240,0.55);
    margin-bottom: 44px;
    font-size: 1rem;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 32px 24px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,248,240,0.3);
  }

  footer a { color: rgba(255,248,240,0.4); text-decoration: none; }

  /* ── TICKER ── */
  .ticker-wrap {
    background: var(--fire);
    overflow: hidden;
    padding: 10px 0;
  }

  .ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 18s linear infinite;
    white-space: nowrap;
  }

  .ticker-item {
    padding: 0 40px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
  }

  .ticker-dot {
    color: rgba(255,255,255,0.4);
    padding: 0 4px;
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── MOBILE ── */
  @media (max-width: 600px) {
    nav { padding: 14px 18px; }
    .logo { font-size: 1.1rem; }
    .nav-cta { padding: 9px 16px; font-size: 0.8rem; }
    .call-btn { padding: 18px 28px; }
    .food-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .food-section, .cta-strip { padding: 60px 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .call-btn { animation: none; }
    .ticker-track { animation: none; }
  }