:root {
  --ink: #20201f;
  --muted: #68625a;
  --paper: #fffaf2;
  --paper-soft: #fff3df;
  --panel: #ffffff;
  --accent: #b2292e;
  --accent-dark: #811d21;
  --coral: #e87362;
  --gold: #d9a441;
  --gold-soft: #f4cf76;
  --green: #245a45;
  --green-dark: #15392d;
  --leaf: #4f8760;
  --line: rgba(32, 32, 31, 0.12);
  --shadow: 0 20px 50px rgba(32, 32, 31, 0.12);
  --shadow-strong: 0 28px 70px rgba(32, 32, 31, 0.18);
  --warm-gradient: linear-gradient(135deg, var(--accent) 0%, var(--coral) 48%, var(--gold) 100%);
  --green-gradient: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 52%, var(--leaf) 100%);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 243, 223, 0.94) 48%, rgba(238, 246, 231, 0.9) 100%),
    var(--paper);
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fff;
  background: var(--accent);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 247, 235, 0.92)),
    rgba(255, 250, 242, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(32, 32, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 132px;
  height: auto;
  transition: transform 220ms ease;
}

.brand:hover img {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--warm-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 240ms ease, border-color 180ms ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--warm-gradient);
  background-size: 180% 180%;
  box-shadow: 0 12px 26px rgba(178, 41, 46, 0.24);
}

.header-cta:hover,
.btn.primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 16px 34px rgba(178, 41, 46, 0.3);
  transform: translateY(-2px);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero {
  position: relative;
  padding: clamp(72px, 11vw, 130px) clamp(18px, 4vw, 56px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(21, 57, 45, 0.82), rgba(129, 29, 33, 0.7)),
    url("assets/17_cop1.webp") center / cover;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after,
.service-hero::after {
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.page-hero.compact {
  min-height: 360px;
  display: grid;
  place-content: center;
}

.page-hero h1 {
  width: min(920px, 100%);
  margin: 0 auto;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(36, 90, 69, 0.42) 52%, rgba(178, 41, 46, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05) 48%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 104px;
  color: #fff;
  animation: riseIn 780ms ease both;
}

.doodle-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: rgba(244, 207, 118, 0.72);
}

.page-hero > :not(.doodle-layer),
.service-hero > :not(.doodle-layer) {
  position: relative;
  z-index: 1;
}

.doodle {
  position: absolute;
  width: clamp(96px, 13vw, 170px);
  height: auto;
  opacity: 0.72;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.18));
}

.doodle-thali {
  right: clamp(18px, 6vw, 86px);
  top: clamp(90px, 15vw, 190px);
  animation: doodleFloat 7s ease-in-out infinite;
}

.doodle-diya {
  left: clamp(16px, 5vw, 72px);
  bottom: clamp(34px, 8vw, 90px);
  color: rgba(232, 115, 98, 0.72);
  animation: doodleFloat 8s ease-in-out infinite reverse;
}

.doodle-toran {
  left: 50%;
  top: clamp(76px, 10vw, 132px);
  width: clamp(150px, 22vw, 260px);
  color: rgba(255, 255, 255, 0.46);
  transform: translateX(-50%);
  animation: toranSway 9s ease-in-out infinite;
}

.veg-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 2px 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(244, 207, 118, 0.72);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(36, 90, 69, 0.86), rgba(79, 135, 96, 0.72));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.page-hero .veg-badge {
  margin-inline: auto;
}

.veg-badge span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.veg-badge strong {
  font-size: 0.86rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Raleway, Arial, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

p {
  line-height: 1.75;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.section:nth-of-type(even) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 235, 0.88)),
    var(--paper);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  background: linear-gradient(135deg, var(--ink), var(--green), var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head.tight {
  margin-top: 44px;
}

.narrow {
  max-width: 860px;
  margin: 0 auto;
}

.narrow a {
  color: var(--accent);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.veg-promise {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr) minmax(240px, 0.64fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(36, 90, 69, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(244, 207, 118, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 231, 0.92)),
    var(--panel);
  box-shadow: var(--shadow);
}

.veg-promise h2 {
  margin-bottom: 14px;
}

.veg-promise p {
  margin: 0;
  color: var(--muted);
}

.veg-promise-art {
  display: grid;
  min-height: 170px;
  place-items: center;
}

.veg-promise-art img {
  width: clamp(96px, 13vw, 142px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 16px 34px rgba(21, 57, 45, 0.18),
    0 0 0 1px rgba(36, 90, 69, 0.16);
  animation: doodleFloat 7s ease-in-out infinite;
}

.veg-promise-points {
  display: grid;
  gap: 10px;
}

.veg-promise-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 90, 69, 0.14);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.veg-promise-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 90, 69, 0.12);
}

.taste-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(21, 57, 45, 0.96), rgba(36, 90, 69, 0.92) 52%, rgba(129, 29, 33, 0.92)),
    var(--green-dark);
  color: #fff;
}

.taste-copy {
  max-width: 620px;
  margin-left: auto;
}

.taste-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-points span {
  padding: 10px 12px;
  border: 1px solid rgba(244, 207, 118, 0.36);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.taste-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.taste-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.services,
.gallery,
.event-pages {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 232, 0.72)),
    #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article,
.menu-card,
.dish-grid div,
blockquote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.94)),
    var(--panel);
  box-shadow: 0 10px 28px rgba(32, 32, 31, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-grid article:hover,
.menu-card:hover,
.dish-grid div:hover,
blockquote:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 41, 46, 0.24);
  box-shadow: var(--shadow);
}

.service-grid article {
  overflow: hidden;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.service-grid article:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.03);
}

.service-grid h3,
.service-grid p {
  padding-inline: 18px;
}

.service-grid h3 {
  padding-top: 18px;
}

.service-grid p {
  margin-top: 0;
  padding-bottom: 12px;
  color: var(--muted);
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 20px;
}

.menu-card {
  padding: 24px;
  border-top: 4px solid transparent;
  border-image: var(--warm-gradient) 1;
}

.menu-card p,
.dish-grid p,
blockquote p {
  color: var(--muted);
}

.service-grid h3 a,
.menu-card h3 a,
.dish-grid h3 a {
  color: inherit;
}

.service-grid h3 a:hover,
.menu-card h3 a:hover,
.dish-grid h3 a:hover {
  color: var(--accent);
}

.wedding-food-showcase {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(238, 246, 231, 0.82)),
    var(--paper);
}

.food-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.food-showcase-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.food-showcase-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.food-showcase-grid figcaption {
  padding: 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.service-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 4vw, 56px);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(36, 90, 69, 0.48) 56%, rgba(178, 41, 46, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04) 58%);
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover;
}

.service-hero > div {
  width: min(860px, 100%);
  margin: 0 auto;
  animation: riseIn 780ms ease both;
}

.service-hero h1 {
  max-width: 860px;
}

.service-hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.12rem;
}

.shadi-hero { --hero-image: url("assets/indian-veg-buffet-counter.webp"); }
.birthday-hero { --hero-image: url("assets/birthday-party.webp"); }
.reception-hero { --hero-image: url("assets/15_4-1024x768-1.webp"); }
.home-hero { --hero-image: url("assets/15_4-1024x768-1.webp"); }
.anniversary-hero { --hero-image: url("assets/08_2022-01-27.webp"); }

.service-answer {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.service-answer p {
  margin: 0;
}

.service-link-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 232, 0.84)),
    #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.9)),
    var(--paper);
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(32, 32, 31, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 90, 69, 0.24);
}

.faq-list summary {
  cursor: pointer;
  font-family: Raleway, Arial, sans-serif;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.dish-grid div {
  padding: 20px;
}

.event-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.92)),
    var(--panel);
  box-shadow: 0 10px 28px rgba(32, 32, 31, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.event-card:hover,
.event-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(178, 41, 46, 0.36);
  box-shadow: 0 18px 38px rgba(32, 32, 31, 0.1);
}

.event-card p {
  color: var(--muted);
}

.event-card span {
  align-self: end;
  color: var(--accent);
  font-weight: 800;
}

.event-card span::after {
  content: " ->";
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid button {
  padding: 0;
  overflow: hidden;
  background: #000;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  box-shadow: 0 12px 28px rgba(32, 32, 31, 0.1);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.testimonials {
  background:
    linear-gradient(135deg, rgba(245, 239, 228, 0.98), rgba(238, 246, 231, 0.72)),
    #f5efe4;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.review-rating {
  margin: 14px auto 0;
  color: var(--muted);
}

.stars {
  display: inline-block;
  color: var(--gold);
  font-size: 1.08em;
}

blockquote {
  margin: 0;
  padding: 24px;
}

.review-stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}

blockquote p {
  margin-top: 0;
}

cite {
  display: block;
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.contact {
  background:
    linear-gradient(135deg, var(--green-dark), var(--green) 54%, var(--accent-dark)),
    var(--green);
}

.section.contact,
.section.contact.reveal {
  opacity: 1;
  transform: none;
}

.contact-page {
  background:
    linear-gradient(120deg, rgba(21, 57, 45, 0.98) 0%, rgba(36, 90, 69, 0.96) 48%, rgba(129, 29, 33, 0.94) 100%),
    var(--green-dark);
}

.contact-shell {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.contact:not(.contact-page) .contact-panel {
  background:
    linear-gradient(135deg, rgba(21, 57, 45, 0.92), rgba(36, 90, 69, 0.82)),
    rgba(21, 57, 45, 0.88);
  border-color: rgba(244, 207, 118, 0.22);
}

.contact-lead {
  max-width: none;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(238, 246, 231, 0.94)),
    var(--paper);
  border-color: rgba(36, 90, 69, 0.16);
  box-shadow: var(--shadow-strong);
  opacity: 1;
  transform: none;
}

.contact-lead .eyebrow {
  color: var(--accent);
}

.contact-lead .btn.ghost {
  color: var(--green-dark);
  border-color: rgba(36, 90, 69, 0.24);
  background: rgba(36, 90, 69, 0.08);
}

.contact-lead .btn.ghost:hover {
  border-color: rgba(36, 90, 69, 0.42);
  background: rgba(36, 90, 69, 0.14);
}

.contact-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-lead p {
  color: var(--muted);
}

address {
  display: grid;
  gap: 14px;
  align-content: start;
  font-style: normal;
  line-height: 1.7;
}

address a {
  color: var(--gold);
  font-weight: 800;
}

.contact-address {
  padding: 22px;
  color: var(--ink);
  border: 1px solid rgba(36, 90, 69, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 243, 223, 0.72)),
    rgba(255, 255, 255, 0.9);
}

.contact-address a {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.92)),
    var(--panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 207, 118, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 243, 223, 0.96)),
    var(--panel);
}

.contact-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-family: Raleway, Arial, sans-serif;
  font-size: 1.16rem;
}

.contact-card small {
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(238, 246, 231, 0.94)),
    var(--paper);
}

.contact-form h2 {
  grid-column: 1 / -1;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.35fr 0.78fr;
  align-items: start;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, #171716 0%, #1f3028 52%, #3a1819 100%),
    #171716;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: 100px;
}

.site-footer p,
.site-footer span,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-brand,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-brand p,
.footer-contact strong {
  color: #fff;
  font-weight: 800;
}

.footer-brand .footer-veg {
  color: var(--gold-soft);
  font-size: 0.92rem;
}

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

.footer-social a {
  width: fit-content;
  color: var(--gold-soft);
  font-weight: 800;
}

.footer-social a:hover {
  color: #fff;
}

.footer-powered {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-powered a {
  display: inline;
  color: var(--gold-soft);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #1f8f54, #27b36a);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 220ms ease;
  animation: softPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #176f41;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.center-link {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.form-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 223, 0.82)),
    #fff;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.enquiry-form label:has(textarea),
.enquiry-form button {
  grid-column: 1 / -1;
}

.dark-page .page-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
    url("assets/15_4-1024x768-1.webp") center / cover;
}

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

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(31, 143, 84, 0.28);
  }
  50% {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(31, 143, 84, 0);
  }
}

@keyframes doodleFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes toranSway {
  0%, 100% {
    transform: translateX(-50%) rotate(-1deg);
  }
  50% {
    transform: translateX(-50%) rotate(1deg);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 8px 0 4px;
  }

  .site-header.nav-open .site-nav a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .intro,
  .contact-panel,
  .service-answer,
  .veg-promise,
  .taste-trust {
    grid-template-columns: 1fr;
  }

  .veg-promise {
    text-align: center;
  }

  .taste-copy {
    max-width: none;
    margin-left: 0;
  }

  .veg-promise-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-layout,
  .dish-grid,
  .gallery-grid,
  .service-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .service-grid,
  .menu-layout,
  .dish-grid,
  .gallery-grid,
    .testimonial-grid,
    .enquiry-form,
    .service-link-grid,
    .veg-promise-points,
    .contact-grid,
    .food-showcase-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
  }

  .doodle-toran {
    display: none;
  }

  .doodle {
    width: 92px;
    opacity: 0.42;
  }

  .doodle-thali {
    top: 110px;
    right: 12px;
  }

  .doodle-diya {
    left: 10px;
    bottom: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}
