/* ═══════════════════════════════════════════════════════════════════════
   Vasundhara Palace — Premium Dark Celebration Theme
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --bg-primary:    #120A08;
  --bg-secondary:  #1C110D;
  --bg-card:       #221510;
  --gold:          #D4AF37;
  --champagne:     #F1D9B0;
  --maroon:        #3A0F14;
  --white-90:      rgba(255,255,255,0.90);
  --white-60:      rgba(255,255,255,0.60);
  --white-30:      rgba(255,255,255,0.30);
  --white-10:      rgba(255,255,255,0.10);
  --white-06:      rgba(255,255,255,0.06);
  --gold-muted:    rgba(212,175,55,0.25);
  --gold-border:   rgba(212,175,55,0.35);

  /* Gradients */
  --grad-gold:     linear-gradient(135deg, #D4AF37, #F1D9B0);
  --grad-hero:     radial-gradient(ellipse 120% 80% at 50% 60%, #3A0F14 0%, #120A08 70%);
  --grad-text:     linear-gradient(180deg, #ffffff 0%, #F1D9B0 100%);

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:   clamp(5rem, 10vw, 9rem);

  /* Transitions */
  --ease-smooth:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-primary);
  color: var(--white-60);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Utility ─────────────────────────────────────────────────────── */
.gold { color: var(--gold); }
.muted { color: var(--white-30); }
.d-none-sm { display: inline; }

/* ─── Scroll Reveal ───────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-gold);
  color: #120A08;
  border: none;
  box-shadow: 0 0 24px rgba(212,175,55,0.3), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(212,175,55,0.5), 0 8px 24px rgba(0,0,0,0.5);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-ghost {
  background: transparent;
  color: var(--champagne);
  border: 1px solid var(--gold-border);
}
.btn-ghost:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--champagne);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-arrow {
  transition: transform 0.3s var(--ease-smooth);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ─── Section Commons ──────────────────────────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white-90);
  margin-bottom: 1.25rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading em {
  font-style: italic;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--white-60);
  max-width: 600px;
  margin-bottom: 4rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease-smooth), backdrop-filter 0.5s, box-shadow 0.5s;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(18,10,8,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(212,175,55,0.1), 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--champagne);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.nav-wordmark:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-60);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.25s var(--ease-smooth);
}
.nav-link:hover { color: var(--white-90); }
.nav-link:hover::after { width: calc(100% - 1.75rem); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.3s var(--ease-smooth);
}
.nav-cta:hover {
  background: var(--grad-gold);
  color: #120A08;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--champagne);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: rgba(18,10,8,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--white-06);
}
.nav-mobile.open { display: flex; }

.nav-mobile-link, .nav-mobile-cta {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--white-60);
  text-decoration: none;
  border-bottom: 1px solid var(--white-06);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--champagne); }
.nav-mobile-cta {
  border-bottom: none;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18,10,8,0.30) 0%,
    rgba(18,10,8,0.10) 30%,
    rgba(18,10,8,0.25) 60%,
    rgba(18,10,8,0.90) 100%
  );
}

/* Ambient glow */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 55%, rgba(58,15,20,0.6) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, #D4AF37, transparent);
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px;
  height: 350px;
  background: radial-gradient(circle, #F1D9B0, transparent);
  bottom: 10%;
  right: -8%;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
  max-width: 900px;
}

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.5rem, 8vw, 5rem);
  aspect-ratio: 1;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(241,217,176,0.55);
  border-radius: 50%;
  background: rgba(58,15,20,0.72);
  box-shadow: 0 0 0 0.45rem rgba(212,175,55,0.08), 0 0 38px rgba(212,175,55,0.28), 0 12px 34px rgba(0,0,0,0.42);
  overflow: hidden;
}

.hero-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.hero-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--white-90);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-headline em {
  font-style: italic;
  display: inline;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--champagne);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-services {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-body {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--white-60);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 1.5s forwards;
  transition: opacity 0.5s;
}
.scroll-indicator.hidden { opacity: 0 !important; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-30);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--white-30);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STORY BEATS (Scrollytelling)
   ═══════════════════════════════════════════════════════════════════════ */
.story-section {
  background: var(--bg-secondary);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.story-beat {
  max-width: 1100px;
  margin: 0 auto 8rem;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.story-beat.visible {
  opacity: 1;
  transform: translateY(0);
}
.story-beat:last-child { margin-bottom: 0; }

.story-beat--right {
  justify-content: flex-end;
}

.story-beat-inner {
  max-width: 540px;
  padding: 3rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-06);
  border-radius: 24px;
  position: relative;
  backdrop-filter: blur(4px);
}
.story-beat-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), transparent 60%);
  z-index: -1;
}

.story-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  opacity: 0.8;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white-90);
  margin-bottom: 1.25rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-body {
  font-size: 1.0625rem;
  color: var(--white-60);
  margin-bottom: 0.875rem;
  line-height: 1.75;
}
.story-body:last-child { margin-bottom: 0; }
.story-body strong { color: var(--white-90); font-weight: 500; }

.story-stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-06);
}

.story-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-30);
}

.story-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-10);
}

/* ═══════════════════════════════════════════════════════════════════════
   VENUE SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.venue-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.venue-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(58,15,20,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.venue-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.venue-feature {
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--white-06);
  border-radius: 20px;
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}
.venue-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}
.venue-feature.visible {
  opacity: 1;
  transform: translateY(0);
}
.venue-feature:hover {
  border-color: var(--gold-border);
  background: rgba(34,21,16,0.9);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-border);
}
.venue-feature:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.venue-feature:hover .feature-icon-wrap {
  background: rgba(212,175,55,0.18);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white-90);
  margin-bottom: 0.625rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* Staggered animation */
.venue-feature:nth-child(1) { transition-delay: 0.05s; }
.venue-feature:nth-child(2) { transition-delay: 0.15s; }
.venue-feature:nth-child(3) { transition-delay: 0.25s; }
.venue-feature:nth-child(4) { transition-delay: 0.35s; }

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.pricing-block {
  margin-bottom: 4.5rem;
}
.pricing-block:last-child { margin-bottom: 0; }

.pricing-block-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white-90);
  margin-bottom: 1.75rem;
}
.pricing-note {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white-30);
}

/* Session cards */
.pricing-cards-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 220px;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--white-06);
  border-radius: 20px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), transparent 60%);
  z-index: -1;
}
.pricing-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.pricing-card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pricing-card-duration {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--white-90);
  line-height: 1;
  margin-bottom: 1.25rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-slots {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pricing-slot {
  font-size: 0.9375rem;
  color: var(--white-60);
  padding: 0.5rem 0.875rem;
  background: var(--white-06);
  border-radius: 8px;
}

.pricing-slot-or {
  font-size: 0.75rem;
  color: var(--white-30);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Hall charges table */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--white-06);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table thead th {
  background: rgba(212,175,55,0.08);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--white-06);
}

.pricing-table tbody td {
  padding: 1.125rem 1.5rem;
  color: var(--white-60);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

.pricing-table .highlighted-row td {
  color: var(--champagne);
}

.price-cell { white-space: nowrap; }
.price-amount {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

/* Menu cards */
.menu-cards-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.menu-card {
  flex: 1;
  min-width: 240px;
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--white-06);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}
.menu-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.menu-card--accent {
  border-color: rgba(212,175,55,0.25);
  background: linear-gradient(145deg, #221510, #1C110D);
}
.menu-card--accent::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), transparent 60%);
  z-index: -1;
}

.menu-card-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  background: var(--grad-gold);
  color: #120A08;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
}

.menu-card-cuisine {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.menu-card-price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white-90);
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.menu-card-price span {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white-30);
  -webkit-text-fill-color: var(--white-30);
}

.menu-card-desc {
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.menu-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.menu-card-link:hover { opacity: 0.8; }

.pricing-footnote {
  font-size: 0.875rem;
  color: var(--white-30);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-pad) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 800px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--white-06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white-90);
  font-size: 1.0625rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--champagne); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-smooth);
  display: inline-block;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s;
  padding: 0 1.75rem;
  color: var(--white-60);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq-answer p strong { color: var(--white-90); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.contact-glow {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-desc {
  font-size: 1.0625rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white-60);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease-smooth);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
}
.contact-detail-item:hover {
  color: var(--champagne);
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-border);
  transform: translateX(4px);
}

.contact-detail-item--wa:hover {
  background: rgba(37, 211, 102, 0.05);
  border-color: rgba(37, 211, 102, 0.25);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-detail-item:hover .contact-detail-icon {
  background: rgba(212,175,55,0.18);
  box-shadow: 0 0 16px rgba(212,175,55,0.2);
}

.contact-detail-icon--wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25D366;
}
.contact-detail-item--wa:hover .contact-detail-icon--wa {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-detail-label {
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-item--wa .contact-detail-label {
  color: #25D366;
  opacity: 0.85;
}

.contact-detail-number {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white-90);
}

.contact-wa-badge {
  font-size: 0.7rem;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}
.contact-detail-item--wa:hover .contact-wa-badge {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.15);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--white-06);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), transparent 60%);
  z-index: -1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-60);
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--white-90);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--white-30); }
.form-input:focus {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.04);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}
.form-select option {
  background: #221510;
  color: var(--white-90);
}

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

.form-micro {
  font-size: 0.8125rem;
  color: var(--white-30);
  text-align: center;
  margin-top: 0.25rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.12);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white-90);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--white-60);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  background: #0C0604;
  padding: 4rem 0 2.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--champagne);
  display: block;
  margin-bottom: 0.625rem;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--white-30);
  font-style: italic;
}

.footer-feedback {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
  padding: 0 0 3rem;
}

.footer-feedback-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white-90);
  margin-bottom: 1rem;
}
.footer-feedback-title em { color: var(--champagne); }
.footer-feedback-subtitle { color: var(--white-60); max-width: 320px; }

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-06);
  border-radius: 16px;
}
.feedback-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feedback-rating { border: 0; padding: 0; min-width: 0; }
.feedback-rating .form-label { display: block; margin-bottom: 0.5rem; }
.star-rating { display: flex; gap: 0.15rem; }
.star-rating input { position: absolute; opacity: 0; pointer-events: none; }
.star-rating label {
  color: var(--white-30);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.star-rating label:hover,
.star-rating label:has(~ input:checked),
.star-rating input:checked + label { color: var(--gold); transform: scale(1.08); }
.feedback-form .btn { align-self: flex-start; }

.footer-reviews { padding: 0 0 2.5rem; }
.footer-reviews-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-reviews-note { font-size: 0.75rem; color: var(--white-30); }
.footer-reviews-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.footer-review { padding: 1.25rem; background: rgba(255,255,255,0.03); border: 1px solid var(--white-06); border-radius: 12px; }
.footer-review-stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.footer-review-message { color: var(--white-60); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-review-name { color: var(--champagne); font-size: 0.8rem; }
.footer-reviews-empty { color: var(--white-30); font-size: 0.9rem; }
.footer-feedback-divider { margin-bottom: 3rem; }

.footer-links-grid {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.375rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--white-30);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--champagne); }

.footer-divider {
  height: 1px;
  background: var(--white-06);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy, .footer-address {
  font-size: 0.8125rem;
  color: var(--white-30);
}

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--white-06);
  font-size: 0.75rem;
  color: var(--white-30);
  text-align: center;
}

.footer-credit a {
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: var(--champagne);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 0.875rem 1.25rem;
    gap: 0.75rem;
    align-items: center;
  }

  .nav-links {
    display: flex;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    gap: 0.5rem;
    padding: 0.25rem 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    font-size: 0.8125rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 100px;
    color: var(--white-90);
    transition: all 0.2s var(--ease-smooth);
  }

  .nav-link:hover, .nav-link:active {
    background: var(--gold-muted);
    border-color: var(--gold-border);
    color: var(--gold);
  }

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

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .story-beat, .story-beat--right {
    justify-content: center;
  }

  .footer-top { flex-direction: column; }
  .footer-links-grid { gap: 2rem; }
  .footer-feedback { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-reviews-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .d-none-sm { display: none; }
  .hero-headline { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .pricing-cards-row,
  .menu-cards-row { flex-direction: column; }

  .story-beat-inner { padding: 1.75rem 1.5rem; }

  .footer-links-grid { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; }
  .feedback-form-row { grid-template-columns: 1fr; }
  .footer-reviews-list { grid-template-columns: 1fr; }
}

/* ─── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   PDF MENU CARDS
   ═══════════════════════════════════════════════════════════════════════ */
.pdf-menu-cards {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.pdf-menu-card {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.pdf-menu-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), transparent 55%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.pdf-menu-card:hover::before { opacity: 1; }

.pdf-menu-card--alt {
  border-color: rgba(241,217,176,0.25);
}
.pdf-menu-card--alt::before {
  background: linear-gradient(135deg, rgba(241,217,176,0.15), transparent 55%);
}

/* Animated shimmer glow on hover */
.pdf-card-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
  z-index: 0;
}
.pdf-menu-card:hover .pdf-card-glow {
  opacity: 1;
  transform: translate(20px, 20px);
}

.pdf-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.35s var(--ease-smooth);
}
.pdf-menu-card:hover .pdf-card-icon {
  background: rgba(212,175,55,0.2);
  box-shadow: 0 0 24px rgba(212,175,55,0.3);
  transform: scale(1.05);
}

.pdf-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.pdf-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.pdf-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white-90);
  line-height: 1.2;
}

.pdf-card-sub {
  font-size: 0.825rem;
  color: var(--white-30);
  line-height: 1.4;
}

.pdf-card-arrow {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s, transform 0.3s var(--ease-smooth);
}
.pdf-menu-card:hover .pdf-card-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* ═══════════════════════════════════════════════════════════════════════
   PDF VIEWER MODAL
   ═══════════════════════════════════════════════════════════════════════ */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}
.pdf-modal.open {
  opacity: 1;
  pointer-events: all;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 6, 4, 0.88);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
}

.pdf-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  height: 92svh;
  display: flex;
  flex-direction: column;
  background: #1A0E0A;
  border: 1px solid var(--gold-border);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-smooth);
  box-shadow:
    0 -8px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212,175,55,0.12) inset,
    0 -1px 0 rgba(212,175,55,0.2) inset;
}
.pdf-modal.open .pdf-modal-panel {
  transform: translateY(0);
}

/* Header */
.pdf-modal-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(212,175,55,0.05);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  backdrop-filter: blur(12px);
}

.pdf-modal-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pdf-modal-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.pdf-modal-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.1rem;
}

.pdf-modal-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white-90);
  line-height: 1.1;
}

.pdf-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pdf-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
}

.pdf-action-download {
  background: var(--grad-gold);
  color: #120A08;
  box-shadow: 0 0 16px rgba(212,175,55,0.25);
}
.pdf-action-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(212,175,55,0.45);
}

.pdf-action-close {
  background: rgba(255,255,255,0.06);
  color: var(--white-60);
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white-10);
}
.pdf-action-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white-90);
  border-color: var(--white-30);
}

/* Body / iframe */
.pdf-modal-body {
  flex: 1;
  position: relative;
  background: #F5F0E8;
  overflow: hidden;
}

.pdf-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #1A0E0A;
  z-index: 2;
  color: var(--white-60);
  font-size: 0.9375rem;
  transition: opacity 0.4s;
}
.pdf-loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.pdf-spinner {
  width: 40px;
  height: 40px;
  border: 2.5px solid rgba(212,175,55,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.pdf-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.pdf-iframe.loaded {
  opacity: 1;
}

/* Prevent body scroll when modal open */
body.pdf-modal-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════
   ONLINE ORDERING (SWIGGY & ZOMATO)
   ═══════════════════════════════════════════════════════════════════════ */
.online-ordering-block {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--white-06);
}

.online-ordering-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 1.5rem;
  text-align: center;
}

.online-ordering-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.order-btn {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--white-06);
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.order-btn-glow {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

.order-btn-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white-06);
  color: var(--white-60);
  transition: all 0.35s var(--ease-smooth);
}

.order-btn-content {
  display: flex;
  flex-direction: column;
}

.order-btn-label {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-30);
}

.order-btn-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white-90);
  line-height: 1.2;
}

.order-btn-arrow {
  font-size: 1.25rem;
  color: var(--white-30);
  margin-left: auto;
  transition: transform 0.3s var(--ease-smooth), color 0.3s;
}

/* Swiggy Button Styling */
.order-btn--swiggy:hover {
  border-color: rgba(252, 128, 25, 0.4);
  background: rgba(252, 128, 25, 0.04);
}
.order-btn--swiggy:hover .order-btn-icon {
  background: rgba(252, 128, 25, 0.15);
  color: #FC8019;
  box-shadow: 0 0 16px rgba(252, 128, 25, 0.25);
}
.order-btn--swiggy:hover .order-btn-brand {
  color: #FC8019;
}
.order-btn--swiggy .order-btn-glow {
  background: radial-gradient(circle, rgba(252, 128, 25, 0.15) 0%, transparent 70%);
}
.order-btn--swiggy:hover .order-btn-glow {
  opacity: 1;
  transform: translate(15px, 15px);
}
.order-btn--swiggy:hover .order-btn-arrow {
  color: #FC8019;
  transform: translateX(4px);
}

/* Zomato Button Styling */
.order-btn--zomato:hover {
  border-color: rgba(226, 55, 68, 0.4);
  background: rgba(226, 55, 68, 0.04);
}
.order-btn--zomato:hover .order-btn-icon {
  background: rgba(226, 55, 68, 0.15);
  color: #E23744;
  box-shadow: 0 0 16px rgba(226, 55, 68, 0.25);
}
.order-btn--zomato:hover .order-btn-brand {
  color: #E23744;
}
.order-btn--zomato .order-btn-glow {
  background: radial-gradient(circle, rgba(226, 55, 68, 0.15) 0%, transparent 70%);
}
.order-btn--zomato:hover .order-btn-glow {
  opacity: 1;
  transform: translate(15px, 15px);
}
.order-btn--zomato:hover .order-btn-arrow {
  color: #E23744;
  transform: translateX(4px);
}

/* ─── Mobile pdf & order button overrides ────────────────────────── */
@media (max-width: 640px) {
  .pdf-menu-cards { flex-direction: column; }
  .pdf-modal-panel { height: 96svh; border-radius: 20px 20px 0 0; }
  .pdf-modal-header { padding: 1rem 1.25rem; }
  .pdf-action-download span { display: none; }
  .pdf-action-download { width: 38px; height: 38px; padding: 0; border-radius: 50%; justify-content: center; }
  
  .online-ordering-buttons { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 3rem 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  pointer-events: none;
}

/* Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: transparent;
  border: 1px solid var(--white-10);
  color: var(--white-60);
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}
.filter-tab:hover {
  border-color: var(--gold-border);
  color: var(--champagne);
}
.filter-tab.active {
  background: var(--grad-gold);
  color: #120A08;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  transition: opacity 0.3s;
}

.gallery-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  text-align: center;
}

.gallery-instagram-link {
  gap: 0.75rem;
}

.gallery-quote {
  margin: 0;
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.65;
  opacity: 0.82;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--white-06);
  cursor: pointer;
  outline: none;
  transition: all 0.4s var(--ease-smooth);
}
.gallery-item.hidden {
  display: none !important;
}

/* Hover scales */
.gallery-media-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-img, .gallery-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-img,
.gallery-item:hover .gallery-video-preview {
  transform: scale(1.06);
}

/* Video Indicators */
.gallery-video-indicator {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18,10,8,0.7);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 2;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.gallery-item:hover .gallery-video-indicator {
  background: var(--grad-gold);
  color: #120A08;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Overlays */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,10,8,0.92) 0%, rgba(18,10,8,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0.9;
  z-index: 1;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.gallery-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white-90);
  line-height: 1.2;
}

/* ═════════════════════════════ ACHIEVEMENTS SECTION ═════════════════════════════ */
.achievements-section {
  padding: 3rem 0 var(--section-pad);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  pointer-events: none;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.achievement-card {
  padding: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.achievement-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.achievement-card .feature-title {
  margin-bottom: 0.625rem;
}

.achievement-card .feature-desc {
  margin-top: auto;
}

.achievement-card--featured {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, rgba(212,175,55,0.1), var(--bg-card));
}

@media (max-width: 900px) {
  .achievements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .achievements-section {
    padding-top: 2.5rem;
  }

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

  .achievement-card {
    min-height: 0;
    padding: 1.75rem 1.5rem;
  }
}

/* Focus outlines */
.gallery-item:focus-visible {
  box-shadow: 0 0 0 3px var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════
   LIGHTBOX MODAL
   ═══════════════════════════════════════════════════════════════════════ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}
.lightbox-modal.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 6, 4, 0.96);
  backdrop-filter: blur(12px);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-10);
  color: var(--white-60);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white-90);
  border-color: var(--white-30);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-06);
  color: var(--white-60);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s var(--ease-smooth);
}
.lightbox-nav:hover {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lightbox-media-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8), 0 0 0 1px var(--white-06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media-container img,
.lightbox-media-container video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-info {
  text-align: center;
  max-width: 600px;
}

.lightbox-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--white-90);
  line-height: 1.25;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.lightbox-open {
  overflow: hidden;
}

/* Responsive Gallery */
@media (max-width: 900px) {
  .lightbox-nav {
    width: 48px;
    height: 48px;
  }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .filter-tab {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
  }
  .lightbox-content {
    width: 95%;
  }
  .lightbox-media-container {
    aspect-ratio: 4/3;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
  .lightbox-nav {
    display: none; /* Hide nav arrows on small screens, rely on swipe/tap */
  }
}

/* -----------------------------------------------------------------------
   ADMIN PANEL
   ----------------------------------------------------------------------- */

.admin-entry-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.75rem; padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; color: rgba(255,255,255,0.25);
  font-size: 0.7rem; font-family: var(--font-sans); letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.3s;
}
.admin-entry-btn:hover { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); color: var(--gold); }

.admin-login-modal {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,4,2,0.92); backdrop-filter: blur(16px);
  align-items: center; justify-content: center;
}
.admin-login-modal.open { display: flex; }

.admin-login-box {
  background: #1a0f0c; border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px; padding: 2.5rem 2rem; width: 100%; max-width: 400px;
  text-align: center; box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.admin-login-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--gold);
}
.admin-login-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white-90); margin-bottom: 0.4rem; }
.admin-login-sub { font-size: 0.875rem; color: var(--white-30); margin-bottom: 1.5rem; }
.admin-login-error { font-size: 0.8rem; color: #e05555; min-height: 1.2em; margin: 0.5rem 0; }
.admin-login-submit {
  width: 100%; padding: 0.8rem; background: var(--grad-gold); color: #120A08;
  border: none; border-radius: 100px; font-family: var(--font-sans);
  font-size: 0.9375rem; font-weight: 700; cursor: pointer; margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
}
.admin-login-submit:hover { opacity: 0.9; transform: translateY(-1px); }

.admin-dashboard {
  display: none; position: fixed; inset: 0; z-index: 8500;
  background: rgba(8,4,2,0.7); backdrop-filter: blur(8px);
  align-items: flex-start; justify-content: flex-end; padding: 1rem;
}
.admin-dashboard.open { display: flex; }

.admin-panel {
  width: 100%; max-width: 580px; height: calc(100vh - 2rem);
  background: #180e0b; border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px; display: flex; flex-direction: column;
  overflow: hidden; box-shadow: -20px 0 80px rgba(0,0,0,0.5);
}

.admin-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0;
}
.admin-panel-title { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-serif); font-size: 1rem; color: var(--champagne); }
.admin-panel-actions { display: flex; align-items: center; gap: 0.5rem; }
.admin-action-btn {
  font-size: 0.75rem; font-family: var(--font-sans); font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 100px;
  border: 1px solid rgba(212,175,55,0.3); background: rgba(212,175,55,0.08);
  color: var(--gold); cursor: pointer; transition: all 0.2s;
}
.admin-action-btn:hover { background: rgba(212,175,55,0.2); }
.admin-logout-btn { border-color: rgba(255,255,255,0.1)!important; background: rgba(255,255,255,0.04)!important; color: var(--white-30)!important; }
.admin-logout-btn:hover { background: rgba(255,80,80,0.1)!important; border-color: rgba(255,80,80,0.3)!important; color: #e05555!important; }
.admin-close-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); color: var(--white-60);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s;
}
.admin-close-btn:hover { background: rgba(255,80,80,0.12); color: #e05555; border-color: rgba(255,80,80,0.3); transform: rotate(90deg); }

.admin-tabs { display: flex; padding: 0 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.admin-tab-btn {
  padding: 0.85rem 1rem; font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 600;
  color: var(--white-30); background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.admin-tab-btn:hover { color: var(--white-60); }
.admin-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.admin-panel-body { flex: 1; overflow-y: auto; padding: 1.5rem; scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.2) transparent; }
.admin-tab-pane { display: none; }
.admin-tab-pane.active { display: block; }

.admin-section-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-family: var(--font-sans); }

.admin-input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 0.65rem 0.9rem; color: var(--white-90);
  font-family: var(--font-sans); font-size: 0.875rem; transition: border-color 0.2s; outline: none;
}
.admin-input:focus { border-color: rgba(212,175,55,0.4); }
select.admin-input option { background: #1a0f0c; }

.admin-btn { display: inline-flex; align-items: center; padding: 0.5rem 1.1rem; border-radius: 100px; font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
.admin-btn-gold { background: var(--grad-gold); color: #120A08; }
.admin-btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }
.admin-btn-ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--white-60); }
.admin-btn-ghost:hover { background: rgba(255,80,80,0.1); border-color: rgba(255,80,80,0.3); color: #e05555; }

.admin-file-label { display: inline-flex; align-items: center; padding: 0.5rem 1rem; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--white-60); font-size: 0.8125rem; font-family: var(--font-sans); font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.admin-file-label:hover { border-color: var(--gold-border); color: var(--champagne); }
.admin-file-input { display: none; }

.admin-menu-row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1rem; }
.admin-status { flex: 1; font-size: 0.8rem; color: var(--white-30); font-style: italic; min-width: 120px; }

.admin-add-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1rem; }
.admin-add-form .admin-btn { grid-column: span 2; }
.admin-add-form .admin-file-label { grid-column: span 2; }
.admin-achievements-form { display: flex; flex-direction: column; gap: 0.75rem; }
.admin-achievement-edit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.admin-achievement-edit strong {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-achievement-edit textarea { grid-column: 1 / -1; resize: vertical; }
.admin-achievements-form > .admin-btn { align-self: flex-start; }

.admin-gallery-list { display: flex; flex-direction: column; gap: 0.5rem; max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.2) transparent; }
.admin-gallery-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.75rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; transition: border-color 0.2s; }
.admin-gallery-row:hover { border-color: rgba(212,175,55,0.15); }
.admin-gallery-info { flex: 1; overflow: hidden; }
.admin-gallery-title { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white-90); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-gallery-cat { font-size: 0.72rem; color: var(--white-30); }
.admin-delete-btn { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,80,80,0.06); border: 1px solid rgba(255,80,80,0.15); color: rgba(255,80,80,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.admin-delete-btn:hover { background: rgba(255,80,80,0.18); color: #e05555; border-color: rgba(255,80,80,0.4); }

.admin-pw-form { display: flex; flex-direction: column; gap: 0.6rem; max-width: 360px; }

.admin-note { font-size: 0.78rem; color: var(--white-30); margin-top: 1rem; line-height: 1.5; }
.admin-note code { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); border-radius: 4px; padding: 0.1em 0.4em; color: var(--gold); font-size: 0.85em; }
.admin-empty { color: var(--white-30); font-size: 0.85rem; font-style: italic; }

.admin-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #221710; border: 1px solid rgba(212,175,55,0.3); color: var(--champagne);
  padding: 0.7rem 1.4rem; border-radius: 100px;
  font-size: 0.875rem; font-family: var(--font-sans); font-weight: 500;
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.admin-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.admin-toast.error { background: #1f0a0a; border-color: rgba(220,80,80,0.4); color: #e88; }

@media (max-width: 640px) {
  .admin-panel { max-width: 100%; border-radius: 16px 16px 0 0; height: 85vh; margin-top: auto; }
  .admin-dashboard { align-items: flex-end; padding: 0; }
  .admin-add-form { grid-template-columns: 1fr; }
  .admin-add-form .admin-btn, .admin-add-form .admin-file-label { grid-column: span 1; }
  .admin-achievement-edit { grid-template-columns: 1fr; }
  .admin-achievement-edit strong, .admin-achievement-edit textarea { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT US SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.about-section {
  position: relative;
  padding: var(--section-pad) 0 3rem;
  background: var(--bg-primary);
  overflow: hidden;
}

/* Ambient background glow */
.about-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── Label row ───────────────────────────────── */
.about-label-row {
  margin-bottom: 1.25rem;
}

/* ─── Heading ─────────────────────────────────── */
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
}

.about-heading em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Intro paragraph ─────────────────────────── */
.about-intro {
  font-size: 1.0625rem;
  color: var(--white-60);
  line-height: 1.8;
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.about-intro strong {
  color: var(--champagne);
}

/* ─── Cuisine tags ────────────────────────────── */
.about-cuisine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 3rem;
}

.cuisine-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: var(--white-06);
  border: 1px solid var(--gold-border);
  color: var(--champagne);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
  cursor: default;
}

.cuisine-tag:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

/* ─── Dining occasions grid ───────────────────── */
.about-occasions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.about-occasion-card {
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  cursor: default;
}

.about-occasion-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.08);
}

.occasion-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}

.occasion-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 0.625rem;
}

.occasion-desc {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* ─── Divider ─────────────────────────────────── */
.about-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin-bottom: 3rem;
}

/* ─── Celebrate split layout ──────────────────── */
.about-celebrate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0.5rem 0;
}

.about-celebrate-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.about-celebrate-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-90);
  margin-bottom: 1.25rem;
}

.about-celebrate-heading em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-celebrate-body {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-celebrate-body strong {
  color: var(--champagne);
}

.about-celebrate-cta {
  display: inline-flex;
}

/* ─── Event pills grid ────────────────────────── */
.about-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.about-event-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--white-60);
  font-weight: 500;
  transition: all 0.25s var(--ease-smooth);
  cursor: default;
  animation: pillFloat 4s ease-in-out infinite;
}

.about-event-pill:nth-child(1) { animation-delay: 0s; }
.about-event-pill:nth-child(2) { animation-delay: 0.3s; }
.about-event-pill:nth-child(3) { animation-delay: 0.6s; }
.about-event-pill:nth-child(4) { animation-delay: 0.9s; }
.about-event-pill:nth-child(5) { animation-delay: 1.2s; }
.about-event-pill:nth-child(6) { animation-delay: 1.5s; }
.about-event-pill:nth-child(7) { animation-delay: 1.8s; }
.about-event-pill:nth-child(8) { animation-delay: 2.1s; }
.about-event-pill:nth-child(9) { animation-delay: 2.4s; }

@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.about-event-pill:hover {
  border-color: var(--gold-border);
  background: rgba(212,175,55,0.1);
  color: var(--champagne);
  transform: translateY(-3px) !important;
  animation-play-state: paused;
}

.about-event-pill--more {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold-border);
  color: var(--gold);
  font-weight: 600;
}

/* ─── Location footer strip ───────────────────── */
.about-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-location::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-location-pin {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.25rem;
}

.about-location-text {
  font-size: 1.1rem;
  color: var(--champagne);
  font-weight: 500;
}

.about-location-text strong {
  color: var(--gold);
}

.about-location-sub {
  font-size: 0.9375rem;
  color: var(--white-60);
  font-style: italic;
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .venue-combined-block .venue-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-occasions {
    grid-template-columns: 1fr 1fr;
  }

  .about-celebrate {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .venue-combined-block .venue-features-grid {
    grid-template-columns: 1fr;
  }

  .venue-combined-block .venue-feature {
    padding: 1.75rem 1.5rem;
  }

  .venue-combined-block .feature-desc {
    min-height: 0;
  }

  .about-occasions {
    grid-template-columns: 1fr;
  }

  .about-celebrate {
    gap: 2rem;
  }

  .about-heading {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
  }

  .about-events-grid {
    justify-content: center;
  }
}

/* Merged Venue Combined Block */
.venue-combined-block {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem 0 0.5rem;
}

.venue-combined-block .section-tag {
  margin-bottom: 1.5rem !important;
}

.venue-combined-block .venue-features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.venue-combined-block .venue-feature {
  min-height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.venue-combined-block .feature-desc {
  min-height: 3.3rem;
  margin-bottom: 0.25rem;
}

.venue-combined-block .menu-btn-list {
  margin-top: auto !important;
}

@media (max-width: 640px) {
  .venue-combined-block .venue-features-grid {
    grid-template-columns: 1fr;
  }

  .venue-combined-block .venue-feature {
    padding: 1.75rem 1.5rem;
  }

  .venue-combined-block .feature-desc {
    min-height: 0;
  }
}

.venue-combined-block .feature-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

/* Service Interactive Menu Buttons */
.service-menu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  text-align: left;
}

.service-menu-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateX(4px);
}

.service-menu-btn .btn-arrow {
  color: var(--gold);
  font-weight: bold;
  transition: transform 0.25s var(--ease-smooth);
}

.service-menu-btn:hover .btn-arrow {
  transform: translateX(4px);
}


.venue-combined-block .feature-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}


