@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* --- CUSTOM DESIGN SYSTEM TOKENS --- */
:root {
  --bg-dark: #121210;
  --bg-charcoal: #191916;
  --bg-card: #20201c;
  --color-sand: #DFD5C6;
  --color-gold: #d4b16d;
  --color-gold-hover: #e2c58a;
  --color-red: #a60a20;
  --color-red-hover: #c9102c;
  --text-white: #fbfaf7;
  --text-muted: #9d9ba6;
  --text-light-sand: #ECE5DF;

  --font-serif-display: 'Playfair Display', serif;
  --font-serif-text: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --font-sans-display: 'Poppins', sans-serif;

  --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s ease;
}

/* --- BASE STYLING & RESET --- */
html,
body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: initial;
  /* Lenis */
}

/* Lenis Smooth Scroll Configuration */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  scroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(18, 18, 16, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 177, 109, 0.3);
  /* Subtle semi-transparent gold */
  border-radius: 4px;
  border: 2px solid var(--bg-dark);
  /* Soft padding border */
  transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 177, 109, 0.8);
  /* Highlights gracefully on hover */
}

/* --- TYPOGRAPHY SYSTEM --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.font-serif-italic {
  font-family: var(--font-serif-text);
  font-style: italic;
  font-weight: 400;
}

.text-gold {
  color: var(--color-gold) !important;
}

.text-sand {
  color: var(--color-sand) !important;
}

.section-subtitle {
  font-family: var(--font-sans-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* --- PREMIUM CINEMATIC PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.preloader-wrap {
  text-align: center;
  overflow: hidden;
}

.preloader-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(100px);
  filter: drop-shadow(0 2px 15px rgba(212, 177, 109, 0.25));
}

.preloader-logo {
  font-family: var(--font-serif-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
  transform: translateY(100px);
}

.preloader-line {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--color-gold);
}

/* --- LOGO BRANDING SVG --- */
.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none !important;
}

.logo-svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(246, 226, 173, 0.15));
  transition: var(--transition-smooth);
}

.logo-container:hover .logo-img {
  transform: rotate(5deg) scale(1.08);
}

.logo-text {
  font-family: var(--font-serif-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.logo-text span {
  color: var(--color-sand);
  font-size: 0.75rem;
  display: block;
  letter-spacing: 0.2em;
  margin-top: 0.15rem;
  font-family: var(--font-sans-display);
}

.logo-container:hover .logo-svg {
  transform: rotate(15px) scale(1.08);
  stroke: var(--color-gold-hover);
}

/* --- GLASSMORPHISM NAVBAR --- */
.navbar-luxury {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.navbar-luxury.scrolled {
  padding: 1rem 0;
  background: rgba(18, 18, 16, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 177, 109, 0.15);
}

.nav-link-luxury {
  font-family: var(--font-sans-display);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-white) !important;
  padding: 0.5rem 1.5rem !important;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link-luxury::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link-luxury:hover::after,
.nav-link-luxury.active::after {
  width: 60%;
}

.nav-link-luxury:hover {
  color: var(--color-gold) !important;
}

/* Mobile Menu Fix */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--bg-charcoal);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 177, 109, 0.15);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .navbar-collapse .nav-item {
    margin-bottom: 0.5rem;
  }
}

/* --- LUXURY BUTTONS --- */
.btn-luxury {
  display: inline-block;
  text-decoration: none !important;
  font-family: var(--font-sans-display);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.1rem 2.2rem;
  border-radius: 0;
  border: 1px solid var(--color-gold);
  color: var(--text-white);
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-luxury:hover {
  color: var(--bg-dark) !important;
  border-color: var(--color-gold);
}

.btn-luxury:hover::before {
  left: 0;
}

.btn-luxury-solid {
  background: var(--color-gold);
  color: var(--bg-dark);
  border-color: var(--color-gold);
}

.btn-luxury-solid:hover {
  background: transparent;
  color: var(--text-white) !important;
}

.btn-luxury-solid::before {
  background: var(--bg-dark);
}

.btn-link-luxury {
  font-family: var(--font-sans-display);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.btn-link-luxury i {
  transition: var(--transition-fast);
}

.btn-link-luxury:hover {
  color: var(--text-white);
}

.btn-link-luxury:hover i {
  transform: translateX(5px);
}

/* --- CINEMATIC HERO SECTION --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
}

.editorial-text-block {
  border-left: 3px solid var(--color-gold);
}

.luxury-list li {
  transition: var(--transition-fast);
}

.luxury-list li:hover {
  transform: translateX(10px);
}

.icon-box-gold {
  width: 35px;
  height: 35px;
  background: rgba(212, 177, 109, 0.15);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.icon-box-gold i {
  line-height: 1;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: brightness(0.4) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(166, 10, 32, 0.1) 0%, rgba(18, 18, 16, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-title-reveal {
  overflow: hidden;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 6.5rem);
  line-height: 1;
  font-weight: 400;
}

.hero-title span {
  font-family: var(--font-serif-text);
  font-style: italic;
  font-weight: 300;
}

.hero-lead-reveal {
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.hero-lead {
  font-family: var(--font-serif-text);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: var(--color-sand);
}

.hero-ctas {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  opacity: 0;
}

.scroll-text {
  font-family: var(--font-sans-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sand);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(223, 213, 198, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background: var(--color-gold);
  animation: scrollAnim 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes scrollAnim {
  0% {
    top: -25px;
  }

  100% {
    top: 100%;
  }
}

/* Responsive spacing for short viewport heights to prevent content overlaps */
@media (max-height: 780px) {
  .hero-section {
    min-height: 620px;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
  }

  .hero-lead-reveal {
    margin-bottom: 1.5rem;
  }

  .scroll-indicator {
    bottom: 1rem;
  }

  .scroll-line {
    height: 40px;
  }
}

/* --- ASYMMETRICAL EDITORIAL ABOUT SECTION --- */
.about-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
  /* Elegant dark background */
  position: relative;
  color: var(--text-white);
  /* Light text */
}

.about-section .section-title {
  color: var(--text-white);
  /* Light heading */
}

.about-section p {
  color: var(--text-muted);
  /* Muted text */
}

.about-section .text-white {
  color: var(--text-white) !important;
  /* Override any white text */
}

.about-section .btn-luxury {
  color: var(--text-white);
  border-color: var(--color-gold);
}

.about-section .btn-luxury:hover {
  color: var(--bg-dark) !important;
}

.editorial-layout {
  position: relative;
}

.image-stack-wrapper {
  position: relative;
  height: 650px;
}

.img-frame {
  overflow: hidden;
  position: absolute;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.img-frame-main {
  width: 75%;
  height: 80%;
  left: 0;
  top: 0;
  z-index: 1;
}

.img-frame-sub {
  width: 50%;
  height: 55%;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 5px solid var(--bg-dark);
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-block {
  padding: 2rem 0 0 1.5rem;
}

/* --- ABOUT SECTION SWIPER --- */
.swiper-about {
  width: 100%;
  height: auto;
}

.swiper-about .swiper-slide img {
  width: 100%;
  height: auto !important;
}

@media (max-width: 991px) {
  .about-section {
    padding: 4rem 0;
  }

  .image-stack-wrapper {
    height: 480px;
    margin-bottom: 4rem;
  }

  .about-content-block {
    padding: 0;
  }
}

/* --- SIGNATURE DISHES Swiper Slider --- */
.dishes-section {
  padding: 8rem 0;
  background-color: var(--bg-charcoal);
  overflow: hidden;
}

.swiper-dishes {
  padding: 3rem 0 !important;
  overflow: visible !important;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.dish-card-img-wrap {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
}

.dish-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background-color: var(--bg-dark);
  transition: var(--transition-smooth);
}

.dish-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 16, 0.95) 0%, rgba(18, 18, 16, 0) 100%);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.dish-card-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
  background: var(--bg-card);
}

.dish-category {
  font-family: var(--font-sans-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.dish-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif-display);
  transition: var(--transition-fast);
}

.dish-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.dish-price {
  font-family: var(--font-serif-text);
  font-size: 1.4rem;
  color: var(--color-sand);
}

/* Hover States */
.dish-card:hover {
  transform: translateY(-10px);
  border-color: rgba(203, 176, 137, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.dish-card:hover .dish-card-img {
  transform: scale(1.1);
}

.dish-card:hover .dish-card-overlay {
  opacity: 0.9;
}

.dish-card:hover .dish-title {
  color: var(--color-gold);
}

.swiper-nav-btn {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(203, 176, 137, 0.3);
  background: transparent;
  color: var(--color-gold);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.swiper-nav-btn:hover {
  background: var(--color-gold);
  color: var(--bg-dark);
  border-color: var(--color-gold);
}

.swiper-nav-container {
  display: flex;
  gap: 1rem;
}

/* --- AMBIENCE CINEMATIC GRID --- */
.ambience-section {
  padding: 8rem 0;
  background-color: var(--bg-dark);
}

.ambience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.ambience-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.ambience-item-1 {
  grid-column: span 7;
  height: 500px;
}

.ambience-item-2 {
  grid-column: span 5;
  height: 500px;
  margin-top: 4rem;
}

.ambience-item-3 {
  grid-column: span 4;
  height: 400px;
  margin-top: -2rem;
}

.ambience-item-4 {
  grid-column: span 8;
  height: 400px;
  margin-top: 2rem;
}

.ambience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.ambience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 16, 0.95) 0%, rgba(166, 10, 32, 0.15) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.ambience-caption {
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.ambience-caption h3 {
  font-family: var(--font-serif-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.ambience-caption p {
  color: var(--color-sand);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Hover animations */
.ambience-item:hover .ambience-img {
  transform: scale(1.08);
}

.ambience-item:hover .ambience-overlay {
  opacity: 1;
}

.ambience-item:hover .ambience-caption {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .ambience-grid {
    gap: 1.5rem;
  }

  .ambience-item-1,
  .ambience-item-2,
  .ambience-item-3,
  .ambience-item-4 {
    grid-column: span 12 !important;
    height: 350px !important;
    margin-top: 0 !important;
  }
}

/* --- PREMIUM LUXURY ACCOMMODATION CARDS --- */
.accommodation-section {
  padding: 8rem 0;
  background-color: var(--bg-charcoal);
  overflow: hidden;
}

.room-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.02);
  margin-bottom: 4rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: var(--transition-smooth);
}

.room-img-wrap {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.room-details-panel {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-family: var(--font-sans-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.meta-val {
  font-family: var(--font-serif-text);
  font-size: 1.15rem;
  color: var(--text-light-sand);
}

@media (max-width: 991px) {
  .room-img-wrap {
    height: 380px;
  }

  .room-details-panel {
    padding: 2.5rem 1.5rem;
  }
}

/* --- CHEF STORY SECTION --- */
.chef-section {
  padding: 10rem 0;
  background-color: var(--bg-charcoal);
  position: relative;
}

.chef-img-wrapper {
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  height: 600px;
}

.chef-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-quote {
  font-family: var(--font-serif-text);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.5;
  color: var(--text-light-sand);
  border-left: 2px solid var(--color-gold);
  padding-left: 2rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.chef-signature {
  font-family: var(--font-serif-text);
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .chef-section {
    padding: 6rem 0;
  }

  .chef-img-wrapper {
    height: 450px;
    margin-bottom: 4rem;
  }
}

.chef-section .chef-img-wrapper {
  transition: var(--transition-smooth);
}

.chef-section .chef-img {
  transition: var(--transition-smooth);
}

.chef-section .chef-img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(212, 177, 109, 0.2) !important;
}

.chef-section .chef-img-wrapper:hover .chef-img {
  transform: scale(1.08);
}

/* --- PREMIUM GLASSMORPHISM RESERVATION FORM --- */
.reservation-section {
  padding: 10rem 0;
  background: linear-gradient(to bottom, rgba(18, 18, 16, 0.95), rgba(166, 10, 32, 0.75)), url('../images/home-page/LGF1_5.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.booking-glass-panel {
  background: rgba(25, 28, 34, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4.5rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  position: relative;
}

.booking-glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-red), var(--color-gold));
}

.luxury-input-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.luxury-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 0;
  font-size: 1rem;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.luxury-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.luxury-label {
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-family: var(--font-sans-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: var(--transition-fast);
  pointer-events: none;
}

/* Floating labels effect */
.luxury-input:focus~.luxury-label,
.luxury-input:valid~.luxury-label,
.luxury-input:not(:placeholder-shown)~.luxury-label {
  top: -1.2rem;
  font-size: 0.65rem;
  color: var(--color-gold);
}

select.luxury-input {
  color: var(--text-white);
}

select.luxury-input option {
  background-color: var(--bg-charcoal);
  color: var(--text-white);
  padding: 1rem;
}

@media (max-width: 767px) {
  .reservation-section {
    padding: 6rem 0;
  }

  .booking-glass-panel {
    padding: 2.5rem 1.5rem;
  }
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--bg-charcoal);
}

.swiper-testimonials {
  padding: 2rem 0 !important;
}

.testimonial-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: var(--font-serif-text);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.6;
  color: var(--text-light-sand);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.testimonial-author {
  font-family: var(--font-sans-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.testimonial-origin {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-pagination {
  position: relative !important;
  margin-top: 3rem;
}

.testimonial-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.15) !important;
  opacity: 1 !important;
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  transition: var(--transition-fast);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  transform: scale(1.3);
}

/* --- SUBPAGES & SECTION ELEMENTS --- */

/* Page Headers */
.page-header {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  transform: scale(1.05);
}

.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-header-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
}

/* Brand Philosophy / Story Block (About Page) */
.story-block {
  padding: 8rem 0;
}

.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.philosophy-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.philosophy-row.reverse {
  flex-direction: row-reverse;
}

.philosophy-img-wrap {
  flex: 1;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.philosophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content {
  flex: 1;
}

@media (max-width: 991px) {

  .philosophy-row,
  .philosophy-row.reverse {
    flex-direction: column;
    gap: 3rem;
  }

  .philosophy-img-wrap {
    width: 100%;
    height: 350px;
  }
}

/* Culinary Menu Tabs (Menu Page) */
.menu-nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.menu-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-sans-display);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  padding: 1.5rem 0.5rem;
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

.menu-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.menu-tab-btn.active,
.menu-tab-btn:hover {
  color: var(--text-white);
}

.menu-tab-btn.active::after {
  width: 100%;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.menu-item-info {
  max-width: 75%;
}

.menu-item-title {
  font-family: var(--font-serif-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-item-title span.badge-chef {
  font-family: var(--font-sans-display);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(166, 10, 32, 0.2);
  color: var(--color-gold);
  padding: 0.2rem 0.6rem;
  font-weight: 500;
  border: 1px solid rgba(166, 10, 32, 0.45);
}

.menu-item-ingredients {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.menu-item-price {
  font-family: var(--font-serif-text);
  font-size: 1.5rem;
  color: var(--color-gold);
  white-space: nowrap;
}

@media (max-width: 991px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Cinematic Masonry Gallery (Gallery Page) */
.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.gallery-filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--text-white);
  background: rgba(203, 176, 137, 0.05);
}

.gallery-masonry {
  columns: 3 320px;
  column-gap: 2rem;
}

.gallery-masonry-item {
  width: 100%;
  margin-bottom: 2rem;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.gallery-masonry-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 10, 12, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.gallery-masonry-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-masonry-text {
  font-family: var(--font-serif-display);
  font-size: 1.3rem;
  color: var(--text-white);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-masonry-item:hover .gallery-masonry-img {
  transform: scale(1.06);
}

.gallery-masonry-item:hover .gallery-masonry-overlay {
  opacity: 1;
}

.gallery-masonry-item:hover .gallery-masonry-icon,
.gallery-masonry-item:hover .gallery-masonry-text {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.98);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.show {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold);
}

/* Contact Info Layout */
.contact-info-panel {
  background: var(--bg-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 4rem;
  height: 100%;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-icon {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-label {
  font-family: var(--font-sans-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-value {
  color: var(--text-light-sand);
  font-family: var(--font-serif-text);
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-value a:hover {
  color: var(--color-gold);
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(203, 176, 137, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.map-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  animation: mapFloat 3s infinite ease-in-out;
}

@keyframes mapFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- ELEGANT MINIMAL FOOTER --- */
.footer-luxury {
  background-color: var(--bg-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-sans-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-info-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-info-text a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-info-text a:hover {
  color: var(--color-gold);
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  background: var(--bg-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 3.5rem 1rem 1.5rem;
  color: var(--text-white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-size: 1.2rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  color: var(--text-white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-img-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.footer-img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.footer-img:hover {
  transform: scale(1.05);
  border-color: var(--color-gold);
}