  :root {
      --maroon: #7A1F2B;
      --maroon-dark: #4F1119;
      --chili: #D6472B;
      --turmeric: #E8A33D;
      --turmeric-light: #F4C766;
      --cream: #FBF3E7;
      --cream-2: #F3E5CD;
      --ink: #2B1B12;
      --ink-soft: #5A4636;
      --coriander: #4C7A3D;
      --white: #FFFDF9;
      --radius-lg: 28px;
      --radius-md: 16px;
      --shadow-soft: 0 14px 34px -18px rgba(43, 27, 18, 0.45);
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      background: var(--cream);
      color: var(--ink);
      font-family: 'Poppins', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: 'Baloo 2', sans-serif;
      margin: 0;
      line-height: 1.08;
  }

  p {
      margin: 0;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  ul {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  img {
      max-width: 100%;
      display: block;
  }

  button {
      font-family: inherit;
      cursor: pointer;
  }

  .mono {
      font-family: 'DM Mono', monospace;
      letter-spacing: 0.06em;
  }

  .eyebrow {
      font-family: 'DM Mono', monospace;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.72rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .eyebrow::before {
      content: "";
      width: 16px;
      height: 2px;
      background: currentColor;
      display: inline-block;
  }

  .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
  }

  /* ---------- Scallop divider (thali edge) ---------- */
  .scallop {
      width: 100%;
      height: 26px;
      display: block;
      line-height: 0;
  }

  .scallop svg {
      width: 100%;
      height: 100%;
      display: block;
  }

  /* ---------- Nav ---------- */
  .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(251, 243, 231, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(43, 27, 18, 0.08);
  }

  .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .brand-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--maroon);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--turmeric-light);
      font-family: 'Baloo 2';
      font-weight: 800;
      font-size: 1.1rem;
      flex-shrink: 0;
  }

  .brand-name {
      font-family: 'Baloo 2';
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--maroon-dark);
      line-height: 1.15;
  }

  .brand-name span {
      display: block;
      font-family: 'DM Mono', monospace;
      font-weight: 400;
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
  }

  .nav-links a {
      font-weight: 500;
      font-size: 0.92rem;
      color: var(--ink);
      position: relative;
      padding: 4px 0;
  }

  .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--chili);
      transition: width .25s ease;
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  .nav-cta {
      background: var(--chili);
      color: var(--white) !important;
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.88rem;
      box-shadow: 0 8px 18px -8px rgba(214, 71, 43, 0.7);
  }

  .nav-toggle {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
  }

  .nav-toggle span {
      width: 24px;
      height: 2px;
      background: var(--ink);
      display: block;
  }

  /* ---------- Hero ---------- */
  .hero {
      position: relative;
      background: radial-gradient(circle at 15% 20%, #8E2532 0%, var(--maroon) 42%, var(--maroon-dark) 100%);
      color: var(--cream);
      padding: 76px 0 60px;
      overflow: hidden;
  }

  .hero-doodles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.9;
  }

  .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
  }

  .rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(251, 243, 231, 0.12);
      border: 1px solid rgba(251, 243, 231, 0.35);
      padding: 8px 16px 8px 10px;
      border-radius: 999px;
      margin-bottom: 22px;
  }

  .rating-badge .stars {
      color: var(--turmeric-light);
      font-size: 0.95rem;
      letter-spacing: 1px;
  }

  .rating-badge span.score {
      font-family: 'DM Mono';
      font-weight: 500;
      font-size: 0.85rem;
  }

  .hero h1 {
      font-size: clamp(2.3rem, 4.6vw, 3.6rem);
      font-weight: 800;
      color: var(--white);
      max-width: 640px;
  }

  .hero h1 em {
      font-style: normal;
      color: var(--turmeric-light);
  }

  .hero-sub {
      margin-top: 20px;
      font-size: 1.08rem;
      color: rgba(251, 243, 231, 0.88);
      max-width: 520px;
      line-height: 1.55;
  }

  .hero-ctas {
      display: flex;
      gap: 14px;
      margin-top: 32px;
      flex-wrap: wrap;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 26px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.96rem;
      border: 2px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease;
  }

  .btn:hover {
      transform: translateY(-2px);
  }

  .btn-primary {
      background: var(--turmeric);
      color: var(--maroon-dark);
      box-shadow: 0 12px 24px -10px rgba(232, 163, 61, 0.7);
  }

  .btn-outline {
      border-color: rgba(251, 243, 231, 0.55);
      color: var(--cream);
  }

  .btn-outline:hover {
      background: rgba(251, 243, 231, 0.1);
  }

  .btn-dark {
      background: var(--maroon-dark);
      color: var(--cream);
  }

  .hero-meta {
      display: flex;
      gap: 22px;
      margin-top: 38px;
      flex-wrap: wrap;
  }

  .hero-meta div {
      font-family: 'DM Mono';
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(251, 243, 231, 0.65);
  }

  .hero-meta strong {
      display: block;
      font-family: 'Baloo 2';
      font-size: 1.25rem;
      color: var(--white);
      text-transform: none;
      letter-spacing: 0;
  }

  /* Hero visual: illustrated thali plate */
  .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .plate-wrap {
      position: relative;
      width: 100%;
      max-width: 400px;
  }

  .plate-wrap svg {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  }

  .float-chip {
      position: absolute;
      background: var(--white);
      color: var(--ink);
      border-radius: 14px;
      padding: 10px 14px;
      font-family: 'DM Mono';
      font-size: 0.72rem;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .float-chip.spice {
      top: 6%;
      left: -4%;
  }

  .float-chip.groups {
      bottom: 8%;
      right: -6%;
  }

  .float-chip .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--coriander);
  }

  /* ---------- Section base ---------- */
  section {
      padding: 76px 0;
  }

  .section-head {
      max-width: 620px;
      margin-bottom: 44px;
  }

  .section-head .eyebrow {
      color: var(--chili);
      margin-bottom: 14px;
  }

  .section-head h2 {
      font-size: clamp(1.9rem, 3.4vw, 2.6rem);
      color: var(--maroon-dark);
      font-weight: 700;
  }

  .section-head p {
      margin-top: 14px;
      color: var(--ink-soft);
      font-size: 1.02rem;
      line-height: 1.6;
  }

  /* ---------- About ---------- */
  .about {
      background: var(--cream);
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
  }

  .about-copy p {
      font-size: 1.06rem;
      line-height: 1.75;
      color: var(--ink-soft);
  }

  .about-copy p+p {
      margin-top: 16px;
  }

  .about-copy strong {
      color: var(--maroon-dark);
  }

  .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
  }

  .about-tags span {
      background: var(--white);
      border: 1px solid rgba(43, 27, 18, 0.1);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--maroon-dark);
  }

  .stat-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }

  .stat-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(43, 27, 18, 0.06);
  }

  .stat-card .num {
      font-family: 'Baloo 2';
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--chili);
  }

  .stat-card .label {
      margin-top: 6px;
      font-size: 0.85rem;
      color: var(--ink-soft);
      font-weight: 500;
      line-height: 1.4;
  }

  .stat-card.full {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .stat-card.full .pin {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--cream-2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--maroon);
      font-size: 1.1rem;
  }

  /* ---------- Menu ---------- */
  .menu-section {
      background: var(--cream-2);
      position: relative;
  }

  .price-banner {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--maroon-dark);
      color: var(--turmeric-light);
      padding: 10px 18px;
      border-radius: 999px;
      font-family: 'DM Mono';
      font-size: 0.8rem;
      margin-bottom: 10px;
  }

  .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
  }

  .menu-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid rgba(43, 27, 18, 0.07);
      box-shadow: var(--shadow-soft);
      transition: transform .25s ease, box-shadow .25s ease;
  }

  .menu-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 40px -18px rgba(43, 27, 18, 0.5);
  }

  .menu-card-visual {
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }

  .menu-card-body {
      padding: 20px 20px 24px;
  }

  .menu-card-body h3 {
      font-size: 1.15rem;
      color: var(--maroon-dark);
      font-weight: 700;
  }

  .menu-card-body p {
      margin-top: 8px;
      font-size: 0.88rem;
      color: var(--ink-soft);
      line-height: 1.5;
  }

  .menu-card-foot {
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .price-tag {
      font-family: 'DM Mono';
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--chili);
      background: rgba(214, 71, 43, 0.08);
      padding: 4px 10px;
      border-radius: 8px;
  }

  .veg-mark {
      width: 16px;
      height: 16px;
      border: 1.5px solid var(--coriander);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .veg-mark::after {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--coriander);
  }

  /* ---------- Testimonials ---------- */
  .testimonials {
      background: var(--maroon-dark);
      color: var(--cream);
      position: relative;
      overflow: hidden;
  }

  .testimonials::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232, 163, 61, 0.16), transparent 70%);
  }

  .testimonials .section-head .eyebrow {
      color: var(--turmeric-light);
  }

  .testimonials .section-head h2 {
      color: var(--white);
  }

  .testimonials .section-head p {
      color: rgba(251, 243, 231, 0.75);
  }

  .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
  }

  .review-card {
      background: rgba(251, 243, 231, 0.06);
      border: 1px solid rgba(251, 243, 231, 0.14);
      border-radius: var(--radius-md);
      padding: 26px 22px;
  }

  .review-stars {
      color: var(--turmeric-light);
      letter-spacing: 2px;
      font-size: 0.95rem;
  }

  .review-card p.quote {
      margin-top: 14px;
      font-size: 0.96rem;
      line-height: 1.6;
      color: rgba(251, 243, 231, 0.92);
  }

  .review-author {
      margin-top: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .review-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--turmeric);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Baloo 2';
      font-weight: 700;
      color: var(--maroon-dark);
      font-size: 0.85rem;
      flex-shrink: 0;
  }

  .review-author div span {
      display: block;
      font-size: 0.72rem;
      color: rgba(251, 243, 231, 0.55);
      font-family: 'DM Mono';
  }

  /* ---------- CTA strip ---------- */
  .cta-strip {
      background: linear-gradient(120deg, var(--turmeric) 0%, var(--turmeric-light) 100%);
      padding: 56px 0;
  }

  .cta-strip-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
  }

  .cta-strip h2 {
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      color: var(--maroon-dark);
      max-width: 480px;
  }

  .cta-strip-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  /* ---------- Footer ---------- */
  footer {
      background: var(--ink);
      color: rgba(251, 243, 231, 0.85);
      padding: 64px 0 28px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 36px;
  }

  .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
  }

  .footer-brand .brand-badge {
      background: var(--chili);
      color: var(--white);
  }

  .footer-brand .brand-name {
      color: var(--white);
  }

  .footer-col h4 {
      font-family: 'DM Mono';
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.75rem;
      color: var(--turmeric-light);
      margin-bottom: 16px;
      font-weight: 500;
  }

  .footer-col p,
  .footer-col li {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(251, 243, 231, 0.72);
  }

  .footer-col li a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 0;
      color: rgba(251, 243, 231, 0.85);
      font-weight: 500;
      transition: color .2s ease;
  }

  .footer-col li a:hover {
      color: var(--turmeric-light);
  }

  .footer-col li a .arrow {
      color: var(--chili);
      font-size: 0.8rem;
  }

  .footer-bottom {
      margin-top: 52px;
      padding-top: 24px;
      border-top: 1px solid rgba(251, 243, 231, 0.12);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.78rem;
      color: rgba(251, 243, 231, 0.45);
      font-family: 'DM Mono';
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
      .hero-inner {
          grid-template-columns: 1fr;
      }

      .hero-visual {
          order: -1;
          max-width: 280px;
          margin: 0 auto 20px;
      }

      .about-grid {
          grid-template-columns: 1fr;
      }

      .menu-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .review-grid {
          grid-template-columns: 1fr;
      }

      .footer-grid {
          grid-template-columns: 1fr 1fr;
      }

      .nav-links {
          position: fixed;
          top: 70px;
          left: 0;
          right: 0;
          background: var(--cream);
          flex-direction: column;
          align-items: flex-start;
          padding: 20px 24px 26px;
          gap: 16px;
          border-bottom: 1px solid rgba(43, 27, 18, 0.1);
          transform: translateY(-140%);
          transition: transform .3s ease;
      }

      .nav-links.open {
          transform: translateY(0);
      }

      .nav-toggle {
          display: flex;
      }
  }

  @media (max-width: 620px) {
      .menu-grid {
          grid-template-columns: 1fr;
      }

      .stat-cards {
          grid-template-columns: 1fr 1fr;
      }

      .cta-strip-inner {
          flex-direction: column;
          align-items: flex-start;
      }

      .footer-grid {
          grid-template-columns: 1fr;
      }

      .hero {
          padding: 56px 0 44px;
      }

      section {
          padding: 56px 0;
      }
  }

  :focus-visible {
      outline: 3px solid var(--chili);
      outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
      * {
          animation: none !important;
          transition: none !important;
      }
  }