:root {
  --emerald: #063a32;
  --emerald-dark: #031f1a;
  --gold: #c8a96a;
  --ivory: #faf8f4;
  --paper: #f3eee4;
  --charcoal: #171717;
  --muted: #706a61;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 30px 80px rgba(14, 79, 68, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--emerald-dark);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(#000 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

.cursor {
  position: fixed;
  z-index: 9999;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(200, 169, 106, 0.9);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, background 180ms ease;
  display: none;
}

.cursor.active {
  width: 46px;
  height: 46px;
  background: rgba(200, 169, 106, 0.1);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 4vw, 64px);
  color: #fff;
  transition: padding 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.site-nav.scrolled {
  padding-block: 13px;
  color: #fff;
  background: rgba(3, 31, 26, 0.82);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand span {
  font-size: 11px;
  font-weight: 700;
}

.brand strong {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .book-link {
  border: 1px solid rgba(200, 169, 106, 0.9);
  padding: 13px 20px;
  color: var(--gold);
  background: rgba(200, 169, 106, 0.08);
  border-radius: 999px;
  box-shadow: 0 0 34px rgba(200, 169, 106, 0.18);
}

.nav-links .book-link::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--hero-scale, 1.12));
  transition: transform 80ms linear;
  z-index: -3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background: url("banquetimages/hall3.webp") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 35%, rgba(200, 169, 106, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(3, 31, 26, 0.64) 45%, rgba(0, 0, 0, 0.88));
}

.particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.65);
  filter: blur(0.5px);
  animation: float 9s ease-in-out infinite;
}

.particles span:nth-child(1) { left: 15%; top: 35%; animation-delay: -1s; }
.particles span:nth-child(2) { left: 31%; top: 74%; animation-delay: -3s; }
.particles span:nth-child(3) { left: 67%; top: 25%; animation-delay: -4s; }
.particles span:nth-child(4) { left: 84%; top: 56%; animation-delay: -2s; }
.particles span:nth-child(5) { left: 52%; top: 82%; animation-delay: -6s; }

.hero-content {
  width: min(980px, calc(100% - 40px));
  text-align: center;
  padding-top: 72px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 0.95;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 128px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 78px);
}

h3 {
  font-family: var(--serif);
  font-size: 28px;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.btn-gold {
  color: #20190b;
  background: linear-gradient(135deg, #dfc884, var(--gold));
  box-shadow: 0 20px 45px rgba(200, 169, 106, 0.24);
}

.btn-gold:hover {
  box-shadow: 0 22px 56px rgba(200, 169, 106, 0.38);
}

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

.hero-actions,
.final-cta div div {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: grid;
  gap: 10px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 45px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 1.8s ease infinite;
}

.section {
  padding: clamp(74px, 10vw, 150px) clamp(20px, 5vw, 76px);
}

.section-heading {
  width: min(880px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  color: var(--emerald-dark);
}

.section-heading p:not(.eyebrow),
.about-copy p,
.virtual-tour p {
  color: var(--muted);
  line-height: 1.8;
}

.intro-strip {
  padding: 28px 0;
  overflow: hidden;
  color: #fff;
  background: var(--emerald-dark);
}

.intro-strip p {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}

.intro-marquee {
  display: flex;
  width: max-content;
  gap: 46px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 54px);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.photo-ribbon {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr 0.85fr 1fr;
  gap: 14px;
  padding: 18px clamp(20px, 5vw, 76px) 76px;
  background: var(--emerald-dark);
}

.photo-ribbon img {
  width: 100%;
  height: clamp(190px, 25vw, 380px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  filter: saturate(0.92) contrast(1.05);
}

.photo-ribbon img:nth-child(2),
.photo-ribbon img:nth-child(4) {
  margin-top: 48px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--ivory);
}

.about-media {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(250, 248, 244, 0.45);
}

.about-media img,
.venue-card img,
.gallery-item img,
.insta-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.about-media:hover img,
.venue-card:hover img,
.gallery-item:hover img,
.insta-wall img:hover {
  transform: scale(1.07);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--emerald);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.celebration-selector,
.cinematic-journey {
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 169, 106, 0.16), transparent 26%),
    var(--emerald-dark);
  color: #fff;
}

.celebration-selector .section-heading h2,
.cinematic-journey .section-heading h2 {
  color: #fff;
}

.selector-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.selector-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: 8px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
}

.selector-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transition: opacity 360ms ease, transform 700ms ease;
}

.selector-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 31, 26, 0.88), rgba(3, 31, 26, 0.08));
}

.selector-visual > div {
  position: absolute;
  left: clamp(24px, 5vw, 70px);
  bottom: clamp(24px, 5vw, 70px);
  z-index: 2;
  width: min(510px, calc(100% - 48px));
}

.selector-visual h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(44px, 6vw, 84px);
}

.selector-visual p:not(.eyebrow) {
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
}

.selector-list {
  display: grid;
  gap: 10px;
}

.selector-list button,
.transform-tabs button {
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  font-weight: 900;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.selector-list button:hover,
.selector-list button.active,
.transform-tabs button:hover,
.transform-tabs button.active {
  color: #fff;
  border-color: rgba(200, 169, 106, 0.72);
  background: rgba(200, 169, 106, 0.12);
  transform: translateX(5px);
}

.story-scene {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: 88vh;
  border-top: 1px solid rgba(200, 169, 106, 0.16);
}

.story-scene.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.story-scene.reverse img {
  order: 2;
}

.story-scene img {
  width: 100%;
  height: min(68vh, 680px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.story-scene span {
  color: var(--gold);
  font-weight: 900;
}

.story-scene h3 {
  margin: 18px 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
}

.story-scene p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.timeline-3d {
  display: flex;
  gap: 20px;
  perspective: 1200px;
  overflow-x: auto;
  padding: 10px 4px 26px;
  scroll-snap-type: x mandatory;
}

.event-card {
  position: relative;
  flex: 1 0 240px;
  min-height: 410px;
  padding: 28px;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotateY(-9deg) translateZ(0);
  transition: flex-basis 360ms ease, transform 360ms ease, box-shadow 360ms ease;
  scroll-snap-align: center;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--img) center/cover;
  transform: scale(1.08) translateY(var(--parallax, 0));
  transition: transform 600ms ease;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.13), rgba(6, 35, 31, 0.86));
}

.event-card:hover {
  flex-basis: 360px;
  transform: rotateY(0) translateY(-10px);
  box-shadow: 0 35px 90px rgba(6, 35, 31, 0.28);
}

.event-card:hover::before {
  transform: scale(1.16);
}

.event-card span {
  color: var(--gold);
  font-weight: 800;
}

.event-card h3 {
  margin-top: 220px;
  color: #fff;
}

.event-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.showcase {
  background: var(--paper);
  overflow: hidden;
}

.venue-track {
  display: grid;
  gap: 24px;
}

.venue-card {
  position: sticky;
  top: 92px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.venue-card.reverse img {
  order: 2;
}

.venue-card:nth-child(2) { top: 112px; }
.venue-card:nth-child(3) { top: 132px; }
.venue-card:nth-child(4) { top: 152px; }
.venue-card:nth-child(5) { top: 172px; }

.venue-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 58px);
}

.venue-card h3 {
  margin-bottom: 10px;
  color: var(--emerald-dark);
  font-size: clamp(34px, 4vw, 58px);
}

.venue-card p {
  color: var(--gold);
  font-weight: 800;
}

.venue-card span {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.75;
}

.venue-card a,
.venue-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-right: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--emerald-dark);
  background: transparent;
  font-weight: 800;
}

.venue-card a {
  color: #20190b;
  border-color: transparent;
  background: var(--gold);
}

.floor-section {
  background: linear-gradient(180deg, var(--ivory), var(--paper));
}

.floor-plan {
  position: relative;
  width: min(1000px, 100%);
  min-height: 620px;
  margin: auto;
  border: 1px solid rgba(14, 79, 68, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(14, 79, 68, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(14, 79, 68, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, rgba(200, 169, 106, 0.17), transparent 28%),
    #fffaf1;
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.floor-plan::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: 8px;
}

.zone {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 169, 106, 0.85);
  border-radius: 8px;
  color: var(--emerald-dark);
  background: rgba(250, 248, 244, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 18px 40px rgba(14, 79, 68, 0.08);
  font-weight: 900;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.zone:hover,
.zone:focus-visible {
  transform: translateY(-5px) scale(1.02);
  background: rgba(200, 169, 106, 0.24);
  box-shadow: 0 0 0 5px rgba(200, 169, 106, 0.12), 0 24px 58px rgba(14, 79, 68, 0.2);
  outline: none;
}

.stage { left: 28%; top: 8%; width: 44%; height: 18%; }
.dining { left: 16%; top: 34%; width: 50%; height: 36%; }
.parking { right: 5%; bottom: 8%; width: 24%; height: 24%; }
.garden { left: 6%; bottom: 8%; width: 26%; height: 18%; }
.vip { right: 8%; top: 27%; width: 22%; height: 22%; }
.entrance { left: 38%; bottom: 8%; width: 24%; height: 16%; }
.bridal { right: 7%; top: 8%; width: 20%; height: 14%; }

.floor-preview {
  position: absolute;
  right: 36px;
  bottom: 34px;
  width: min(300px, 35%);
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, 0.45);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(6, 35, 31, 0.2);
}

.floor-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 520ms ease;
}

.floor-tooltip {
  position: absolute;
  left: 50%;
  bottom: 24px;
  max-width: 320px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(6, 35, 31, 0.9);
  border: 1px solid rgba(200, 169, 106, 0.45);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floor-tooltip.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.packages,
.testimonials,
.why {
  background: var(--emerald-dark);
  color: #fff;
}

.packages .section-heading h2,
.testimonials .section-heading h2,
.why .section-heading h2 {
  color: #fff;
}

.transformation {
  background: var(--ivory);
}

.transform-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 auto 22px;
  padding-bottom: 8px;
}

.transform-tabs button {
  flex: 0 0 auto;
  min-width: 180px;
  color: var(--emerald-dark);
  background: #fff;
}

.transform-tabs button.active,
.transform-tabs button:hover {
  color: #fff;
  background: var(--emerald-dark);
  transform: translateY(-2px);
}

.transform-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.transform-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 600ms ease;
}

.transform-stage > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 58px);
}

.transform-stage h3 {
  color: var(--emerald-dark);
  font-size: clamp(38px, 5vw, 68px);
}

.transform-stage p,
.transform-stage dd {
  color: var(--muted);
  line-height: 1.8;
}

.transform-stage dt {
  margin-top: 18px;
  color: var(--emerald-dark);
  font-weight: 900;
}

.guest-journey {
  background: var(--emerald-dark);
  color: #fff;
}

.guest-journey .section-heading h2 {
  color: #fff;
}

.guest-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 4px 24px;
}

.guest-rail span {
  position: relative;
  flex: 0 0 230px;
  min-height: 130px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: 8px;
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.055);
  font-weight: 900;
}

.guest-rail span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.experiences {
  background: linear-gradient(180deg, var(--paper), var(--ivory));
}

.experience-grid,
.package-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.glass {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--emerald-dark);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 55px rgba(14, 79, 68, 0.08);
  backdrop-filter: blur(18px);
  font-family: var(--serif);
  font-size: 25px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--card-img) center/cover;
  opacity: 0.18;
  transition: opacity 240ms ease, transform 600ms ease;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.68), rgba(250, 248, 244, 0.94));
}

.glass:nth-child(1) { --card-img: url("banquetimages/wedding4.webp"); }
.glass:nth-child(2) { --card-img: url("banquetimages/haldi.webp"); }
.glass:nth-child(3) { --card-img: url("banquetimages/corporateevent.webp"); }
.glass:nth-child(4) { --card-img: url("banquetimages/food2.webp"); }
.glass:nth-child(5) { --card-img: url("banquetimages/stage2.webp"); }
.glass:nth-child(6) { --card-img: url("banquetimages/reception.webp"); }
.glass:nth-child(7) { --card-img: url("banquetimages/couplephoto.webp"); }
.glass:nth-child(8) { --card-img: url("banquetimages/table%20(2).webp"); }

.glass span,
.glass small {
  display: block;
}

.glass span {
  margin-bottom: 28px;
  color: var(--gold);
}

.glass small {
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(14, 79, 68, 0.14);
}

.glass:hover::before {
  opacity: 0.34;
  transform: scale(1.08);
}

.package-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(200, 169, 106, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 240ms ease, background 240ms ease;
}

.package-card::before {
  content: "";
  display: block;
  height: 210px;
  margin: -32px -32px 28px;
  background: var(--package-img) center/cover;
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
  filter: saturate(0.9) contrast(1.05);
  transition: transform 600ms ease;
}

.package-card:nth-child(1) { --package-img: url("banquetimages/table1.webp"); }
.package-card:nth-child(2) { --package-img: url("banquetimages/wedding4.webp"); }
.package-card:nth-child(3) { --package-img: url("banquetimages/corporateevent.webp"); }
.package-card:nth-child(4) { --package-img: url("banquetimages/reception.webp"); }

.package-card.featured {
  background: linear-gradient(180deg, rgba(200, 169, 106, 0.18), rgba(255,255,255,0.06));
}

.package-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.package-card:hover::before {
  transform: scale(1.04);
}

.package-card h3 {
  color: #fff;
}

.package-card p {
  color: var(--gold);
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
}

.package-card > a:not(.btn) {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
}

.gallery-section {
  background: var(--ivory);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--emerald-dark);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 35, 31, 0.2);
  transition: background 260ms ease;
}

.gallery-item span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-item:hover::after {
  background: rgba(6, 35, 31, 0.58);
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.virtual-tour {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 520px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 35, 31, 0.86), rgba(6, 35, 31, 0.16)),
    url("banquetimages/hall3.webp") center/cover fixed;
}

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

.virtual-tour h2 {
  color: #fff;
}

.virtual-tour p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.play-btn {
  display: grid;
  place-items: center;
  width: clamp(92px, 14vw, 152px);
  height: clamp(92px, 14vw, 152px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.16);
  backdrop-filter: blur(18px);
}

.play-btn span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--gold);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: auto;
}

.testimonial {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 390px;
  padding: 38px 30px;
  border: 1px solid rgba(200, 169, 106, 0.34);
  border-radius: 2px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(250, 247, 239, 0.96), rgba(243, 238, 228, 0.88));
  transform-style: preserve-3d;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(200, 169, 106, 0.34);
  pointer-events: none;
}

.testimonial:hover {
  transform: translateY(-8px) rotateX(4deg);
}

.testimonial img {
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial p {
  max-width: 590px;
  color: var(--emerald-dark);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.36;
}

.testimonial strong {
  color: var(--charcoal);
}

.testimonial span {
  margin-top: 8px;
  color: var(--gold);
}

.location-section {
  background: linear-gradient(180deg, var(--emerald-dark), #061714);
  color: #fff;
}

.location-section .section-heading h2 {
  color: #fff;
}

.location-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.map-frame,
.direction-panel {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.24);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.03);
}

.direction-panel {
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(3,31,26,0.84), rgba(3,31,26,0.72)),
    url("banquetimages/lux%20entry.webp") center/cover;
}

.direction-panel h3 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.direction-route {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 28px;
}

.direction-cards {
  display: grid;
  gap: 14px;
}

.direction-cards article {
  padding: 20px;
  border: 1px solid rgba(200, 169, 106, 0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.direction-cards span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
}

.direction-cards strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 6px;
}

.direction-cards p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  line-height: 1.65;
}

.calendar-section {
  background: var(--paper);
}

.calendar {
  width: min(850px, 100%);
  margin: auto;
  padding: clamp(18px, 3vw, 36px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.calendar-head,
.calendar-week,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-head {
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-head h3 {
  margin: 0;
  text-align: center;
  color: var(--emerald-dark);
}

.calendar-head button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory);
}

.calendar-week {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.calendar-grid button,
.calendar-grid span {
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--charcoal);
  font-weight: 800;
}

.calendar-grid button.available {
  background: rgba(14, 79, 68, 0.09);
}

.calendar-grid button.booked {
  color: rgba(23, 23, 23, 0.45);
  background: rgba(23, 23, 23, 0.08);
}

.calendar-grid button.peak {
  background: rgba(200, 169, 106, 0.2);
}

.calendar-grid button:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(200, 169, 106, 0.16);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legend span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.legend .available { background: rgba(14, 79, 68, 0.35); }
.legend .booked { background: rgba(23, 23, 23, 0.22); }
.legend .peak { background: rgba(200, 169, 106, 0.55); }

.why-grid span {
  min-height: 94px;
  padding: 24px;
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.instagram {
  background: var(--ivory);
}

.insta-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.8fr;
  gap: 18px;
  align-items: end;
}

.insta-wall img {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.insta-wall img:nth-child(2),
.insta-wall img:nth-child(4) {
  height: 330px;
}

.booking {
  background: var(--emerald-dark);
}

.wizard-shell {
  width: min(1320px, 100%);
  margin: auto;
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 169, 106, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.wizard-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  padding: clamp(26px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 31, 26, 0.9), rgba(3, 31, 26, 0.38)),
    url("banquetimages/hall3.webp") center/cover;
}

.wizard-hero h2 {
  max-width: 850px;
  color: #fff;
  margin-bottom: 18px;
}

.wizard-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.wizard-save {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(200, 169, 106, 0.45);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(3, 31, 26, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(200, 169, 106, 0.18);
}

.wizard-progress button {
  min-height: 78px;
  border: 0;
  color: rgba(255,255,255,0.62);
  background: rgba(3, 31, 26, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  padding: 16px;
  transition: color 220ms ease, background 220ms ease;
}

.wizard-progress button span {
  display: block;
  color: var(--gold);
  margin-bottom: 5px;
}

.wizard-progress button.active,
.wizard-progress button.complete {
  color: #fff;
  background: rgba(200, 169, 106, 0.16);
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: clamp(20px, 3vw, 34px);
}

.wizard-main {
  min-width: 0;
}

.wizard-step {
  display: none;
  color: #fff;
  animation: wizardFade 360ms ease;
}

.wizard-step.active {
  display: block;
}

.step-heading {
  margin-bottom: 24px;
}

.step-heading h3,
.wizard-summary h3 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  margin-bottom: 14px;
}

.step-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.detail-grid,
.hall-grid,
.menu-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-grid label,
.designer-tools label,
.notes-field {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 800;
}

.wizard-shell input,
.wizard-shell select,
.wizard-shell textarea {
  width: 100%;
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: 8px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255,255,255,0.075);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.wizard-shell select option {
  color: var(--charcoal);
}

.wizard-shell textarea {
  min-height: 132px;
  resize: vertical;
}

.wizard-shell input:focus,
.wizard-shell select:focus,
.wizard-shell textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.13);
}

.hall-card,
.menu-tier,
.choice-card,
.accordion-section,
.review-card {
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.065);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
}

.hall-card,
.menu-tier {
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hall-card:hover,
.menu-tier:hover,
.choice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 106, 0.55);
}

.hall-card.selected,
.menu-tier.selected,
.choice-card.active {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.12);
  box-shadow: 0 28px 70px rgba(200, 169, 106, 0.16);
}

.hall-card img,
.menu-tier img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hall-card > div,
.menu-tier > div {
  padding: 24px;
}

.hall-card h4,
.menu-tier h4,
.accordion-section h4,
.review-card h4 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
}

.hall-card p,
.menu-tier p,
.review-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.feature-list,
.package-facts,
.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.feature-list span,
.package-facts span,
.badge,
.warning-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(200, 169, 106, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.055);
  font-size: 12px;
  font-weight: 800;
}

.badge {
  color: var(--gold);
}

.warning-pill {
  color: #ffd8a8;
  border-color: rgba(255, 178, 84, 0.4);
}

.hall-card button,
.menu-tier button {
  margin-right: 8px;
  margin-top: 8px;
  border: 1px solid rgba(200, 169, 106, 0.38);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--gold);
  background: transparent;
  font-weight: 900;
}

.included {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.menu-tier.open .included {
  display: block;
}

.custom-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.choice-card {
  min-height: 150px;
  padding: 24px;
  color: #fff;
  text-align: left;
}

.choice-card span {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  margin-bottom: 10px;
}

.choice-card small {
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
}

.menu-designer.hidden {
  display: none;
}

.designer-tools {
  margin-bottom: 16px;
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-section {
  overflow: hidden;
}

.accordion-head {
  width: 100%;
  border: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  color: #fff;
  background: transparent;
  text-align: left;
}

.accordion-head p {
  margin: 0;
  color: rgba(255,255,255,0.62);
}

.accordion-progress {
  min-width: 116px;
  text-align: right;
  color: var(--gold);
  font-weight: 900;
}

.accordion-body {
  display: none;
  padding: 0 20px 20px;
}

.accordion-section.open .accordion-body {
  display: block;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-chip {
  border: 1px solid rgba(200, 169, 106, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.055);
  font-weight: 800;
}

.menu-chip.selected {
  color: #20190b;
  background: var(--gold);
  border-color: var(--gold);
}

.menu-chip:disabled:not(.selected) {
  opacity: 0.38;
  cursor: not-allowed;
}

.menu-subtitle {
  width: 100%;
  margin: 14px 0 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.review-card {
  padding: 22px;
}

.notes-field {
  margin-bottom: 18px;
}

.checkout-actions,
.wizard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wizard-actions {
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 169, 106, 0.18);
}

.wizard-summary {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 26px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3,31,26,0.84), rgba(3,31,26,0.68)),
    url("banquetimages/table1.webp") center/cover;
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.wizard-summary dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.wizard-summary dt {
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wizard-summary dd {
  margin: -8px 0 0;
  color: #fff;
  font-weight: 800;
}

.summary-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}

.summary-meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 240ms ease;
}

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

.final-cta {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(70px, 10vw, 150px) 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(6, 35, 31, 0.42), rgba(6, 35, 31, 0.88)),
    url("banquetimages/lux%20entry.webp") center/cover;
}

.final-cta h2 {
  width: min(980px, 100%);
  color: #fff;
  font-size: clamp(36px, 5vw, 76px);
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr 1.1fr;
  gap: 30px;
  padding: 70px clamp(20px, 5vw, 76px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #061714;
}

.footer .brand,
.footer h3 {
  color: #fff;
}

.footer h3 {
  margin-top: 0;
  font-family: var(--serif);
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer .btn {
  width: 100%;
  margin-top: 12px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.lightbox,
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 35, 31, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.lightbox.open,
.booking-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.close-lightbox,
.light-prev,
.light-next,
.close-modal {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 30px;
}

.close-lightbox,
.close-modal {
  top: 22px;
  right: 22px;
}

.light-prev {
  left: 22px;
}

.light-next {
  right: 22px;
}

.booking-modal > div {
  width: min(460px, 100%);
  padding: 36px;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.booking-modal h2 {
  color: var(--emerald-dark);
}

.booking-modal .close-modal {
  color: var(--emerald-dark);
  border-color: var(--line);
  background: #fff;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 90;
  display: none;
  padding: 15px;
  border-radius: 999px;
  color: #20190b;
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(6, 35, 31, 0.2);
  text-align: center;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  clip-path: inset(0 0 18% 0);
  transition: opacity 760ms ease, transform 760ms ease, clip-path 760ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

.ripple-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 620ms ease-out;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.35; }
  50% { transform: translate3d(20px, -38px, 0); opacity: 1; }
}

@keyframes scrollPulse {
  0% { transform: scaleY(0.35); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.35); transform-origin: bottom; opacity: 0.5; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 20px;
    color: #fff;
    background: #031f1a;
    transform: translateY(-110vh);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    min-height: 100svh;
    overflow-y: auto;
    transition: transform 300ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-nav .brand {
    position: relative;
    z-index: 3;
  }

  .site-nav.menu-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-nav.menu-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .about,
  .booking,
  .venue-card,
  .selector-shell,
  .story-scene,
  .story-scene.reverse,
  .transform-stage {
    grid-template-columns: 1fr;
  }

  .story-scene.reverse img,
  .venue-card.reverse img {
    order: 0;
  }

  .venue-card {
    position: relative;
    top: auto !important;
    min-height: auto;
  }

  .venue-card img {
    height: 460px;
  }

  .selector-visual {
    min-height: 560px;
  }

  .experience-grid,
  .package-grid,
  .why-grid,
  .masonry,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .map-frame,
  .direction-panel {
    min-height: 460px;
  }

  .wizard-layout {
    grid-template-columns: 1fr;
  }

  .wizard-summary {
    position: relative;
    top: auto;
  }

  .wizard-progress {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  h1 {
    font-size: clamp(44px, 15vw, 70px);
  }

  h2 {
    font-size: 38px;
  }

  .site-nav {
    padding: 18px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .btn {
    width: 100%;
  }

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

  .stats,
  .experience-grid,
  .package-grid,
  .why-grid,
  .masonry,
  .footer,
  .detail-grid,
  .hall-grid,
  .menu-package-grid,
  .custom-choice,
  .review-panel,
  .instagram .insta-wall,
  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .masonry {
    grid-auto-rows: 280px;
  }

  .floor-plan {
    min-height: 540px;
  }

  .photo-ribbon {
    grid-template-columns: 1fr;
    padding-bottom: 46px;
  }

  .photo-ribbon img,
  .photo-ribbon img:nth-child(2),
  .photo-ribbon img:nth-child(4) {
    height: 280px;
    margin-top: 0;
  }

  .zone {
    font-size: 12px;
  }

  .stage { left: 15%; width: 70%; }
  .dining { left: 10%; width: 58%; }
  .vip { right: 6%; width: 27%; }
  .garden { left: 6%; width: 34%; }
  .parking { right: 6%; width: 34%; }
  .entrance { left: 34%; width: 32%; }
  .bridal { right: 6%; top: 6%; width: 30%; }

  .floor-preview {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    height: 130px;
  }

  .journey-rail {
    grid-template-columns: repeat(6, 72vw);
  }

  .virtual-tour {
    grid-template-columns: 1fr;
    background-attachment: scroll;
  }

  .map-frame,
  .direction-panel {
    min-height: 390px;
  }

  .calendar-grid button,
  .calendar-grid span {
    min-height: 44px;
    font-size: 12px;
  }

  .wizard-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .wizard-layout {
    padding: 16px;
  }

  .hall-card img,
  .menu-tier img {
    height: 210px;
  }

  .footer {
    padding-bottom: 92px;
  }

  .copyright {
    grid-column: auto;
  }

  .mobile-cta {
    display: block;
  }

  .cursor {
    display: none;
  }
}

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

@media (max-width: 860px) {
  body {
    background: var(--emerald-dark);
  }

  .section {
    padding: 72px 18px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.02;
  }

  .site-nav.scrolled {
    background: rgba(3, 31, 26, 0.92);
  }

  .nav-links {
    padding: 110px 28px 40px;
    place-content: center;
    align-content: center;
    text-align: center;
  }

  .nav-links a {
    font-family: var(--serif);
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1;
  }

  .nav-links .book-link {
    width: min(320px, 100%);
    margin: 18px auto 0;
    justify-content: center;
    font-family: var(--sans);
    font-size: 14px;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
    padding-bottom: 72px;
  }

  .hero-video {
    object-position: center;
  }

  .hero-content {
    width: calc(100% - 32px);
    text-align: left;
  }

  h1 {
    font-size: clamp(46px, 16vw, 72px);
    line-height: 0.98;
  }

  .hero-copy {
    margin-left: 0;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .photo-ribbon {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 18px 18px 54px;
    scroll-snap-type: x mandatory;
  }

  .photo-ribbon img {
    flex: 0 0 78vw;
    scroll-snap-align: center;
  }

  .about,
  .selector-shell,
  .story-scene,
  .venue-card,
  .transform-stage,
  .booking {
    gap: 22px;
  }

  .about-media,
  .selector-visual,
  .story-scene img,
  .venue-card img,
  .transform-stage img {
    min-height: auto;
    height: 360px;
  }

  .selector-visual > div {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .selector-list,
  .transform-tabs,
  .guest-rail {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .selector-list button,
  .transform-tabs button,
  .guest-rail span {
    flex: 0 0 76vw;
    scroll-snap-align: center;
  }

  .story-scene {
    min-height: auto;
    padding: 34px 0;
  }

  .story-scene h3 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .venue-card {
    border-radius: 8px;
  }

  .venue-card > div,
  .transform-stage > div {
    padding: 24px;
  }

  .floor-plan {
    min-height: 620px;
  }

  .floor-tooltip {
    left: 18px;
    right: 18px;
    bottom: 160px;
    max-width: none;
    transform: translateY(10px);
  }

  .floor-tooltip.show {
    transform: translateY(0);
  }

  .glass,
  .package-card,
  .testimonial,
  .review-card {
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  }

  .masonry {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    flex: 0 0 82vw;
    height: 380px;
    scroll-snap-align: center;
  }

  .virtual-tour {
    min-height: 560px;
    align-content: end;
  }

  .testimonial-slider {
    gap: 14px;
  }

  .testimonial {
    min-height: 340px;
    padding: 32px 22px;
  }

  .location-layout {
    gap: 16px;
  }

  .map-frame {
    min-height: 420px;
  }

  .direction-panel {
    min-height: auto;
    padding: 26px 20px;
  }

  .direction-route {
    padding: 14px;
    border: 1px solid rgba(200, 169, 106, 0.26);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
  }

  .calendar {
    padding: 16px;
  }

  .calendar-head {
    grid-template-columns: 40px 1fr 40px;
  }

  .calendar-grid,
  .calendar-week {
    gap: 5px;
  }

  .wizard-section {
    padding-inline: 12px;
  }

  .wizard-shell {
    border-radius: 8px;
  }

  .wizard-hero {
    padding: 28px 20px;
    min-height: 360px;
    justify-content: end;
  }

  .wizard-hero h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .wizard-progress {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .wizard-progress button {
    flex: 0 0 230px;
    scroll-snap-align: start;
    min-height: 72px;
  }

  .wizard-layout {
    gap: 18px;
  }

  .wizard-main,
  .wizard-step,
  .menu-designer,
  .accordion-list,
  .accordion-section {
    min-width: 0;
    max-width: 100%;
  }

  .wizard-summary {
    order: -1;
    padding: 20px;
    background:
      linear-gradient(180deg, rgba(3,31,26,0.92), rgba(3,31,26,0.82)),
      url("banquetimages/table1.webp") center/cover;
  }

  .wizard-summary h3 {
    font-size: 34px;
  }

  .wizard-summary dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .wizard-summary dt,
  .wizard-summary dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .step-heading h3 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .menu-package-grid,
  .custom-choice {
    grid-template-columns: 1fr;
  }

  .menu-tier {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .menu-tier img {
    height: 100%;
    min-height: 230px;
  }

  .menu-tier > div {
    padding: 20px;
    min-width: 0;
  }

  .menu-tier h4 {
    font-size: 26px;
  }

  .menu-tier p,
  .included p {
    font-size: 14px;
  }

  .package-facts,
  .feature-list {
    gap: 7px;
  }

  .package-facts span,
  .feature-list span,
  .badge {
    font-size: 11px;
    padding: 6px 9px;
  }

  .designer-tools {
    position: sticky;
    top: 76px;
    z-index: 5;
    margin: 0 -2px 14px;
    padding: 12px;
    border: 1px solid rgba(200, 169, 106, 0.18);
    border-radius: 8px;
    background: rgba(3, 31, 26, 0.94);
    backdrop-filter: blur(14px);
  }

  .accordion-head {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 16px;
  }

  .accordion-head span {
    min-width: 0;
  }

  .accordion-head h4 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .accordion-head p {
    font-size: 13px;
    line-height: 1.55;
  }

  .accordion-progress {
    text-align: left;
    min-width: 0;
  }

  .accordion-body {
    padding: 0 14px 16px;
  }

  .chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .menu-chip {
    width: 100%;
    min-height: 44px;
    padding: 10px 9px;
    border-radius: 8px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
    text-align: center;
    justify-content: center;
  }

  .menu-subtitle {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .checkout-actions .btn,
  .wizard-actions .btn {
    width: 100%;
  }

  .footer {
    gap: 22px;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 21px;
  }

  .site-nav {
    padding-inline: 14px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 62px 14px;
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  .btn {
    min-height: 50px;
    padding-inline: 18px;
  }

  .about-media,
  .selector-visual,
  .story-scene img,
  .venue-card img,
  .transform-stage img {
    height: 310px;
  }

  .experience-grid,
  .package-grid,
  .why-grid,
  .testimonial-slider {
    gap: 12px;
  }

  .package-card::before {
    height: 180px;
  }

  .map-frame {
    min-height: 360px;
  }

  .calendar-grid button,
  .calendar-grid span {
    min-height: 39px;
    border-radius: 6px;
  }

  .wizard-layout {
    padding: 12px;
  }

  .wizard-progress button {
    flex-basis: 205px;
  }

  .wizard-summary {
    padding: 16px;
  }

  .wizard-summary dl {
    grid-template-columns: 1fr;
  }

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

  .menu-tier img {
    height: 185px;
    min-height: 185px;
  }

  .menu-tier > div {
    padding: 17px;
  }

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

  .designer-tools {
    top: 68px;
    padding: 10px;
  }

  .accordion-head {
    padding: 16px 14px;
  }

  .accordion-body {
    padding: 0 12px 14px;
  }
}

@media print {
  body.print-booking-summary {
    background: #fff;
  }

  body.print-booking-summary > *:not(main),
  body.print-booking-summary main > *:not(.wizard-section) {
    display: none !important;
  }

  body.print-booking-summary .wizard-section {
    display: block !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body.print-booking-summary .wizard-shell {
    border: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
  }

  body.print-booking-summary .wizard-hero {
    padding: 24px 0 !important;
    color: #111 !important;
    background: #fff !important;
    border-bottom: 2px solid #c8a96a;
  }

  body.print-booking-summary .wizard-hero h2,
  body.print-booking-summary .wizard-hero p,
  body.print-booking-summary .wizard-summary h3,
  body.print-booking-summary .review-card h4,
  body.print-booking-summary .review-card p,
  body.print-booking-summary .wizard-summary dt,
  body.print-booking-summary .wizard-summary dd {
    color: #111 !important;
  }

  body.print-booking-summary .wizard-progress,
  body.print-booking-summary .wizard-actions,
  body.print-booking-summary .checkout-actions,
  body.print-booking-summary .wizard-step:not([data-step="4"]),
  body.print-booking-summary .wizard-save {
    display: none !important;
  }

  body.print-booking-summary .wizard-layout {
    display: grid !important;
    grid-template-columns: 1fr 280px !important;
    gap: 18px !important;
    padding: 20px 0 !important;
  }

  body.print-booking-summary .wizard-step[data-step="4"] {
    display: block !important;
    color: #111 !important;
  }

  body.print-booking-summary .step-heading h3,
  body.print-booking-summary .step-heading p {
    color: #111 !important;
  }

  body.print-booking-summary .review-panel {
    grid-template-columns: 1fr 1fr !important;
  }

  body.print-booking-summary .review-card,
  body.print-booking-summary .wizard-summary {
    break-inside: avoid;
    border: 1px solid #d8c28a !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  body.print-booking-summary .notes-field,
  body.print-booking-summary .summary-meter {
    display: none !important;
  }
}
