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

    :root {
      --accent: #f5c518;
      --accent-dark: #d4a800;
      --dark: #111111;
      --dark2: #1a1a1a;
      --mid: #2a2a2a;
      --text: #1c1c1c;
      --text-muted: #6b6b6b;
      --border: #e5e5e5;
      --white: #ffffff;
      --bg: #f7f7f5;
      --radius: 10px;
    }

    body {
      font-family: 'DM Sans', 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    /* ── NAVBAR ─────────────────────────── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
    }

    .logo {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-links a.signin-btn {
      background: var(--accent);
      color: var(--dark);
      padding: 7px 20px;
      border-radius: 20px;
      font-weight: 700;
      transition: background 0.2s;
    }

    .nav-links a.signin-btn:hover { background: var(--accent-dark); }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .bar { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

    /* ── HERO ─────────────────────────── */
    .hero {
      min-height: 100vh;
      background: var(--dark);
      display: flex;
      align-items: center;
      padding: 100px 40px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -150px; right: -150px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(245,197,24,0.14) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 10%;
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      width: 100%;
      position: relative;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-text h1 span { color: var(--accent); }

    .hero-text p {
      color: #aaa;
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 36px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--dark);
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .hero-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
    }

    .stat {
      text-align: center;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--accent);
    }

    .stat-label {
      font-size: 0.8rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    /* Hero food grid */
    .hero-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .hero-img-card {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 1;
      position: relative;
      border: 1px solid #222;
    }

    .hero-img-card:first-child {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    .hero-img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .hero-img-card:hover img { transform: scale(1.05); }

    .hero-img-card .img-label {
      position: absolute;
      bottom: 12px; left: 12px;
      background: rgba(0,0,0,0.7);
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      backdrop-filter: blur(4px);
    }

    /* ── SECTION SHARED ─────────────────────── */
    section { padding: 80px 40px; }

    .section-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .section-sub {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 48px;
    }

    .container { max-width: 1160px; margin: 0 auto; }

    /* ── CATEGORIES ─────────────────────────── */
    .categories-section { background: var(--dark2); }

    .categories-section .section-title,
    .categories-section .section-label { color: var(--accent); }

    .categories-section .section-title { color: var(--white); }
    .categories-section .section-sub { color: #999; }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
    }

    .cat-card {
      background: var(--mid);
      border: 1px solid #333;
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      transition: border-color 0.2s, transform 0.2s;
      cursor: default;
    }

    .cat-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
    }

    .cat-icon { font-size: 2.4rem; margin-bottom: 12px; }

    .cat-name {
      font-weight: 600;
      color: var(--white);
      font-size: 0.95rem;
    }

    .cat-count {
      font-size: 0.8rem;
      color: #666;
      margin-top: 4px;
    }

    /* ── FEATURED MEALS ─────────────────────── */
    .featured-section { background: var(--bg); }

    .meals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    .meal-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .meal-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.10);
      transform: translateY(-4px);
    }

    .meal-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .meal-body { padding: 18px 20px 20px; }

    .meal-name {
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 6px;
    }

    .meal-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .meal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .meal-price {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text);
    }

    .meal-tag {
      font-size: 0.75rem;
      font-weight: 600;
      background: rgba(245,197,24,0.15);
      color: var(--accent-dark);
      padding: 3px 10px;
      border-radius: 20px;
    }

    /* ── HOW IT WORKS ─────────────────────────── */
    .how-section { background: var(--white); }

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

    .step {
      text-align: center;
      padding: 32px 24px;
      border-radius: 16px;
      background: var(--bg);
      border: 1px solid var(--border);
      position: relative;
    }

    .step-num {
      width: 44px;
      height: 44px;
      background: var(--accent);
      color: var(--dark);
      border-radius: 50%;
      font-weight: 800;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .step-icon { font-size: 2rem; margin-bottom: 12px; }

    .step h3 {
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 8px;
    }

    .step p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── CTA BANNER ─────────────────────────── */
    .cta-section {
      background: var(--dark);
      text-align: center;
      padding: 80px 40px;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(245,197,24,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--white);
      margin-bottom: 14px;
      position: relative;
    }

    .cta-section h2 span { color: var(--accent); }

    .cta-section p {
      color: #999;
      font-size: 1rem;
      margin-bottom: 36px;
      position: relative;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--dark);
      padding: 15px 36px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      position: relative;
    }

    .cta-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

    /* ── FOOTER ─────────────────────────── */
    .footer {
      background: var(--dark2);
      padding: 60px 40px 30px;
    }

    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid #222;
    }

    .footer-brand .logo { display: block; margin-bottom: 14px; }

    .footer-brand p {
      color: #666;
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-col h4 {
      font-weight: 700;
      color: var(--white);
      font-size: 0.9rem;
      margin-bottom: 16px;
      letter-spacing: 0.3px;
    }

    .footer-col a {
      display: block;
      color: #666;
      text-decoration: none;
      font-size: 0.88rem;
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--accent); }

    .footer-bottom {
      max-width: 1160px;
      margin: 0 auto;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-bottom p { color: #444; font-size: 0.85rem; }

    .footer-bottom a { color: #555; font-size: 0.85rem; text-decoration: none; margin-left: 16px; }
    .footer-bottom a:hover { color: var(--accent); }

    /* ── ANIMATIONS ─────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-text { animation: fadeUp 0.6s ease both; }
    .hero-visual { animation: fadeUp 0.6s 0.2s ease both; }

    /* ── RESPONSIVE ─────────────────────────── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .navbar { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); padding: 20px; gap: 16px; }
      .menu-toggle { display: flex; }
      section { padding: 60px 20px; }
      .hero { padding: 100px 20px 60px; }
      .footer { padding: 40px 20px 24px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .hero-stats { gap: 20px; }
    }