:root {
  --green: #143c2e;
  --green-deep: #0c281e;
  --green-mid: #1e5a43;
  --red: #c81e3a;
  --red-dark: #9b1530;
  --cream: #f6efe4;
  --cream-dark: #e8dcc8;
  --gold: #d4a54a;
  --ink: #1c1c1c;
  --muted: #5c5a56;
  --paper: #fffdf8;
  --shadow: 0 18px 40px rgba(12, 40, 30, 0.14);
  --radius: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.promo {
  background: var(--green-deep);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo span:last-child {
  color: #ffb3c0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 60, 46, 0.94);
  backdrop-filter: blur(12px);
  color: #fff;
  transition: box-shadow 0.2s ease;
}

.nav .wrap {
  position: relative;
}

.nav.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  padding: 12px 20px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-cream {
  background: var(--cream);
  color: var(--green);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  background:
    linear-gradient(160deg, rgba(12, 40, 30, 0.88), rgba(20, 60, 46, 0.72)),
    url("https://images.unsplash.com/photo-1563379091339-03b21ab4a4f8?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  padding: 72px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  font-weight: 700;
}

.hero h1 span {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  margin-top: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.hero p {
  max-width: 46ch;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-card .phone {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-card .site {
  color: #ffb3c0;
  font-weight: 700;
  margin: 4px 0 16px;
}

.offer {
  background: var(--red);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head h2,
.banner {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.banner {
  background: var(--green);
  color: #fff;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-addons {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-addons {
  grid-template-columns: repeat(4, 1fr);
}

.addon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.price-chip {
  background: var(--cream);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.combo {
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.combo strong {
  font-size: 1.15rem;
}

.daal-card,
.platter-card {
  padding: 26px;
  border-radius: var(--radius);
  min-height: 240px;
}

.daal-card {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.daal-card.special {
  background: var(--green);
  color: #fff;
}

.platter-card {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow);
}

.includes {
  margin: 12px 0 18px;
  color: inherit;
  opacity: 0.92;
}

.big-price {
  font-size: 2rem;
  font-weight: 800;
}

.addon,
.drink {
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(12, 40, 30, 0.08);
  font-weight: 600;
}

.dessert {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dessert img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dessert-body {
  padding-right: 22px;
}

.urdu {
  font-family: "Noto Nastaliq Urdu", serif;
  font-size: 1.15rem;
  color: var(--muted);
}

.daig {
  background: #f3e3b6;
  border-radius: var(--radius);
  padding: 28px;
}

.daig-note {
  margin-top: 18px;
  font-weight: 600;
}

.daig .urdu {
  color: var(--green);
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-card {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.footer {
  background: var(--green-deep);
  color: #fff;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a:hover {
  color: var(--gold);
}

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 80;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 90vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #fff;
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 22px;
}

.soon-page {
  background: #faf6f0;
}

.soon-header {
  padding: 36px 0 8px;
}

.soon-logo {
  display: flex;
  justify-content: center;
}

.soon-logo img {
  width: min(380px, 78vw);
  height: auto;
}

.soon-page .section {
  padding: 36px 0;
}

.soon-page .section-title {
  margin-bottom: 16px;
}

.soon-page .hero-actions {
  margin-top: 18px;
}

.soon-page .menu-gallery {
  grid-template-columns: minmax(0, 880px);
}

.soon-footer {
  text-align: center;
  color: var(--muted);
  padding: 8px 0 40px;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: grid;
  gap: 6px;
  transition: transform 0.15s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.35rem;
}

.contact-card span:last-child {
  color: var(--muted);
}

.address-line {
  font-size: 1.6rem;
  font-weight: 700;
}

.menu-gallery {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  gap: 20px;
}

.menu-shot {
  background: var(--paper);
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  text-align: left;
  font: inherit;
  color: inherit;
}

.menu-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-shot span {
  display: block;
  padding: 14px 18px 16px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    inset: 74px 16px auto;
    background: var(--green);
    flex-direction: column;
    padding: 18px;
    border-radius: 16px;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .visit,
  .dessert,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-gallery {
    grid-template-columns: 1fr;
  }

  .grid-addons {
    grid-template-columns: 1fr 1fr;
  }

  .promo {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .dessert-body {
    padding: 0 18px 18px;
  }
}

@media (max-width: 560px) {
  .grid-addons {
    grid-template-columns: 1fr;
  }

  .combo,
  .addon {
    flex-direction: column;
    align-items: flex-start;
  }
}
