/* ============================================
   KANHAIYA – Sweets · Snacks · Bakery
   Global Stylesheet
   ============================================ */

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

:root {
  /* Brand Palette */
  --maroon:       #8B0000;
  --maroon-dark:  #5C0000;
  --maroon-deep:  #3A0000;
  --gold:         #C9922A;
  --gold-bright:  #F5C842;
  --gold-light:   #F0DDA0;
  --gold-pale:    #FBF3DC;
  --cream:        #FFFDF5;
  --cream-dark:   #F5EDD8;
  --white:        #FFFFFF;
  --text-dark:    #1A0000;
  --text-mid:     #5C2A00;
  --text-muted:   #9A6B3A;
  --text-light:   rgba(255,255,255,0.75);

  /* Sizing */
  --nav-h:        5rem;
  --radius-sm:    0.375rem;
  --radius-md:    0.875rem;
  --radius-lg:    1.5rem;
  --radius-xl:    2.5rem;

  /* Shadows */
  --shadow-sm:    0 0.125rem 0.75rem rgba(139,0,0,0.10);
  --shadow-md:    0 0.25rem 2rem rgba(139,0,0,0.15);
  --shadow-lg:    0 0.5rem 3.5rem rgba(139,0,0,0.22);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;

  /* Transitions */
  --ease:         cubic-bezier(.4,0,.2,1);
  --t:            0.3s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
img { display: block; max-width: 100%; }
a { text-decoration: none; }

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-pad { padding: 6rem 0; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.label::before, .label::after {
  content: '';
  width: 1.5rem;
  height: 0.0625rem;
  background: var(--gold);
  opacity: 0.6;
}

.heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon-dark);
  line-height: 1.15;
}
.heading-xl { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.heading-lg { font-size: clamp(1.9rem, 3.5vw, 3rem); }
.heading-md { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--maroon-deep);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-0.1rem); box-shadow: var(--shadow-md); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 0.0625rem solid rgba(201,146,42,0.5);
}
.btn-outline-gold:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-0.1rem); }
.btn-outline-maroon {
  background: transparent;
  color: var(--maroon);
  border: 0.0625rem solid var(--maroon);
}
.btn-outline-maroon:hover { background: var(--maroon); color: var(--white); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}
#navbar.scrolled {
  background: var(--maroon-deep);
  box-shadow: 0 0.125rem 2rem rgba(0,0,0,0.4);
}
#navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 3rem;
  width: auto;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.2rem; left: 0; right: 100%;
  height: 0.0625rem;
  background: var(--gold);
  transition: right var(--t);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--maroon-deep) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 500 !important;
  transition: var(--t) !important;
}
.nav-cta:hover { background: var(--gold-bright) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 1.6rem;
  height: 0.125rem;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(0.425rem) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-0.425rem) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 40rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--maroon-deep);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(58,0,0,0.92) 0%,
    rgba(92,0,0,0.75) 45%,
    rgba(139,0,0,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content .container { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,146,42,0.15);
  border: 0.0625rem solid rgba(201,146,42,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-badge .dot { color: var(--gold); font-size: 1rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 0.75rem;
  margin-top: 6rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-bright);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}
.hero-divider::before, .hero-divider::after {
  content: '';
  width: 3rem;
  height: 0.0625rem;
  background: rgba(201,146,42,0.35);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
/* .stat { } */
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease infinite;
}
.scroll-arrow {
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.0625rem solid rgba(201,146,42,0.5);
  border-bottom: 0.0625rem solid rgba(201,146,42,0.5);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(0.4rem); }
}

/* ── MARQUEE ── */
#marquee {
  background: var(--maroon-dark);
  border-top: 0.0625rem solid rgba(201,146,42,0.2);
  border-bottom: 0.0625rem solid rgba(201,146,42,0.2);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee-wrap { display: flex; gap: 0; }
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee-gem { color: var(--gold-bright); font-size: 0.7rem; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ── ABOUT ── */
#about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 15rem 15rem;
  gap: 0.75rem;
}
.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo:first-child {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
}
.about-photo-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(58,0,0,0.82);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 1rem;
  border: 0.0625rem solid rgba(201,146,42,0.3);
}

.about-text { display: flex; flex-direction: column; gap: 1.5rem; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  border-left: 0.2rem solid var(--gold);
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.pillar-body h4 { font-size: 0.9rem; font-weight: 500; color: var(--maroon-dark); margin-bottom: 0.2rem; }
.pillar-body p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ── GALLERY ── */
#gallery { background: var(--cream-dark); }
.gallery-head { margin-bottom: 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 22rem 18rem;
  gap: 0.75rem;
}
.g-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-label {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1; }
.g-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1; }
.g-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }
.g-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2; }
.g-item:nth-child(5) { grid-column: 5 / 13; grid-row: 2; }

/* ── SPECIALTIES ── */
#specialties { background: var(--white); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
}

.spec-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border: 0.0625rem solid rgba(201,146,42,0.12);
}
.spec-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-0.35rem);
  border-color: rgba(201,146,42,0.35);
}
.spec-img {
  height: 11rem;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 0.0625rem solid rgba(201,146,42,0.15);
  position: relative;
  overflow: hidden;
}
.spec-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0.2rem;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}
.spec-body { padding: 1.25rem 1.25rem 1.5rem; }
.spec-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon-dark);
  margin-bottom: 0.35rem;
}
.spec-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }
.spec-tag {
  display: inline-block;
  background: rgba(139,0,0,0.07);
  color: var(--maroon);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
}

/* ── WHY US ── */
#why {
  background: var(--maroon-deep);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9922A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.why-text .label { color: var(--gold); }
.why-text .heading { color: var(--white); }
.why-text .body-text { color: rgba(255,255,255,0.55); max-width: 22rem; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 0.0625rem solid rgba(201,146,42,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--t);
}
.why-card:hover {
  background: rgba(201,146,42,0.08);
  border-color: rgba(201,146,42,0.35);
}
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-title { font-size: 0.95rem; font-weight: 500; color: var(--gold-light); margin-bottom: 0.3rem; }
.why-desc  { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--gold-pale); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 0.0625rem solid rgba(201,146,42,0.12);
  position: relative;
  transition: var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-0.2rem); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold-light);
  line-height: 0.7;
  margin-bottom: 0.75rem;
  display: block;
  user-select: none;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testi-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name  { font-size: 0.9rem; font-weight: 500; color: var(--maroon-dark); }
.testi-meta  { font-size: 0.75rem; color: var(--text-muted); }

/* ── LOCATION ── */
#location { background: var(--cream); }
.loc-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.loc-cards { display: flex; flex-direction: column; gap: 1rem; }
.loc-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 0.2rem solid var(--gold);
}
.loc-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-sm);
  background: rgba(139,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.loc-lbl { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.2rem; }
.loc-val  { font-size: 0.92rem; color: var(--maroon-dark); font-weight: 500; line-height: 1.5; }
.loc-val a { color: var(--maroon); transition: color var(--t); }
.loc-val a:hover { color: var(--gold); }

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 0.125rem solid rgba(201,146,42,0.25);
}
.map-box iframe { width: 100%; height: 26rem; display: block; }

/* ── CTA STRIP ── */
#cta {
  background: var(--maroon);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,146,42,0.18) 0%, transparent 70%);
}
#cta .container { position: relative; }
#cta .heading { color: var(--white); margin-bottom: 0.75rem; }
#cta .heading em { color: var(--gold-bright); font-style: normal; }
#cta p { color: rgba(255,255,255,0.55); margin-bottom: 2.25rem; font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--maroon-deep);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 0.0625rem solid rgba(201,146,42,0.12);
}

.footer-brand .logo-wrap { margin-bottom: 1.25rem; }
.footer-brand .logo-wrap img { height: 4rem; width: auto; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 18rem; margin-bottom: 1.5rem; }

.social-row { display: flex; gap: 0.6rem; }
.soc {
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(201,146,42,0.1);
  border: 0.0625rem solid rgba(201,146,42,0.18);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.soc:hover { background: var(--gold); color: var(--maroon-deep); border-color: var(--gold); }
.soc svg { width: 0.95rem; height: 0.95rem; }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color var(--t);
}
.footer-col li a:hover { color: var(--gold-light); }

.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.hour-row { display: flex; justify-content: space-between; font-size: 0.82rem; }
.hour-day { color: rgba(255,255,255,0.4); }
.hour-time { color: var(--gold-light); font-weight: 500; }
.hour-note { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-top: 0.5rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--gold); }
.footer-bottom .madein { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container { padding: 0 2.5rem; }
  .about-inner, .why-inner, .loc-inner { gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 18rem 14rem;
  }
  .g-item:nth-child(1) { grid-column: 1 / 4; }
  .g-item:nth-child(2) { grid-column: 4 / 5; }
  .g-item:nth-child(3) { grid-column: 5 / 7; }
  .g-item:nth-child(4) { grid-column: 1 / 3; }
  .g-item:nth-child(5) { grid-column: 3 / 7; }
}

@media (max-width: 820px) {
  .container { padding: 0 1.5rem; }
  .section-pad { padding: 4.5rem 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--maroon-deep);
    padding: 2rem 1.5rem 2.5rem;
    gap: 1.75rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.4);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photos { grid-template-rows: 12rem 12rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 12rem);
  }
  .g-item:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
  .g-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .g-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .g-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .g-item:nth-child(5) { grid-column: 2; grid-row: 3; }

  .why-inner { grid-template-columns: 1fr; }
  .loc-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 540px) {
  :root { font-size: 15px; }
  .hero-stats { gap: 1.75rem; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
/* ══════════════════════════════════════════
   ORDER ON ZOMATO SECTION  (index.html)
   ══════════════════════════════════════════ */

#order-zomato { background: var(--white); }

.zomato-header { margin-bottom: 3rem; }

.zomato-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.zcat-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: var(--cream);
  border: 0.0625rem solid rgba(201,146,42,0.15);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.zcat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0.2rem;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t);
}
.zcat-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,146,42,0.4);
  background: var(--gold-pale);
}
.zcat-card:hover::before { transform: scaleY(1); }

.zcat-card--featured {
  background: var(--maroon-deep);
  border-color: rgba(201,146,42,0.3);
  color: var(--gold-light);
}
.zcat-card--featured .zcat-name { color: var(--white); }
.zcat-card--featured .zcat-sub  { color: rgba(255,255,255,0.5); }
.zcat-card--featured .zcat-count {
  background: rgba(201,146,42,0.2);
  color: var(--gold-bright);
}
.zcat-card--featured:hover {
  background: var(--maroon);
  border-color: var(--gold);
}

.zcat-emoji {
  font-size: 2.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.zcat-body { flex: 1; min-width: 0; }
.zcat-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon-dark);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.zcat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.zcat-count {
  display: inline-block;
  background: rgba(139,0,0,0.07);
  color: var(--maroon);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.6rem;
  border-radius: 1rem;
}

.zcat-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--t);
}
.zcat-card:hover .zcat-arrow { transform: translateX(0.3rem); }

/* Bottom order CTA row */
.zomato-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  background: var(--gold-pale);
  border: 0.0625rem solid rgba(201,146,42,0.2);
  border-radius: var(--radius-md);
}
.zomato-logo-img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}
.btn-zomato {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: #E23744;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-zomato:hover {
  background: #c0202e;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.25rem 1.5rem rgba(226,55,68,0.3);
}
.btn-swiggy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: #FC8019;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
}
.btn-swiggy:hover {
  background: #e06a0a;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.25rem 1.5rem rgba(252,128,25,0.3);
}
.zomato-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Responsive Zomato section */
@media (max-width: 600px) {
  .zomato-cats-grid { grid-template-columns: 1fr; }
  .zomato-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .zcat-card { padding: 1.25rem; }
}
