
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #c9a84c;
      --gold-light: #e0c280;
      --cream: #f5ede0;
      --dark: #0f0d0b;
      --deep-green: #173826;
      --sand: #e8d6b4;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--sand);
      font-family: 'Syne', sans-serif;
      overflow-x: hidden;
    }

    /* ===================== HERO ===================== */
    .tp-video-area {
      width: 80%;
      margin: 60px auto 40px auto;
    }

    .sv-hero-title-box {
      margin-bottom: 40px;
      text-align: left;
      position: relative;
      z-index: 3;
      padding-left: 100px;
    }
    .sv-hero-title {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--deep-green);
      letter-spacing: -0.02em;
    }
    .sv-hero-title-box p {
      font-size: 1.1rem;
      margin-top: 12px;
      color: #2c3a2b;
      font-weight: 450;
      opacity: 0.85;
    }

    /* Hero wrap — overflow hidden, position relative for parallax child */
    .tp-video-wrap {
    position: relative;
    width: 100%;
    height: 62svh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
   

    /* 👇 ADD THIS */
    background-image: url('../gallery/ambience-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

    /* Overlay */
    /* .tp-video-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(15,13,11,0.3) 0%, rgba(15,13,11,0.65) 100%);
      z-index: 1;
      border-radius: 28px;
      pointer-events: none;
    } */

    /* 
      KEY FIX: image is absolute inside a relative container.
      It's taller than its container so it can move up/down via JS translateY for parallax.
      NO position:fixed — that breaks clipping.
    */
    .hero-img {
      position: absolute;
      top: -15%;            /* starts slightly above so it can scroll down */
      left: 0;
      width: 100%;
      height: 130%;         /* taller than container to allow parallax movement */
      object-fit: cover;
      object-position: center;
      will-change: transform;
      transition: filter 0.4s ease;
      filter: brightness(1.02) contrast(1.05);
      z-index: 0;
    }

    .tp-video-wrap:hover .hero-img {
      filter: brightness(1.05) contrast(1.06);
    }

    /* ===================== MENU NAV ===================== */
    .menu {
      max-width: 1320px;
      margin: 30px auto 50px auto;
      padding: 0 28px;
      display: flex;
      flex-wrap: wrap;
      justify-content: left;
      gap: 12px 18px;
      position: relative;
      z-index: 5;
    }

    .menu-label {
      width: 100%;
      text-align: center;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-weight: 500;
      color: var(--deep-green);
      margin-bottom: 18px;
      opacity: 0.7;
    }

    .menu__item {
          text-decoration: none;
    /* background: rgba(23, 56, 38, 0.08); */
    backdrop-filter: blur(2px);
    padding: 8px 5px;
    border-radius: 60px;
    transition: all 0.25s ease;
    /* border: 1px solid rgba(201, 168, 76, 0.25); */
    font-weight: 600;
    font-size: 35px;
    color: #173826;
    display: inline-flex;
    align-items: center;
    /* gap: 8px; */
    cursor: pointer;
    }

    .menu__item-inner { display: flex; align-items: center; gap: 10px; }

    .leaf-icon {
      width: 16px; height: 16px;
      fill: var(--gold);
      transition: transform 0.2s;
    }

    /* .menu__item:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #0f0d0b;
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    } */
    .menu__item:hover .leaf-icon { fill: #1e2e1c; transform: rotate(8deg); }

    .menu__item.active {
      background: var(--deep-green);
      border-color: var(--gold);
      color: var(--gold);
      box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }
    .menu__item.active .leaf-icon { fill: var(--gold); }

    /* ===================== SECTIONS ===================== */
    .sections-container {
      max-width: 1280px;
      margin: 20px auto 80px auto;
      padding: 0 30px;
      display: flex;
      flex-direction: column;
      gap: 70px;
    }

    .menu-section {
      /* background: rgba(255, 248, 235, 0.85); */
      backdrop-filter: blur(2px);
      border-radius: 40px;
      /* padding: 48px 40px; */
      scroll-margin-top: 90px;
      /* border: 1px solid rgba(201, 168, 76, 0.4); */
      /* box-shadow: 0 12px 28px -10px rgba(0,0,0,0.08); */
    }

    .section-title {
      font-size: 5.1rem;
    font-weight: 400;
      color: var(--deep-green);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      text-transform: lowercase;
    }

    .section-title .leaf-big { width: 28px; height: 28px; fill: var(--gold); }

    .section-desc {
      font-size: 1.05rem;
      line-height: 1.55;
      color: #2c2a24;
      max-width: 85%;
      font-weight: 400;
    }
    .section-desc strong { color: var(--deep-green); font-weight: 600; }

    .dish-tag {
      margin-top: 24px;
      display: inline-block;
      background: var(--gold-light);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #1f2f1a;
    }

    /* ===================== SINGLE SECTION VIEW ===================== */
    /* When a category is selected, hide menu nav and show section view */
    .section-view {
      max-width: 1280px;
      margin: 20px auto 80px auto;
      padding: 0 30px;
      display: none;        /* hidden by default */
      flex-direction: column;
      gap: 0;
      animation: fadeSlideIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

  

    /* Single section card inside section-view */
    .section-view .menu-section {
      animation: fadeSlideIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
    }

    /* ---- DISH ITEMS GRID ---- */
    .dish-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 28px;
    }

    .dish-card {
      /* background: rgba(255,255,255,0.55);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 20px; */
      padding: 22px 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: all 0.22s ease;
      animation: fadeSlideIn 0.35s ease both;
    }
    /* .dish-card:hover {
      background: rgba(255,255,255,0.85);
      transform: translateY(-3px);
      box-shadow: 0 10px 24px -8px rgba(0,0,0,0.12);
      border-color: var(--gold);
    } */

    .dish-name {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--deep-green);
    }

    .dish-desc {
      font-size: 1rem;
      color: #5a4f3f;
      line-height: 1.45;
    }

    .dish-price {
      margin-top: auto;
      padding-top: 10px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #173826;
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 800px) {
      .tp-video-area { width: 92%; margin-top: 30px; }
      .tp-video-wrap { height: 50svh; min-height: 380px;  }
      .menu-section { padding: 32px 24px; }
      .section-desc { max-width: 100%; }
      .section-title { font-size: 1.8rem; }
      .menu { gap: 10px; }
      .menu__item { padding: 6px 18px; font-size: 0.8rem; }
      .section-view { padding: 0 20px; }
    }

    @media (max-width: 560px) {
      .sections-container { padding: 0 20px; gap: 40px; }
      .menu-section { padding: 28px 20px; }
      .section-title { font-size: 1.5rem; }
      .dish-grid { grid-template-columns: 1fr; }
    }

    /* State: when a section is open */
    body.section-open .menu        { display: none; }
    body.section-open #allSections { display: none; }
    body.section-open .section-view { display: flex; }
