/* Meeraan Banquets — site styles (linked from index.html) */

:root {
  --gold: #D4AF37;
  --gold-light: #E8CC6A;
  --gold-dark: #A8891C;
  --burgundy: #3B0A0A;
  --burgundy-mid: #5C1414;
  --ivory: #F8F4EC;
  --ivory-dim: #EDE8DC;
  --black: #111111;
  --black-mid: #1A1A1A;
  --black-soft: #222222;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --transition: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --lux-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --lux-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --lux-glow: 0 0 56px rgba(212, 175, 55, 0.09);
  /* Card systems */
  --shadow-pricing: 0 28px 72px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(212, 175, 55, 0.12), 0 0 100px rgba(212, 175, 55, 0.06);
  --shadow-pricing-hover: 0 40px 96px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(232, 204, 106, 0.22), 0 0 120px rgba(212, 175, 55, 0.1);
  --shadow-gallery: 0 20px 50px rgba(0, 0, 0, 0.4);
  /* Fixed nav clearance for in-page anchors (#services, #visit-thane, etc.) */
  --nav-scroll-padding: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4.25rem));
  /* Layout: ≤819px phone & iPad mini · 820px+ iPad Air/Pro & desktop nav */
  --bp-compact-max: 819px;
  --bp-tablet-min: 820px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-scroll-padding);
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) {
  body { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { transform: translate(-50%, -50%) scale(2); }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #1a1010 0%, var(--black) 45%);
  z-index: 10000;
  display: grid;
  justify-items: center;
  align-content: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 0 max(20px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
#loader::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 120%, rgba(212,175,55,0.06) 0%, transparent 55%);
}
.loader-logo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  padding-left: 0.22em;
  box-sizing: border-box;
  justify-self: center;
  opacity: 0;
  animation: loaderFadeIn 0.8s 0.3s forwards;
}
.loader-bar-wrap {
  width: min(200px, 72vw);
  height: 1px;
  background: rgba(212,175,55,0.2);
  overflow: hidden;
  margin: 0 auto;
  justify-self: center;
  flex-shrink: 0;
}
.loader-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center center;
  animation: loaderBar 1.8s 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.loader-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 2.8vw, 0.7rem);
  color: rgba(212,175,55,0.5);
  text-transform: uppercase;
  text-align: center;
  width: auto;
  max-width: min(94vw, 22rem);
  margin: 0 auto;
  justify-self: center;
  box-sizing: border-box;
  opacity: 0;
  animation: loaderFadeIn 0.8s 0.6s forwards;
}
.loader-tagline-line {
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin: 0;
  padding: 0;
}

@media (max-width: 819px) {
  #loader {
    gap: 20px;
    padding-inline: max(16px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .loader-logo {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    letter-spacing: 0.14em;
    padding-left: 0.14em;
    max-width: 100%;
  }
  .loader-bar-wrap {
    width: min(168px, 58vw);
  }
  .loader-tagline {
    max-width: min(92vw, 18rem);
  }
  .loader-tagline-line {
    letter-spacing: 0.06em;
    font-size: clamp(0.58rem, 2.6vw, 0.65rem);
  }
}
@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderBar { to { transform: scaleX(1); } }
@keyframes luxuryPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.85; }
}

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9990;
  transition: width 0.1s;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.55s var(--ease-out-expo), padding 0.5s var(--ease-out-expo), backdrop-filter 0.55s, box-shadow 0.55s, border-color 0.55s;
}
nav.scrolled {
  background: rgba(10, 5, 5, 0.72);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  padding: 14px 5%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35), 0 0 1px rgba(212,175,55,0.15);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--ivory); font-weight: 300; }
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(248,244,236,0.75);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a[aria-current="page"] {
  color: var(--gold);
}
.nav-links a[aria-current="page"]::after {
  width: 100%;
}
.nav-sub-trigger.is-active {
  color: var(--gold);
}
.nav-sub-trigger.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}
.nav-sub a[aria-current="page"] {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 26px; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* iPad Air / Pro portrait & small laptops: full nav, tighter so it fits ~820–1099px */
@media (min-width: 820px) and (max-width: 1099px) {
  nav { padding: 16px clamp(16px, 3.5vw, 40px); }
  .nav-logo {
    font-size: clamp(1.1rem, 2.4vw, 1.35rem);
    letter-spacing: 0.08em;
  }
  .nav-links { gap: clamp(10px, 1.6vw, 22px); }
  .nav-links a,
  .nav-sub-trigger {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
  .nav-cta {
    padding: 9px 16px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    flex-shrink: 0;
  }
  .nav-sub { min-width: 240px; }
}

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  background: rgba(17, 10, 10, 0.97);
}
.mobile-menu.open {
  opacity: 1; pointer-events: all; visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a[aria-current="page"] {
  color: var(--gold);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(17,10,10,0.65) 0%, rgba(59,10,10,0.55) 50%, rgba(17,10,10,0.85) 100%),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.1);
  transition: transform 12s ease;
  z-index: 0;
}
.hero-bg.loaded { transform: scale(1); }

#particles-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}
#hero:not(.ready) .hero-badge,
#hero:not(.ready) .hero-title,
#hero:not(.ready) .hero-sub,
#hero:not(.ready) .hero-btns,
#hero:not(.ready) .scroll-indicator {
  opacity: 0;
}
#hero:not(.ready) .hero-badge,
#hero:not(.ready) .hero-title,
#hero:not(.ready) .hero-sub,
#hero:not(.ready) .hero-btns {
  transform: translateY(30px);
}
#hero.ready .hero-badge { animation: fadeUp 0.85s 0.05s forwards; }
#hero.ready .hero-title { animation: fadeUp 1s 0.15s forwards; }
#hero.ready .hero-sub { animation: fadeUp 0.9s 0.3s forwards; }
#hero.ready .hero-btns { animation: fadeUp 0.9s 0.45s forwards; }
#hero.ready .scroll-indicator { animation: fadeIn 0.7s 0.65s forwards; }
@media (prefers-reduced-motion: reduce) {
  #hero .hero-badge,
  #hero .hero-title,
  #hero .hero-sub,
  #hero .hero-btns,
  #hero .scroll-indicator {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.45);
  padding: 8px 22px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(248,244,236,0.72);
  letter-spacing: 0.12em;
  margin-bottom: 48px;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.28), 0 0 48px rgba(212, 175, 55, 0.08);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(248,244,236,0.4);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(248,244,236,0.4); font-family: var(--font-sans);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s 2s infinite;
}
@keyframes scrollDrop {
  0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ─── DIVIDER ─── */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
  margin: 0 auto;
}
.ornament {
  text-align: center; padding: 40px 0 20px;
  color: var(--gold); font-size: 1.2rem; opacity: 0.5;
}

/* ─── SECTION COMMON ─── */
section {
  padding: clamp(80px, 10vw, 132px) 5%;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.92);
  margin-bottom: 14px;
  display: block;
  font-weight: 400;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.8vw, 3.75rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ivory);
  letter-spacing: -0.015em;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }

/* Section rhythm: alternate spacious vs compact without changing DOM structure */
#about {
  padding: clamp(96px, 11vw, 152px) 5%;
}
#highlights {
  padding: clamp(72px, 8.5vw, 112px) 5%;
}
#catering-packages {
  padding: clamp(96px, 10vw, 148px) 5%;
}
#gallery {
  padding: clamp(100px, 12vw, 168px) 5%;
}
#why {
  padding: clamp(88px, 9.5vw, 128px) 5%;
}
body:not(.page-inner) #testimonials {
  padding: clamp(104px, 12vw, 168px) 5%;
}
#visit-thane {
  padding: clamp(68px, 7.5vw, 104px) 5%;
}
#contact {
  padding: clamp(112px, 13vw, 188px) 5%;
  position: relative;
  background: linear-gradient(180deg, var(--black-mid) 0%, #0f0c0c 48%, var(--black-mid) 100%);
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 55%);
}
#contact .contact-wrap {
  position: relative;
  z-index: 1;
}

/* ─── ABOUT ─── */
#about { background: var(--black-mid); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-img-wrap {
  position: relative;
  clip-path: inset(0 round 2px);
}
.about-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }
.about-img-frame {
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid rgba(212,175,55,0.3);
  pointer-events: none;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(248,244,236,0.65);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-text p strong { color: var(--gold); font-weight: 500; }
.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 36px);
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}
.counter-item { text-align: center; }
.counter-num {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 2.85rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: 0.02em;
}
.counter-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.38);
  margin-top: 10px;
  display: block;
  font-weight: 400;
}

/* ─── HIGHLIGHTS ─── */
#highlights { background: var(--black); }
.highlights-header { text-align: center; max-width: 640px; margin: 0 auto clamp(48px, 6vw, 64px); }
.highlights-header .section-title { margin-top: 0; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  border: none;
}
@media (min-width: 1200px) {
  .highlights-grid .highlight-card:nth-child(9) {
    grid-column: 2 / span 2;
  }
}
@media (min-width: 820px) and (max-width: 1199px) {
  .highlights-grid .highlight-card:nth-child(9) {
    grid-column: 1 / -1;
    max-width: 640px;
    margin-inline: auto;
  }
}
.highlight-card {
  background: rgba(26, 26, 26, 0.35);
  padding: clamp(32px, 3.5vw, 42px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  transition:
    background 0.45s var(--ease-luxury),
    transform 0.5s var(--ease-luxury),
    border-color 0.45s var(--ease-luxury);
  position: relative;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(212, 175, 55, 0.07);
  border-radius: 2px;
}
.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
  transition: width 0.5s var(--ease-luxury);
}
.highlight-card::after { display: none; }
.highlight-card:hover::before { width: 100%; }
.highlight-card:hover {
  background: rgba(34, 34, 34, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(212, 175, 55, 0.14);
}
.highlight-icon {
  font-size: 1.65rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
  filter: saturate(0.95);
}
.highlight-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.highlight-desc {
  font-size: 0.8rem;
  color: rgba(248, 244, 236, 0.48);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── CATERING PACKAGES (homepage) ─── */
#catering-packages {
  background: linear-gradient(180deg, var(--black) 0%, #14100c 45%, var(--black-mid) 100%);
  position: relative;
  overflow-x: hidden;
}
#catering-packages::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 900px);
  height: min(90vw, 900px);
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.catering-packages-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(44px, 5.5vw, 68px);
  position: relative;
  z-index: 1;
}
.catering-packages-lead {
  margin-top: 22px;
  font-size: 0.92rem;
  line-height: 1.82;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.5);
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}
.catering-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1.14fr 1fr;
  gap: clamp(18px, 2.2vw, 26px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}
.catering-package-card {
  position: relative;
  padding: clamp(30px, 3.6vw, 44px) clamp(24px, 3.2vw, 34px);
  border-radius: 3px;
  background: linear-gradient(
    158deg,
    rgba(255, 248, 240, 0.07) 0%,
    rgba(20, 17, 14, 0.94) 40%,
    rgba(8, 7, 6, 0.98) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: var(--shadow-pricing);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.55s var(--ease-luxury),
    box-shadow 0.55s var(--ease-luxury),
    border-color 0.45s var(--ease-luxury);
  isolation: isolate;
}
.catering-package-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse 85% 70% at 50% 0%, rgba(212, 175, 55, 0.14) 0%, transparent 62%);
  opacity: 0.55;
}
.catering-package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: var(--shadow-pricing-hover);
}
.catering-package--featured {
  transform: scale(1.035);
  z-index: 2;
  border-color: rgba(232, 204, 106, 0.42);
  background: linear-gradient(
    168deg,
    rgba(212, 175, 55, 0.14) 0%,
    rgba(28, 22, 16, 0.96) 44%,
    rgba(10, 8, 6, 0.99) 100%
  );
  box-shadow:
    0 36px 88px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(232, 204, 106, 0.22),
    0 0 140px rgba(212, 175, 55, 0.11),
    inset 0 1px 0 rgba(232, 204, 106, 0.2);
}
.catering-package--featured::before {
  opacity: 0.85;
  background: radial-gradient(ellipse 90% 65% at 50% -5%, rgba(232, 204, 106, 0.22) 0%, transparent 58%);
}
.catering-package--featured:hover {
  transform: scale(1.035) translateY(-10px);
  border-color: rgba(232, 204, 106, 0.55);
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.66),
    0 0 0 1px rgba(232, 204, 106, 0.28),
    0 0 160px rgba(212, 175, 55, 0.14),
    inset 0 1px 0 rgba(232, 204, 106, 0.26);
}
.catering-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(105deg, var(--gold-light), var(--gold));
  padding: 9px 22px;
  white-space: nowrap;
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.32);
  z-index: 3;
}
.catering-tier-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 204, 106, 0.78);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.catering-package-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.35vw, 1.9rem);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.catering-package-desc {
  font-size: 0.8rem;
  line-height: 1.72;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.5);
  margin-bottom: 24px;
}
.catering-price-block {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}
.catering-price {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.65vw, 2.15rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  line-height: 1.15;
}
.catering-price-note {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.38);
  margin-top: 8px;
}
.catering-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 14px;
  margin-bottom: 22px;
}
.catering-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
  padding: 11px 12px 11px 13px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 2px;
  transition: border-color 0.4s var(--ease-luxury), background 0.4s var(--ease-luxury);
}
.catering-package-card:hover .catering-stat {
  border-color: rgba(212, 175, 55, 0.12);
  background: rgba(0, 0, 0, 0.3);
}
.catering-stat--wide {
  grid-column: 1 / -1;
}
.catering-stat-ico {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 2px;
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.88;
}
.catering-stat-val {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ivory);
  line-height: 1;
}
.catering-stat-lbl {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.42);
  line-height: 1.35;
}
.catering-features {
  list-style: none;
  margin-bottom: 18px;
}
.catering-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.58);
  line-height: 1.5;
}
.catering-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.28);
}
.catering-acc {
  margin-bottom: 22px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: border-color 0.35s;
}
.catering-package-card:hover .catering-acc {
  border-color: rgba(212, 175, 55, 0.22);
}
.catering-acc-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.72);
  transition: color 0.3s, background 0.3s;
}
.catering-acc-summary::-webkit-details-marker {
  display: none;
}
.catering-acc-summary:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
}
.catering-acc-chevron {
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease-out-expo);
  flex-shrink: 0;
  margin-top: -4px;
}
.catering-acc[open] .catering-acc-chevron {
  transform: rotate(225deg);
  margin-top: 4px;
}
.catering-acc-body {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}
.catering-menu-group {
  padding: 14px 0;
  border-bottom: 1px solid rgba(248, 244, 236, 0.06);
}
.catering-menu-group:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}
.catering-menu-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.catering-menu-items {
  font-size: 0.78rem;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.48);
}
.catering-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}
.catering-card-ctas .btn-primary,
.catering-card-ctas .btn-outline {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 14px 20px;
  font-size: 0.72rem;
}

@media (min-width: 1101px) {
  .catering-package--featured .catering-acc {
    margin-top: clamp(22px, 2.6vw, 40px);
  }
}

@media (max-width: 1100px) {
  .catering-packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .catering-package--silver {
    order: 3;
  }
  .catering-package--gold {
    order: 1;
  }
  .catering-package--platinum {
    order: 2;
  }
  .catering-package-card {
    transform: none;
  }
  .catering-package-card:hover {
    transform: translateY(-6px);
  }
  .catering-package--featured {
    transform: none;
  }
  .catering-package--featured:hover {
    transform: translateY(-6px);
  }
}

/* iPad Air / Pro: two-column packages instead of one narrow stack */
@media (min-width: 820px) and (max-width: 1100px) {
  .catering-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    gap: clamp(14px, 2.5vw, 22px);
  }
  .catering-package--gold {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .catering-package--silver {
    order: 2;
  }
  .catering-package--platinum {
    order: 3;
  }
}

@media (min-width: 1101px) {
  .catering-package-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}

/* ─── AVAILABILITY & BOOKING CALENDAR (homepage) ─── */
.booking-availability {
  position: relative;
  overflow-x: hidden;
  padding: clamp(72px, 10vw, 120px) 5%;
  background: linear-gradient(180deg, #14100c 0%, var(--black) 42%, var(--black-mid) 100%);
}
.booking-availability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(212, 175, 55, 0.09) 0%, transparent 58%);
  pointer-events: none;
}
.booking-availability-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  position: relative;
  z-index: 1;
}
.booking-availability-lead {
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.55);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.booking-availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}
.booking-availability-calendar-wrap,
.booking-availability-details-wrap {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.luxury-cal {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 4px;
  background: linear-gradient(
    150deg,
    rgba(255, 248, 240, 0.055) 0%,
    rgba(17, 14, 12, 0.9) 40%,
    rgba(10, 9, 8, 0.95) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 248, 236, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  isolation: isolate;
}
.luxury-cal::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(110% 75% at 15% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 58%);
  opacity: 0.75;
  z-index: -1;
}
.luxury-cal::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent 50%, rgba(0, 0, 0, 0.15));
  opacity: 0.35;
  z-index: -1;
}

.luxury-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 28px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.luxury-cal-month {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.04em;
  text-align: center;
  flex: 1;
}
.luxury-cal-nav-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 236, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold);
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out-expo),
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.25s var(--ease-out-expo);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.06);
}
.luxury-cal-nav-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(232, 204, 106, 0.38);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 248, 236, 0.06);
  transform: translateY(-1px);
}
.luxury-cal-nav-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.luxury-cal-nav-icon {
  display: block;
  width: 9px;
  height: 9px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 3px;
}
.luxury-cal-nav-icon--next {
  transform: rotate(-135deg);
  margin-left: -3px;
}

.luxury-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.35);
  text-align: center;
}

.luxury-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.luxury-cal-day {
  position: relative;
  aspect-ratio: 1;
  min-height: 40px;
  max-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(248, 244, 236, 0.82);
  background: rgba(255, 248, 236, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.32);
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out-expo),
    border-color 0.35s,
    box-shadow 0.35s,
    color 0.25s,
    opacity 0.25s,
    transform 0.25s var(--ease-out-expo);
  border-radius: 6px;
  padding: 0;
}
.luxury-cal-day:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(212, 175, 55, 0.12);
  border-color: rgba(232, 204, 106, 0.45);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-1px);
}
.luxury-cal-day:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
  z-index: 1;
}
.luxury-cal-day:active {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.luxury-cal-day--available {
  background: rgba(17, 14, 12, 0.75);
  border-color: rgba(212, 175, 55, 0.3);
}
.luxury-cal-day--limited {
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.28), rgba(92, 60, 20, 0.42));
  border-color: rgba(232, 204, 106, 0.4);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.08);
  color: var(--ivory);
}
.luxury-cal-day--reserved {
  background: linear-gradient(145deg, rgba(59, 10, 10, 0.55), rgba(26, 18, 14, 0.92));
  border-color: rgba(139, 90, 43, 0.35);
  color: rgba(248, 244, 236, 0.42);
  opacity: 0.88;
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.05);
}
.luxury-cal-day--reserved:hover {
  box-shadow: 0 0 18px rgba(92, 20, 20, 0.25);
  border-color: rgba(168, 137, 28, 0.3);
}
.luxury-cal-day--today:not(.luxury-cal-day--selected) {
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.12);
}
.luxury-cal-day--selected {
  box-shadow:
    0 0 0 2px var(--gold),
    0 0 28px rgba(212, 175, 55, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.42);
  border-color: rgba(232, 204, 106, 0.85);
  color: var(--ivory);
  z-index: 1;
  animation: luxurySelectedPulse 0.55s var(--ease-out-expo) both;
}
.luxury-cal-day--selected:hover {
  transform: translateY(-1px);
}
@keyframes luxurySelectedPulse {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-1px) scale(1.015); }
  100% { transform: translateY(0) scale(1); }
}
.luxury-cal-day--selected.luxury-cal-day--limited {
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.38), rgba(92, 60, 20, 0.5));
}
.luxury-cal-day--selected.luxury-cal-day--reserved {
  opacity: 1;
  color: rgba(248, 244, 236, 0.78);
}
.luxury-cal-day--empty {
  visibility: hidden;
  pointer-events: none;
  border: none;
  background: transparent;
}

.luxury-cal-demo-note {
  margin-top: clamp(18px, 2.5vw, 24px);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.35);
  line-height: 1.65;
  font-weight: 300;
  text-align: center;
}
.luxury-cal-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.4);
}
.luxury-cal-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.luxury-cal-legend-swatch {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}
.luxury-cal-legend-swatch--available {
  background: rgba(17, 14, 12, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.luxury-cal-legend-swatch--limited {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(92, 60, 20, 0.45));
  border: 1px solid rgba(232, 204, 106, 0.35);
}
.luxury-cal-legend-swatch--reserved {
  background: linear-gradient(145deg, rgba(59, 10, 10, 0.7), rgba(26, 18, 14, 0.95));
  border: 1px solid rgba(139, 90, 43, 0.35);
  opacity: 0.85;
}

.booking-detail-card {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 4px;
  background: linear-gradient(
    165deg,
    rgba(255, 248, 240, 0.045) 0%,
    rgba(22, 18, 16, 0.82) 48%,
    rgba(10, 9, 8, 0.94) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 248, 236, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 100%;
  position: relative;
  isolation: isolate;
}
.booking-detail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(100% 80% at 0% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 55%);
  opacity: 0.65;
  z-index: -1;
}
.booking-detail-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.65);
  margin-bottom: 10px;
}
.booking-detail-eyebrow--sub {
  margin-top: 28px;
  color: rgba(248, 244, 236, 0.4);
}
.booking-detail-date {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.booking-slot-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.4s ease-out;
}
.booking-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 6px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s var(--ease-out-expo), background 0.35s;
}
.booking-slot:hover {
  border-color: rgba(212, 175, 55, 0.18);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.26);
}
.booking-slot-label {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.78);
}
.booking-slot-status {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.booking-slot-status--open {
  color: rgba(232, 204, 106, 0.85);
}
.booking-slot-status--booked {
  color: rgba(248, 244, 236, 0.38);
}
.booking-detail-notes {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  transition: opacity 0.4s ease-out;
}
.booking-detail-notes-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.38);
  margin-bottom: 10px;
}
.booking-detail-notes-text {
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.52);
}
.booking-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.booking-detail-actions .btn-primary,
.booking-detail-actions .btn-outline {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 14px 22px;
  font-size: 0.72rem;
}

@media (max-width: 819px) {
  .booking-availability {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
  .booking-availability-layout {
    grid-template-columns: 1fr;
  }
  .booking-availability-details-wrap {
    order: 2;
  }
  .booking-availability-calendar-wrap {
    order: 1;
  }
  .luxury-cal-day {
    max-height: none;
    min-height: 0;
  }
  .luxury-cal {
    padding: 16px 12px;
  }
  .luxury-cal-month {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  }
  .luxury-cal-nav-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .luxury-cal-weekdays {
    gap: clamp(3px, 1.1vw, 6px);
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }
  .luxury-cal-grid {
    gap: clamp(3px, 1.1vw, 6px);
  }
  .luxury-cal-day {
    font-size: clamp(0.68rem, 2.8vw, 0.76rem);
    border-radius: 4px;
  }
  .luxury-cal-demo-note {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0 4px;
  }
  .luxury-cal-legend {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
    justify-items: center;
    width: 100%;
    max-width: 100%;
  }
  .luxury-cal-legend li {
    justify-content: center;
    text-align: center;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
  .booking-detail-card {
    padding: 26px;
  }
  .counters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 10px;
  }
  .counter-label {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 380px) {
  .luxury-cal {
    padding: 14px 8px;
  }
  .luxury-cal-weekdays {
    font-size: 0.48rem;
    letter-spacing: 0.04em;
    gap: 3px;
  }
  .luxury-cal-grid {
    gap: 3px;
  }
  .luxury-cal-day {
    font-size: 0.65rem;
  }
  .luxury-cal-legend {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .counters {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .luxury-cal-day,
  .luxury-cal-nav-btn,
  .booking-slot {
    transition: none;
  }
  .luxury-cal-nav-btn:hover,
  .luxury-cal-day:hover {
    transform: none;
  }
}

/* ─── GALLERY ─── */
#gallery { background: var(--black-mid); }
.gallery-header { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 56px); }
.gallery-archive-link {
  margin-top: 22px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
}
.gallery-archive-link a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.gallery-archive-link a:hover {
  color: var(--ivory);
  border-color: rgba(248,244,236,0.35);
}
.gallery-filters {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 50px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: rgba(248,244,236,0.5);
  font-family: var(--font-sans);
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 9px 22px;
  cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--black);
}
/* Homepage gallery: fixed 12-slot matrix — 2×6 phone, 3×4 tablet, 4×3 laptop+ */
#gallery .gallery-grid--matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 14px);
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 820px) {
  #gallery .gallery-grid--matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  #gallery .gallery-grid--matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
}
#gallery .gallery-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  min-width: 0;
  border-radius: 1px;
  overflow: hidden;
}
#gallery .gallery-slot--empty {
  background: rgba(248, 244, 236, 0.025);
  border: 1px dashed rgba(212, 175, 55, 0.18);
  box-shadow: none;
  pointer-events: none;
}
/* Category filter: drop fixed rows — visible tiles pack left */
#gallery .gallery-grid--matrix.gallery-grid--filtering {
  grid-template-rows: none;
  grid-auto-rows: auto;
  grid-auto-flow: row dense;
}
#gallery .gallery-grid--filtering .gallery-slot--filtered,
#gallery .gallery-grid--filtering .gallery-slot--empty,
#gallery .gallery-grid--filtering .gallery-slot[hidden] {
  display: none !important;
}
#gallery .gallery-slot .gallery-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  margin: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 1px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-gallery);
  border: none;
  transition:
    opacity 0.35s var(--ease-luxury),
    transform 0.35s var(--ease-luxury),
    box-shadow 0.55s var(--ease-luxury);
}
.gallery-filter-empty {
  text-align: center;
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(248, 244, 236, 0.5);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.gallery-filter-empty a,
.gallery-filter-reset {
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gallery-filter-empty a:hover,
.gallery-filter-reset:hover {
  color: var(--ivory);
}
.gallery-item.reveal {
  opacity: 1;
  transform: none;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s var(--ease-luxury), filter 0.55s var(--ease-luxury);
}
.gallery-item--video { cursor: pointer; }
.gallery-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(4, 2, 2, 0.55);
  border: 2px solid rgba(212, 175, 55, 0.85);
  pointer-events: none;
  z-index: 2;
}
.gallery-play-badge::after {
  content: '';
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--gold);
}
.gallery-item:hover {
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
  filter: brightness(1.04) contrast(1.02);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    195deg,
    transparent 0%,
    rgba(17, 10, 10, 0.08) 42%,
    rgba(10, 6, 6, 0.72) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18%;
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: var(--font-sans);
  color: rgba(248, 244, 236, 0.92);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform 0.5s var(--ease-luxury), color 0.35s;
}
.gallery-item:hover .gallery-item-overlay span {
  transform: translateY(0);
  color: var(--gold-light);
}

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(4, 2, 2, 0.94);
  z-index: 9000;
  display: none; align-items: center; justify-content: center;
  padding: 48px 5%;
}
#lightbox.open { display: flex; }
#lightbox img,
#lightbox video {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--lux-shadow);
}
#lightbox.is-video #lightbox-img { display: none !important; }
#lightbox.is-video #lightbox-video { display: block; }
#lightbox-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.5rem; color: var(--ivory);
  cursor: pointer; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s;
}
#lightbox-close:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ─── SERVICES ─── */
#services.mrn-services {
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 100px) clamp(20px, 4vw, 60px);
}

#services.mrn-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(120,30,10,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0,0,0,0.4) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

#services.mrn-services > * { position: relative; z-index: 1; }

/* ── Header ── */
.mrn-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(52px, 6vw, 72px);
}

.mrn-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.mrn-ornament-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5));
}
.mrn-ornament-line.right {
  background: linear-gradient(to left, transparent, rgba(212,175,55,0.5));
}

.mrn-ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.mrn-ornament-dot {
  width: 3px;
  height: 3px;
  background: rgba(212,175,55,0.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.mrn-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.mrn-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ivory);
  margin: 14px 0 0;
  letter-spacing: 0.01em;
}

.mrn-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

/* ── Grid ── */
.mrn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* ── Cards ── */
.mrn-card {
  background: linear-gradient(165deg, rgba(62,16,16,0.38) 0%, rgba(40,6,6,0.75) 100%);
  border: 1px solid rgba(212,175,55,0.09);
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3.2vw, 40px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-luxury),
    box-shadow 0.5s var(--ease-luxury),
    border-color 0.5s var(--ease-luxury),
    background 0.5s var(--ease-luxury);
}

/* Shimmer sweep on hover */
.mrn-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(212,175,55,0.04) 50%, transparent 80%);
  transition: left 0.7s var(--ease-luxury);
  pointer-events: none;
}
.mrn-card:hover::before { left: 140%; }

/* Gold left border reveal */
.mrn-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
  transition: height 0.5s var(--ease-luxury);
}
.mrn-card:hover::after { height: 100%; }

.mrn-card:hover {
  background: rgba(50,10,10,0.9);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.38), 0 0 0 1px rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.2);
}

/* ── Card internals ── */
.mrn-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  font-weight: 300;
  color: rgba(212,175,55,0.17);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  transition: color 0.4s var(--ease-luxury);
}
.mrn-card:hover .mrn-num { color: rgba(212,175,55,0.28); }

.mrn-divider {
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, rgba(212,175,55,0.5), transparent);
  margin-bottom: 16px;
  transition: width 0.5s var(--ease-luxury), background 0.5s var(--ease-luxury);
}
.mrn-card:hover .mrn-divider {
  width: 44px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.mrn-name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: 0.015em;
  line-height: 1.3;
}

.mrn-desc {
  font-size: 0.77rem;
  color: rgba(248,244,236,0.46);
  line-height: 1.78;
  font-weight: 300;
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease-luxury);
}
.mrn-card:hover .mrn-desc { color: rgba(248,244,236,0.58); }

/* Enquire CTA */
.mrn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
  font-family: var(--font-sans);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.mrn-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.mrn-arrow-line {
  width: 18px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}
.mrn-card:hover .mrn-arrow { opacity: 1; transform: translateY(0); }
.mrn-card:hover .mrn-arrow-line { width: 26px; }

/* ─── WHY CHOOSE US ─── */
#why { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  max-width: 1200px;
  margin: clamp(56px, 7vw, 88px) auto 0;
}
.why-card {
  padding: clamp(32px, 3.5vw, 40px) clamp(28px, 3vw, 36px);
  border: 1px solid rgba(212, 175, 55, 0.09);
  border-left: 2px solid rgba(212, 175, 55, 0.22);
  transition:
    border-color 0.45s var(--ease-luxury),
    transform 0.5s var(--ease-luxury),
    background 0.45s var(--ease-luxury);
  position: relative;
  background: rgba(24, 22, 20, 0.35);
  box-shadow: none;
}
.why-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  border-left-color: var(--gold);
  transform: translateY(-3px);
  background: rgba(30, 26, 22, 0.5);
}
.why-card-num {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(212, 175, 55, 0.75);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.why-card-desc {
  font-size: 0.8rem;
  color: rgba(248, 244, 236, 0.52);
  line-height: 1.72;
  font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--black-mid); }
.testimonials-header { text-align: center; max-width: 640px; margin: 0 auto clamp(48px, 6vw, 72px); }
.testimonials-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px);
  border: 1px solid rgba(248, 244, 236, 0.08);
  border-radius: 3px;
  background: linear-gradient(
    165deg,
    rgba(255, 248, 240, 0.04) 0%,
    rgba(22, 20, 18, 0.45) 45%,
    rgba(14, 12, 11, 0.55) 100%
  );
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.04);
}
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 244, 236, 0.94);
  line-height: 1.62;
  text-align: center;
  margin: 0 auto 36px;
  max-width: 38ch;
  position: relative;
  padding-top: 8px;
}
.testimonial-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-style: normal;
  color: rgba(212, 175, 55, 0.35);
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.testimonial-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 28rem;
  margin: 0 auto;
}
.testimonial-author {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ivory);
}
.testimonial-role {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: rgba(248, 244, 236, 0.38);
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.t-nav-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  color: var(--gold);
  font-size: 1rem;
  transition: background 0.35s var(--ease-luxury), color 0.35s, border-color 0.35s, transform 0.35s var(--ease-luxury);
  border-radius: 2px;
}
.t-nav-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}
.t-nav-btn:active { transform: translateY(0); }
.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.t-dot {
  width: 28px;
  height: 2px;
  background: rgba(212, 175, 55, 0.18);
  cursor: pointer;
  transition: background 0.35s var(--ease-luxury), opacity 0.35s;
  border-radius: 1px;
}
.t-dot.active {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 1;
}

/* ─── LOCATION ─── */
#visit-thane { background: var(--black); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.location-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem; color: var(--ivory);
  margin-bottom: 30px; font-weight: 400;
}
.location-detail {
  display: flex; gap: 16px; margin-bottom: 24px;
  align-items: flex-start;
}
.location-icon {
  font-size: 1rem; color: var(--gold);
  margin-top: 2px; flex-shrink: 0;
}
.location-text {
  font-size: 0.88rem; line-height: 1.8;
  color: rgba(248,244,236,0.6); font-weight: 300;
}
.location-text strong { color: var(--ivory); display: block; margin-bottom: 2px; }
.location-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.map-wrap {
  width: 100%; height: 400px;
  border: 1px solid rgba(212,175,55,0.2);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; filter: grayscale(30%) contrast(1.1); }

/* ─── CONTACT (cinematic CTA band — not a generic card) ─── */
.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
#contact .section-label {
  margin-bottom: 12px;
}
#contact .section-title {
  font-size: clamp(2.35rem, 5.2vw, 3.9rem);
  line-height: 1.08;
}
#contact .contact-lead {
  text-align: center;
  color: rgba(248, 244, 236, 0.48);
  font-size: 0.92rem;
  margin-top: 20px;
  line-height: 1.82;
  font-weight: 300;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.contact-form {
  margin-top: clamp(44px, 6vw, 64px);
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(0, 0, 0, 0.22);
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-group label {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.4);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.14);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.35s var(--ease-luxury), background 0.35s var(--ease-luxury);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(255, 255, 255, 0.045);
}
.form-group select option { background: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--gold);
  border: none;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 56px;
  cursor: pointer;
  transition: background 0.35s var(--ease-luxury), transform 0.35s var(--ease-luxury), box-shadow 0.35s var(--ease-luxury);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.22);
}
.form-error { color: #ff6b6b; font-size: 0.75rem; margin-top: 4px; }
.form-status {
  text-align: center;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}
.form-status[data-state="success"] { color: var(--gold-light); }
.form-status[data-state="error"] { color: #ff6b6b; }
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 70px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; max-width: 1200px; margin: 0 auto 60px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem; color: var(--gold);
  letter-spacing: 0.1em; font-weight: 300;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.78rem; color: rgba(248,244,236,0.35);
  font-style: italic; font-family: var(--font-serif);
  margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(212,175,55,0.6); font-size: 0.75rem;
  text-decoration: none; transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-social a svg {
  display: block;
  width: 18px;
  height: 18px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.82rem; color: rgba(248,244,236,0.45);
  text-decoration: none; transition: color 0.3s;
  font-weight: 300;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col p {
  font-size: 0.82rem; color: rgba(248,244,236,0.45);
  line-height: 1.8; font-weight: 300;
}
.footer-col p a {
  color: rgba(248,244,236,0.45);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col p a:hover { color: var(--gold); }

/* Contact block — homepage #contact section only (matches footer text scale) */
.contact-info-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
  font-weight: 400;
}
.contact-info-block .contact-lines p {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(248,244,236,0.45);
  line-height: 1.8;
}
.contact-info-block .contact-lines p:last-child { margin-bottom: 0; }
.contact-info-block .contact-lines a {
  color: rgba(248,244,236,0.45);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.contact-info-block .contact-lines a:hover { color: var(--gold); }
.contact-info-block {
  max-width: 420px;
  margin: 0 auto 44px;
  text-align: left;
}
.contact-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 56px;
    max-width: 960px;
    margin: 0 auto;
  }
  .contact-info-block {
    margin: 0;
  }
}
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(248,244,236,0.25);
  letter-spacing: 0.1em;
}

/* ─── FLOATING: WhatsApp + scroll to top ─── */
.floating-actions {
  position: fixed;
  right: max(24px, env(safe-area-inset-right, 0px) + 16px);
  bottom: max(24px, env(safe-area-inset-bottom, 0px) + 16px);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.whatsapp-float {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}
#scroll-top {
  position: static;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  color: var(--black);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-2px); }

/* ─── PARALLAX SECTION (cinematic rhythm break) ─── */
.parallax-banner {
  height: min(56vh, 620px);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vw, 80px) 5%;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1800&q=75') center/cover no-repeat;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(17, 10, 10, 0.75) 0%,
    rgba(59, 10, 10, 0.55) 45%,
    rgba(10, 8, 8, 0.82) 100%
  );
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(16px, 4vw, 40px);
  max-width: 920px;
}
.parallax-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 4.2vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 244, 236, 0.95);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.parallax-content blockquote em { color: var(--gold); font-style: italic; }

/* ─── REVEAL ANIMATION CLASSES ─── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1; transform: translate(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* ─── RESPONSIVE ─── */
/* ≤1199px: tablet / small laptop density (nav stays full from 820px; see compact nav block above) */
@media (max-width: 1199px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 1.8vw, 14px);
  }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ≤1024px: symmetric horizontal padding + hero width (tablet + phone; avoids uneven safe-area / left-heavy gutters) */
@media (max-width: 1024px) {
  section {
    padding-inline: max(16px, 4vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  nav {
    padding-inline: max(16px, 4vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  nav.scrolled {
    padding-inline: max(14px, 3.5vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .hero-content {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: max(16px, 4vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  #about,
  #highlights,
  #catering-packages,
  #booking-availability,
  #gallery,
  #services.mrn-services,
  #why,
  #testimonials,
  #visit-thane,
  #contact {
    padding-inline: max(16px, 4vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .booking-availability {
    padding-inline: max(16px, 4vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  footer {
    padding-inline: max(16px, 4vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .parallax-banner {
    padding-inline: max(16px, 4vw, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .catering-packages-grid,
  .booking-availability-layout,
  .about-grid,
  .highlights-grid,
  .location-grid,
  .gallery-grid,
  .mrn-grid,
  .why-grid,
  .contact-wrap,
  .testimonials-wrap {
    margin-inline: auto;
  }
}

/* ≤819px: phones & iPad mini — hamburger, single-column highlights, roomier tap targets */
@media (max-width: 819px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .highlights-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(3, 1fr); }
  .testimonials-wrap {
    padding: 32px 22px 40px;
  }
  .testimonial-quote {
    max-width: none;
    font-size: clamp(1.05rem, 4vw, 1.35rem);
  }
  .contact-form {
    padding: 24px 18px;
  }
  .about-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
  }
  .location-info {
    text-align: center;
  }
  .location-info h3 {
    margin-left: auto;
    margin-right: auto;
  }
  .location-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .location-text {
    text-align: center;
  }
  .location-text strong {
    text-align: center;
  }
  .location-btns {
    justify-content: center;
  }
  .mrn-card {
    text-align: center;
  }
  .mrn-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .mrn-arrow {
    justify-content: center;
  }
  .why-card {
    text-align: center;
    border-left-width: 1px;
    border-top: 2px solid rgba(212, 175, 55, 0.22);
  }
  .footer-grid {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col ul {
    align-items: center;
  }
  #contact .form-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 320px;
  }
  #hero {
    min-height: min(100dvh, 900px);
    min-height: min(100svh, 900px);
  }
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

@media (max-width: 480px) {
  #gallery .gallery-grid--matrix {
    gap: 10px;
  }
  .hero-btns { flex-direction: column; align-items: center; }
  .counters { grid-template-columns: 1fr; }
  .location-btns { flex-direction: column; }
}

/* ─── Nav: Events dropdown (homepage + inner pages) ─── */
.nav-item-has-sub {
  position: relative;
}
.nav-sub-trigger {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(248,244,236,0.75);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  transition: color 0.3s;
}
.nav-sub-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.nav-item-has-sub:hover .nav-sub-trigger,
.nav-sub-trigger:hover,
.nav-sub-trigger:focus { color: var(--gold); }
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  background: rgba(12, 8, 8, 0.96);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--lux-shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s var(--ease-out-expo);
  z-index: 1100;
}
.nav-item-has-sub:hover .nav-sub,
.nav-item-has-sub:focus-within .nav-sub,
.nav-item-has-sub.is-open .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(12px);
}
.nav-sub a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(248,244,236,0.75);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-sub a::after { display: none; }
.nav-sub a:hover {
  background: rgba(212,175,55,0.08);
  color: var(--gold);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none !important; opacity: 0.45; }
  .highlight-card,
  .mrn-card,
  .why-card,
  .gallery-item,
  .catering-package-card,
  .gallery-item img {
    transition: none !important;
  }
  .highlight-card:hover,
  .mrn-card:hover,
  .why-card:hover,
  .gallery-item:hover,
  .catering-package-card:hover {
    transform: none !important;
  }
  .gallery-item:hover img {
    transform: none !important;
  }
  .catering-package--featured,
  .catering-package--featured:hover {
    transform: none !important;
  }
}