html {
  overflow-x: hidden;
}

:root {
  --gold: #c5a86b;
  --gold-dark: #a38850;
  --gold-light: #dfc48a;
  --black: #000;
  --dark: #0b0b0b;
  --dark2: #111111;
  --dark3: #181818;
  --white: #fff;
  --text-muted: rgba(255, 255, 255, 0.55);
}

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

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

/* =====================
   SECTION EYEBROW
   ===================== */
.section-eyebrow {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  padding: 16px 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom-color: rgba(197, 168, 107, 0.15);
}

.navbar-logo {
  height: 56px;
  width: auto;
  transition: height 0.4s ease;
}

.navbar.scrolled .navbar-logo {
  height: 44px;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  color: var(--white) !important;
  margin: 0 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  position: relative;
  padding: 6px 4px !important;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition:
    left 0.3s ease,
    right 0.3s ease;
}

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

.nav-link:hover::after {
  left: 0;
  right: 0;
}

.social-icons a {
  color: var(--gold);
  border: 1px solid rgba(197, 168, 107, 0.5);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.social-icons a:hover {
  background: rgba(197, 168, 107, 0.15);
  border-color: var(--gold);
}

.order-btn {
  background-color: transparent;
  border: 1px solid rgba(197, 168, 107, 0.4);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.order-btn:hover {
  border-color: var(--gold);
  background: rgba(197, 168, 107, 0.08);
}

.order-btn img {
  height: 22px;
  object-fit: contain;
}

/* =====================
   MOBILE NAV DRAWER
   ===================== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1998;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100vh;
  background: #0a0a0a;
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid rgba(197, 168, 107, 0.12);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(197, 168, 107, 0.12);
}

.mobile-nav-header img {
  height: 52px;
  width: auto;
}

.mobile-nav-close {
  background: transparent;
  border: 1px solid rgba(197, 168, 107, 0.4);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.mobile-nav-close:hover {
  background: rgba(197, 168, 107, 0.15);
}

.mobile-nav-links {
  flex: 1;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    color 0.2s,
    background 0.2s;
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}

.mobile-nav-links a:hover {
  color: var(--gold);
  background: rgba(197, 168, 107, 0.05);
}

.mobile-nav-links a i {
  font-size: 0.8rem;
  opacity: 0.4;
}

.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid rgba(197, 168, 107, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mobile-nav-footer .social-icons {
  display: flex;
  gap: 10px;
}

.mobile-nav-footer .social-icons a {
  margin-left: 0;
}

.mobile-nav-footer .order-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 991px) {
  #mainNavbar {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none !important;
  }
  .mobile-nav-drawer,
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* =====================
   HERO
   ===================== */
.hero {
  height: 100dvh;
  min-height: 600px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.55) 80%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  color: var(--white);
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  animation: heroFadeUp 1.2s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1;
}

.hero-content > p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.6rem, 1.6vw, 0.8rem);
  letter-spacing: 0.3em;
  margin-bottom: 32px;
  color: var(--gold-light, #dfc48a);
  font-weight: 500;
  text-transform: uppercase;
}

.spec-tag {
  font-family: "Montserrat", sans-serif;
  border: 1px solid rgba(197, 168, 107, 0.45);
  padding: 6px 18px;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 2px;
}

/* SCROLL ARROW */
.scroll-arrow-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fancy-arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0;
  animation: arrowFade 1.8s infinite;
}

.fancy-arrow:nth-child(1) {
  animation-delay: 0s;
}
.fancy-arrow:nth-child(2) {
  animation-delay: 0.25s;
}
.fancy-arrow:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes arrowFade {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateY(-4px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translateY(4px);
  }
}

/* =====================
   BUTTONS
   ===================== */
.btn-gold {
  background-color: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  padding: 13px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}

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

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 13px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* =====================
   ORDER MODAL
   ===================== */
.modal-content {
  background-color: var(--dark2);
  border: 1px solid rgba(197, 168, 107, 0.25);
  border-radius: 4px;
}

.modal-title {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.order-platform-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  border-radius: 4px;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.order-platform-card:hover {
  border-color: var(--gold);
  background: rgba(197, 168, 107, 0.06);
}

.order-logo {
  height: 32px;
  object-fit: contain;
}

/* =====================
   ABOUT SECTION
   ===================== */
.section-padding {
  padding: 100px 0;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0;
}

.about-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}

.about-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-collage {
  display: flex;
  gap: 10px;
  height: 480px;
}

.about-collage-main {
  flex: 2;
  overflow: hidden;
  border-radius: 2px;
}

.about-collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.about-collage-main img:hover {
  transform: scale(1.04);
}

.about-collage-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-collage-side img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  transition: transform 0.6s ease;
}

.about-collage-side img:hover {
  transform: scale(1.04);
}

@media (max-width: 576px) {
  .about-collage {
    height: 300px;
  }
}

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  background: var(--dark3, #181818);
  border-top: 1px solid rgba(197, 168, 107, 0.12);
  border-bottom: 1px solid rgba(197, 168, 107, 0.12);
  padding: 48px 0;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* .stat-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 0.5rem;
  color: var(--text-muted);
  margin-top: 4px;
} */

/* =====================
   FOOD SHOWCASE / TICKER
   ===================== */
.food-showcase {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

.showcase-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}

.showcase-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.food-ticker-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.food-ticker {
  display: flex;
  gap: 10px;
  width: max-content;
}

.ticker-ltr {
  animation: tickerLTR 42s linear infinite;
}
.ticker-rtl {
  animation: tickerRTL 46s linear infinite;
}

.food-ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  position: relative;
  width: 210px;
  height: 155px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 107, 0.15);
}

.ticker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ticker-item:hover img {
  transform: scale(1.07);
}

.ticker-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 20px 10px 10px;
  text-align: center;
}

@keyframes tickerLTR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes tickerRTL {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .ticker-item {
    width: 145px;
    height: 110px;
  }
}

/* =====================
   VIBES BENTO GRID
   ===================== */
.vibes-section {
  background: var(--dark3, #181818);
  padding: 80px 0;
}

.vibes-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 220px 220px;
  gap: 8px;
}

.vb-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.vb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.vb-item:hover img {
  transform: scale(1.07);
}

.vb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

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

.vb-overlay span {
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Bento layout classes */
.vb-hero {
  grid-column: span 2;
  grid-row: span 2;
}
.vb-tall {
  grid-row: span 2;
}
.vb-wide {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .vibes-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 200px);
  }

  .vb-hero {
    grid-column: span 2;
    grid-row: span 1;
  }
  .vb-tall {
    grid-row: span 1;
  }
  .vb-wide {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .vibes-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 155px);
  }
}

/* =====================
   PARALLAX STRIP
   ===================== */
.parallax-strip {
  display: flex;
  height: 60vh;
  min-height: 360px;
}

.ps-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s ease;
}

.ps-panel:hover {
  flex: 1.6;
}

.ps-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ps-panel:hover .ps-img {
  transform: scale(1.05);
}

.ps-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.4s ease;
  z-index: 1;
}

.ps-panel:hover .ps-overlay {
  background: rgba(0, 0, 0, 0.32);
}

.ps-text {
  position: absolute;
  bottom: 32px;
  left: 28px;
  z-index: 2;
}

.ps-eyebrow {
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 8px;
}

.ps-text h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

@media (max-width: 768px) {
  .parallax-strip {
    flex-direction: column;
    height: auto;
  }
  .ps-panel {
    height: 230px;
  }
  .ps-panel:hover {
    flex: 1;
  }
}

/* =====================
   MENU SECTION
   ===================== */
.menu-category-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(197, 168, 107, 0.25);
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.menu-item-row {
  border-bottom: 1px solid rgba(197, 168, 107, 0.12);
  padding: 18px 0;
  transition:
    background 0.25s,
    padding-left 0.25s;
}

.menu-item-row:hover {
  background: rgba(197, 168, 107, 0.04);
  padding-left: 8px;
}

.item-name {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.item-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.65;
}

/* =====================
   GALLERY MASONRY + LIGHTBOX
   ===================== */
.gallery-masonry {
  columns: 4;
  column-gap: 8px;
}

.gm-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(197, 168, 107, 0.08);
  cursor: pointer;
  position: relative;
}

.gm-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gm-item:hover::after {
  opacity: 1;
}

.gm-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gm-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .gallery-masonry {
    columns: 3;
  }
}
@media (max-width: 576px) {
  .gallery-masonry {
    columns: 2;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(197, 168, 107, 0.2);
  border-radius: 3px;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(197, 168, 107, 0.12);
  border: 1px solid rgba(197, 168, 107, 0.35);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(197, 168, 107, 0.3);
}

.lb-close {
  top: 20px;
  right: 20px;
}
.lb-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* =====================
   RESERVATIONS SECTION
   ===================== */
.reservations-section {
  padding: 100px 0;
  background: var(--dark2, #111);
  position: relative;
}

.reservations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(197, 168, 107, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.res-card {
  background: var(--dark3, #181818);
  border: 1px solid rgba(197, 168, 107, 0.14);
  border-radius: 4px;
  padding: 40px 36px;
}

.res-card-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.res-hours-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 8px;
}

.res-option {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.res-option:hover {
  border-color: rgba(197, 168, 107, 0.4);
  background: rgba(197, 168, 107, 0.04);
  color: inherit;
}

.res-option-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(197, 168, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
}

.res-option-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.res-option-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section {
  padding: 100px 0;
  background: var(--dark3, #181818);
}

.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
}

.contact-box {
  background: var(--dark2, #111);
  border: 1px solid rgba(197, 168, 107, 0.14);
  border-radius: 4px;
  padding: 40px 36px;
}

.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  padding: 12px 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 168, 107, 0.45);
  color: #fff;
  box-shadow: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

/* =====================
   FOOTER
   ===================== */
.footer-section {
  background: #000;
  padding: 80px 0 0;
  position: relative;
  color: #fff;
}

.footer-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  color: #fff;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 107, 0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.footer-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.footer-card:hover {
  border-color: rgba(197, 168, 107, 0.3);
  background: rgba(197, 168, 107, 0.04);
}

.footer-icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(197, 168, 107, 0.1);
  border: 1px solid rgba(197, 168, 107, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-icon-circle i {
  color: var(--gold);
  font-size: 1.4rem;
}

.info-text {
  width: 100%;
}

.info-text h5 {
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-text p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
}

.hour-row:last-child {
  border-bottom: none;
}
.hour-row span:first-child {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.hour-row span:last-child {
  color: #fff;
  font-weight: 600;
}
.hour-row.hour-weekend span:last-child {
  color: var(--gold);
}

.copyright-bar {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.footer-social-bottom a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-social-bottom a:hover {
  color: var(--gold);
}

/* =====================
   CALL FLOAT
   ===================== */
.call-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  background: var(--gold);
  color: #000;
  padding: 13px 22px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(197, 168, 107, 0.28);
  transition:
    background 0.3s,
    transform 0.3s;
  white-space: nowrap;
}

.call-float:hover {
  background: var(--gold-light, #dfc48a);
  color: #000;
  transform: translateY(-2px);
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.scroll-left,
.scroll-right,
.scroll-up,
.scroll-down {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.scroll-left {
  transform: translateX(-40px);
}
.scroll-right {
  transform: translateX(40px);
}
.scroll-up {
  transform: translateY(-40px);
}
.scroll-down {
  transform: translateY(40px);
}

.scroll-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
