/* =========================================
   PARAMBRIYM – Custom Stylesheet
   Brand Colors:
     Primary:   #700000
     Gold:      #D09C49
     Cream:     #E6DAC8
   Fonts: Prata (heading), Inter (body)
   Development Team : Nikunj Labs Ujjain (Madhya Pradesh)
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Prata&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #700000;
  --primary-dark: #4a0000;
  --gold: #D09C49;
  --gold-light: #e8b86d;
  --cream: #E6DAC8;
  --cream-dark: #d4c4a8;
  --dark: #1a0a0a;
  --text-dark: #2c1a1a;
  --text-muted: #7a5c5c;
  --white: #ffffff;
  --topbar-height: 44px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 32px rgba(208, 156, 73, 0.25);
  --shadow-dark: 0 16px 48px rgba(26, 10, 10, 0.4);
}

/* Top bar slides away on scroll — nav uses same variable */
body.topbar-is-hidden {
  --topbar-height: 0px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Prata', serif;
  color: var(--primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* ── Utility ── */
.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.text-gold {
  color: var(--gold) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.gold-divider-left {
  margin: 16px 0 0;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 14px 38px;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
}

.btn-gold:hover::before {
  transform: scaleX(1);
}

.btn-gold span,
.btn-gold {
  position: relative;
  z-index: 1;
}

.btn-gold:hover {
  color: var(--gold);
  border-color: var(--primary);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 14px 38px;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 14px 38px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo-wrap {
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s ease forwards;
}

.preloader-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(208, 156, 73, 0.32);
  border-radius: 14px;
  padding: 14px 22px;
  line-height: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.preloader-logo-img {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
}

.preloader-sub {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--cream);
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s ease forwards;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  animation: loadBar 1.8s ease forwards;
  border-radius: 2px;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  z-index: 1101;
  background: rgba(8, 6, 6, 0.94);
  border-bottom: 1px solid rgba(208, 156, 73, 0.22);
  display: flex;
  align-items: center;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease, visibility 0.32s;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

body.topbar-is-hidden .topbar {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hide topbar completely on mobile — keeps header clean */
@media (max-width: 991px) {
  .topbar {
    display: none !important;
  }

  body {
    --topbar-height: 0px;
  }
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  row-gap: 6px;
  padding: 6px 0;
  min-height: 44px;
  width: 100%;
}

.topbar-start,
.topbar-end {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.topbar-item {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-addr {
  max-width: 360px;
}

.topbar-addr-text {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 38vw;
}

@media (max-width: 991px) {
  .topbar-addr-text {
    max-width: 52vw;
  }
}

@media (max-width: 575px) {
  .topbar-addr-text {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-start,
  .topbar-end {
    justify-content: space-between;
    width: 100%;
  }
}

.topbar-sep {
  color: rgba(208, 156, 73, 0.45);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.topbar-link:hover {
  color: var(--gold) !important;
  transform: translateY(-1px);
}

/* ── NAVBAR ── */
#mainNav {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 18px 0;
  transition: top 0.38s cubic-bezier(0.4, 0, 0.2, 1), background 0.45s ease, padding 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Header stays white while scrolling (brand + logo contrast) */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-right: 0;
}

/* Dark chip on white header: logo PNG black merges with chip — no ugly grey box */
.navbar-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(208, 156, 73, 0.28);
  border-radius: 12px;
  padding: 6px 14px;
  line-height: 0;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

#mainNav .navbar-brand:hover .navbar-logo-chip {
  border-color: rgba(208, 156, 73, 0.5);
}

.navbar-logo-img {
  height: 44px;
  width: auto;
  max-width: 152px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/* ── HAMBURGER (mobile only) ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(208, 156, 73, 0.4);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  border-color: var(--gold);
  background: rgba(208, 156, 73, 0.08);
}

.nav-ham-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

/* ── OFFCANVAS MENU ── */
.nav-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

.nav-offcanvas.is-open {
  pointer-events: auto;
}

.nav-offcanvas-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 10, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.38s ease;
}

.nav-offcanvas.is-open .nav-offcanvas-backdrop {
  opacity: 1;
}

.nav-offcanvas-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #ffffff;
  box-shadow: -12px 0 60px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-offcanvas.is-open .nav-offcanvas-panel {
  transform: translateX(0);
}

/* Offcanvas header */
.nav-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(208, 156, 73, 0.2);
  flex-shrink: 0;
}

.nav-offcanvas-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-offcanvas-close {
  width: 40px;
  height: 40px;
  background: rgba(208, 156, 73, 0.08);
  border: 1px solid rgba(208, 156, 73, 0.3);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease, color 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}

.nav-offcanvas-close:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* Links */
.nav-offcanvas-links {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
}

.nav-offcanvas-links li {
  border-bottom: 1px solid rgba(208, 156, 73, 0.1);
}

.nav-offcanvas-link {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.nav-offcanvas-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.nav-offcanvas-link:hover {
  color: var(--primary);
  padding-left: 36px;
}

.nav-offcanvas-link:hover::before {
  transform: scaleY(1);
}

/* CTA area */
.nav-offcanvas-cta {
  padding: 24px;
  border-top: 1px solid rgba(208, 156, 73, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.nav-offcanvas-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px;
  border: 1px solid rgba(208, 156, 73, 0.2);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-offcanvas-phone:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Links: dark on white header (hero) */
#mainNav .nav-link-custom {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 26, 26, 0.88) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: none;
}

#mainNav .nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#mainNav .nav-link-custom:hover {
  color: var(--primary) !important;
}

#mainNav .nav-link-custom:hover::after {
  transform: scaleX(1);
}

#mainNav .nav-reserve-btn {
  padding: 9px 22px !important;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  transition: var(--transition) !important;
  border-radius: 0 !important;
}

#mainNav .nav-reserve-btn:hover {
  background: var(--gold);
  color: var(--primary-dark) !important;
  border-color: var(--gold);
}

#mainNav .nav-reserve-btn::after {
  display: none !important;
}

/* ── Premium Header (on scroll) ── */
#mainNav.nav-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(208, 156, 73, 0.35);
  padding: 12px 0;
}

#mainNav.nav-scrolled .navbar-logo-chip {
  border-color: rgba(208, 156, 73, 0.75);
  box-shadow: 0 10px 28px rgba(208, 156, 73, 0.18);
}

#mainNav.nav-scrolled .navbar-logo-img {
  filter: none;
}

#mainNav.nav-scrolled .navbar-toggler {
  border-color: rgba(208, 156, 73, 0.55);
}

#mainNav.nav-scrolled .navbar-toggler-icon-custom {
  background: var(--text-dark);
}

/* Links: keep premium dark-on-light */
#mainNav.nav-scrolled .nav-link-custom {
  color: rgba(44, 26, 26, 0.92) !important;
}

#mainNav.nav-scrolled .nav-link-custom:hover {
  color: var(--gold) !important;
}

#mainNav.nav-scrolled .nav-link-custom::after {
  background: var(--gold);
}

#mainNav.nav-scrolled .nav-reserve-btn {
  border-color: rgba(208, 156, 73, 0.9);
  color: var(--primary) !important;
}

#mainNav.nav-scrolled .nav-reserve-btn:hover {
  background: var(--gold);
  color: var(--primary-dark) !important;
  border-color: var(--gold);
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-slide.active {
    animation: heroKenBurnsLight 22s ease-out forwards;
  }
}

.hero-slide:not(.active) {
  animation: none !important;
  transform: translate3d(0, 0, 0);
}

@keyframes heroKenBurnsLight {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.05) translate3d(-0.5%, 0.25%, 0);
  }
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.68);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 65% at 50% 40%, rgba(208, 156, 73, 0.10) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(60, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  /* Static sheen — no blend-mode or moving background (major FPS saver) */
  background: linear-gradient(115deg,
      transparent 35%,
      rgba(208, 156, 73, 0.06) 50%,
      transparent 65%);
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--white);
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-dot:hover {
  border-color: var(--gold);
  transform: scale(1.15);
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(208, 156, 73, 0.45);
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.62em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  opacity: 0;
  animation: fadeInDown 0.8s 1.8s ease forwards;
  text-shadow: 0 2px 12px rgba(208, 156, 73, 0.45);
}

.hero-dynamic {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 22px;
  border: 1px solid rgba(208, 156, 73, 0.55);
  background: rgba(0, 0, 0, 0.50);
  color: rgba(230, 218, 200, 0.98);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s 2.15s ease forwards;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(208, 156, 73, 0.15);
}

.hero-dynamic.pop {
  animation: heroBadgePop 0.55s ease;
}

@keyframes heroBadgePop {
  0% {
    transform: translateY(6px) scale(0.98);
  }

  50% {
    transform: translateY(-1px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.hero-title {
  font-family: 'Prata', serif;
  font-size: clamp(3.8rem, 9vw, 8rem);
  color: var(--white);
  line-height: 1;
  margin: 18px 0 14px;
  opacity: 0;
  animation: fadeInUp 0.9s 2.0s ease forwards;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.93rem, 1.4vw, 1.1rem);
  font-weight: 300;
  color: rgba(230, 218, 200, 0.88);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.9s 2.3s ease forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s 2.6s ease forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s 3.2s ease forwards;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: 'Prata', serif;
  font-size: 0.85rem;
  color: var(--primary-dark);
  padding: 0 40px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::after {
  content: '✦';
  color: var(--primary);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT / HERITAGE ── */
#about {
  background: var(--cream);
}

.about-img-wrap {
  position: relative;
  overflow: hidden; /* Prevents accent box right:-20px from bleeding */
}

.about-main-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
}

.about-accent-box {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@media (max-width: 991px) {
  .about-accent-box {
    right: 10px;
    bottom: 10px;
    width: 140px;
    height: 140px;
  }

  .about-main-img {
    height: 420px;
  }

  .about-content {
    padding-left: 0;
  }
}

.about-accent-number {
  font-family: 'Prata', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.about-accent-text {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-align: center;
  text-transform: uppercase;
  margin-top: 6px;
}

.about-content {
  padding-left: 40px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 4px;
  transition: var(--transition);
}

.about-tag:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.about-tag-clickable {
  cursor: pointer;
  user-select: none;
}

.about-tag-clickable:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 156, 73, 0.3);
}

.about-tag-clickable:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── STATE FOOD CULTURE MODALS ── */
.state-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.state-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.state-modal-box {
  position: relative;
  background: var(--dark);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(208, 156, 73, 0.25);
  transform: translateY(36px) scale(0.96);
  transition: transform 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
  opacity: 0;
}

.state-modal-overlay.is-open .state-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Close Button ── */
.state-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 20;
  width: 40px;
  height: 40px;
  background: rgba(208, 156, 73, 0.15);
  border: 1px solid rgba(208, 156, 73, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
  line-height: 1;
  padding: 0;
}

.state-modal-close:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  transform: rotate(90deg) scale(1.08);
}

/* ── Header ── */
.state-modal-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px 28px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(208, 156, 73, 0.22);
}

.state-modal-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(208, 156, 73, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.state-modal-header--tn {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #8a1515 100%);
  border-left: 5px solid var(--gold);
}

.state-modal-header--kl {
  background: linear-gradient(135deg, #0a2e14 0%, #14502a 60%, #1d7a40 100%);
  border-left: 5px solid var(--gold);
}

.state-modal-header--ka {
  background: linear-gradient(135deg, #2e1c00 0%, #5c3800 60%, #8c5a00 100%);
  border-left: 5px solid var(--gold);
}

.state-modal-header--ap {
  background: linear-gradient(135deg, #480000 0%, #7a0000 60%, #a52000 100%);
  border-left: 5px solid var(--gold);
}

.state-modal-emblem {
  font-size: 3.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 1;
  line-height: 1;
}

.state-modal-header-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.state-modal-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.9;
}

.state-modal-title {
  font-family: 'Prata', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--cream);
  margin: 0 0 8px;
  line-height: 1.05;
}

.state-modal-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(230, 218, 200, 0.65);
  margin: 0;
  letter-spacing: 0.06em;
  font-style: italic;
}

/* ── Modal Body ── */
.state-modal-body {
  padding: 28px 36px 32px;
  background: var(--dark);
}

.state-modal-intro {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(230, 218, 200, 0.78);
  margin-bottom: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

/* 2-column grid = no scroll needed */
.state-modal-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.state-modal-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(208, 156, 73, 0.18);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.state-modal-highlight:hover {
  border-color: rgba(208, 156, 73, 0.45);
  background: rgba(208, 156, 73, 0.07);
}

/* 3rd highlight spans both columns */
.state-modal-highlight:nth-child(3) {
  grid-column: 1 / -1;
}

.state-modal-highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.state-modal-highlight strong {
  display: block;
  font-family: 'Prata', serif;
  font-size: 0.93rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.state-modal-highlight p {
  font-family: 'Inter', sans-serif;
  font-size: 0.81rem;
  line-height: 1.6;
  color: rgba(230, 218, 200, 0.62);
  margin: 0;
}

/* ── Footer Tags ── */
.state-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(208, 156, 73, 0.18);
}

.state-modal-tags span {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(208, 156, 73, 0.1);
  border: 1px solid rgba(208, 156, 73, 0.35);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.61rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.state-modal-tags span:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .state-modal-highlights {
    grid-template-columns: 1fr;
  }

  .state-modal-highlight:nth-child(3) {
    grid-column: auto;
  }

  .state-modal-header {
    padding: 22px 20px 18px;
    gap: 14px;
  }

  .state-modal-body {
    padding: 20px 20px 24px;
  }

  .state-modal-emblem {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .state-modal-overlay {
    padding: 10px;
  }

  .state-modal-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px 14px;
  }
}


/* ── HERITAGE STATES ── */
#heritage {
  background: var(--primary);
}

.heritage-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(208, 156, 73, 0.3);
  transition: var(--transition);
  cursor: default;
}

.heritage-card:hover {
  background: rgba(208, 156, 73, 0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.heritage-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.heritage-card h5 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.heritage-card p {
  color: rgba(230, 218, 200, 0.8);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── SIGNATURE DISHES ── */
#dishes {
  background: var(--white);
}

.dish-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  border: 1px solid rgba(208, 156, 73, 0.15);
}

.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.dish-img-wrap {
  overflow: hidden;
  height: 260px;
  position: relative;
}

.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dish-card:hover .dish-img-wrap img {
  transform: scale(1.1);
}

.dish-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.dish-body {
  padding: 24px;
}

.dish-body h5 {
  font-family: 'Prata', serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.dish-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.dish-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

/* ── FOUNDER STORY ── */
#founder {
  background: var(--dark);
}

.founder-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%) brightness(0.85) contrast(1.05) saturate(1.2);
}

.founder-content {
  color: var(--cream);
  padding: 40px 20px;
}

.founder-content blockquote {
  font-family: 'Prata', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.5;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 30px;
}

.founder-content p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(230, 218, 200, 0.85);
  margin-bottom: 18px;
}

.founder-name {
  font-family: 'Prata', serif;
  color: var(--gold);
  font-size: 1.3rem;
}

.founder-title {
  color: rgba(230, 218, 200, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

/* ── STATS ── */
#stats {
  background: var(--gold);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Prata', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-top: 6px;
  display: block;
}

/* ── GALLERY ── */
#gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  min-height: 240px;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(112, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(112, 0, 0, 0.35);
}

.gallery-icon {
  color: var(--gold);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── CLIENT REVIEWS ── */
#testimonials {
  background: var(--white);
  border-top: 1px solid rgba(208, 156, 73, 0.2);
  border-bottom: 1px solid rgba(208, 156, 73, 0.15);
}

#testimonials .section-title {
  color: var(--primary);
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 250px;
  padding: 26px 24px;
  border: 1px solid rgba(208, 156, 73, 0.28);
  border-left: 3px solid var(--gold);
  background: var(--cream);
  box-shadow: 0 10px 36px rgba(26, 10, 10, 0.07);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(208, 156, 73, 0.6);
  box-shadow: 0 22px 50px rgba(26, 10, 10, 0.15);
  z-index: 2;
  position: relative;
}

.review-card-accent {
  background: var(--white);
  border-left-color: var(--primary);
}

/* ── SWIPER TESTIMONIALS PREMIUM OVERRIDES ── */
/* Clip wrapper prevents Swiper overflow from causing page-level horizontal scroll */
.testimonials-swiper-clip {
  overflow: hidden;
  width: 100%;
}

.testimonialsSwiper {
  width: 100%;
  padding: 20px 4px 60px !important;
  overflow: hidden !important;
}

.testimonialsSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Navigation Buttons — only shown on very wide screens */
.swiper-nav-buttons {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

@media (max-width: 1300px) {
  .swiper-nav-buttons {
    display: none;
  }
}

/* Testimonial responsive fixes */
@media (max-width: 767px) {
  .review-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .review-text {
    font-size: 0.88rem;
    line-height: 1.75;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(208, 156, 73, 0.3) !important;
  border-radius: 50% !important;
  color: var(--gold) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  pointer-events: auto;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gold) !important;
  color: #fff !important;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(208, 156, 73, 0.3) !important;
  border-color: var(--gold) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Premium Pagination Dots */
.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.2;
  transition: all 0.3s ease;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.review-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.review-person {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── QUICK BOOKING CTA ── */
.cta-strip {
  position: relative;
  background: linear-gradient(135deg, #0c0707 0%, #1a0f12 60%, #0c0707 100%);
  border-top: 1px solid rgba(208, 156, 73, 0.22);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-copy {
  max-width: 620px;
}

.cta-title {
  font-family: 'Prata', serif;
  color: var(--cream);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-text {
  color: rgba(230, 218, 200, 0.72);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-btn {
  white-space: nowrap;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  transform: scale(0.85);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--gold);
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--white);
}

/* ── RESERVATION ── */
#reservation {
  background: var(--primary);
}

.form-control-custom {
  width: 100%;
  background: rgba(230, 218, 200, 0.08);
  border: 1px solid rgba(208, 156, 73, 0.4);
  color: var(--cream);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 0;
}

.form-control-custom::placeholder {
  color: rgba(230, 218, 200, 0.45);
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: rgba(230, 218, 200, 0.12);
}

#reservationForm .form-control-custom:invalid {
  box-shadow: none;
}

#reservationForm .form-control-custom.field-invalid {
  border-color: rgba(208, 156, 73, 0.85);
  background: rgba(230, 218, 200, 0.1);
}

.form-error-msg {
  min-height: 1.25rem;
  margin: 6px 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(230, 200, 160, 0.92);
}

.form-error-msg:empty {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  font-size: 0.88rem;
  line-height: 1.45;
  border: 1px solid rgba(208, 156, 73, 0.35);
  background: rgba(230, 218, 200, 0.06);
  color: rgba(230, 218, 200, 0.92);
}

.form-status:empty {
  display: none;
}

.form-status--success {
  border-color: rgba(208, 156, 73, 0.55);
  background: rgba(208, 156, 73, 0.12);
  color: var(--cream);
}

.form-status--error {
  border-color: rgba(208, 156, 73, 0.4);
  background: rgba(26, 18, 8, 0.35);
  color: rgba(230, 200, 160, 0.95);
}

/* ── TOAST NOTIFICATIONS ── */
.param-toast-host {
  position: fixed;
  top: calc(var(--topbar-height, 44px) + 84px);
  right: 20px;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: min(400px, calc(100vw - 32px));
  pointer-events: none;
}

.param-toast {
  --toast-accent: var(--gold);
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 12px 14px;
  width: 100%;
  padding: 16px 14px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(208, 156, 73, 0.42);
  background: linear-gradient(145deg, rgba(26, 18, 8, 0.98) 0%, rgba(54, 28, 14, 0.96) 100%);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(208, 156, 73, 0.1) inset,
    var(--shadow-gold);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.param-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.param-toast.is-leaving {
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  transition-duration: 0.32s;
}

.param-toast--error {
  --toast-accent: #e8a87a;
  border-color: rgba(232, 168, 122, 0.45);
}

.param-toast__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(208, 156, 73, 0.14);
  color: var(--toast-accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.param-toast--error .param-toast__icon {
  background: rgba(232, 168, 122, 0.14);
}

.param-toast__body {
  min-width: 0;
  padding-top: 2px;
}

.param-toast__title {
  font-family: 'Prata', serif;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 4px;
}

.param-toast__message {
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(230, 218, 200, 0.88);
}

.param-toast__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: -2px -2px 0 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(230, 218, 200, 0.55);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.param-toast__close:hover {
  color: var(--cream);
  background: rgba(208, 156, 73, 0.12);
}

.param-toast__progress {
  grid-column: 1 / -1;
  height: 3px;
  margin: 4px 0 0;
  border-radius: 999px;
  background: rgba(208, 156, 73, 0.15);
  overflow: hidden;
}

.param-toast__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left center;
  transform: scaleX(1);
}

.param-toast--error .param-toast__progress-bar {
  background: linear-gradient(90deg, #c97a4a, #e8a87a);
}

@media (max-width: 575.98px) {
  .param-toast-host {
    top: auto;
    bottom: 20px;
    right: 16px;
    left: 16px;
    width: auto;
    align-items: stretch;
  }

  .param-toast {
    transform: translateY(calc(100% + 24px));
  }

  .param-toast.is-visible {
    transform: translateY(0);
  }

  .param-toast.is-leaving {
    transform: translateY(calc(100% + 24px));
  }
}

#resSubmitBtn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.form-control-custom option {
  background: var(--primary-dark);
  color: var(--cream);
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-label-custom {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.reservation-info-card {
  background: rgba(230, 218, 200, 0.07);
  border: 1px solid rgba(208, 156, 73, 0.25);
  padding: 32px;
  height: 100%;
}

.reservation-info-card h4 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.res-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.res-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid rgba(208, 156, 73, 0.4);
  background: rgba(230, 218, 200, 0.06);
  color: var(--gold);
  font-size: 1.05rem;
}

.res-info-item h6 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.res-info-item p {
  color: rgba(230, 218, 200, 0.75);
  font-size: 0.88rem;
  line-height: 1.5;
}

.res-info-link {
  color: var(--gold) !important;
  font-weight: 500;
  word-break: break-word;
}

.res-info-link:hover {
  color: var(--gold-light) !important;
  text-decoration: underline;
}

.res-info-link-mail {
  font-size: 0.82rem;
}

/* ── LOCATION / VISIT ── */
.location-visit {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 55%);
}

.visit-header .visit-heading {
  font-family: 'Prata', serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.15;
}

.visit-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0;
}

.visit-header-accent {
  height: 4px;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  background: linear-gradient(90deg, transparent, var(--gold), var(--primary));
  border-radius: 2px;
}

.map-frame {
  position: relative;
  padding: 3px;
  background: linear-gradient(135deg, rgba(208, 156, 73, 0.45), rgba(112, 0, 0, 0.25));
  box-shadow: 0 24px 60px rgba(26, 10, 10, 0.12);
}

.map-wrapper {
  position: relative;
  padding-bottom: 420px;
  height: 0;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.map-wrapper.map-wrapper-refined {
  border: none;
  padding-bottom: 56%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .map-wrapper.map-wrapper-refined {
    padding-bottom: 58%;
    min-height: 380px;
  }
}

.visit-panel {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(208, 156, 73, 0.28);
  border-left: 4px solid var(--primary);
  padding: 28px 26px 32px;
  box-shadow: 0 18px 48px rgba(26, 10, 10, 0.08);
}

.visit-panel-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.visit-panel-title {
  font-family: 'Prata', serif;
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 22px;
  line-height: 1.2;
}

.visit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visit-list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(208, 156, 73, 0.18);
}

.visit-list-item:first-child {
  padding-top: 0;
}

.visit-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.visit-list-item--hours {
  background: linear-gradient(90deg, rgba(208, 156, 73, 0.08), transparent);
  margin: 8px -12px 0;
  padding: 18px 12px !important;
  border-bottom: none;
}

.visit-list-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(208, 156, 73, 0.35);
  background: rgba(230, 218, 200, 0.35);
  font-size: 1.05rem;
}

.visit-list-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.visit-list-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0;
}

.visit-link {
  color: var(--primary);
  font-weight: 600;
}

.visit-link:hover {
  color: var(--gold);
}

.visit-link-small {
  font-size: 0.84rem;
  font-weight: 500;
}

/* ── PREMIUM EXPERIENCES (pre-footer) ── */
.premium-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0f0b0b 0%, #1a0f12 45%, #120a0c 100%);
  color: var(--cream);
}

.premium-bg-shimmer {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse 60% 50% at 70% 20%, rgba(208, 156, 73, 0.12) 0%, transparent 55%);
  pointer-events: none;
  animation: premiumGlow 14s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
  from {
    opacity: 0.65;
    transform: translate(-2%, 0);
  }

  to {
    opacity: 1;
    transform: translate(2%, 0);
  }
}

.premium-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}

.premium-title {
  font-family: 'Prata', serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.premium-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(230, 218, 200, 0.78);
  max-width: 620px;
  margin-bottom: 8px;
}

.premium-card {
  display: flex;
  gap: 22px;
  height: 100%;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(208, 156, 73, 0.22);
  border-left: 3px solid var(--gold);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(208, 156, 73, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.055);
}

.premium-card-accent {
  border-left-color: var(--gold-light);
  background: rgba(208, 156, 73, 0.06);
}

.premium-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--gold);
  background: rgba(208, 156, 73, 0.12);
  border: 1px solid rgba(208, 156, 73, 0.3);
}

.premium-card-title {
  font-family: 'Prata', serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.premium-card-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(230, 218, 200, 0.72);
  margin-bottom: 14px;
}

.premium-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, gap 0.3s ease;
  gap: 0;
}

.premium-card-link:hover {
  color: var(--white);
}

/* ── KITCHEN PROMISE ── */
.promise-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(230, 218, 200, 0.25) 0%, rgba(255, 255, 255, 1) 62%, rgba(230, 218, 200, 0.18) 100%);
  border-top: 1px solid rgba(208, 156, 73, 0.18);
  border-bottom: 1px solid rgba(208, 156, 73, 0.12);
}

.promise-bg-lines {
  position: absolute;
  inset: -30% -20%;
  background:
    repeating-linear-gradient(90deg, rgba(208, 156, 73, 0.08) 0px, rgba(208, 156, 73, 0.08) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(0deg, rgba(208, 156, 73, 0.05) 0px, rgba(208, 156, 73, 0.05) 1px, transparent 1px, transparent 18px);
  transform: rotate(-6deg);
  pointer-events: none;
}

.promise-grid {
  position: relative;
}

.promise-card {
  height: 100%;
  background: rgba(26, 10, 10, 0.03);
  border: 1px solid rgba(208, 156, 73, 0.22);
  padding: 26px 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.promise-card:hover {
  transform: translateY(-7px);
  border-color: rgba(208, 156, 73, 0.45);
  background: rgba(208, 156, 73, 0.06);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.promise-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 156, 73, 0.12);
  border: 1px solid rgba(208, 156, 73, 0.35);
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.promise-title {
  font-family: 'Prata', serif;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.promise-text {
  margin: 0;
  color: rgba(44, 26, 26, 0.72);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── SIGNATURE SPOTLIGHT SLIDER ── */
.spotlight-section {
  background: linear-gradient(180deg, rgba(230, 218, 200, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
}

.spotlight-slider {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(208, 156, 73, 0.25);
  overflow: hidden;
  background: rgba(26, 10, 10, 0.02);
  box-shadow: 0 28px 70px rgba(26, 10, 10, 0.12);
  min-height: 480px;
}

.spotlight-slides {
  position: absolute;
  inset: 0;
}

.spotlight-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 1.1s ease;
}

.spotlight-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 10, 10, 0.82) 0%, rgba(26, 10, 10, 0.45) 55%, rgba(26, 10, 10, 0.15) 100%),
    radial-gradient(700px 320px at 20% 25%, rgba(208, 156, 73, 0.18) 0%, transparent 55%);
}

.spotlight-slide.active {
  opacity: 1;
  transform: scale(1);
}

.spotlight-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 28px 26px;
  z-index: 2;
  max-width: 720px;
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(208, 156, 73, 0.92);
  color: var(--primary);
  border: 1px solid rgba(208, 156, 73, 0.35);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}

.spotlight-title {
  font-family: 'Prata', serif;
  color: var(--white);
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  line-height: 1.18;
  margin-bottom: 10px;
}

.spotlight-text {
  color: rgba(230, 218, 200, 0.86);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0 0 18px 0;
}

.spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(208, 156, 73, 0.35);
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.spotlight-link:hover {
  transform: translateY(-2px);
  color: var(--cream);
  border-color: rgba(208, 156, 73, 0.75);
}

.spotlight-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(208, 156, 73, 0.35);
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold);
  cursor: pointer;
  z-index: 6;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.spotlight-control:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(208, 156, 73, 0.92);
  border-color: rgba(208, 156, 73, 0.95);
  color: var(--primary-dark);
}

.spotlight-prev {
  left: 16px;
}

.spotlight-next {
  right: 16px;
}

.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.spotlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(208, 156, 73, 0.55);
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-dot:hover {
  transform: scale(1.15);
  border-color: rgba(208, 156, 73, 0.9);
}

.spotlight-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(208, 156, 73, 0.45);
}

@media (max-width: 575px) {
  .spotlight-slider {
    min-height: 430px;
  }

  .spotlight-overlay {
    padding: 22px 18px 20px;
  }

  .spotlight-control {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .spotlight-prev {
    left: 10px;
  }

  .spotlight-next {
    right: 10px;
  }
}

/* ── RESERVATION (premium feel + interactions) ── */
#reservation {
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(208, 156, 73, 0.28) 0%, transparent 60%),
    linear-gradient(180deg, rgba(112, 0, 0, 1) 0%, rgba(74, 0, 0, 1) 55%, rgba(40, 0, 0, 1) 100%);
}

.reservation-info-card {
  border-radius: 16px;
  position: relative;
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.22);
}

.res-info-item {
  transition: transform 0.3s ease;
}

.reservation-info-card:hover .res-info-item {
  transform: translateY(-1px);
}

.res-live-summary {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(208, 156, 73, 0.25);
  background: rgba(208, 156, 73, 0.05);
}

.res-live-title {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(208, 156, 73, 0.92);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.res-live-text {
  color: rgba(230, 218, 200, 0.86);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* Premium accordion inside reservation section */
.premium-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 156, 73, 0.22);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}

.premium-accordion .accordion-button {
  background: transparent;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 16px;
}

.premium-accordion .accordion-button:not(.collapsed) {
  background: rgba(208, 156, 73, 0.08);
  box-shadow: inset 0 -1px 0 rgba(208, 156, 73, 0.25);
}

.premium-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(56%) sepia(59%) saturate(410%) hue-rotate(9deg) brightness(92%) contrast(92%);
}

.premium-accordion .premium-acc-body {
  color: rgba(230, 218, 200, 0.78);
  line-height: 1.9;
  padding: 14px 18px 18px;
}

/* ── LOCATION (premium map + cards) ── */
.map-wrapper.map-wrapper-refined {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-wrapper.map-wrapper-refined:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 22px 60px rgba(26, 10, 10, 0.12);
}

.map-gold-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(208, 156, 73, 0.95);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow: 0 18px 50px rgba(208, 156, 73, 0.22);
}

.map-gold-chip i {
  color: var(--primary);
}

.visit-panel {
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.visit-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(26, 10, 10, 0.10);
}

/* ── FOOTER ── */
footer {
  position: relative;
  background: radial-gradient(1200px 420px at 20% -10%, rgba(208, 156, 73, 0.18) 0%, transparent 60%),
    radial-gradient(900px 380px at 90% 0%, rgba(208, 156, 73, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #140707 0%, var(--primary-dark) 55%, #0f0505 100%);
  padding: 78px 0 44px;
  color: rgba(230, 218, 200, 0.78);
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: -40px -20px auto -20px;
  height: 220px;
  background: linear-gradient(90deg, transparent 0%, rgba(208, 156, 73, 0.35) 45%, transparent 100%);
  opacity: 0.25;
  pointer-events: none;
}

footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(208, 156, 73, 0.06) 0px, rgba(208, 156, 73, 0.06) 1px, transparent 1px, transparent 26px),
    repeating-linear-gradient(0deg, rgba(230, 218, 200, 0.04) 0px, rgba(230, 218, 200, 0.04) 1px, transparent 1px, transparent 22px);
  opacity: 0.18;
  pointer-events: none;
}

footer>.container {
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: var(--gold);
}

.footer-brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(230, 218, 200, 0.5);
  margin-top: 4px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-link {
  display: block;
  color: rgba(230, 218, 200, 0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-divider {
  border-color: rgba(208, 156, 73, 0.35);
  margin: 46px 0 24px;
}

.footer-bottom {
  font-size: 0.82rem;
  color: rgba(230, 218, 200, 0.45);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(208, 156, 73, 0.46);
  color: var(--gold);
  font-size: 1.1rem;
  margin-right: 10px;
  transition: var(--transition);
  text-decoration: none;
  border-radius: 12px;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}

/* ── FOOTER TOP FOOD STRIP ── */
.footer-food-strip {
  margin-top: 26px;
  border: 1px solid rgba(208, 156, 73, 0.22);
  border-left: 4px solid rgba(208, 156, 73, 0.9);
  background: rgba(230, 218, 200, 0.04);
  padding: 22px 22px;
  position: relative;
  z-index: 1;
}

.footer-food-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.footer-food-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: flex-start;
  margin-top: 14px;
}

.footer-food-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(208, 156, 73, 0.22);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(230, 218, 200, 0.78);
  transition: var(--transition);
}

.footer-food-chip i {
  color: var(--gold);
  font-size: 1.05rem;
}

.footer-food-chip:hover {
  background: rgba(208, 156, 73, 0.92);
  color: var(--primary-dark);
  border-color: rgba(208, 156, 73, 0.95);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.footer-bottom-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.footer-bottom-link {
  color: rgba(230, 218, 200, 0.74);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--gold);
}

.footer-bottom-link i {
  color: var(--gold);
}

.footer-bottom-sep {
  color: rgba(208, 156, 73, 0.45);
}

.footer-bottom-heart {
  color: rgba(230, 218, 200, 0.5);
  font-size: 0.86rem;
}

@media (max-width: 991px) {
  .footer-food-chips {
    justify-content: center;
  }

  .footer-bottom-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-right {
    justify-content: flex-start;
  }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  animation: waFloat 3s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shimmer {
    opacity: 0.2;
  }

  .hero-slide.active {
    animation: none !important;
  }

  .premium-bg-shimmer {
    animation: none;
    opacity: 0.8;
  }
}

/* ── AOS CUSTOM (scroll reveal) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.9);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-accent-box {
    right: 0;
    bottom: -20px;
    width: 140px;
    height: 140px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .founder-img {
    height: 420px;
  }

  #mainNav .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-main-img {
    height: 360px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .topbar-inner {
    font-size: 0.92em;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightweight interactive feedback (transform-only) */
.btn-gold,
.btn-outline-gold,
.btn-outline-white {
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.btn-gold:active,
.btn-outline-gold:active,
.btn-outline-white:active {
  transform: scale(0.98);
}

.nav-link-custom:active {
  transform: translateY(1px);
}

.interactive-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.interactive-lift:hover {
  transform: translateY(-4px);
}

body.gallery-page {
  background: #faf8f5;
}
.gallery-hero-premium {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 120px;
}

.gal-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Assets/Images/Ambiance/19.webp');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}

.gallery-hero-premium:hover .gal-hero-bg {
  transform: scale(1);
}

.gal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 4, 4, 0.82) 0%, rgba(10, 4, 4, 0.45) 60%, rgba(10, 4, 4, 0.25) 100%),
    linear-gradient(to top, rgba(10, 4, 4, 0.95) 0%, rgba(10, 4, 4, 0.1) 55%);
  z-index: 1;
}

.gal-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

/* Breadcrumb */
.gal-breadcrumb {
  margin-bottom: 28px;
}

.gal-breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.gal-breadcrumb li {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 218, 200, 0.55);
  display: flex;
  align-items: center;
}

.gal-breadcrumb li a {
  color: rgba(208, 156, 73, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gal-breadcrumb li a:hover {
  color: var(--gold);
}

.gal-breadcrumb li i.bi-chevron-right {
  font-size: 0.6rem;
  opacity: 0.5;
}

.gal-breadcrumb li.active {
  color: rgba(230, 218, 200, 0.9);
  font-weight: 600;
}

/* Hero text */
.gal-hero-text {
  max-width: 640px;
}

.gal-hero-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.gal-hero-title {
  font-family: 'Prata', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.05;
}

.gal-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(230, 218, 200, 0.78);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* Stats strip */
.gal-hero-stats {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(208, 156, 73, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 480px;
}

.gal-stat {
  flex: 1;
  text-align: center;
}

.gal-stat-num {
  display: block;
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.gal-stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(230, 218, 200, 0.55);
}

.gal-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(208, 156, 73, 0.28);
  flex-shrink: 0;
}

/* Scroll hint */
.gal-hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.gal-hero-scroll span {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: rgba(230, 218, 200, 0.45);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  transform: rotate(180deg);
}

.gallery-container {
  padding: 56px 0 100px;
  background-color: #faf8f5;

.gal-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(208, 156, 73, 0.6), rgba(208, 156, 73, 0));
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* FILTER BAR */
.gallery-container {
  padding: 56px 0 100px;
  background-color: #faf8f5;
}

.filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(208, 156, 73, 0.35);
  color: var(--text-dark);
  padding: 10px 22px;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(208, 156, 73, 0.1);
  border-color: var(--gold);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(208, 156, 73, 0.25);
}

.filter-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.filter-count span {
  font-weight: 700;
  color: var(--primary);
}

/* GALLERY MASONRY GRID */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
}

.gallery-page-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(208, 156, 73, 0.12);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  background: #111;
  cursor: pointer;
}

.gallery-page-grid .gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(208, 156, 73, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.gallery-page-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}

.gallery-page-grid .gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-page-grid .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(112, 0, 0, 0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-page-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-page-grid .gallery-icon {
  color: #fff;
  font-size: 1.5rem;
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.gallery-page-grid .gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

.gallery-page-grid .gallery-overlay::after {
  content: attr(data-label);
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 218, 200, 0.7);
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.gallery-page-grid .gallery-item:hover .gallery-overlay::after {
  transform: translateY(0);
}

.gallery-page-grid .tall { grid-row: span 2; }
.gallery-page-grid .wide { grid-column: span 2; }

/* GALLERY RESPONSIVE */
@media (max-width: 1100px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-hero-premium { min-height: 60vh; }
  .gal-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .gal-hero-stats { padding: 16px 20px; flex-wrap: wrap; gap: 16px; }
  .gal-stat-sep { display: none; }
  .gal-hero-scroll { display: none; }
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }
  .gallery-page-grid .wide,
  .gallery-page-grid .tall { grid-column: span 1; grid-row: span 1; }
  .filter-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-container { padding: 32px 0 60px; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 6px; }
  .gal-hero-content { padding-bottom: 40px; }
  .gal-hero-stats { display: none; }
  .filter-btn { padding: 8px 14px; font-size: 0.68rem; }
} }