:root {
  --gm-maroon: #B35B66;
  --gm-gold: #D7B26B;
  --gm-black: #0F0B0C;
  --gm-white: #FBF6EE;
  --gm-emerald: #1F3B32;
  --gm-rose: #E9D2C6;
  --gm-shadow: rgba(10, 10, 12, 0.55);
}

* {
  scroll-behavior: smooth;
}

body {
  background-color: var(--gm-black);
  color: var(--gm-white);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(214, 178, 96, 0.12), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(74, 27, 37, 0.5), transparent 48%);
}

::selection {
  background: var(--gm-gold);
  color: #0a0a0c;
}

.section-pad {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-pad::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 178, 96, 0.3), transparent);
  opacity: 0.35;
}

section.bg-gmBlack {
  background-color: var(--gm-black);
  background-image:
    radial-gradient(circle at 20% 15%, rgba(214, 178, 96, 0.15), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(74, 27, 37, 0.55), transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 20%, transparent 20%, transparent 40%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0.04) 60%, transparent 60%, transparent 80%, rgba(255, 255, 255, 0.04) 80%, rgba(255, 255, 255, 0.04) 100%);
  background-size: auto, auto, 320px 320px;
}

section.bg-gmWhite,
footer.bg-gmWhite {
  background-color: var(--gm-white);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(74, 27, 37, 0.08), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(214, 178, 96, 0.12), transparent 50%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
}

.site-footer {
  background: linear-gradient(180deg, #0a0a0c 0%, #0f0f12 100%);
  border-top: 1px solid rgba(214, 178, 96, 0.18);
}

.site-footer::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 178, 96, 0.5), transparent);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

#navbar {
  background: transparent;
}

#navbar::after {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 178, 96, 0.35), transparent);
  opacity: 0.4;
  pointer-events: none;
}

.nav-link {
  color: rgba(249, 246, 241, 0.85);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 178, 96, 0), rgba(214, 178, 96, 0.8));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.text-gmGold {
  color: var(--gm-gold);
}

.nav-link:hover::after,
.nav-link.text-gmGold::after {
  width: 100%;
}

#navbar.nav-scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(214, 178, 96, 0.15);
}

#mobileMenu {
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}

.logo-img {
  width: clamp(120px, 16vw, 180px);
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-base {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}

.logo-split {
  position: relative;
  display: inline-block;
}

.logo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: brightness(0) invert(1);
  clip-path: inset(0 0 0 30%);
}

.brand-meta::after {
  content: '';
  display: block;
  height: 1px;
  width: 72px;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, rgba(214, 178, 96, 0.8), transparent);
}

.hero {
  background-position: center;
  background-size: cover;
  transition: background-image 1s ease-in-out;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(214, 178, 96, 0.25), transparent 40%),
    radial-gradient(circle at 80% 18%, rgba(214, 178, 96, 0.15), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 12%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(214, 178, 96, 0.35);
  box-shadow: 0 0 80px rgba(214, 178, 96, 0.2);
  animation: floatGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 11, 12, 0.92), rgba(179, 91, 102, 0.45), rgba(215, 178, 107, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-panel {
  max-width: 600px;
  padding: 2.2rem 2.4rem;
  border-radius: 2rem;
  background: rgba(15, 11, 12, 0.58);
  border: 1px solid rgba(215, 178, 107, 0.28);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 1.9rem;
  border: 1px solid rgba(215, 178, 107, 0.2);
  pointer-events: none;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.85);
  border: 1px solid rgba(214, 178, 96, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 178, 96, 0.7), transparent);
}

.hero-caption {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(215, 178, 107, 0.85);
}

.hero-chips {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-chip {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 178, 107, 0.45);
  background: rgba(215, 178, 107, 0.18);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gm-gold);
}

#heroDots button {
  border: 1px solid rgba(214, 178, 96, 0.45);
}

.page-hero {
  position: relative;
  background: linear-gradient(120deg, rgba(10, 10, 12, 0.88), rgba(74, 27, 37, 0.8)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(214, 178, 96, 0.18), transparent 60%);
  pointer-events: none;
}

.page-hero::before {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -40%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(214, 178, 96, 0.18);
  opacity: 0.5;
  pointer-events: none;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3dfb2, #d7b26b, #c5903f);
  color: #0a0a0c;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  transition: transform 0.6s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(214, 178, 96, 0.55);
}

.btn-gold:hover::after {
  transform: translateX(260%) skewX(-20deg);
}

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(214, 178, 96, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background-clip: padding-box;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.2);
}

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(circle at top left, rgba(215, 178, 107, 0.25), transparent 35%);
}

.highlight-card h3,
.highlight-card p,
.highlight-card li,
.highlight-card .badge {
  position: relative;
  z-index: 1;
}

.highlight-royal {
  background: linear-gradient(180deg, rgba(19, 5, 7, 0.96), rgba(63, 22, 38, 0.92));
  color: var(--gm-white);
}

.highlight-silver {
  background: linear-gradient(180deg, rgba(251, 246, 238, 0.96), rgba(234, 223, 206, 0.92));
  color: var(--gm-black);
}

.hall-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  gap: 1.5rem;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(215, 178, 107, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hall-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.hall-card-light {
  background: #fbf6ee;
}

.hall-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hall-card-body {
  padding: 1.75rem;
}

.hall-card-tag {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(215, 178, 107, 0.18);
  color: var(--gm-maroon);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hall-card-cta {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gm-gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.highlight-hall-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(215, 178, 107, 0.18);
  color: var(--gm-white);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.badge-silver {
  background: rgba(11, 11, 11, 0.08);
  color: var(--gm-black);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 178, 107, 0.7);
  color: var(--gm-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(215, 178, 107, 0.15);
}

.btn-outline:hover {
  background: var(--gm-gold);
  color: #0a0a0c;
  box-shadow: 0 0 24px rgba(214, 178, 96, 0.35);
}

.icon-circle {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: rgba(215, 178, 107, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gm-maroon);
  font-size: 1.1rem;
  border: 1px solid rgba(215, 178, 107, 0.45);
  box-shadow: inset 0 0 12px rgba(215, 178, 107, 0.2);
}

.glass-card {
  background: rgba(249, 246, 241, 0.08);
  border: 1px solid rgba(215, 178, 107, 0.22);
  border-radius: 1.5rem;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.menu-tabs .tab-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 178, 96, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249, 246, 241, 0.75);
  transition: all 0.3s ease;
  background: rgba(10, 10, 12, 0.4);
  white-space: nowrap;
}

.menu-tabs .tab-btn.active,
.menu-tabs .tab-btn:hover {
  background: var(--gm-gold);
  color: #0a0a0c;
}

.menu-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 1.5rem;
  background: rgba(249, 246, 241, 0.05);
  border: 1px solid rgba(214, 178, 96, 0.22);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 1.1rem;
  border: 1px solid rgba(214, 178, 96, 0.18);
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(214, 178, 96, 0.25);
}

.menu-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.25rem;
}

.menu-desc {
  font-size: 0.85rem;
  color: rgba(249, 246, 241, 0.7);
}

.menu-price {
  font-weight: 600;
  color: var(--gm-gold);
}

.stat-card {
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(74, 27, 37, 0.08);
  border: 1px solid rgba(74, 27, 37, 0.2);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.6rem;
  color: var(--gm-maroon);
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 12, 0.6);
  margin-top: 0.25rem;
}

.image-frame {
  position: relative;
}

.image-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 1rem;
  background: rgba(10, 10, 12, 0.78);
  color: var(--gm-white);
  border: 1px solid rgba(214, 178, 96, 0.35);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.story-media {
  position: relative;
}

.video-frame {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 96, 0.35);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
  background: #0a0a0c;
  aspect-ratio: 4 / 3;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-embed {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.story-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.15), rgba(10, 10, 12, 0.55));
  color: var(--gm-white);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.story-play-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(214, 178, 96, 0.95);
  position: relative;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.story-play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #0a0a0c;
}

.story-play-text {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.video-frame.is-playing .story-play {
  opacity: 0;
  pointer-events: none;
}

.video-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(214, 178, 96, 0.2), transparent 55%);
}

.video-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 0.7rem 1rem;
  border-radius: 0.95rem;
  background: rgba(10, 10, 12, 0.85);
  color: var(--gm-white);
  border: 1px solid rgba(214, 178, 96, 0.35);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

.reel-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 96, 0.25);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  background: #0f0f0f;
  aspect-ratio: 9 / 16;
}

.reel-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reel-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.accent-list {
  display: grid;
  gap: 1rem;
}

.accent-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.accent-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.5rem;
  background: var(--gm-gold);
  box-shadow: 0 0 12px rgba(214, 178, 96, 0.7);
}

.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.detail-card {
  padding: 1.2rem;
  border-radius: 1.2rem;
  background: rgba(214, 178, 96, 0.12);
  border: 1px solid rgba(214, 178, 96, 0.25);
  text-align: center;
}

.detail-number {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.4rem;
  color: var(--gm-maroon);
}

.detail-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 12, 0.6);
}

.story-grid {
  display: grid;
  gap: 1rem;
}

.story-card {
  padding: 1.2rem 1.4rem;
  border-radius: 1.25rem;
  background: rgba(214, 178, 96, 0.12);
  border: 1px solid rgba(214, 178, 96, 0.25);
}

.story-year {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  color: var(--gm-maroon);
}

.story-text {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(10, 10, 12, 0.7);
}

.welcome-grid {
  display: grid;
  gap: 4.5rem;
}

@media (min-width: 992px) {
  .welcome-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.welcome-visual {
  position: relative;
  min-height: 320px;
}

.welcome-image-primary {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.2);
  display: block;
}

.welcome-image-secondary {
  position: absolute;
  bottom: -12%;
  right: -6%;
  width: 55%;
  border-radius: 1.5rem;
  border: 8px solid var(--gm-white);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.welcome-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(15, 11, 12, 0.85);
  color: var(--gm-white);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.menu-category-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(215, 178, 107, 0.28);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 45px rgba(0, 0, 0, 0.25);
}

.menu-category-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(15, 11, 12, 0.75));
  color: var(--gm-white);
  font-family: 'Bodoni Moda', serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-card {
  padding: 1.6rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(249, 246, 241, 0.08);
  border: 1px solid rgba(215, 178, 107, 0.25);
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
}

.event-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  background: rgba(215, 178, 107, 0.25);
  box-shadow: 0 0 18px rgba(215, 178, 107, 0.45);
}

.why-card {
  padding: 1.8rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #fff, #f6efe4);
  border: 1px solid rgba(215, 178, 107, 0.22);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

.why-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 0;
  margin: 0;
}

.why-list li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
  color: rgba(10, 10, 12, 0.7);
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gm-gold);
}

.amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.amenity-chip {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(215, 178, 107, 0.18);
  color: var(--gm-maroon);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(215, 178, 107, 0.3);
}

.capacity-strip {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: rgba(215, 178, 107, 0.14);
  border: 1px solid rgba(215, 178, 107, 0.32);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.capacity-number {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  color: var(--gm-maroon);
}

.capacity-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(10, 10, 12, 0.6);
}

.story-card-dark {
  background: rgba(249, 246, 241, 0.08);
  border-color: rgba(215, 178, 107, 0.22);
}

.story-card-dark .story-year {
  color: var(--gm-gold);
}

.story-card-dark .story-text {
  color: rgba(249, 246, 241, 0.75);
}

.banquet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(214, 178, 96, 0.25);
}

.gallery-img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 45px rgba(0, 0, 0, 0.35);
}

.feature-card {
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #fff, #f6efe4);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(214, 178, 96, 0.2);
}

.concierge-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2.5rem;
  padding: 3rem;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, rgba(233, 210, 198, 0.75), rgba(251, 246, 238, 0.98));
  border: 1px solid rgba(179, 91, 102, 0.2);
  box-shadow: 0 28px 45px rgba(15, 11, 12, 0.12);
}

.concierge-panel::before,
.concierge-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}

.concierge-panel::before {
  top: -140px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(179, 91, 102, 0.45), transparent 70%);
}

.concierge-panel::after {
  bottom: -180px;
  left: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(215, 178, 107, 0.5), transparent 70%);
}

.concierge-content,
.concierge-cta {
  position: relative;
  z-index: 1;
}

.concierge-points {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.concierge-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(179, 91, 102, 0.12);
  box-shadow: 0 16px 26px rgba(15, 11, 12, 0.08);
}

.concierge-icon {
  width: 26px;
  height: 26px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gm-gold), rgba(179, 91, 102, 0.95));
  box-shadow: 0 0 14px rgba(179, 91, 102, 0.35);
  border: 1px solid rgba(179, 91, 102, 0.45);
  flex-shrink: 0;
}

.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.concierge-stats {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.concierge-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(179, 91, 102, 0.75);
}

.concierge-stat-value {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--gm-black);
}

.concierge-cta {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.concierge-cta-card {
  padding: 2rem;
  border-radius: 1.6rem;
  background: #0f0b0c;
  color: var(--gm-white);
  border: 1px solid rgba(215, 178, 107, 0.35);
  box-shadow: 0 24px 40px rgba(15, 11, 12, 0.35);
}

.concierge-cta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(215, 178, 107, 0.85);
}

.concierge-cta-title {
  margin-top: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.concierge-cta-text {
  margin-top: 0.75rem;
  color: rgba(251, 246, 238, 0.78);
}

.concierge-cta-card .btn-outline {
  background: rgba(215, 178, 107, 0.1);
  border-color: rgba(215, 178, 107, 0.5);
}

.concierge-meta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.concierge-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(251, 246, 238, 0.72);
}

.concierge-meta-item span:last-child {
  color: var(--gm-gold);
  font-weight: 600;
}

.concierge-pill {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  background: rgba(179, 91, 102, 0.12);
  color: var(--gm-maroon);
  border: 1px solid rgba(179, 91, 102, 0.25);
}

@media (min-width: 900px) {
  .concierge-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.contact-card {
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #fff, #f7f0e6);
  border: 1px solid rgba(214, 178, 96, 0.25);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.contact-form-card {
  background: linear-gradient(135deg, #fff, #f3e7d6);
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(10, 10, 12, 0.12);
  background: #fefaf4;
  font-size: 0.9rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
  color: rgba(10, 10, 12, 0.45);
}

.form-input:focus {
  outline: none;
  border-color: rgba(214, 178, 96, 0.8);
  box-shadow: 0 0 0 3px rgba(214, 178, 96, 0.2);
}

.testimonial-wrapper {
  position: relative;
  min-height: 220px;
}

.testimonial-card {
  opacity: 0;
  position: absolute;
  inset: 0;
  text-align: center;
  transition: opacity 0.6s ease;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(10, 10, 12, 0.6);
  border: 1px solid rgba(214, 178, 96, 0.2);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
}

.review-stars {
  color: var(--gm-gold);
  letter-spacing: 0.2em;
}

.social-btn {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 12, 0.2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.3s ease, border 0.3s ease;
  background: linear-gradient(135deg, rgba(214, 178, 96, 0.2), rgba(214, 178, 96, 0.08));
}

.social-btn:hover {
  background: rgba(214, 178, 96, 0.25);
  border-color: rgba(214, 178, 96, 0.5);
}

.site-footer .social-btn {
  color: var(--gm-white);
  border-color: rgba(214, 178, 96, 0.4);
  background: transparent;
}

.site-footer .social-btn:hover {
  background: rgba(214, 178, 96, 0.22);
  color: var(--gm-white);
  border-color: rgba(214, 178, 96, 0.8);
}

.footer-cta {
  border-radius: 1.75rem;
  border: 1px solid rgba(214, 178, 96, 0.35);
  background: rgba(15, 15, 18, 0.7);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.footer-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214, 178, 96, 0.2), transparent 60%);
  opacity: 0.8;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: clamp(140px, 24vw, 190px);
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-logo.logo-base {
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
}

.footer-link {
  color: rgba(249, 246, 241, 0.75);
  transition: color 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link:hover {
  color: var(--gm-gold);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(214, 178, 96, 0.16);
  color: var(--gm-white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(214, 178, 96, 0.35);
}

.footer-bottom {
  background: linear-gradient(90deg, transparent, rgba(214, 178, 96, 0.25), transparent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.lightbox.hidden {
  display: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 1.5rem;
  border: 2px solid rgba(214, 178, 96, 0.6);
}

.whatsapp-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  justify-content: flex-end;
}

.whatsapp-toggle {
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fe875, #25d366);
  color: #0a0a0c;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  pointer-events: auto;
}

.whatsapp-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(320px, calc(100vw - 3rem));
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(15, 11, 12, 0.15);
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-header {
  background: #0f0b0c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.whatsapp-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-title {
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}

.whatsapp-close {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-body {
  padding: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.whatsapp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.whatsapp-greeting {
  font-size: 0.9rem;
  color: rgba(15, 11, 12, 0.7);
}

.whatsapp-input {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 11, 12, 0.15);
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  resize: vertical;
}

.whatsapp-input:focus {
  outline: none;
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.whatsapp-send {
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fe875, #25d366);
  color: #0a0a0c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.whatsapp-send:hover {
  transform: translateY(-2px);
}

.whatsapp-copy {
  border: 1px solid rgba(15, 11, 12, 0.15);
  background: #fff;
  color: #0a0a0c;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whatsapp-status {
  font-size: 0.75rem;
  color: rgba(15, 11, 12, 0.6);
}

@media (max-width: 640px) {
  .whatsapp-widget {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-toggle {
    padding: 0.65rem 1.2rem;
    font-size: 0.75rem;
  }
}

.loader {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(214, 178, 96, 0.3);
  border-top-color: var(--gm-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.video-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 96, 0.25);
  background: #0f0f0f;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.video-card video {
  width: 100%;
  height: 100%;
  display: block;
}

.file-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(214, 178, 96, 0.25);
  padding: 1.5rem;
  background: rgba(249, 246, 241, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.package-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.package-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(242, 232, 217, 0.9));
  border: 1px solid rgba(214, 178, 96, 0.3);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.package-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: rgba(214, 178, 96, 0.2);
  color: var(--gm-maroon);
}

.package-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(10, 10, 12, 0.55);
}

.package-empty {
  font-size: 0.85rem;
  color: rgba(10, 10, 12, 0.6);
}

.dish-card {
  border-radius: 1.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(214, 178, 96, 0.25);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dish-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.dish-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dish-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(214, 178, 96, 0.18);
  color: var(--gm-maroon);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-self: flex-start;
}

.admin-shell {
  background: #f5f1ea;
  min-height: 100vh;
}

.admin-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  border: 1px solid rgba(214, 178, 96, 0.18);
}

.admin-input {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(10, 10, 12, 0.15);
  background: #fff;
  font-size: 0.9rem;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--gm-maroon);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.table-basic {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-basic th,
.table-basic td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatGlow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .hero::after {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 3.75rem 0;
  }

  .hero-panel {
    padding: 1.4rem 1.5rem;
  }

  .hero-brand {
    flex-wrap: wrap;
  }

  .hero-logo {
    width: 44px;
    height: 44px;
  }

  #heroDots {
    justify-content: center;
  }

  .menu-tabs {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .menu-tabs::-webkit-scrollbar {
    height: 6px;
  }

  .menu-tabs::-webkit-scrollbar-thumb {
    background: rgba(214, 178, 96, 0.4);
    border-radius: 999px;
  }

  .gallery-img {
    height: 200px;
  }

  .footer-cta {
    padding: 1.5rem;
  }

  .image-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .package-card {
    padding: 1.5rem;
  }

  .video-frame {
    aspect-ratio: 16 / 10;
  }

  .dish-img {
    height: 200px;
  }

  .concierge-panel {
    padding: 2rem;
  }

  .welcome-image-secondary {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 1rem;
    border-width: 0;
  }

  .capacity-strip {
    padding: 1.2rem;
  }
}
