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

  :root {
    --green-dark:  #1c3a28;
    --green-mid:   #2a5a3a;
    --green-light: #4a8a5a;
    --yellow:      #f5c520;
    --yellow-pale: #fef3c0;
    --orange:      #e8611a;
    --cream:       #fdf8f0;
    --brown:       #6b3a1f;
    --white:       #ffffff;
    --text-dark:   #1a1a1a;
    --text-mid:    #4a4a4a;
    --text-light:  #888888;
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   40px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAVBAR ─────────────────────────────────────────── */
  nav {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,.07);
    backdrop-filter: blur(8px);
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 900;
    color: var(--green-dark); letter-spacing: -.5px;
  }
  .logo span { color: var(--orange); }

  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-mid);
    text-decoration: none; transition: color .2s;
  }
  .nav-links a:hover { color: var(--green-dark); }

  .nav-right { display: flex; align-items: center; gap: 16px; }
  .nav-search {
    width: 36px; height: 36px;
    border: 1.5px solid #ddd; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: border-color .2s;
  }
  .nav-search:hover { border-color: var(--green-dark); }
  .nav-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow); font-size: 14px; font-weight: 700;
  }

  /* ── HERO ────────────────────────────────────────────── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    height: 650px;
    margin: 0;
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,.06);
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 4s ease-out;
  }

  .hero-slide.active {
    opacity: 1;
  }

  .hero-left {
    background: var(--green-dark);
    padding: 40px 36px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245,197,32,.12) 0%, transparent 60%);
  }
  .hero-left .tag {
    font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
    color: var(--yellow); text-transform: uppercase;
  }
  .hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px; font-weight: 900; line-height: 1.1;
    color: var(--white); margin-bottom: 12px;
  }
  .hero-left h1 em { font-style: italic; color: var(--yellow); }
  .hero-left p {
    font-size: 13px; color: rgba(255,255,255,.6);
    line-height: 1.6; margin-bottom: 24px;
  }
  .hero-left .food-img {
    position: absolute; bottom: 60px; right: -20px;
    width: 130px; opacity: .85;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: transform .2s, box-shadow .2s;
    border: none;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
  .btn-white { background: var(--white); color: var(--green-dark); }
  .btn-yellow { background: var(--yellow); color: var(--green-dark); }
  .btn-green  { background: var(--green-dark); color: var(--white); }
  .btn-outline-green {
    background: transparent;
    border: 2px solid var(--green-dark);
    color: var(--green-dark);
  }

  .hero-center {
    position: relative; overflow: hidden;
  }
  .hero-center img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .hero-center .play-btn {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
  }
  .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.5);
  }
  .dot.active { background: var(--white); width: 24px; border-radius: 4px; }

  .hero-right {
    background: var(--yellow);
    padding: 36px 32px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
  }
 
  .hero-right .category-pill {
    font-size: 11px; font-weight: 600; letter-spacing: 1px;
    color: var(--green-dark); text-transform: uppercase;
    background: rgba(255,255,255,.5); border-radius: 20px;
    padding: 4px 12px; width: fit-content;
  }
  .hero-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 900; line-height: 1.1;
    color: var(--green-dark);
  }
  .hero-right p {
    font-size: 13px; color: rgba(28,58,40,.7); line-height: 1.6;
  }
  .hero-right .pizza-img {
    position: absolute; top: 30px; right: 20px;
    width: 100px; opacity: .9;
  }

  /* ── FEATURED SECTION ────────────────────────────────── */
  .featured {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 0;
    margin: 0;
    min-height: 480px;
  }

  .featured-card {
    background: var(--yellow);
    padding: 32px;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
  }
  .featured-card .count-badge {
    position: absolute; top: 28px; right: 28px;
    font-size: 13px; font-weight: 700; color: var(--text-light);
  }
  .featured-card .cat-label {
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    color: var(--green-dark); text-transform: uppercase; margin-bottom: 8px;
  }
  .featured-card img.food-hero {
    width: 100%; max-width: 300px;
    margin: 16px auto;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,.2));
    display: block;
  }
  .featured-card .subtitle {
    font-size: 16px; font-weight: 600; color: var(--green-dark);
    margin-bottom: 8px;
  }
  .featured-card .arrow-link {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green-dark); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer; margin-top: auto;
    text-decoration: none;
  }

  .featured-content {
    background: var(--white);
    padding: 52px 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 900;
    line-height: 1.05; margin-bottom: 16px;
  }
  .featured-content h2 em {
    font-style: italic; color: var(--orange);
  }
  .featured-content .desc {
    font-size: 14px; color: var(--text-mid);
    line-height: 1.7; max-width: 360px; margin-bottom: 28px;
  }

  /* ── NEWSLETTER ──────────────────────────────────────── */

  .newsletter::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px; font-weight: 900;
    color: var(--white); line-height: 1.05; margin-bottom: 32px;
  }
  .newsletter h2 em { font-style: italic; color: var(--yellow);
  }
  
  /* ── FOOTER ──────────────────────────────────────────── */
  footer {
    background: var(--cream);
    padding: 52px 60px 28px;
    border-top: 1px solid rgba(0,0,0,.08);
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
  }
  .footer-brand .logo { font-size: 24px; margin-bottom: 10px; }
  .footer-brand p {
    font-size: 13px; color: var(--text-mid);
    line-height: 1.6; max-width: 200px;
  }
  .footer-col h4 {
    font-size: 13px; font-weight: 700;
    margin-bottom: 16px; color: var(--text-dark);
    text-transform: uppercase; letter-spacing: .5px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    font-size: 13px; color: var(--text-mid);
    margin-bottom: 10px;
  }
  .footer-col ul li a {
    color: inherit; text-decoration: none; transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--green-dark); }
  .footer-col .info-line {
    font-size: 13px; color: var(--text-mid);
    margin-bottom: 6px; line-height: 1.6;
  }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; border-top: 1px solid rgba(0,0,0,.08);
  }
 

  /* ── REVEAL ANIMATION ────────────────────────────────── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }

  /* ── FOOD EMOJI PLACEHOLDERS ─────────────────────────── */
  .food-placeholder {
    background: linear-gradient(135deg, #f5f0e8, #ede5d5);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
  }
  .food-placeholder.sm { font-size: 32px; }

  /* ── SCROLL INDICATOR ────────────────────────────────── */
  .scroll-dots {
    display: flex; gap: 6px; justify-content: center;
    padding: 12px 0;
  }

  /* ── HIGHLIGHT ───────────────────────────────────────── */
  .highlight { color: var(--orange); }
  .highlight-green { color: var(--green-dark); }
