
  :root {
    /* Off-white / cream base with green & beige accents */
    --bg-deep: #f5eedf;        /* main off-white cream background */
    --bg-mid: #ede4cf;         /* warmer beige for alt sections */
    --bg-card: #ffffff;        /* clean white cards */
    --bg-card-soft: #f9f3e3;   /* soft beige card */
    --gold: #b8935a;           /* warm beige-gold accent */
    --gold-bright: #a0793f;    /* darker beige for emphasis */
    --gold-soft: #d4bd8e;      /* light beige tint */
    --green: #2d5a3d;          /* deep forest green primary */
    --green-bright: #3a7050;   /* lighter green */
    --green-deep: #1f4029;     /* darkest green for headings */
    --text: #2a3d31;           /* main dark green-ish text */
    --text-muted: #6e7d6f;     /* muted warm gray-green */
    --accent-red: #b54424;
    --border: rgba(184, 147, 90, 0.28);
    --border-soft: rgba(45, 90, 61, 0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ===== NAVIGATION (kept dark — floats over dark hero) ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    background: rgba(7, 20, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 178, 101, 0.18);
  }
  .nav-panel {
    display: contents;
  }
  .nav-left { font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 4px; color: #9bb0a3; }
  .logo-badge {
    background: #d4b265;
    color: #07140d;
    padding: 8px 16px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 2px;
  }
  .nav-center {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    grid-column: 2;
  }
  .nav-center a {
    color: #c8b88a;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.25s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .nav-center a:hover,
  .nav-center a.active { color: #f0d182; }
  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    grid-column: 3;
  }
  .nav-brand { grid-column: 1; justify-self: start; }
  .nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a {
    color: #c8b88a;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.25s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .nav-links a:hover { color: #f0d182; }
  .nav-cta {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #d4b265;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07140d;
    font-weight: 700;
    font-size: 14px;
  }

  /* ===== HERO (Hunger Inc style — centered, dark theme retained) ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #07140d;
    overflow: hidden;
  }
  .hero-content {
    max-width: 820px;
    z-index: 3;
    position: relative;
    width: 100%;
  }
  .hero-eyebrow {
    color: #d4b265;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 6px;
    margin-bottom: 28px;
    text-transform: uppercase;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(54px, 8vw, 110px);
    line-height: 1.0;
    color: #f5ede0;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -2px;
  }
  .hero h1 span {
    display: block;
    font-style: italic;
    color: #d4b265;
    font-weight: 500;
    margin-top: 8px;
    font-size: 1.05em;
  }
  .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c8b88a;
    font-size: clamp(16px, 1.6vw, 20px);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
  }
  .hero p {
    color: #9bb0a3;
    font-size: 15px;
    margin: 0 auto 40px;
    max-width: 580px;
    line-height: 1.8;
  }
  /* Brand / category pills */
  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
  }
  .hero-pills .pill {
    padding: 10px 22px;
    border: 1px solid rgba(212, 178, 101, 0.45);
    border-radius: 999px;
    color: #d4b265;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: rgba(212, 178, 101, 0.04);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
  }
  .hero-pills .pill:hover {
    background: rgba(212, 178, 101, 0.14);
    border-color: #d4b265;
    color: #f0d182;
    transform: translateY(-2px);
  }
  .hero .btn-primary {
    border-radius: 999px;
    padding: 16px 44px;
    background: #d4b265;
    color: #07140d;
  }
  .hero .btn-primary:hover { background: #f0d182; }
  .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--green-deep);
    color: var(--bg-deep);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); }

  /* Faint background image — barely visible, sets a mood */
  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.18;
    filter: blur(1px) saturate(1.1);
  }
  /* Strong dark vignette to keep text the focus */
  .hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(7,20,13,0.55) 0%, rgba(7,20,13,0.95) 75%, #07140d 100%),
      linear-gradient(180deg, rgba(7,20,13,0.7) 0%, transparent 30%, transparent 70%, rgba(7,20,13,0.85) 100%);
    z-index: 2;
  }
  .hero-spices { display: none; }

  /* ===== SECTION SHARED ===== */
  section { padding: 100px 60px; position: relative; scroll-margin-top: 88px; }
  #about, #contact, #menus, #gallery, #reach { scroll-margin-top: 88px; }
  .hero-image img { opacity: 0.28; }
  .section-eyebrow {
    text-align: center;
    color: var(--gold-bright);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--green-deep);
    margin-bottom: 18px;
    font-weight: 600;
    font-style: italic;
  }
  .section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 60px;
    font-size: 15px;
  }
  .divider {
    width: 60px;
    height: 1px;
    background: var(--gold-bright);
    margin: 0 auto 50px;
  }

  /* ===== PRICING BANNER ===== */
  .pricing-banner {
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-card-soft) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px;
  }
  .pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px 24px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(45, 90, 61, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .price-card.featured {
    background: var(--green-deep);
    border-color: var(--green-deep);
    transform: scale(1.05);
  }
  .price-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(45, 90, 61, 0.12); }
  .price-card.featured:hover { transform: scale(1.05) translateY(-6px); }
  .price-pax {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold-bright);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
  }
  .price-card.featured .price-pax { color: var(--gold-soft); }
  .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--green-deep);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
  }
  .price-card.featured .price-amount { color: var(--bg-deep); }
  .price-amount span { font-size: 16px; color: var(--text-muted); margin-left: 2px; }
  .price-card.featured .price-amount span { color: var(--gold-soft); }
  .price-note {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.3px;
  }
  .price-card.featured .price-note { color: var(--gold-soft); }
  .pricing-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
    margin-top: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== MENU SECTIONS ===== */
  .menu-section { padding: 110px 60px; }
  .menu-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: stretch;
  }
  .menu-row.reverse { direction: rtl; }
  .menu-row.reverse > * { direction: ltr; }

  .menu-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(45, 90, 61, 0.18);
    min-height: 480px;
  }
  .menu-content { display: flex; flex-direction: column; justify-content: center; }

  /* Chaat menu section — deep green background */
  .chaat-menu-section {
    background: linear-gradient(180deg, #1f4029 0%, #143020 100%);
    padding: 110px 60px;
  }
  .chaat-menu-section .menu-content h3 { color: #d4b265; }
  .chaat-menu-section .menu-content h2 { color: #f5ede0; }
  .chaat-menu-section .menu-content > p { color: rgba(245, 237, 224, 0.78); }
  .chaat-menu-section .menu-list { border-top-color: rgba(245, 237, 224, 0.18); }
  .chaat-menu-section .menu-list li {
    border-bottom-color: rgba(245, 237, 224, 0.15);
    color: #f5ede0;
  }
  .chaat-menu-section .menu-list li .badge.gold {
    background: rgba(212, 178, 101, 0.22);
    color: #d4b265;
  }
  .chaat-menu-section .menu-list li .badge.green {
    background: rgba(245, 237, 224, 0.15);
    color: #f5ede0;
  }
  .chaat-menu-section .menu-image { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45); }
  .chaat-menu-section .menu-image::after { display: none; }
  .menu-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .menu-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(45,90,61,0.25));
  }

  .menu-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gold-bright);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .menu-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--green-deep);
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.1;
  }
  .menu-content > p {
    color: var(--text);
    margin-bottom: 28px;
    font-size: 15px;
  }
  .menu-list {
    list-style: none;
    border-top: 1px solid var(--border-soft);
  }
  .menu-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-size: 15px;
  }
  .menu-list li .dish-name {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .menu-list li .badge {
    font-size: 10px;
    padding: 3px 8px;
    background: rgba(181, 68, 36, 0.12);
    color: var(--accent-red);
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .menu-list li .badge.gold {
    background: rgba(184, 147, 90, 0.18);
    color: var(--gold-bright);
  }
  .menu-list li .badge.green {
    background: rgba(45, 90, 61, 0.12);
    color: var(--green-deep);
  }

  .price-tag { color: var(--gold-bright); font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1px; }

  /* ===== CHAAT GRID (3-card layout matching ref) ===== */
  .feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 2px 12px rgba(45, 90, 61, 0.05);
  }
  .feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-bright);
    box-shadow: 0 18px 40px rgba(45, 90, 61, 0.12);
  }
  .feature-card .img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .feature-card .img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
  }
  .feature-card:nth-child(1) .img-wrap img { object-position: center 90%; transform: scale(1.4); transform-origin: center 90%; }
  .feature-card:nth-child(1):hover .img-wrap img { transform: scale(1.5); }
  .feature-card:hover .img-wrap img { transform: scale(1.08); }
  .feature-card .body { padding: 28px 26px; }
  .feature-card .icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--gold-bright);
    font-size: 20px;
  }
  .feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--green-deep);
    margin-bottom: 10px;
    font-style: italic;
  }
  .feature-card .body > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  /* ===== GALLERY ===== */
  .gallery-section {
    padding: 110px 60px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  }
  .gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(31, 64, 41, 0.85));
    opacity: 0.7;
    transition: opacity 0.4s;
  }
  .gallery-item:hover img { transform: scale(1.1); }
  .gallery-item:hover::after { opacity: 0.3; }
  .gallery-item .caption {
    position: absolute;
    bottom: 16px;
    left: 18px;
    color: #f5eedf;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    z-index: 2;
  }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.gi-panipuri img { object-position: center bottom; }

  /* ===== BOOKING / CONTACT ===== */
  .booking-section {
    padding: 110px 60px;
    background:
      linear-gradient(135deg, rgba(245,238,223,0.92), rgba(237,228,207,0.94)),
      url('https://images.unsplash.com/photo-1631515243349-e0cb75fb8d3a?w=1600&q=80') center/cover;
    position: relative;
  }
  .booking-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
  }
  .booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--green-deep);
    margin-bottom: 22px;
    font-weight: 600;
    line-height: 1.1;
    font-style: italic;
  }
  .booking-info > p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 36px;
    max-width: 460px;
  }
  .info-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }
  .booking-centered { text-align: center; }
  .booking-centered .section-eyebrow { text-align: center; }
  .booking-centered .booking-info > p { margin-left: auto; margin-right: auto; }
  .contact-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 36px;
  }
  .contact-row .info-block {
    text-align: left;
    margin-bottom: 0;
    flex: 0 1 320px;
  }
  .info-block .icon-circle {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid var(--green);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    flex-shrink: 0;
    font-size: 18px;
  }
  .info-block h6 {
    font-family: 'Cinzel', serif;
    color: var(--gold-bright);
    font-size: 12px;
    letter-spacing: 2.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .info-block p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
  }
  .booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 36px;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(45, 90, 61, 0.12);
  }
  .booking-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--green-deep);
    font-size: 24px;
    margin-bottom: 6px;
    font-style: italic;
  }
  .booking-form .form-sub {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 26px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-field { margin-bottom: 14px; }
  .form-field label {
    display: block;
    font-family: 'Cinzel', serif;
    color: var(--green-deep);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 14px;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--green-deep);
  }
  .form-field textarea { min-height: 90px; resize: vertical; }
  .form-field select { cursor: pointer; }
  .booking-form .btn-primary {
    width: 100%;
    margin-top: 8px;
    background: var(--green-deep);
    color: var(--bg-deep);
    border-radius: 3px;
  }
  .booking-form .btn-primary:hover { background: var(--green-bright); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--green-deep);
    padding: 70px 60px 30px;
    border-top: 1px solid var(--border);
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
  }
  .footer-brand h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold-soft);
    letter-spacing: 4px;
    margin-bottom: 18px;
  }
  .footer-brand p {
    color: rgba(245, 238, 223, 0.65);
    font-size: 14px;
    max-width: 320px;
  }
  .footer-col h5 {
    font-family: 'Cinzel', serif;
    color: var(--gold-soft);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    color: rgba(245, 238, 223, 0.65);
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .footer-col ul li:hover { color: var(--gold-soft); }
  .footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 238, 223, 0.15);
    text-align: center;
    color: rgba(245, 238, 223, 0.5);
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* ===== INDIA MAP SECTION ===== */
  .india-section {
    background: linear-gradient(180deg, #07140d 0%, #0c2417 100%);
    padding: 110px 60px 60px;
    color: #f5ede0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .india-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,178,101,0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .india-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
  .india-section .section-eyebrow { color: #d4b265; }
  .india-section .section-title {
    color: #f5ede0;
    margin-bottom: 18px;
  }
  .india-section .section-title em { color: #d4b265; font-style: italic; }
  .india-sub {
    max-width: 640px;
    margin: 0 auto 50px;
    color: rgba(245, 237, 224, 0.72);
    font-size: 16px;
    line-height: 1.7;
  }
  .india-map-wrap {
    max-width: 560px;
    margin: 0 auto 50px;
  }
  .india-map-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 504 / 360;
  }
  .india-map-img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 8px 30px rgba(212, 178, 101, 0.15));
  }
  .map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    z-index: 3;
  }
  .map-pin .pin-dot {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 9px; height: 9px;
    background: #d4b265;
    border: 2px solid #f5ede0;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(7,20,13,0.6);
    z-index: 2;
  }
  .map-pin .pin-pulse {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 9px; height: 9px;
    background: #d4b265;
    border-radius: 50%;
    opacity: 0.7;
    animation: pulseDot 2.4s ease-out infinite;
    z-index: 1;
  }
  .map-pin .pin-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #f5ede0;
    text-shadow: 0 0 6px rgba(7,20,13,0.85), 0 0 10px rgba(7,20,13,0.7);
    white-space: nowrap;
    letter-spacing: 0.3px;
  }
  .map-pin.label-right .pin-label { left: 12px; }
  .map-pin.label-left .pin-label { right: 12px; }
  .map-pin:hover .pin-dot { background: #f5ede0; }
  .map-pin:hover .pin-label { color: #d4b265; }
  @keyframes pulseDot {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0; }
  }
  .india-cta {
    margin-bottom: 60px;
  }
  .india-cta-line {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(245, 237, 224, 0.85);
    margin-bottom: 20px;
  }
  .india-cta-line span { color: #d4b265; }
  .india-section .btn-primary {
    background: #d4b265;
    color: #07140d;
    padding: 14px 36px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
  }
  .india-section .btn-primary:hover {
    background: #f5ede0;
    transform: translateY(-2px);
  }
  .india-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(245, 237, 224, 0.12);
    color: rgba(245, 237, 224, 0.45);
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* ===== RESPONSIVE ===== */

  /* Large desktop tweak */
  @media (max-width: 1280px) {
    section, .pricing-banner, .menu-section, .gallery-section, .booking-section, footer {
      padding-left: 50px; padding-right: 50px;
    }
  }

  /* iPad landscape & smaller laptops */
  @media (max-width: 1100px) {
    nav { padding: 16px 40px; }
    .nav-links { gap: 26px; }
    .hero { padding: 130px 32px 90px; }
    .hero-content h1 { font-size: clamp(48px, 7.5vw, 90px); }
    .pricing-grid { gap: 18px; }
    .price-card.featured { transform: scale(1.03); }
    .feature-grid { gap: 20px; }
    .menu-row { gap: 50px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
  }

  /* iPad portrait & tablets */
  @media (max-width: 900px) {
    nav { padding: 14px 28px; }
    .nav-left { display: none; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 12px; letter-spacing: 1.5px; }
    section, .pricing-banner, .menu-section, .gallery-section, .booking-section, footer {
      padding: 80px 36px;
    }
    .hero { padding: 120px 28px 80px; min-height: 90vh; }
    .hero-content h1 { font-size: clamp(48px, 9vw, 78px); letter-spacing: -1px; }
    .hero-eyebrow { font-size: 11px; letter-spacing: 4px; }
    .hero-tagline { font-size: 17px; }
    .hero-pills { gap: 8px; }
    .hero-pills .pill { padding: 8px 16px; font-size: 10px; letter-spacing: 1.8px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-6px); }
    .feature-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .menu-row { grid-template-columns: 1fr; gap: 44px; }
    .menu-row.reverse { direction: ltr; }
    .menu-image { min-height: 0; aspect-ratio: 4/3; }
    .menu-content h2 { font-size: 34px; }
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 180px 180px;
    }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 1; }
    .booking-grid { grid-template-columns: 1fr; gap: 50px; }
    .booking-info h2 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }

  /* Phone */
  @media (max-width: 640px) {
    nav { padding: 14px 18px; }
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 11px; letter-spacing: 1px; }
    .nav-links a[href="#gallery"] { display: none; }
    .nav-cta { width: 32px; height: 32px; font-size: 12px; }
    .logo-badge { font-size: 11px; padding: 6px 12px; }

    section, .pricing-banner, .menu-section, .gallery-section, .booking-section, footer {
      padding: 60px 20px;
    }

    .hero { padding: 100px 20px 70px; min-height: 88vh; }
    .hero-content h1 { font-size: clamp(42px, 11vw, 60px); letter-spacing: -1px; }
    .hero-content p { font-size: 14px; line-height: 1.7; }
    .hero-tagline { font-size: 15px; margin-bottom: 24px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 22px; }
    /* 2x2 grid for pills on phone — exactly 2 on top, 2 on bottom */
    .hero-pills {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 0 auto 36px;
      max-width: 320px;
    }
    .hero-pills .pill {
      padding: 10px 8px;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-align: center;
      width: 100%;
    }
    .hero .btn-primary { padding: 14px 32px; font-size: 12px; }

    .section-title { font-size: clamp(30px, 8vw, 40px); }

    .pricing-banner { padding: 60px 20px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
    .price-amount { font-size: 40px; }

    .feature-grid { grid-template-columns: 1fr; gap: 16px; }

    .menu-content h2 { font-size: 28px; }
    .menu-list li { font-size: 14px; padding: 12px 0; }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 150px 150px 150px;
    }
    .gallery-item.wide { grid-column: span 2; }

    .booking-section { padding: 60px 20px; }
    .booking-info h2 { font-size: 30px; }
    .booking-form { padding: 30px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    footer { padding: 50px 20px 24px; }
  }

  /* Small phones — keep 2x2 grid, just shrink */
  @media (max-width: 380px) {
    .hero-content h1 { font-size: 40px; }
    .hero-pills { gap: 8px; max-width: 280px; }
    .hero-pills .pill { padding: 9px 6px; font-size: 9px; letter-spacing: 1.2px; }
    .nav-links a[href="#book"] { display: none; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 200px 200px 200px 200px; }
    .gallery-item.wide { grid-column: span 1; }
    .india-section { padding: 60px 20px 40px; }
    .india-section .section-title { font-size: 28px; }
    .india-cta-line { font-size: 18px; }
  }

  /* ===== DESI TADKA CAROUSEL ===== */
  .desi-carousel { position: relative; }
  .desi-carousel .slide {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 1;
  }
  .desi-carousel .slide.active { opacity: 1; z-index: 2; }
  .desi-carousel .carousel-dots {
    position: absolute;
    bottom: 18px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 5;
  }
  .desi-carousel .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(245, 237, 224, 0.45);
    cursor: pointer;
    transition: all 0.3s;
  }
  .desi-carousel .dot.active {
    background: #d4b265;
    width: 24px;
    border-radius: 4px;
  }
  .desi-carousel .carousel-label {
    position: absolute;
    bottom: 40px; left: 24px;
    z-index: 5;
    pointer-events: none;
  }
  .desi-carousel .label-text {
    position: absolute;
    bottom: 0; left: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    color: #f5ede0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s, transform 0.6s;
    white-space: nowrap;
  }
  .desi-carousel .label-text.active {
    opacity: 1;
    transform: translateY(0);
  }



  /* ===== SHARED ADDITIONS (multi-page Razorpay site) ===== */
  a { color: inherit; }
  img { max-width: 100%; height: auto; }
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--green-deep);
    color: #f5ede0;
    padding: 12px 20px;
    z-index: 1000;
    text-decoration: none;
  }
  .skip-link:focus { left: 16px; top: 16px; }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-height: 44px;
  }
  .nav-brand span.wordmark {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 2.5px;
    color: #d4b265;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .nav-links a.active,
  .nav-center a.active { color: #f0d182; }
  .nav-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 2px;
    border: 1px solid rgba(212, 178, 101, 0.55);
    color: #f0d182 !important;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    background: transparent;
  }
  .nav-order-btn:hover {
    background: rgba(212, 178, 101, 0.12);
    border-color: #f0d182;
  }
  .nav-order-btn.inline {
    margin-top: 12px;
    width: 100%;
    color: var(--green-deep) !important;
    border-color: var(--gold);
  }
  .nav-order-btn.inline:hover {
    background: rgba(184, 147, 90, 0.12);
  }
  .nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 2px;
    background: #d4b265;
    color: #07140d !important;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    cursor: pointer;
  }
  .nav-cta-btn:hover { background: #f0d182; }
  .nav-cta-btn:focus-visible,
  .nav-order-btn:focus-visible,
  .nav-links a:focus-visible,
  .nav-center a:focus-visible,
  .btn:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
    outline: 2px solid #d4b265;
    outline-offset: 3px;
  }

  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212,178,101,0.35);
    background: transparent;
    color: #f0d182;
    cursor: pointer;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }

  .page-hero {
    padding: 160px 60px 80px;
    background: linear-gradient(180deg, #07140d 0%, #143020 100%);
    text-align: center;
  }
  .page-hero .eyebrow {
    color: #d4b265;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #f5ede0;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .page-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(245,237,224,0.78);
    font-size: 16px;
  }

  .policy-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 60px 120px;
  }
  .policy-wrap h2 {
    font-family: 'Playfair Display', serif;
    color: var(--green-deep);
    font-size: 28px;
    margin: 40px 0 14px;
    font-weight: 600;
  }
  .policy-wrap h2:first-child { margin-top: 0; }
  .policy-wrap p, .policy-wrap li {
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .policy-wrap ul { padding-left: 22px; margin-bottom: 18px; }
  .policy-meta {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
  }

  .about-section {
    padding: 110px 60px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  }
  .about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
  }
  .about-grid img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(45, 90, 61, 0.18);
  }
  .mission-box {
    margin-top: 28px;
    padding: 24px 26px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
  }
  .mission-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold-bright);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .mission-box p { margin: 0; color: var(--text); font-size: 15px; }

  .contact-section { padding: 110px 60px; background: var(--bg-deep); }
  .contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
  .contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    padding: 28px;
    margin-bottom: 16px;
  }
  .contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold-bright);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .contact-card p, .contact-card a {
    font-size: 16px;
    color: var(--green-deep);
    text-decoration: none;
    line-height: 1.5;
  }
  .contact-card a:hover { color: var(--gold-bright); }
  .contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px;
    box-shadow: 0 18px 40px rgba(45, 90, 61, 0.08);
  }
  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--green-deep);
    margin-bottom: 8px;
  }
  .contact-form .form-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    border-radius: 2px;
    transition: border-color 0.2s ease;
  }
  .form-group textarea { min-height: 140px; resize: vertical; }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--gold); }
  .form-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(45,90,61,0.08);
    border: 1px solid rgba(45,90,61,0.2);
    color: var(--green-deep);
    font-size: 14px;
  }
  .form-success.show { display: block; }
  .form-error {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(181, 68, 36, 0.08);
    border: 1px solid rgba(181, 68, 36, 0.25);
    color: #8a2f18;
    font-size: 14px;
  }
  .form-error.show { display: block; }
  .form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
  }

  .site-footer {
    background: #07140d;
    color: rgba(245,237,224,0.78);
    padding: 64px 60px 36px;
  }
  .footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    color: #d4b265;
    font-size: 14px;
    margin-bottom: 14px;
  }
  .footer-grid h4 {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4b265;
    margin-bottom: 16px;
  }
  .footer-grid a {
    display: block;
    color: rgba(245,237,224,0.78);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    min-height: 24px;
    transition: color 0.2s ease;
  }
  .footer-grid a:hover { color: #f0d182; }
  .footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(212,178,101,0.18);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(245,237,224,0.55);
  }

  @media (max-width: 1100px) {
    nav {
      display: flex;
      justify-content: space-between;
      padding: 14px 20px;
    }
    .nav-toggle { display: inline-flex; }
    .nav-panel {
      display: none;
      position: fixed;
      inset: 68px 0 auto 0;
      background: rgba(7,20,13,0.97);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 12px 20px 24px;
      border-bottom: 1px solid rgba(212,178,101,0.18);
      z-index: 99;
    }
    .nav-panel.open { display: flex; }
    .nav-center,
    .nav-actions {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      justify-content: stretch;
      grid-column: auto;
    }
    .nav-center a,
    .nav-actions .nav-cta-btn,
    .nav-actions .nav-order-btn {
      padding: 14px 8px;
      border-bottom: 1px solid rgba(245,237,224,0.08);
      width: 100%;
      justify-content: flex-start;
    }
    .nav-actions { margin-top: 8px; gap: 10px; }
  }

  @media (max-width: 980px) {
    nav { padding: 14px 20px; }
    .menu-section, .chaat-menu-section, .about-section, .contact-section, .gallery-section, .booking-section, .india-section, .page-hero, .policy-wrap { padding-left: 24px; padding-right: 24px; }
    .menu-row, .about-grid, .contact-layout, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .menu-row.reverse { direction: ltr; }
    .menu-image, .about-grid img { min-height: 320px; height: 360px; }
    .form-row { grid-template-columns: 1fr; }
    .site-footer { padding: 48px 24px 28px; }
  }

  /* ===== REFINED HOME LAYOUT ===== */
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
  }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    border: 1px solid rgba(212, 178, 101, 0.55);
    border-radius: 999px;
    color: #f0d182;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
  }
  .btn-ghost:hover {
    background: rgba(212, 178, 101, 0.12);
    border-color: #f0d182;
  }

  .services-section {
    padding: 100px 60px;
    background: var(--bg-deep);
  }
  .services-grid {
    max-width: 1180px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .service-tile {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    min-height: 320px;
    text-decoration: none;
    color: #f5ede0;
    box-shadow: 0 16px 36px rgba(45, 90, 61, 0.14);
    transition: transform 0.25s ease;
  }
  .service-tile:hover { transform: translateY(-4px); }
  .service-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,20,13,0.15) 20%, rgba(7,20,13,0.92) 100%);
  }
  .service-tile-body {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
  }
  .service-tile-body span {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4b265;
    margin-bottom: 8px;
  }
  .service-tile-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 600;
  }
  .service-tile-body p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(245, 237, 224, 0.82);
  }

  .signatures-section {
    padding: 90px 60px;
    background: linear-gradient(180deg, #1f4029 0%, #143020 100%);
    color: #f5ede0;
  }
  .signatures-inner { max-width: 1180px; margin: 0 auto; }
  .signatures-copy { max-width: 640px; margin-bottom: 40px; }
  .signatures-copy .section-eyebrow { color: #d4b265; }
  .signatures-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin: 10px 0 14px;
  }
  .signatures-copy p { color: rgba(245,237,224,0.78); font-size: 15px; }
  .signatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .sig-card {
    background: rgba(245, 237, 224, 0.04);
    border: 1px solid rgba(212, 178, 101, 0.22);
    border-radius: 6px;
    overflow: hidden;
  }
  .sig-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  .sig-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 18px 20px 8px;
    color: #f5ede0;
  }
  .sig-card p {
    margin: 0 20px 22px;
    font-size: 14px;
    color: rgba(245, 237, 224, 0.75);
    line-height: 1.6;
  }

  .menus-section {
    padding: 100px 60px;
    background: var(--bg-mid);
  }
  .menu-tabs {
    max-width: 1180px;
    margin: 36px auto 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .menu-tab {
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--green-deep);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .menu-tab:hover { border-color: var(--gold); }
  .menu-tab.active {
    background: var(--green-deep);
    color: #f5ede0;
    border-color: var(--green-deep);
  }
  .menu-panels { max-width: 1180px; margin: 0 auto; }
  .menu-panel {
    display: none;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(45, 90, 61, 0.08);
  }
  .menu-panel.active { display: grid; }
  .menu-panel-media {
    position: relative;
    min-height: 420px;
    background: #143020;
  }
  .menu-panel-media > img,
  .menu-panel-media .slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .menu-panel-media.desi-carousel .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
  }
  .menu-panel-media.desi-carousel .slide.active { opacity: 1; z-index: 1; }
  .menu-panel-copy { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
  .menu-panel-copy h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--green-deep);
    margin-bottom: 12px;
  }
  .menu-panel-copy > p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 22px;
  }
  .menu-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .menu-chips li {
    padding: 10px 14px;
    background: var(--bg-card-soft);
    border: 1px solid var(--border-soft);
    border-radius: 2px;
    font-size: 13px;
    color: var(--green-deep);
  }

  .about-lead, .about-copy {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .about-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(45, 90, 61, 0.18);
  }
  .contact-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
  }
  .form-submit {
    border: none;
    width: 100%;
    cursor: pointer;
  }
  .form-note a { color: var(--gold-bright); }

  .gallery-mosaic {
    max-width: 1180px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
  }
  .mosaic-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
  }
  .mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }
  .mosaic-item:hover img { transform: scale(1.05); }
  .mosaic-item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(transparent, rgba(7,20,13,0.85));
    color: #f5ede0;
    font-size: 13px;
  }
  .mosaic-lg { grid-column: span 2; grid-row: span 2; }
  .mosaic-wide { grid-column: span 2; }

  .reach-section {
    padding: 90px 60px;
    background: #07140d;
    text-align: center;
  }
  .reach-inner { max-width: 900px; margin: 0 auto; }
  .reach-section .section-eyebrow { color: #d4b265; }
  .reach-section .section-title { color: #f5ede0; }
  .reach-section .section-sub { color: rgba(245,237,224,0.72); }
  .city-strip {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 36px 0 40px;
  }
  .city-strip li {
    padding: 10px 16px;
    border: 1px solid rgba(212, 178, 101, 0.28);
    color: #d4b265;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .reach-section .btn-primary {
    background: #d4b265;
    color: #07140d;
  }
  .reach-section .btn-primary:hover { background: #f0d182; }

  .footer-blurb {
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
  }
  .footer-order {
    display: inline-block;
    margin-top: 16px;
    color: #d4b265 !important;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  @media (max-width: 980px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .signatures-grid { grid-template-columns: 1fr; }
    .menu-panel.active { grid-template-columns: 1fr; }
    .menu-panel-media { min-height: 280px; }
    .gallery-mosaic {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 160px;
    }
    .mosaic-lg, .mosaic-wide { grid-column: span 2; grid-row: span 1; }
    .services-section, .signatures-section, .menus-section, .reach-section {
      padding-left: 24px;
      padding-right: 24px;
    }
  }

  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .nav-brand span.wordmark { font-size: 11px; letter-spacing: 1.5px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
