/* =========================================================
   RNest Banquets — Landing Page Stylesheet
   Palette pulled straight from the logo:
     --maroon : the "R" in RNest
     --green  : "nest"
     --charcoal : "Banquets"
     --gold   : ceremonial accent (borders, CTAs, dividers)
   ========================================================= */

:root {
  --maroon: #7C2245;
  --maroon-dark: #551530;
  --green: #1F7A57;
  --green-dark: #124D37;
  --charcoal: #18130F;
  --gold: #C79A3E;
  --gold-light: #EAC96E;
  --ivory: #FBF7EE;
  --ivory-dark: #EFE3C9;
  --white: #FFFFFF;
  --rose: #B34A63;

  --gold-hi: var(--gold-light);
  --wine: var(--maroon-dark);

  /* Dark/gold brand layer used for header, footer, overlays */
  --dark-1: #26201A;
  --dark-2: #140F0B;
  --terracotta: #C9622E;
  --terracotta-dark: #A44E23;
  --whatsapp: #076b2c;
  --whatsapp-dark: #128C4A;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --radius: 6px;
  --radius-lg: 20px;
  --shadow: 0 12px 30px rgba(24, 19, 15, 0.12);
  --shadow-lg: 0 22px 48px rgba(20, 15, 11, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background:
    radial-gradient(rgba(24, 19, 15, .05) 1px, transparent 1px) 0 0/22px 22px,
    var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

/* Soft, slow-drifting colour blobs so the ivory background doesn't feel flat */
body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38vw 38vw at 8% 6%, rgba(199, 154, 62, .16), transparent 60%),
    radial-gradient(34vw 34vw at 96% 18%, rgba(124, 34, 69, .12), transparent 60%),
    radial-gradient(40vw 40vw at 20% 96%, rgba(31, 122, 87, .12), transparent 60%);
  animation: bg-drift 26s ease-in-out infinite alternate;
}

@keyframes bg-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-2%, 2%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--maroon-dark);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .90rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}

.location-card .btn-primary {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);

}

.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  border-radius: 10px;
  padding: 15px 28px;
  text-transform: capitalize;
  letter-spacing: .04em;
  font-size: .85rem;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(120deg,
      rgba(126, 67, 78, 0.72),
      rgba(235, 167, 20, 0.2),
      rgba(97, 95, 95, 0.88));
}

.slide img {
  width: 100%;
  height: min(78vh, calc(100vh - 110px));
  min-height: 460px;
  object-fit: cover;
  display: block;
}


.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 620px;
  z-index: 2;
  padding: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .18);
  backdrop-filter: blur(1px);
  box-shadow: 0 20px 50px rgba(67, 66, 66, 0.35);
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .7);
}

.hero-content h1 em {
  color: #8C2332;
  font-style: normal;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.hero-content .lead {
  color: #f5f5f5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .hero-content {
    left: 5%;
    right: 5%;
    max-width: none;
    width: 90%;
    padding: 24px 22px;
  }

  .hero-content .lead {
    font-size: .95rem;
  }

  .hero-address {
    font-size: 15px;
  }

  .prev-arrow,
  .next-arrow {
    width: 36px;
    height: 36px;
    font-size: .95rem;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding: 18px 16px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }
}

.hero-actions .btn {
  box-shadow: 0 12px 25px rgba(0, 0, 0, .35);
}

.hero-address {
  font-size: 18px;
}

/* Prev / Next arrow buttons for the slider */
.prev-arrow,
.next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .35);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.prev-arrow:hover,
.next-arrow:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--charcoal);
  color: var(--ivory-dark);
  font-size: .82rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: var(--gold-light);
}

.topbar-contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Header / Nav (floating dark pill) ---------- */
body {
  padding-top: 0;
}

header.site-header {
  background: linear-gradient(135deg, rgba(85, 21, 48, .96) 0%, rgba(24, 19, 15, .96) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(199, 154, 62, .3);
  position: sticky;
  z-index: 50;
  max-width: 1480px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  max-width: none;
}

.nav-row .logo-slot {
  grid-column: 1;
  justify-self: start;
}

.nav-row nav.main-nav {
  grid-column: 2;
  justify-self: center;
}

.nav-row .nav-cta {
  grid-column: 3;
  justify-self: end;
}

.nav-row .menu-toggle {
  grid-column: 3;
  justify-self: end;
}

.logo-slot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-slot img {
  height: 50px;
  width: 110px;
  background: rgba(255, 255, 255, .96);
  border-radius: 7%;
  padding: 6px;
  box-shadow: 0 0 0 2px rgba(234, 201, 110, .45), 0 6px 16px rgba(0, 0, 0, .3);
  transition: transform .3s ease, box-shadow .3s ease;
}

.logo-slot:hover img {
  transform: scale(1.06);
  box-shadow: 0 0 0 2px rgba(234, 201, 110, .7), 0 8px 20px rgba(0, 0, 0, .35);
}

.logo-slot .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--maroon-dark);
  line-height: 1.1;
}

.logo-slot .name span {
  color: var(--green-dark);
}

.logo-slot .tag {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: .7;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  font-weight: 700;
  font-size: .90rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ivory-dark);
  position: relative;
  padding: 6px 2px 8px;
  transition: color .2s ease;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

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

nav.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 8px;
}

.nav-cta .btn {
  padding: 8px 16px;
  font-size: .82rem;
}

.nav-cta .btn-outline {
  border-color: rgba(234, 201, 110, .5);
  color: var(--ivory-dark);
}

.nav-cta .btn-outline:hover {
  background: rgba(234, 201, 110, .14);
  color: var(--gold-light);
}

.nav-cta .btn-gold,
.nav-cta .btn-whatsapp {
  padding: 8px 16px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gold-light);
  cursor: pointer;
  padding: 4px 8px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--dark-1);
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s cubic-bezier(.16, .8, .3, 1), opacity .3s ease;
}

.mobile-nav.open {
  max-height: 480px;
  opacity: 1;
}

.mobile-nav a {
  padding: 14px 24px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ivory-dark);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-nav a.active {
  color: var(--gold-light);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 20px;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 18px;
  font-size: .85rem;
}

nav.main-nav a.active {
  color: var(--gold-light);
}

nav.main-nav a.active::after {
  width: 100%;
}


/* ======================================================
   MOBILE HEADER FIX — remove scroll gap + buttons in one line
   ====================================================== */
/* ======================================================
   MOBILE HEADER — always fixed on scroll + centered content
   ====================================================== */
@media (max-width: 720px) {

  header.site-header,
  header.site-header.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    margin: 0;
    border-radius: 0;
    z-index: 1000;
  }

  /* Push page content down so it doesn't hide under the fixed header */
  body {
    padding-top: 78px;
  }

  /* Center everything inside the nav row */
  .nav-row {
    grid-template-columns: auto auto;
    justify-items: start;
    justify-content: space-between;
    text-align: left;
  }

  .nav-row .logo-slot {
    grid-column: 1;
    justify-self: start;
    margin: 0;
  }

  .nav-row .menu-toggle {
    grid-column: 2;
    justify-self: end;
  }

  /* Mobile dropdown nav — center its links + buttons */
  .mobile-nav {
    text-align: center;
  }

  .mobile-nav a {
    text-align: center;
  }

  .mobile-nav-cta {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px 18px;
  }

  .mobile-nav-cta .btn {
    flex: 1 1 0;
    width: auto;
    max-width: 160px;
    padding: 10px 10px;
    font-size: .8rem;
    white-space: nowrap;
  }
}

/* ---------- Inner page hero banner ---------- */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--ivory);

}

.page-hero .eyebrow {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.page-hero p {
  color: var(--ivory-dark);
  max-width: 560px;
  margin: 0 auto;
  opacity: .9;
}

.page-hero-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  background: rgba(234, 201, 110, .14);
  border: 1px solid rgba(234, 201, 110, .4);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(251, 246, 236, .65);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
}

/* ---------- Vision & Mission ---------- */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 38px;
  border: 1px solid rgba(30, 27, 22, .06);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 62, .18), transparent 70%);
  z-index: -1;
  transition: transform .5s ease;
}

.vm-card:hover::before {
  transform: scale(1.3);
}

.vm-card .vm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  box-shadow: 0 10px 22px rgba(124, 34, 69, .32);
  transition: transform .35s cubic-bezier(.16, .8, .3, 1);
}

.vm-card:nth-child(2) .vm-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.vm-card:hover .vm-icon {
  transform: rotate(-8deg) scale(1.08);
}

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

.vm-card p {
  margin-bottom: 0;
  opacity: .78;
  line-height: 1.75;
}

.vm-card .vm-num {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ivory-dark);
  z-index: -1;
}

/* ---------- Services grid (icon cards) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 22px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color .25s ease, transform .25s ease;
}

.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
}

.service-card .service-icon {
  font-size: 2.1rem;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: .97rem;
  opacity: .8;
  margin-bottom: 0;
}

/* ---------- Offer cards (image + dark overlay + WhatsApp Enquiry) ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

.offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  display: flex;
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.offer-card:hover img {
  transform: scale(1.06);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Darker, more even veil so headings and the service checklist stay
     legible against any photo, not just the bottom edge. */
  background:
    linear-gradient(to top, rgba(15, 12, 9, .96) 0%, rgba(15, 12, 9, .82) 48%, rgba(15, 12, 9, .38) 100%),
    rgba(15, 12, 9, .18);
}

/* Cards that carry a bullet checklist (services.html) run taller —
   give them breathing room so nothing gets clipped or cramped. */
#all-services .offer-card {
  min-height: 540px;
}

.offer-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
}

.offer-eyebrow {
  display: inline-block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-overlay h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.offer-overlay p {
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  margin-bottom: 20px;
}

.offer-overlay .btn-whatsapp {
  align-self: center;
  padding: 10px 20px;
  font-size: .88rem;
}

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

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

/* ---------- Hall showcase: alternating info/image rows ---------- */
.hall-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.hall-row.reverse {
  flex-direction: row-reverse;
}

.hall-row:last-of-type {
  margin-bottom: 0;
}

.hall-row .hall-info,
.hall-row .hall-image {
  flex: 1 1 0;
  min-width: 0;
}

.hall-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hall-info .offer-eyebrow {
  display: inline-block;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hall-info h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.hall-info p {
  opacity: .82;
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.hall-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

.hall-buttons .btn,
.hall-buttons .btn-download {
  padding: 8px 16px;
  /* आधीपेक्षा कमी */
  font-size: 14px;
  width: auto;
  /* Full width असेल तर काढेल */
  min-width: 140px;
  /* Optional */
}

.hall-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.hall-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.hall-image:hover img {
  transform: scale(1.06);
}

@media (max-width: 900px) {

  .hall-row,
  .hall-row.reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .hall-info {
    align-items: center;
    text-align: center;
  }

  .hall-image {
    width: 100%;
  }
}

/* ---------- About split (copy + checklist + image collage) ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-copy .eyebrow-lead {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--maroon);
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.2;
}

.about-copy p.lead-text {
  opacity: .8;
  margin: 20px 0 26px;
  max-width: 46ch;
}

.about-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-checklist .tick {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  margin-top: 2px;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-media .primary-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 88%;
  height: 420px;
}

.about-media .primary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media .secondary-img {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 46%;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--ivory);
}

.about-media .secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media img {
  transition: transform .6s ease;
}

.about-media img:hover {
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 380px;
    margin-top: 40px;
  }

  .about-media .primary-img {
    width: 100%;
  }
}

/* ---------- Auto-scrolling gallery strip ---------- */
.gallery-scroll {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: gallery-scroll-left 45s linear infinite;
}

.gallery-track img {
  width: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  transition: 0.3s;
}

/* Odd images - मोठ्या */
.gallery-track img:nth-child(odd) {
  height: 360px;
}

/* Even images - छोट्या */
.gallery-track img:nth-child(even) {
  height: 280px;
  margin-top: 40px;
  /* खाली येतील */
}

.gallery-scroll:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes gallery-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.gallery-track img,
.gallery-grid img {
  cursor: pointer;
  transition: .3s;
}

.gallery-track img:hover,
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ---------- Contact form ---------- */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--ivory);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--maroon-dark);
  margin-bottom: 4px;
  display: block;
}

/* ---------- Quick info strip ---------- */
.info-strip {
  background: var(--green-dark);
  color: var(--ivory);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.info-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C360,0 1080,100 1440,40 L1440,100 L0,100 Z' fill='%23FBF7EE'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.info-grid .item .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.info-grid .item .label {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}

/* ---------- Section base ---------- */
section {
  padding: 80px 0;
}

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

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-head p {
  opacity: .8;
}

#south-indian-menu .section-head {
  max-width: 720px;
}

#south-indian-menu .section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  white-space: nowrap;
}

@media (max-width: 560px) {
  #south-indian-menu .section-head h2 {
    white-space: normal;
  }
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
}

.service-list li {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 8px;
  opacity: .92;
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-list li i {
  color: var(--gold-light);
  font-size: .82rem;
  flex-shrink: 0;
}

.about-checklist .tick i,
.footer-social-icons a i,
.hero-actions .btn i,
.offer-overlay .btn i,
.nav-cta .btn i,
.location-card .btn i {
  font-size: .92em;
}

/* ---------- Menu section ---------- */
/* ======================================================
   MENU 1-4 CARDS — same structure, refreshed design
   (seal-style price badge + icon per card + subtle texture)
   ====================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  counter-reset: menu-num;
}

.menu-grid .menu-card {
  counter-increment: menu-num;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 15, .08);
  box-shadow: 0 8px 20px rgba(24, 19, 15, .08);
  transition: box-shadow .35s ease, transform .35s ease;
}

.menu-grid .menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(24, 19, 15, .2);
}

.menu-grid .menu-card::after {
  content: none;
}

.menu-grid .menu-card::before {
  content: none;
}

/* ---- Header: dark textured bar, icon left, title, seal price on right ---- */
.menu-grid .menu-card .menu-title {
  margin: 0;
  padding: 24px 90px 24px 24px;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, .08), transparent 55%),
    linear-gradient(120deg, var(--charcoal) 0%, #2b221a 100%);
}

.menu-grid .menu-card .menu-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(234, 201, 110, .14) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .5;
}

.menu-grid .menu-card .menu-title h3 {
  margin: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-grid .menu-card .menu-title h3::before {
  content: "Menu " counter(menu-num);
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

/* small food icon before the title, colour-coded per card */
.menu-grid .menu-card .menu-title::after {
  content: "\f2e7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  color: var(--gold-light);
  opacity: 0;
}

.menu-grid .menu-card:nth-child(1) .menu-title h3::before {
  color: var(--gold-light);
}

.menu-grid .menu-card:nth-child(2) .menu-title h3::before {
  color: #EAC96E;
}

/* ---- Seal-style price badge, overlapping top-right corner ---- */
.menu-grid .menu-card .menu-title .price {
  position: absolute;
  top: -6px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--charcoal);
  background: conic-gradient(from 180deg, var(--gold-light), var(--gold), var(--gold-light));
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .35), 0 0 0 4px var(--white);
  transform: rotate(-6deg);
  transition: transform .35s ease;
}

.menu-grid .menu-card .menu-title .price::after {
  content: "/-";
  font-size: .65rem;
  display: block;
  opacity: .7;
}

.menu-grid .menu-card:hover .menu-title .price {
  transform: rotate(0deg) scale(1.06);
}

/* ---- Body: two-column checklist ---- */
.menu-grid .menu-card ul {
  list-style: none;
  margin: 0;
  padding: 26px 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 18px;
  flex: 1;
  background:
    linear-gradient(180deg, rgba(199, 154, 62, .05), transparent 60px);
}

.menu-grid .menu-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 0;
  font-size: .93rem;
  line-height: 1.35;
  color: var(--charcoal);
}

.menu-grid .menu-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  box-shadow: 0 3px 8px rgba(31, 122, 87, .35);
}

.menu-grid .menu-card li:first-child {
  grid-column: 1 / -1;
  font-weight: 700;
  color: var(--maroon-dark);
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px dashed rgba(199, 154, 62, .4);
}

.menu-grid .menu-card li:first-child::before {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

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

@media (max-width: 480px) {
  .menu-grid .menu-card ul {
    grid-template-columns: 1fr;
  }

  .menu-grid .menu-card .menu-title {
    padding-right: 80px;
  }
}


/* ======================================================
   NON-VEG MENU SECTION — full redesign
   (intro package card, choice grid, counters, full selection,
   mutton note, rate table — unified premium look)
   ====================================================== */

#non-veg-menu .section-head .eyebrow {
  background: linear-gradient(135deg, var(--maroon), var(--terracotta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom-color: var(--gold);
}

/* ---- Intro package card (the 2 welcome drinks... list) ---- */
#non-veg-menu>.container>.menu-card {
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 62, .12), transparent 45%),
    var(--white);
  box-shadow: 0 14px 34px rgba(24, 19, 15, .12);
  border: 1px solid rgba(24, 19, 15, .06);
  padding: 34px 32px !important;
  position: relative;
  overflow: hidden;
}

#non-veg-menu>.container>.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--green));
}

#non-veg-menu>.container>.menu-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

#non-veg-menu>.container>.menu-card li {
  padding: 9px 0 9px 26px;
  font-size: .95rem;
  border-bottom: 1px dotted rgba(24, 19, 15, .12);
  position: relative;
}

#non-veg-menu>.container>.menu-card li::before {
  content: "\f6d1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: .8rem;
  color: var(--terracotta);
}

@media (max-width: 560px) {
  #non-veg-menu>.container>.menu-card ul {
    grid-template-columns: 1fr;
  }
}

/* ---- "Choose From" small choice cards (rotis, dal, rice etc.) ---- */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.choice-grid .choice-card {
  background: var(--white);
  border: 1px solid rgba(24, 19, 15, .07);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 6px 16px rgba(24, 19, 15, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.choice-grid .choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(199, 154, 62, .22);
  border-color: var(--gold);
}

.choice-grid .choice-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--maroon-dark);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(24, 19, 15, .14);
  display: flex;
  align-items: center;
  gap: 8px;
}

.choice-grid .choice-card h4::before {
  content: "\f5d2";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: .85rem;
}

.choice-grid .choice-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.choice-grid .choice-card li {
  font-size: .9rem;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(24, 19, 15, .1);
  color: var(--charcoal);
}

.choice-grid .choice-card li:last-child {
  border-bottom: none;
}

@media (max-width: 980px) {
  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---- Live Counters & Extras note ---- */
#non-veg-menu h3 {
  position: relative;
  font-size: 1.35rem;
  margin-bottom: 26px;
}

#non-veg-menu h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
}

#non-veg-menu .menu-note {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ivory-dark), var(--ivory));
  border-left: 5px solid var(--gold);
  box-shadow: 0 8px 20px rgba(24, 19, 15, .06);
  padding: 20px;
}

.extra-items-list li {
  position: relative;
}

.extra-items-list li::marker {
  content: none;
}

.extra-items-list {
  list-style: none;
  padding-left: 0;
}

.extra-items-list li {
  padding-left: 22px;
}

.extra-items-list li::before {
  content: "\f256";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: .82rem;
}

/* ---- Full Selection Menu — 4 category cards ---- */
.choice-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}

.choice-grid-4 .choice-card {
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(24, 19, 15, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.choice-grid-4 .choice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(24, 19, 15, .18);
}

.choice-grid-4 .choice-card h4 {
  margin: 0;
  padding: 15px 18px;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

.choice-grid-4 .choice-card ul {
  list-style: none;
  margin: 0;
  padding: 14px 18px 20px;
  background: var(--white);
  max-height: 340px;
  overflow-y: auto;
}

.choice-grid-4 .choice-card li {
  font-size: .89rem;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid rgba(24, 19, 15, .06);
  position: relative;
  color: var(--charcoal);
}

.choice-grid-4 .choice-card li:last-child {
  border-bottom: none;
}

.choice-grid-4 .choice-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* category-specific header colours + icons */
.choice-grid-4 .choice-card:nth-child(1) h4 {
  background: linear-gradient(120deg, var(--maroon), var(--maroon-dark));
}

.choice-grid-4 .choice-card:nth-child(1) h4::before {
  content: "\f6d5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-light);
}

.choice-grid-4 .choice-card:nth-child(2) h4 {
  background: linear-gradient(120deg, #8B2E1E, #5A1D12);
}

.choice-grid-4 .choice-card:nth-child(2) h4::before {
  content: "\f2e7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-light);
}

.choice-grid-4 .choice-card:nth-child(3) h4 {
  background: linear-gradient(120deg, var(--green), var(--green-dark));
}

.choice-grid-4 .choice-card:nth-child(3) h4::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-light);
}

.choice-grid-4 .choice-card:nth-child(4) h4 {
  background: linear-gradient(120deg, #2E6E4F, #1A4232);
}

.choice-grid-4 .choice-card:nth-child(4) h4::before {
  content: "\f5d2";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .choice-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---- Mutton dishes note — premium accent ---- */
#non-veg-menu .menu-note b {
  color: var(--maroon-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* Give the Mutton note its own maroon-tinted look */
#non-veg-menu>.container>.menu-note[style*="640px"]~.menu-note {
  border-left-color: var(--maroon);
  background: linear-gradient(135deg, rgba(124, 34, 69, .06), var(--ivory));
}

/* ---- Non-Veg rate table ---- */
#non-veg-menu .rate-table-wrap {
  max-width: 620px;
  margin: 0 auto 30px;
}

#non-veg-menu .rate-table {
  border-collapse: separate;
  border-spacing: 0 8px;
  box-shadow: none;
}

#non-veg-menu .rate-table thead th {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border: none;
  font-family: var(--font-display);
}

#non-veg-menu .rate-table thead tr th:first-child {
  border-radius: 10px 0 0 10px;
}

#non-veg-menu .rate-table thead tr th:last-child {
  border-radius: 0 10px 10px 0;
}

#non-veg-menu .rate-table tbody tr {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(24, 19, 15, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

#non-veg-menu .rate-table tbody tr:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 22px rgba(124, 34, 69, .25);
}

#non-veg-menu .rate-table td {
  border: none;
  padding: 12px 14px;
  font-weight: 700;
  font-family: var(--font-display);
}

#non-veg-menu .rate-table tbody tr td:first-child {
  border-radius: 10px 0 0 10px;
}

#non-veg-menu .rate-table tbody tr td:last-child {
  border-radius: 0 10px 10px 0;
  color: var(--maroon-dark);
}

/* ---- "Need a bigger capacity?" note — CTA style ---- */
#non-veg-menu .menu-note:last-of-type {
  text-align: center;
  border-left: none;
  background: linear-gradient(120deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
  padding: 22px 26px;
  border-radius: 16px;
}

#non-veg-menu .menu-note:last-of-type a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ======================================================
   2. SOUTH INDIAN MENU + RATE CARD (split section)
   ====================================================== */
/* ======================================================
   SOUTH INDIAN MENU SECTION — enhanced design
   ====================================================== */

#south-indian-menu .section-head .eyebrow {
  background: linear-gradient(135deg, var(--terracotta), var(--maroon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom-color: var(--gold);
}

.menu-rate-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* ---- Menu list card ---- */
.menu-rate-split .menu-card {
  margin: 0;
  max-width: none;
  padding: 38px 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 62, .10), transparent 45%),
    linear-gradient(165deg, var(--white) 0%, var(--ivory) 100%);
  box-shadow: 0 14px 34px rgba(24, 19, 15, .12);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 15, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.menu-rate-split .menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(24, 19, 15, .18);
}

.menu-rate-split .menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--terracotta), var(--gold), var(--maroon));
}

/* decorative large watermark icon */
.menu-rate-split .menu-card::after {
  content: "\f2e7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -18px;
  bottom: -24px;
  font-size: 8rem;
  color: rgba(199, 154, 62, .07);
  z-index: 0;
  pointer-events: none;
}

.menu-rate-split .menu-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  position: relative;
  z-index: 1;
}

.menu-rate-split .menu-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: .96rem;
  color: var(--charcoal);
  border-bottom: 1px dotted rgba(24, 19, 15, .15);
  transition: transform .2s ease, color .2s ease;
}

.menu-rate-split .menu-card li:hover {
  transform: translateX(4px);
  color: var(--maroon-dark);
}

.menu-rate-split .menu-card li::before {
  content: "\f6d1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--terracotta);
  font-size: .8rem;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(217, 97, 47, .10);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* first item = welcome drink, give it a distinct gold icon + span both cols */
.menu-rate-split .menu-card li:first-child {
  grid-column: 1 / -1;
  font-weight: 700;
  color: var(--maroon-dark);
  border-bottom: 1px solid rgba(199, 154, 62, .35);
  padding-bottom: 14px;
  margin-bottom: 6px;
}

.menu-rate-split .menu-card li:first-child::before {
  content: "\f000";
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
}

@media (max-width: 560px) {
  .menu-rate-split .menu-card ul {
    grid-template-columns: 1fr;
  }
}

/* ---- Rate card ---- */
.rate-card {
  background:
    radial-gradient(circle at 0% 100%, rgba(31, 122, 87, .08), transparent 50%),
    linear-gradient(165deg, var(--white) 0%, var(--ivory) 100%);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(24, 19, 15, .12);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 15, .06);
  display: flex;
  flex-direction: column;
}

.rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--maroon));
}

.rate-card h3 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--maroon-dark);
  position: relative;
  padding-bottom: 14px;
}

.rate-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
}

.rate-table thead th {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 11px 14px;
  border: none;
  font-size: .92rem;
}

.rate-table thead tr th:first-child {
  border-radius: 12px 0 0 12px;
}

.rate-table thead tr th:last-child {
  border-radius: 0 12px 12px 0;
}

.rate-table tbody tr {
  background: var(--white);
  box-shadow: 0 3px 10px rgba(24, 19, 15, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.rate-table tbody tr:hover {
  transform: translateX(5px) scale(1.01);
  box-shadow: 0 10px 22px rgba(199, 154, 62, .3);
}

.rate-table td {
  border: none;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-display);
}

.rate-table tbody tr td:first-child {
  border-radius: 12px 0 0 12px;
  font-weight: 600;
}

.rate-table tbody tr td:last-child {
  border-radius: 0 12px 12px 0;
  color: var(--green-dark);
}

/* Best-value row (250 persons = last row) gets a gold ribbon tag */
.rate-table tbody tr:last-child {
  background: linear-gradient(90deg, rgba(199, 154, 62, .16), rgba(199, 154, 62, .04));
  box-shadow: 0 6px 16px rgba(199, 154, 62, .35);
}

.rate-table tbody tr:last-child td:first-child {
  position: relative;
}

.rate-table tbody tr:last-child td:first-child::after {
  content: "Best Value";
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}

.rate-card .rate-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(24, 19, 15, .15);
  font-size: .85rem;
  opacity: .7;
  text-align: center;
}

/* ---- Extra items note block below the split ---- */
#south-indian-menu .menu-note {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ivory-dark), var(--ivory));
  border-left: 5px solid var(--terracotta);
  box-shadow: 0 8px 20px rgba(24, 19, 15, .06);
  padding: 20px;
}

#south-indian-menu .menu-note b {
  color: var(--maroon-dark);
  font-family: var(--font-display);
}

.extra-items-list li::marker {
  color: var(--terracotta);
}

/* Rate card — highlight best-value row */
.rate-card {
  background: linear-gradient(165deg, var(--white) 0%, var(--ivory) 100%);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(24, 19, 15, .10);
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 15, .06);
}

.rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--maroon));
}

.rate-card h3 {
  text-align: center;
  font-size: 1.18rem;
  margin-bottom: 20px;
  color: var(--maroon-dark);
}

.rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  background: transparent;
  box-shadow: none;
}

.rate-table thead th {
  background: var(--green-dark);
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 14px;
  border: none;
}

.rate-table thead tr th:first-child {
  border-radius: 10px 0 0 10px;
}

.rate-table thead tr th:last-child {
  border-radius: 0 10px 10px 0;
}

.rate-table tbody tr {
  background: var(--white);
  box-shadow: 0 3px 10px rgba(24, 19, 15, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rate-table tbody tr:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 18px rgba(199, 154, 62, .28);
}

.rate-table td {
  border: none;
  padding: 11px 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.rate-table tbody tr:first-child td:first-child {
  border-radius: 10px 0 0 10px;
}

.rate-table tbody tr:first-child td:last-child {
  border-radius: 0 10px 10px 0;
}

/* best-value = last row of the table, tag it gold */
.rate-table tbody tr:last-child {
  background: linear-gradient(90deg, rgba(199, 154, 62, .14), rgba(199, 154, 62, .05));
  box-shadow: 0 4px 14px rgba(199, 154, 62, .3);
}

.rate-table tbody tr:last-child td:first-child::after {
  content: "Best Value";
  display: block;
  font-size: .62rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}




/* ---------- Rules / Terms ---------- */
.rules-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}

.rules-wrap ol {
  margin: 0;
  padding-left: 22px;
}

.rules-wrap li {
  margin-bottom: 18px;
  padding-left: 6px;
}

.rules-wrap li::marker {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon);
}

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

.gallery-grid .ph {
  aspect-ratio: 4/3;
  background: var(--ivory-dark);
  border: 1px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  opacity: .6;
  font-size: .85rem;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-grid .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Location / Contact ---------- */
.location-section {
  background: var(--ivory-dark);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.location-card .line {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .95rem;
}

.location-card .line b {
  color: var(--maroon-dark);
  min-width: 80px;
  display: inline-block;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

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

/* ---------- CTA strip --i-------- */
.cta-strip {
  background: var(--maroon);
  color: var(--ivory);
  text-align: center;
  padding: 56px 0;
}

.cta-strip h2 {
  color: var(--ivory);
}

.cta-strip .btn-gold {
  margin-top: 10px;
}

/* ---------- Footer ---------- */
footer {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(234, 201, 110, .06), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(124, 34, 69, .18), transparent 45%),
    linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
  color: var(--ivory-dark);
  padding: 40px 0 20px;
  overflow: hidden;
}

@media (max-width: 720px) {
  footer {
    /* Leaves clear space below the copyright line so the fixed
       WhatsApp bubble and back-to-top button don't sit on top of it
       once the page is scrolled all the way down. */
    padding-bottom: 130px;
  }
}

footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C360,0 1080,100 1440,40 L1440,0 L0,0 Z' fill='%23EFE3C9'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: 1;
}

footer::after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  z-index: 1;
}

footer .container {
  position: relative;
  z-index: 2;
}

.footer-social {
  text-align: center;
  margin-bottom: 20px;
}

.footer-social .eyebrow {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
  margin-top: 24px;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.footer-social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(234, 201, 110, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.footer-social-icons a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  border-color: transparent;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 24px rgba(234, 201, 110, .35);
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  margin: 0 0 30px;
  position: relative;
}

footer {
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  margin: 35px 0;
}

.footer-brand {
  text-align: left;
}

.footer-brand img {
  height: 110px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .95);
  margin-bottom: 12px;
}

.footer-brand h3 {
  color: var(--gold-light);
  margin-bottom: 6px;
}

.footer-brand .tagline {
  color: var(--gold-light);
  font-style: italic;
}

.footer-address p {
  line-height: 1.8;
  font-size: .95rem;
  margin: 0;
}

.footer-contact .line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact .line i {
  color: var(--gold-light);
  width: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact .line a {
  color: var(--ivory-dark);
  text-decoration: none;
  line-height: 1.8;
}

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

.footer-col-title {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  position: relative;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  gap: 45px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--ivory-dark);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 18px;
  margin-top: 25px;
  text-align: center;
  font-size: .9rem;
}

@media(max-width:900px) {

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

  .footer-brand {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 30px;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #8b1e3f;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-download:hover {
  background: #6d1531;
  transform: translateY(-2px);
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--green-dark);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 60;
  font-size: 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  nav.main-nav ul {
    gap: 18px;
  }

  nav.main-nav a {
    font-size: .74rem;
  }
}

@media (max-width: 900px) {
  #all-services .offer-card {
    min-height: 480px;
  }

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

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

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

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

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

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

@media (max-width: 720px) {
  nav.main-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 82px;
    right: 20px;
  }

  #all-services .offer-card {
    min-height: 420px;
  }

  .nav-cta {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Rate table (per-person / headcount pricing) ---------- */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  margin: 0 auto 30px;
}

.rate-table th,
.rate-table td {
  border: 1px solid var(--ivory-dark);
  padding: 10px 14px;
  text-align: center;
  font-size: .98rem;
}

.rate-table thead th {
  background: var(--green-dark);
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 600;
}

.rate-table tbody tr:nth-child(even) {
  background: var(--ivory);
}

.rate-table-wrap {
  overflow-x: auto;
  margin-bottom: 30px;
}

/* ---------- Menu list + rate table, side by side (no more empty space) ---------- */
.menu-rate-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 40px;
}

.menu-rate-split .menu-card {
  margin: 0;
  max-width: none;
}

.rate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 15, .06);
}

.rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--maroon));
}

.rate-card h3 {
  text-align: center;
  font-size: 1.22rem;
  line-height: 1.3;
  margin-bottom: 22px;
  color: var(--maroon-dark);
}

.rate-card .rate-table-wrap {
  margin-bottom: 0;
}

.rate-card .rate-table {
  margin-bottom: 0;
  box-shadow: none;
}

.rate-card .rate-note {
  margin: 16px 0 0;
  font-size: .88rem;
  opacity: .75;
  text-align: center;
}

@media (max-width: 900px) {
  .menu-rate-split {
    grid-template-columns: 1fr;
  }
}

.extra-items-list {
  columns: 2;
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 0;
  font-size: .98rem;
}

.extra-items-list li {
  margin-bottom: 8px;
  break-inside: avoid;
}

@media (max-width:600px) {
  .extra-items-list {
    columns: 1;
  }
}

/* ---------- Choice / selection cards (Non-Veg Menu breakdown) ---------- */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.choice-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.choice-card h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--maroon-dark);
  margin: 0 0 10px;
  border-bottom: 1px dashed var(--ivory-dark);
  padding-bottom: 8px;
}

.choice-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.choice-card li {
  font-size: .95rem;
  padding: 5px 0;
  border-bottom: 1px dotted var(--ivory-dark);
}

.choice-card li:last-child {
  border-bottom: none;
}

.rate-table td,
.rate-table th {
  vertical-align: middle;
}

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

@media (max-width: 980px) {

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

@media (max-width: 560px) {

  .choice-grid,
  .choice-grid-4 {
    grid-template-columns: 1fr;
  }
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 90;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* =========================================================
   Motion & colour-effects layer
   Scroll reveals, gradient shimmer, hover glow, hero polish —
   tuned to feel warm, ceremonial and premium (not flashy).
   ========================================================= */

/* ---------- Scroll-reveal (progressive enhancement) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.16, .8, .3, 1), transform .75s cubic-bezier(.16, .8, .3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Sticky header: subtle shrink + deepen on scroll ---------- */
header.site-header {
  transition: top .3s ease, box-shadow .3s ease, background .3s ease;
}

header.site-header.scrolled {
  top: 6px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .5);
}

/* ---------- Gradient shimmer on emphasised hero text ---------- */
.hero-content h1 em,
.hero-frame h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #ea0b68, #f674aa 45%, #ea0b68);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shine 5s linear infinite;
}

@keyframes text-shine {
  to {
    background-position: -220% center;
  }
}

.about-copy .eyebrow-lead {
  background: linear-gradient(90deg, var(--maroon), var(--terracotta), var(--maroon));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shine 6s linear infinite;
}

/* ---------- Buttons: soft shimmer sweep on hover ---------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 130%;
}

.btn-whatsapp,
.btn-gold,
.btn-primary {
  box-shadow: 0 5px 0 rgba(0, 0, 0, .22), 0 14px 26px rgba(0, 0, 0, .22);
  transition: transform .15s ease, box-shadow .15s ease, background .25s ease, border-color .25s ease;
}

.btn-whatsapp:hover,
.btn-gold:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, .22), 0 20px 32px rgba(0, 0, 0, .3);
}

.btn-whatsapp:active,
.btn-gold:active,
.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .22), 0 6px 14px rgba(0, 0, 0, .2);
}

/* ---------- Floating WhatsApp: gentle pulse ring ---------- */
.float-whatsapp {
  animation: wa-pulse 2.6s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(31, 122, 87, .55), var(--shadow);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(31, 122, 87, 0), var(--shadow);
  }
}

/* ---------- Slider: slow Ken Burns zoom on background photos ---------- */
.slide img {
  animation: kenburns 13s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.09);
  }
}

.hero-content {
  animation: hero-in 1s cubic-bezier(.16, .8, .3, 1) both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-26px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* ---------- Standalone page hero (about/services/gallery/contact) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 28%, rgba(234, 201, 110, .28), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(217, 97, 47, .22), transparent 46%);
  animation: drift 15s ease-in-out infinite alternate;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

@keyframes drift {
  from {
    transform: translate(-3%, -2%) scale(1);
  }

  to {
    transform: translate(3%, 2%) scale(1.05);
  }
}

/* ---------- Hall-detail hero (.hero / .hero-frame) — was previously unstyled ---------- */
.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  animation: hero-zoom 11s ease-out forwards;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 15, 11, .92) 0%, rgba(124, 34, 69, .58) 55%, rgba(20, 15, 11, .4) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.14);
  }

  to {
    transform: scale(1);
  }
}

.hero-frame {
  position: relative;
  max-width: 640px;
  padding: 44px 46px;
  animation: hero-in-static .9s cubic-bezier(.16, .8, .3, 1) both;
  background: rgba(20, 15, 11, .32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
}

@keyframes hero-in-static {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-frame .hero-content {
  position: static;
  transform: none;
  max-width: none;
  animation: none;
}

.hero-frame .eyebrow {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.hero-frame .hero-address {
  opacity: .85;
}

.hero-frame .hero-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.hero-corner-tl,
.hero-corner-tr,
.hero-corner-bl,
.hero-corner-br {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold-light);
  opacity: .85;
  transition: width .4s ease, height .4s ease;
}

.hero-frame:hover .hero-corner-tl,
.hero-frame:hover .hero-corner-tr,
.hero-frame:hover .hero-corner-bl,
.hero-frame:hover .hero-corner-br {
  width: 54px;
  height: 54px;
}

.hero-corner-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.hero-corner-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.hero-corner-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.hero-corner-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* ---------- Card hover polish: lift + gold glow ---------- */
.offer-card {
  transition: transform .45s cubic-bezier(.16, .8, .3, 1), box-shadow .45s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45), 0 0 0 2px rgba(234, 201, 110, .55) inset;
}

.vm-card,
.service-card,
.choice-card,
.location-card,
.rules-wrap {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.vm-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 27, 22, .18);
  border-color: var(--gold);
}

.menu-card.is-active,
.choice-card.is-active {
  box-shadow: 0 24px 44px rgba(24, 19, 15, .22), 0 0 0 2px var(--gold);
  transform: translateY(-8px);
}

.menu-card {
  cursor: pointer;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(30, 27, 22, .16);
  border-top-color: var(--terracotta);
}

.gallery-track img,
.gallery-grid .ph img {
  transition: transform .5s ease, filter .5s ease, box-shadow .5s ease;
  filter: saturate(.85);
}

.gallery-track img:hover,
.gallery-grid .ph:hover img {
  transform: scale(1.08);
  filter: saturate(1.15);
  box-shadow: 0 0 0 3px rgba(234, 201, 110, .55), var(--shadow-lg);
}

.gallery-track img {
  border: 2px solid rgba(234, 201, 110, .18);
}

/* ---------- Animated CTA gradient (festive, on-brand) ---------- */
.cta-strip {
  position: relative;
  overflow: hidden;
}

.cta-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C240,100 480,0 720,40 C960,80 1200,20 1440,60 L1440,100 L0,100 Z' fill='%23FBF7EE'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ---------- Info strip counters: gentle pop when value lands ---------- */
.info-grid .num {
  display: inline-block;
  transition: transform .2s ease;
}

/* ---------- Our Success Story: copy + overlapping circular photo collage ---------- */
.story-media {
  position: relative;
  min-height: 420px;
  /* was 640px — smaller box so circles don't dominate */
}

.story-circle {
  position: absolute;
  width: 70%;
  /* was 62% — this is the actual size control, make circles smaller */
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(23, 19, 15, .22), 0 0 0 8px var(--white);
  transition: transform .45s cubic-bezier(.16, .8, .3, 1), box-shadow .45s ease;

}

.story-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-circle:hover img {
  transform: scale(1.05);
}

/* Hover: the hovered photo lifts, glows gold and comes to the front */
.story-circle:hover {
  transform: scale(1.06);
  box-shadow: 0 30px 60px rgba(23, 19, 15, .38), 0 0 0 10px var(--gold-light);
}


.story-circle.c1 {
  top: 1%;
  left: 45%;
  z-index: 2;

}

.story-circle.c2 {
  top: 10%;
  left: 1%;
  z-index: 3;
}

.story-circle.c3 {
  top: 40%;
  left: 35%;
  z-index: 4;
}

.story-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* text left, images right — always side by side */
  gap: 10px;
  align-items: center;
}

@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 380px;
    margin-top: 36px;
  }

  /* Circles are positioned with left+width as % of container; at the
     single-column layout the container is full-width, so offsets are
     tightened here to keep every circle within the box (no horizontal
     page overflow on tablets/phones). */
  .story-circle {
    width: 52%;
  }

  .story-circle.c1 {
    top: 0;
    left: 26%;
  }

  .story-circle.c2 {
    top: 8%;
    left: 0;
  }

  .story-circle.c3 {
    top: 40%;
    left: 20%;
  }
}

@media (max-width: 560px) {
  .story-media {
    min-height: 300px;
  }

  .story-circle {
    width: 58%;
  }

  .story-circle.c1 {
    left: 20%;
  }

  .story-circle.c2 {
    left: 0;
  }

  .story-circle.c3 {
    left: 16%;
  }
}

/* =========================================================
   RICHER HERO SECTIONS — photo backdrop, ticker, scroll cue,
   floating particles, quick-stat chips. Applies to the plain
   .page-hero (about/services/gallery/contact) and adds a few
   shared flourishes to .hero (hall pages) and the homepage
   slider so every hero on the site feels equally premium.
   ========================================================= */

/* ---- page-hero: real photo backdrop instead of flat colour ---- */
.page-hero {
  min-height: 35vh;
  padding: 80px 0 50px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  animation: hero-zoom 12s ease-out forwards;
  z-index: -2;
}

.page-hero::before {
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(234, 201, 110, .30), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(217, 97, 47, .24), transparent 46%),
    linear-gradient(125deg, rgba(20, 15, 11, .93) 0%, rgba(85, 21, 48, .82) 55%, rgba(20, 15, 11, .55) 100%);
}

.page-hero-icon {
  position: relative;
}

.page-hero-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(234, 201, 110, .55);
  animation: ring-pulse 2.6s ease-out infinite;
}

@keyframes ring-pulse {
  0% {
    transform: scale(.85);
    opacity: .9;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.page-hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.page-hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(234, 201, 110, .35);
  color: var(--ivory);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
  backdrop-filter: blur(6px);
}

.page-hero-stats i {
  color: var(--gold-light);
}

/* ---- Celebration ticker strip — sits right under every hero ---- */
.hero-marquee {
  background: var(--dark-2);
  border-top: 1px solid rgba(234, 201, 110, .25);
  border-bottom: 1px solid rgba(234, 201, 110, .25);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.hero-marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee-left 32s linear infinite;
  padding: 12px 0;
}

.hero-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--gold-light);
  border-right: 1px solid rgba(234, 201, 110, .25);
}

.hero-marquee:hover .hero-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- Scroll cue — small bouncing chevron at hero base ---- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ivory-dark);
  opacity: .8;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: scroll-cue-bounce 2.2s ease-in-out infinite;
}

.scroll-cue i {
  color: var(--gold-light);
  font-size: .95rem;
}

@keyframes scroll-cue-bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

/* ---- Floating gold particles — subtle ambient motion in the hero ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-particles span {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation: particle-rise linear infinite;
}

.hero-particles span:nth-child(1) {
  left: 8%;
  animation-duration: 9s;
  animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
  left: 22%;
  animation-duration: 11s;
  animation-delay: 1.5s;
  width: 3px;
  height: 3px;
}

.hero-particles span:nth-child(3) {
  left: 38%;
  animation-duration: 8s;
  animation-delay: 3s;
}

.hero-particles span:nth-child(4) {
  left: 56%;
  animation-duration: 12s;
  animation-delay: .5s;
  width: 4px;
  height: 4px;
}

.hero-particles span:nth-child(5) {
  left: 71%;
  animation-duration: 10s;
  animation-delay: 2.2s;
}

.hero-particles span:nth-child(6) {
  left: 85%;
  animation-duration: 9.5s;
  animation-delay: 4s;
  width: 3px;
  height: 3px;
}

.hero-particles span:nth-child(7) {
  left: 94%;
  animation-duration: 13s;
  animation-delay: 1s;
}

@keyframes particle-rise {
  0% {
    transform: translateY(0) scale(.6);
    opacity: 0;
  }

  10% {
    opacity: .9;
  }

  90% {
    opacity: .5;
  }

  100% {
    transform: translateY(-90vh) scale(1.1);
    opacity: 0;
  }
}

/* ---- Slider (homepage): progress dots + scroll cue reuse ---- */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .25);
  padding: 0;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.slider-dots button.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.2);
}

@media (max-width: 720px) {
  .page-hero {
    min-height: 42vh;
    padding: 100px 0 60px;
  }

  .hero-marquee-track span {
    font-size: .82rem;
    padding: 0 18px;
  }

  .scroll-cue {
    display: none;
  }
}

/* ---------- Respect reduced-motion users ---------- */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .hero-content,
  .hero-frame,
  .slide img,
  .float-whatsapp,
  .page-hero::before,
  .cta-strip,
  .about-copy .eyebrow-lead,
  .hero-content h1 em,
  .hero-frame h1 em,
  .page-hero::after,
  .page-hero-icon::before,
  .hero-marquee-track,
  .scroll-cue,
  .hero-particles span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal {
    transition: none !important;
  }
}

/* ======================================================
   FOOTER — mobile: logo, contact info, links title center
   ====================================================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    margin: 0 auto 12px;
  }

  .footer-address {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-address p {
    text-align: center;
  }

  /* Contact info — block centered, but text inside left-aligned (justified look) */
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers the block itself */
    width: 100%;
  }

  .footer-contact .line {
    justify-content: flex-start;
    /* icon + text aligned left within the row */
    text-align: left;
    width: fit-content;
    /* row only as wide as content, so it can center */
    margin-left: auto;
    margin-right: auto;
  }

  /* Links — keep 2 columns side by side (4 + 3), not stacked */
  .footer-links {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }

  .footer-links>div {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links>div:last-child {
    margin-top: 0 !important;
  }

  .footer-col-title {
    text-align: center;
  }

  .footer-links ul {
    text-align: left;
    /* list items left-aligned within their own column */
  }

  .footer-links li {
    text-align: left;
  }

  .footer-social-icons {
    flex-wrap: wrap;
  }
}


/* ======================================================
   CONTACT / LOCATION SECTION — fix right-side clipping on mobile
   (overflow-x:hidden on <html> clips instead of scrolling, so any
   child wider than viewport just gets cut off on the right —
   this locks every element to 100% max-width and box-sizing.)
   ====================================================== */
.location-section,
.location-section .container,
.location-grid,
.location-card,
.map-frame,
.contact-form {
  max-width: 100%;
  box-sizing: border-box;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .location-card {
    width: 100%;
    padding: 26px 20px;
  }

  .map-frame {
    width: 100%;
    min-height: 280px;
  }

  .map-frame iframe {
    width: 100%;
    max-width: 100%;
    min-height: 280px;
  }

  .contact-form,
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    max-width: 100%;
  }

  .location-card .line {
    flex-wrap: wrap;
  }
}