    :root {
      --saffron:   #e8863a;
      --deep-red:  #b5331f;
      --turmeric:  #f5c842;
      --cream:     #fdf6ec;
      --dark:      #1a1008;
      --muted:     #7a6652;
      --card-bg:   #fffaf4;
      --border:    #e8d8c4;
      --font-head: 'Playfair Display', serif;
      --font-body: 'DM Sans', sans-serif;
      --radius:    14px;
      --shadow:    0 4px 24px rgba(26,16,8,0.10);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--dark);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 4px; }

    /* ── HERO ── */
    .hero {
      position: relative;
      background: linear-gradient(160deg, #1a1008 0%, #3d1f0a 55%, #c0392b 100%);
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem 1.25rem 5rem;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 60% 40% at 50% 80%, rgba(232,134,58,0.18) 0%, transparent 70%),
        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='%23e8863a' 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");
    }

    .hero-mandala {
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      border: 1px solid rgba(232,134,58,0.15);
      animation: spin 40s linear infinite;
    }
    .hero-mandala::before {
      content: '';
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      border: 1px solid rgba(245,200,66,0.12);
    }
    .hero-mandala::after {
      content: '';
      position: absolute;
      inset: 50px;
      border-radius: 50%;
      border: 1px solid rgba(232,134,58,0.10);
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    .hero-logo {
      position: relative;
      width: 110px;
      height: 110px;
      margin-bottom: 1.25rem;
      filter: drop-shadow(0 8px 32px rgba(232,134,58,0.5));
      animation: floatUp 0.8s ease-out both;
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.6rem, 8vw, 5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -0.02em;
      animation: floatUp 0.9s 0.1s ease-out both;
    }

    .hero h1 span {
      color: var(--saffron);
    }

    .hero-sub {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-top: 0.5rem;
      animation: floatUp 1s 0.2s ease-out both;
    }

    .hero-tagline {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      max-width: 340px;
      line-height: 1.65;
      margin: 1.25rem auto 2rem;
      font-weight: 300;
      animation: floatUp 1s 0.3s ease-out both;
    }

    .hero-ctas {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: floatUp 1s 0.4s ease-out both;
    }

    .btn-primary {
      background: var(--saffron);
      color: var(--dark);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.75rem 1.75rem;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 18px rgba(232,134,58,0.4);
    }
    .btn-primary:hover { background: var(--turmeric); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,134,58,0.5); }

    .btn-outline {
      background: transparent;
      color: #fff;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.95rem;
      padding: 0.75rem 1.75rem;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.35);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

    .hero-scroll {
      position: absolute;
      bottom: 1.5rem;
      /*left: 50%;*/
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: floatUp 1s 0.6s ease-out both;
    }
    .hero-scroll span {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .scroll-dot {
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

    @keyframes floatUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── BADGES ── */
    .badges {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1rem;
      animation: floatUp 1s 0.35s ease-out both;
    }
    .badge {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50px;
      padding: 0.3rem 0.8rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.8);
      backdrop-filter: blur(8px);
    }
    .badge-green { border-color: rgba(72,187,120,0.5); color: #48bb78; background: rgba(72,187,120,0.08); }

    /* ── SECTION ── */
    section { padding: 3rem 1.25rem; max-width: 720px; margin: 0 auto; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.7rem, 5vw, 2.4rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .section-body {
      font-size: 0.97rem;
      line-height: 1.75;
      color: var(--muted);
      margin-bottom: 0.85rem;
    }

    /* ── DIVIDER ── */
    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
      margin: 0;
    }

    /* ── STATS ── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin: 2rem 0 0;
    }
    .stat-cell {
      background: var(--card-bg);
      padding: 1.25rem 0.5rem;
      text-align: center;
    }
    .stat-num {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 900;
      color: var(--deep-red);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 0.25rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ── MENU NAV ── */
    .menu-section { padding-top: 0; }

    .menu-nav-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--cream);
      padding: 0.75rem 1.25rem;
      border-bottom: 1px solid var(--border);
      margin: 0 -1.25rem;
    }

    .menu-nav {
      display: flex;
      gap: 0.5rem;
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 2px;
    }
    .menu-nav::-webkit-scrollbar { display: none; }

    .menu-tab {
      flex-shrink: 0;
      background: transparent;
      border: 1.5px solid var(--border);
      border-radius: 50px;
      padding: 0.4rem 1rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .menu-tab:hover { border-color: var(--saffron); color: var(--dark); }
    .menu-tab.active {
      background: var(--saffron);
      border-color: var(--saffron);
      color: var(--dark);
    }

    /* ── MENU CATEGORY ── */
    .menu-category {
      margin-top: 2rem;
      display: none;
    }
    .menu-category.active { display: block; }

    .cat-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .cat-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--saffron), var(--deep-red));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .cat-title {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark);
    }

    /* ── MENU ITEMS ── */
    .menu-items { display: flex; flex-direction: column; gap: 0; }

    .menu-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--border);
      gap: 0.75rem;
      animation: fadeIn 0.3s ease both;
    }
    .menu-item:last-child { border-bottom: none; }

    @keyframes fadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

    .item-info { flex: 1; min-width: 0; }
    .item-name {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .item-name a { color: inherit; text-decoration: none; }
    .item-name a:hover { color: var(--deep-red); }
    .item-desc {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 0.15rem;
      line-height: 1.4;
    }

    .item-prices {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 0;
    }
    .price-tag {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      min-width: 44px;
    }
    .price-label {
      font-size: 0.62rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .price-val {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--deep-red);
    }
    .price-sep {
      width: 1px;
      height: 28px;
      background: var(--border);
    }
    .price-single {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--deep-red);
    }

    /* ── THALI CARD ── */
    .thali-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem;
      margin-bottom: 0.75rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      transition: box-shadow 0.2s;
    }
    .thali-card:hover { box-shadow: var(--shadow); }
    .thali-name {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark);
    }
    .thali-includes {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 0.3rem;
      line-height: 1.5;
    }
    .thali-price {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--deep-red);
      white-space: nowrap;
    }

    /* ── ABOUT ── */
    .about-section { background: var(--dark); padding: 3.5rem 1.25rem; }
    .about-inner { max-width: 720px; margin: 0 auto; }
    .about-section .section-label { color: var(--saffron); }
    .about-section .section-label::after { background: rgba(232,134,58,0.3); }
    .about-section .section-title { color: #fff; }
    .about-section .section-body { color: rgba(255,255,255,0.6); }

    .highlight-text {
      color: var(--saffron);
      font-style: italic;
    }

    /* ── CONTACT ── */
    .contact-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(232,134,58,0.15), rgba(181,51,31,0.12));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-label {
      font-size: 0.72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .contact-val {
      font-size: 0.97rem;
      font-weight: 500;
      color: var(--dark);
      margin-top: 0.1rem;
    }
    .contact-val a { color: var(--deep-red); text-decoration: none; }
    .contact-val a:hover { text-decoration: underline; }

    /* ── MAP ── */
    .mapbox {
      position: relative;
      height: 400px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      margin-top: 1.25rem;
    }
    .mapbox iframe {
      width: 100%; height: 400px;
      border: none;
      filter: grayscale(80%) sepia(20%);
      transition: filter 0.3s;
    }
    .mapbox:hover iframe { filter: grayscale(0%); }

    /* ── SOCIAL ── */
    .social-row {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-top: 1.25rem;
    }
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.45rem 1rem;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--dark);
      text-decoration: none;
      transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--saffron); background: rgba(232,134,58,0.07); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 2rem 1.25rem;
      text-align: center;
    }
    .footer-inner { max-width: 720px; margin: 0 auto; }
    .footer-logo {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--saffron);
      margin-bottom: 0.5rem;
    }
    .footer-links {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin: 1rem 0;
    }
    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--saffron); }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
      margin-top: 1rem;
    }

    /* ── VEG INDICATOR ── */
    .veg-dot {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #22c55e;
      margin-right: 4px;
      flex-shrink: 0;
    }

    /* ── RESPONSIVE ── */
    @media (min-width: 600px) {
      section { padding: 4rem 1.5rem; }
      .hero { min-height: 100svh; }
    }