/* ============================================
   GOLDEN SPOON — Michelin-Star Design System
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

:root {
  --bg-primary: #040404;
  --bg-secondary: #0a0a0a;
  --bg-card: #0f0f0f;
  --bg-card-hover: #161616;
  --bg-accent: #080808;
  --text-primary: #ede8de;
  --text-secondary: #8a847a;
  --text-muted: #504c46;
  --gold: #c6a455;
  --gold-light: #dfc47a;
  --gold-dark: #9e7f30;
  --gold-rgb: 198, 164, 85;
  --cream: #f5f0e8;
  --wine: #5a1e2a;
  --border-color: rgba(198, 164, 85, 0.08);
  --border-color-strong: rgba(198, 164, 85, 0.2);
  --glass-bg: rgba(10, 10, 10, 0.75);
  --glass-border: rgba(198, 164, 85, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.03);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 50px rgba(198, 164, 85, 0.1);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", sans-serif;
  --font-accent: "Cormorant Garamond", serif;
  --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-slow: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 40px;
}

[data-theme="light"] {
  --bg-primary: #f6f3ed;
  --bg-secondary: #ece7dd;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f0e8;
  --bg-accent: #f8f5ef;
  --text-primary: #1a1612;
  --text-secondary: #5a554e;
  --text-muted: #8a857e;
  --border-color: rgba(26, 22, 18, 0.07);
  --border-color-strong: rgba(26, 22, 18, 0.14);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(26, 22, 18, 0.08);
  --glass-bg-light: rgba(0, 0, 0, 0.02);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 10px 50px rgba(198, 164, 85, 0.12);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition:
    background 0.6s,
    color 0.6s;
  cursor: none;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(
      circle at 20% 18%,
      rgba(var(--gold-rgb), 0.12) 0,
      rgba(var(--gold-rgb), 0) 33%
    ),
    radial-gradient(
      circle at 80% 72%,
      rgba(var(--gold-rgb), 0.1) 0,
      rgba(var(--gold-rgb), 0) 36%
    ),
    linear-gradient(
      125deg,
      rgba(var(--gold-rgb), 0.04) 0%,
      rgba(0, 0, 0, 0) 40%,
      rgba(var(--gold-rgb), 0.03) 100%
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.26;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(var(--gold-rgb), 0.09) 0,
      rgba(var(--gold-rgb), 0.09) 1px,
      transparent 1px,
      transparent 42px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(var(--gold-rgb), 0.06) 0,
      rgba(var(--gold-rgb), 0.06) 1px,
      transparent 1px,
      transparent 48px
    );
  animation: bodyPatternShift 26s linear infinite;
}

/* Ambient restaurant symbol background */
.bg-floating-symbols {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bg-floating-symbols::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='rgba(198,164,85,0.14)' stroke-width='1.2'%3E%3Cline x1='34' y1='34' x2='34' y2='66'/%3E%3Cline x1='30' y1='34' x2='30' y2='48'/%3E%3Cline x1='38' y1='34' x2='38' y2='48'/%3E%3Cline x1='48' y1='34' x2='48' y2='66'/%3E%3Cline x1='46' y1='34' x2='50' y2='34'/%3E%3Cline x1='44' y1='66' x2='52' y2='66'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.4;
  animation: patternDrift 42s linear infinite;
}

.bg-floating-symbols .symbol {
  position: absolute;
  color: rgba(var(--gold-rgb), 0.36);
  text-shadow: 0 0 20px rgba(var(--gold-rgb), 0.1);
  transform-origin: center;
  animation: symbolFloat 18s ease-in-out infinite;
}

.bg-floating-symbols .symbol-a {
  left: 8%;
  top: 18%;
  font-size: 34px;
  animation-delay: 0s;
}

.bg-floating-symbols .symbol-b {
  left: 78%;
  top: 12%;
  font-size: 30px;
  animation-delay: -4s;
}

.bg-floating-symbols .symbol-c {
  left: 86%;
  top: 46%;
  font-size: 28px;
  animation-delay: -8s;
}

.bg-floating-symbols .symbol-d {
  left: 14%;
  top: 62%;
  font-size: 32px;
  animation-delay: -12s;
}

.bg-floating-symbols .symbol-e {
  left: 70%;
  top: 74%;
  font-size: 26px;
  animation-delay: -6s;
}

.bg-floating-symbols .symbol-f {
  left: 44%;
  top: 30%;
  font-size: 36px;
  animation-delay: -10s;
}

.bg-floating-symbols .symbol:nth-child(odd) {
  animation-duration: 20s;
}

.bg-floating-symbols .symbol:nth-child(even) {
  animation-duration: 23s;
}

@keyframes symbolFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(10px, -16px, 0) rotate(4deg);
  }
  50% {
    transform: translate3d(-8px, -28px, 0) rotate(-3deg);
  }
  75% {
    transform: translate3d(12px, -12px, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes patternDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-2%, -3%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bodyPatternShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(1.2%, -1.2%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.section,
.page-hero,
.footer,
.back-to-top,
.whatsapp-btn,
.scroll-progress,
.navbar {
  z-index: 2;
}
a {
  text-decoration: none;
  color: var(--gold);
  transition: var(--transition);
  cursor: none;
}
a:hover {
  color: var(--gold-light);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
}
p {
  color: var(--text-secondary);
  font-weight: 300;
}
button,
input,
select,
textarea {
  cursor: none;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s,
    opacity 0.3s;
  mix-blend-mode: difference;
  opacity: 0.9;
}
.custom-cursor.active {
  width: 50px;
  height: 50px;
  background: rgba(var(--gold-rgb), 0.15);
  border: 1px solid var(--gold);
  opacity: 1;
}

/* Decorative */
.gold-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.line-accent {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Section */
.section {
  padding: 112px 0;
  position: relative;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
}
.section-title span {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 400;
}
.section-title-center {
  text-align: center;
}
.section-title-center .section-label {
  justify-content: center;
}
.section-title-center .section-label::before {
  display: none;
}
.section-desc {
  max-width: 500px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.9;
}
.section-desc-center {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 52px;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #040404;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.preloader-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(193, 167, 98, 0.45);
  background: radial-gradient(
    circle,
    rgba(193, 167, 98, 0.12) 0%,
    rgba(193, 167, 98, 0.03) 65%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: preloaderFade 0.5s ease forwards;
}
.preloader-logo img {
  width: 74%;
  height: auto;
  object-fit: contain;
  animation: preloaderLogoSpin 1.1s linear infinite;
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderLogoSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar — Minimal + Overlay */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 28px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 16px 0;
  background: rgba(4, 4, 4, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border-color);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold) !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(193, 167, 98, 0.45);
}

.navbar .brand-logo-img {
  width: 70px;
  height: 70px;
}

.footer .brand-logo-img {
  width: 70px;
  height: 70px;
}

/* Hidden nav links (desktop) */
.nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(4, 4, 4, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 9999;
}
.nav-menu.active {
  display: flex;
}
.nav-menu .nav-link {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary) !important;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  position: relative;
}
.nav-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}
.nav-menu.active li:nth-child(1) .nav-link {
  transition-delay: 0.1s;
}
.nav-menu.active li:nth-child(2) .nav-link {
  transition-delay: 0.15s;
}
.nav-menu.active li:nth-child(3) .nav-link {
  transition-delay: 0.2s;
}
.nav-menu.active li:nth-child(4) .nav-link {
  transition-delay: 0.25s;
}
.nav-menu.active li:nth-child(5) .nav-link {
  transition-delay: 0.3s;
}
.nav-menu.active li:nth-child(6) .nav-link {
  transition-delay: 0.35s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-toggle {
  background: none;
  border: 1px solid var(--border-color-strong);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.theme-toggle:hover {
  background: var(--gold);
  color: #040404;
  border-color: var(--gold);
}

/* Hamburger (mobile fallback) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  background: none;
  border: none;
  padding: 5px;
  z-index: 10001;
}
.hamburger span {
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: #040404;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  padding: 18px 56px;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #040404;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 0;
}
.btn-outline:hover {
  background: var(--gold);
  color: #040404;
  transform: translateY(-3px);
}
.btn-sm {
  padding: 12px 28px;
  font-size: 0.65rem;
  letter-spacing: 3px;
}
.btn-rounded {
  border-radius: var(--radius-xl);
  clip-path: none;
}
.btn-nav {
  display: none;
}
/* Hero — Cinematic */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.7);
  transform: scale(1.1);
  animation: heroZoom 30s ease infinite alternate;
}
@keyframes heroZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(4, 4, 4, 0.9) 0%,
    rgba(4, 4, 4, 0.3) 50%,
    rgba(4, 4, 4, 0.85) 100%
  );
}
.hero-grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  font-family: var(--font-body);
}
.hero-badge::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 28px;
}
.hero-title .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 460px;
  margin-bottom: 50px;
  line-height: 2;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 6%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.hero-scroll .scroll-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    width: 50px;
  }
  50% {
    opacity: 0.3;
    width: 25px;
  }
}
.hero-float-card {
  position: absolute;
  z-index: 3;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  color: #fff;
}
.hero-float-card.card-right {
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.hero-float-card .big-num {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-float-card .card-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

/* Marquee */
.marquee-section {
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--bg-accent);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Featured Dishes */
.featured-dishes {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.featured-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}
.featured-header .section-desc {
  margin-left: auto;
  text-align: right;
}
.dishes-creative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.dish-card:nth-child(1) {
  transform: translateY(40px);
}
.dish-card:nth-child(3) {
  transform: translateY(-30px);
}
.dishes-swiper {
  overflow: visible;
  padding-bottom: 6px;
}
.dishes-swiper .swiper-slide {
  height: auto;
}
.dishes-swiper .dish-card {
  height: 100%;
  transform: none;
}
.dishes-swiper .dish-card:nth-child(1),
.dishes-swiper .dish-card:nth-child(3) {
  transform: none;
}
.dish-card:hover {
  transform: translateY(-12px) !important;
  border-color: var(--border-color-strong);
  box-shadow: var(--shadow-gold);
}
.dish-card-img {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.dish-card:hover .dish-card-img img {
  transform: scale(1.12);
}
.dish-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.dish-card-body {
  padding: 30px;
}
.dish-card-category {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
}
.dish-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.dish-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 22px;
}
.dish-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-card-price {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.dish-card-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color-strong);
  background: transparent;
  color: var(--gold);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}
.dish-card-btn:hover {
  background: var(--gold);
  color: #040404;
  border-color: var(--gold);
}
.dishes-nav-wrap {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.dishes-prev,
.dishes-next {
  position: static;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.44);
  color: var(--gold);
  background: rgba(13, 11, 9, 0.7);
}
.dishes-prev::after,
.dishes-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}
.dishes-pagination {
  position: static;
}
/* About Preview */
.about-preview {
  position: relative;
  overflow: visible;
}
.about-creative-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: center;
  min-height: 600px;
}
.about-visual {
  position: relative;
  padding-right: 60px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.about-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: 0;
  z-index: 2;
  width: 220px;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow);
}
.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-experience-badge {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 3;
  background: var(--gold);
  color: #040404;
  padding: 22px 30px;
  border-radius: var(--radius-md);
  text-align: center;
}
.about-experience-badge .number {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-experience-badge .label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.about-content {
  padding-left: 40px;
}
.about-content .section-title {
  margin-bottom: 24px;
}
.about-content p {
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 2;
}
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-feature-item:hover {
  border-color: var(--gold);
  transform: translateX(6px);
}
.about-feature-item i {
  color: var(--gold);
  font-size: 1rem;
}
.about-feature-item span {
  font-size: 0.82rem;
  font-weight: 500;
}

/* Chef's Table */
.chefs-table {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.chefs-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 700px;
}
.chefs-table-visual {
  position: relative;
  overflow: hidden;
}
.chefs-table-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 700px;
}
.chefs-table-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 60%, var(--bg-primary) 100%);
}
.chefs-table-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  position: relative;
}
.chefs-table-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  padding-left: 30px;
  border-left: 2px solid rgba(var(--gold-rgb), 0.3);
}
.chefs-table-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}
.chefs-table-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.chefs-table-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}
.chefs-table-author-info span {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.chefs-table-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.chefs-table-value {
  padding: 24px;
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.chefs-table-value:hover {
  border-color: var(--gold);
}
.chefs-table-value h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.chefs-table-value p {
  font-size: 0.78rem;
  line-height: 1.7;
}

/* Stats */
.stats-section {
  padding: 90px 0;
  position: relative;
  background: var(--bg-accent);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 44px 20px;
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.stat-number {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  background: var(--bg-primary);
  overflow: hidden;
}
.testimonials-wrapper {
  max-width: 750px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 64px 54px;
  text-align: center;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: var(--font-accent);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.06;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 32px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}
.testimonial-info span {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.4 !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1 !important;
  width: 28px !important;
  border-radius: 10px !important;
}
/* Page Hero */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18) saturate(0.5);
}
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(4, 4, 4, 0.2) 0%,
    rgba(4, 4, 4, 0.95) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: 18px;
}
.page-hero-content h1 .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--text-muted);
}

/* Menu Page */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
.filter-btn {
  padding: 12px 30px;
  border: 1px solid var(--border-color-strong);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #040404;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}
.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  transition: var(--transition);
  position: relative;
}
.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: var(--transition);
}
.menu-item:hover::before {
  height: 100%;
}
.menu-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-color-strong);
}
.menu-item-img {
  width: 150px;
  min-height: 170px;
  flex-shrink: 0;
  overflow: hidden;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.menu-item:hover .menu-item-img img {
  transform: scale(1.15);
}
.menu-item-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 10px;
}
.menu-item-name {
  font-size: 1.05rem;
  font-weight: 600;
}
.menu-item-price {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-item-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.menu-tag {
  font-size: 0.58rem;
  padding: 3px 12px;
  border-radius: var(--radius-xl);
  background: rgba(198, 164, 85, 0.06);
  border: 1px solid var(--border-color);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Page */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.story-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.2;
}
.story-content h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
.story-content h2 span {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
}
.story-content p {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 2;
}
.chefs {
  background: var(--bg-secondary);
}
.chefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.chef-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.chef-card:nth-child(2) {
  transform: translateY(-30px);
}
.chef-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: var(--shadow-gold);
  border-color: var(--border-color-strong);
}
.chef-card-img {
  height: 350px;
  overflow: hidden;
  position: relative;
}
.chef-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.chef-card:hover .chef-card-img img {
  transform: scale(1.08);
}
.chef-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: var(--transition);
}
.chef-card:hover .chef-card-overlay {
  opacity: 1;
}
.chef-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 0.8rem;
  transition: var(--transition);
}
.chef-social-link:hover {
  background: var(--gold);
  color: #040404 !important;
}
.chef-card-body {
  padding: 24px;
}
.chef-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.chef-card-body span {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* About Page Refresh - less boxy, more fluid */
body.page-about .about-flow {
  position: relative;
  padding-top: 104px;
}

body.page-about .about-flow::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 6%;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.14) 0%,
    rgba(var(--gold-rgb), 0) 72%
  );
  pointer-events: none;
}

body.page-about .story-grid {
  gap: 60px;
  align-items: stretch;
}

body.page-about .story-image {
  border-radius: 28px;
  border: 1px solid rgba(var(--gold-rgb), 0.19);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
}

body.page-about .story-image img {
  height: 100%;
  min-height: 520px;
}

body.page-about .story-image::after {
  display: none;
}

body.page-about .story-float-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  background: rgba(10, 8, 6, 0.8);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

body.page-about .story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-about .story-content h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin-bottom: 18px;
}

body.page-about .story-content p {
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-secondary);
}

body.page-about .about-value-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

body.page-about .about-value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

body.page-about .about-value-item i {
  color: var(--gold);
  font-size: 0.82rem;
}

body.page-about .about-value-item span {
  font-size: 0.84rem;
  color: var(--text-primary);
}

body.page-about .about-team {
  background:
    linear-gradient(180deg, rgba(11, 9, 8, 0.72) 0%, rgba(11, 9, 8, 0.4) 100%),
    var(--bg-secondary);
}

body.page-about .about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

body.page-about .about-team-card {
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(17, 14, 11, 0.9) 0%,
    rgba(12, 10, 8, 0.82) 100%
  );
  transition: var(--transition);
}

body.page-about .about-team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-rgb), 0.34);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

body.page-about .about-team-media {
  height: 240px;
  overflow: hidden;
}

body.page-about .about-team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

body.page-about .about-team-card:hover .about-team-media img {
  transform: scale(1.07);
}

body.page-about .about-team-content {
  padding: 24px 22px 26px;
}

body.page-about .about-team-content h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

body.page-about .about-team-content span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

body.page-about .about-team-content p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

body.page-about .about-highlights {
  position: relative;
}

body.page-about .about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

body.page-about .about-highlight-item {
  padding: 26px 24px;
  border-left: 1px solid rgba(var(--gold-rgb), 0.4);
  background: rgba(255, 255, 255, 0.008);
  border-radius: 0 14px 14px 0;
  transition: var(--transition);
}

body.page-about .about-highlight-item:hover {
  transform: translateX(6px);
  background: rgba(var(--gold-rgb), 0.06);
}

body.page-about .about-highlight-item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

body.page-about .about-highlight-item p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

body.page-about .about-numbers {
  padding-top: 20px;
}

body.page-about .about-numbers-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(var(--gold-rgb), 0.19);
  border-radius: 999px;
  background: rgba(14, 12, 10, 0.75);
}

body.page-about .about-number-item {
  text-align: center;
  padding: 16px 10px;
}

body.page-about .about-number-item strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 4px;
}

body.page-about .about-number-item span {
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.mission-vision {
  background: var(--bg-primary);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mv-card {
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(198, 164, 85, 0.06) 0%,
    transparent 70%
  );
}
.mv-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(198, 164, 85, 0.06);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
  color: var(--gold);
}
.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.mv-card p {
  font-size: 0.88rem;
  line-height: 1.9;
}
/* Gallery */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: none;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 4, 4, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 88%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: none;
  transition: var(--transition);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover {
  background: var(--gold);
  color: #040404;
}
.lightbox-prev {
  left: 30px;
}
.lightbox-next {
  right: 30px;
}

/* Gallery Page Refresh */
body.page-gallery .gallery-grid {
  columns: unset;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Keep cursor visible on gallery interactions */
body.page-gallery .gallery-item,
body.page-gallery .gallery-item img,
body.page-gallery .gallery-item-overlay,
body.page-gallery .lightbox,
body.page-gallery .lightbox img,
body.page-gallery .lightbox-close,
body.page-gallery .lightbox-nav {
  cursor: pointer !important;
}

body.page-gallery .gallery-item {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background: rgba(12, 10, 8, 0.78);
}

body.page-gallery .gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  object-fit: cover;
}

body.page-gallery .gallery-item-overlay {
  opacity: 1;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

body.page-gallery .gallery-item-overlay-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(4px);
}

body.page-gallery .gallery-item-overlay-inner span {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #efe2cf;
}

body.page-gallery .gallery-item-overlay-inner i {
  margin: 0;
  color: var(--gold);
  font-size: 0.86rem;
}

body.page-gallery .gallery-item:hover {
  border-color: rgba(var(--gold-rgb), 0.42);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

body.page-gallery .gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.86);
}

/* Keep cursor visible on homepage extra image block */
body.home-premium .home-space-gallery .gallery-item,
body.home-premium .home-space-gallery .gallery-item img,
body.home-premium .home-space-gallery .gallery-item-overlay,
body.home-premium .home-space-gallery .gallery-item-overlay i {
  cursor: pointer !important;
}

body.page-gallery .gallery-insights {
  padding-top: 34px;
}

body.page-gallery .journal-highlight {
  padding-top: 72px;
}

body.page-gallery .journal-image {
  border-radius: 24px;
  overflow: hidden;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-info-card {
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.contact-info-card:hover::before {
  width: 100%;
}
.contact-info-card:hover {
  border-color: var(--border-color-strong);
}
.contact-info-card i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 250px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.7) contrast(1.1) brightness(0.7);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.form-control {
  width: 100%;
  padding: 16px 20px;
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 164, 85, 0.06);
}
.form-control::placeholder {
  color: var(--text-muted);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  cursor: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a847a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-error {
  font-size: 0.7rem;
  color: #d4463a;
  margin-top: 5px;
  display: none;
}
.form-control.error {
  border-color: #d4463a;
}
.form-control.error + .form-error {
  display: block;
}
.contact-form-wrapper {
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(198, 164, 85, 0.04) 0%,
    transparent 70%
  );
}
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-form-wrapper h3 .accent {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
}
.contact-form-wrapper > p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Contact Page Polish */
body.page-contact .interior-hero .page-hero-bg {
  filter: brightness(0.3) saturate(0.8);
}

body.page-contact .interior-hero .page-hero-overlay {
  background:
    linear-gradient(160deg, rgba(8, 6, 5, 0.76) 0%, rgba(8, 6, 5, 0.9) 100%),
    radial-gradient(
      circle at 75% 20%,
      rgba(var(--gold-rgb), 0.16),
      transparent 48%
    );
}

body.page-contact .contact-grid {
  gap: 48px;
  align-items: stretch;
}

body.page-contact .contact-info-cards {
  gap: 14px;
}

body.page-contact .contact-info-card {
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background: linear-gradient(
    165deg,
    rgba(17, 14, 11, 0.84) 0%,
    rgba(12, 10, 8, 0.78) 100%
  );
  border-radius: 16px;
}

body.page-contact .contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--gold-rgb), 0.38);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

body.page-contact .contact-map {
  height: 290px;
  border-radius: 18px;
  border-color: rgba(var(--gold-rgb), 0.22);
}

body.page-contact .contact-form-wrapper {
  border-color: rgba(var(--gold-rgb), 0.24);
  background: linear-gradient(
    175deg,
    rgba(17, 13, 11, 0.9) 0%,
    rgba(13, 10, 8, 0.86) 100%
  );
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

body.page-contact .contact-form-wrapper::before {
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.1) 0%,
    transparent 72%
  );
}

body.page-contact .concierge-services .experience-card {
  border-color: rgba(var(--gold-rgb), 0.2);
  background: linear-gradient(
    165deg,
    rgba(16, 13, 11, 0.86) 0%,
    rgba(11, 9, 8, 0.78) 100%
  );
}

body.page-contact .faq-list {
  max-width: 980px;
  margin: 0 auto;
}

body.page-contact .faq-quick-strip {
  max-width: 980px;
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

body.page-contact .faq-quick-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  background: rgba(16, 13, 11, 0.68);
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
}

body.page-contact .faq-quick-strip i {
  color: var(--gold);
}

body.page-contact .faq-list-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.page-contact .faq-item {
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 14px;
  background: rgba(15, 12, 10, 0.74);
  margin-bottom: 0;
}

body.page-contact .faq-question {
  padding: 18px 20px;
  font-size: 0.88rem;
  line-height: 1.45;
}

body.page-contact .faq-answer p {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.85;
}

@media (max-width: 900px) {
  body.page-contact .faq-list-enhanced {
    grid-template-columns: 1fr;
  }
}

/* Reservation */
.reservation-section {
  background: var(--bg-primary);
}
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.reservation-info {
  padding-top: 20px;
}
.reservation-info h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.reservation-info h2 span {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
}
.reservation-info > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 2;
}
.reservation-details {
  display: grid;
  gap: 20px;
}
.reservation-detail {
  display: flex;
  align-items: center;
  gap: 18px;
}
.reservation-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(198, 164, 85, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reservation-detail h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.reservation-detail p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.reservation-form-wrapper {
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.reservation-form-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(198, 164, 85, 0.04) 0%,
    transparent 70%
  );
}
.reservation-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  text-align: center;
}
.reservation-form-wrapper h3 .accent {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
}
.success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.success-message.show {
  display: block;
  animation: fadeInUp 0.6s ease;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #4caf50;
}
.success-message h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.success-message p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Footer */
.footer {
  background: var(--bg-secondary);
  position: relative;
  padding-top: 72px;
  padding-bottom: 8px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: var(--bg-primary);
  clip-path: ellipse(58% 100% at 50% 0%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.footer-ratings-col {
  grid-column: 1 / -1;
  padding: 0;
  background: transparent;
  border: none;
}
.footer-ratings-col .platform-ratings {
  margin-bottom: 0;
}
.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.6;
  max-width: 310px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color-strong);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary) !important;
  font-size: 0.82rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.footer-social a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gold);
  transition: var(--transition);
  z-index: -1;
}
.footer-social a:hover::before {
  height: 100%;
}
.footer-social a:hover {
  color: #040404 !important;
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-col ul li {
  margin-bottom: 7px;
}
.footer-col ul li a {
  color: var(--text-secondary) !important;
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold) !important;
  padding-left: 5px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
.footer-hours li span:last-child {
  color: var(--gold);
}
.footer-contact {
  display: grid;
  gap: 8px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-contact li i {
  color: var(--gold);
  width: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact li a {
  color: var(--text-secondary) !important;
  transition: var(--transition);
}
.footer-contact li a:hover {
  color: var(--gold) !important;
}
.platform-ratings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.platform-rating-card {
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  border-radius: 10px;
  background: rgba(15, 12, 10, 0.68);
  padding: 8px 10px;
  text-align: center;
}
.platform-rating-card h5 {
  font-size: 0.66rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 3px;
  color: var(--text-secondary);
}
.platform-rating-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--gold);
  margin-bottom: 1px;
}
.platform-rating-card span {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.footer-newsletter p {
  font-size: 0.82rem;
  margin-bottom: 18px;
  line-height: 1.8;
}
.footer-developer p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--text-secondary);
}
.footer-developer a {
  color: #22c55e !important;
  font-weight: 700;
  text-decoration: underline;
}
.footer-developer a:hover {
  color: #4ade80 !important;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--glass-bg-light);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: #040404;
  cursor: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form button:hover {
  background: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-credit-link {
  color: #22c55e !important;
  font-weight: 700;
  text-decoration: underline;
}
.footer-credit-link:hover {
  color: #4ade80 !important;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted) !important;
}
.footer-bottom-links a:hover {
  color: var(--gold) !important;
}

/* WhatsApp + Back to Top */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 9999;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  animation: whatsappPulse 3s ease infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  color: #fff !important;
}
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 35px rgba(37, 211, 102, 0.5);
  }
}
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color-strong);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  cursor: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9998;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold);
  color: #040404;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-creative-grid,
  .story-grid,
  .contact-grid,
  .reservation-grid,
  .chefs-table-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .featured-header {
    grid-template-columns: 1fr;
  }
  .featured-header .section-desc {
    margin-left: 0;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .platform-ratings {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chef-card:nth-child(2) {
    transform: none;
  }
  .dishes-creative-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dish-card:nth-child(1),
  .dish-card:nth-child(3) {
    transform: none;
  }
  .about-visual {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .gallery-grid {
    columns: 2;
  }
  .chefs-table-visual img {
    min-height: 400px;
  }
  .chefs-table-content {
    padding: 60px 40px;
  }
  .chefs-table-visual::after {
    background: linear-gradient(
      180deg,
      transparent 60%,
      var(--bg-primary) 100%
    );
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-actions .btn-nav {
    display: none;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-float-card {
    display: none;
  }
  .dishes-creative-grid {
    grid-template-columns: 1fr;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .about-img-float {
    width: 160px;
    height: 200px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item {
    flex-direction: column;
  }
  .menu-item-img {
    width: 100%;
    height: 200px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 2;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "about about"
      "quick contact"
      "hours ratings";
    gap: 14px;
    margin-bottom: 14px;
  }
  .footer-about {
    grid-area: about;
  }
  .footer-quick-links {
    grid-area: quick;
  }
  .footer-contact-col {
    grid-area: contact;
  }
  .footer-hours-col {
    grid-area: hours;
  }
  .footer-ratings-col {
    grid-area: ratings;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--gold-rgb), 0.14);
    border-radius: 12px;
  }
  .footer {
    padding-top: 56px;
  }
  .footer::before {
    height: 54px;
    clip-path: ellipse(70% 100% at 50% 0%);
  }
  .footer-brand,
  .footer-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--gold-rgb), 0.14);
    border-radius: 12px;
    padding: 14px;
  }
  .footer-brand .nav-logo {
    margin-bottom: 10px;
  }
  .footer-brand p {
    max-width: none;
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }
  .footer-social {
    gap: 7px;
  }
  .footer-social a {
    width: 34px;
    height: 34px;
  }
  .footer-col h4 {
    margin-bottom: 10px;
  }
  .footer-col ul:not(.footer-hours):not(.footer-contact) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
  }
  .footer-quick-links ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .footer-col ul:not(.footer-hours):not(.footer-contact) li {
    margin-bottom: 0;
  }
  .footer-hours li {
    font-size: 0.78rem;
  }
  .footer-contact li {
    font-size: 0.78rem;
  }
  .footer-ratings-col .platform-ratings {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 0;
  }
  .footer-ratings-col .platform-rating-card {
    padding: 8px 10px;
    text-align: center;
    display: block;
  }
  .footer-ratings-col .platform-rating-card h5,
  .footer-ratings-col .platform-rating-card strong,
  .footer-ratings-col .platform-rating-card span {
    margin-bottom: 0;
  }
  .footer-ratings-col .platform-rating-card h5 {
    font-size: 0.68rem;
  }
  .footer-ratings-col .platform-rating-card strong {
    font-size: 0.88rem;
  }
  .footer-ratings-col .platform-rating-card span {
    font-size: 0.7rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .section {
    padding: 100px 0;
  }
  .page-hero {
    height: 45vh;
    min-height: 300px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .chefs-grid {
    grid-template-columns: 1fr;
  }
  .chefs-table-values {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-grid {
    columns: 1;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .platform-ratings {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-top: 52px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "about"
      "quick"
      "contact"
      "hours"
      "ratings";
  }
  .footer-brand,
  .footer-col {
    padding: 12px;
  }
  .footer-col ul:not(.footer-hours):not(.footer-contact) {
    grid-template-columns: 1fr;
  }
  .platform-rating-card {
    grid-template-columns: 1fr;
    gap: 2px;
    text-align: center;
  }
  .filter-btn {
    clip-path: none;
    border-radius: var(--radius-sm);
  }
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .bg-floating-symbols .symbol {
    font-size: 24px !important;
    opacity: 0.72;
  }

  .bg-floating-symbols::before {
    opacity: 0.28;
    background-size: 130px 130px;
  }

  body::after {
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-floating-symbols .symbol,
  .bg-floating-symbols::before {
    animation: none;
  }
}

/* Utility */
.text-gold {
  color: var(--gold);
}
.accent {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
}
.text-center {
  text-align: center;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
[data-aos] {
  transition-property: transform, opacity;
}

/* Reveal Animation Classes */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HOMEPAGE PREMIUM OVERRIDES
   ============================================ */
body.home-premium {
  --bg-primary: #0b0907;
  --bg-secondary: #14100d;
  --bg-card: #17120f;
  --text-primary: #f5eee1;
  --text-secondary: #b7aa96;
  --text-muted: #8b7f6d;
  --gold: #d9b36a;
  --gold-light: #e6c788;
  --gold-dark: #9a7330;
  --gold-rgb: 217, 179, 106;
  --border-color: rgba(217, 179, 106, 0.12);
  --border-color-strong: rgba(217, 179, 106, 0.35);
  --glass-bg: rgba(19, 15, 12, 0.66);
  --glass-border: rgba(255, 214, 145, 0.2);
  --font-heading: "Cinzel", serif;
  --font-body: "Manrope", sans-serif;
  --font-accent: "Great Vibes", cursive;
  cursor: auto;
  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(217, 179, 106, 0.18) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(125, 41, 24, 0.22) 0%,
      transparent 44%
    ),
    linear-gradient(120deg, #0b0907 0%, #13100d 55%, #0b0907 100%);
}

body.home-premium a,
body.home-premium button,
body.home-premium input,
body.home-premium select,
body.home-premium textarea {
  cursor: pointer;
}

body.home-premium .container {
  max-width: 1320px;
}

body.home-premium .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 10002;
  background: linear-gradient(
    90deg,
    rgba(var(--gold-rgb), 0.2),
    var(--gold),
    rgba(var(--gold-rgb), 0.2)
  );
  box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.6);
}

body.home-premium .navbar {
  padding: 18px 0;
}

body.home-premium .navbar.scrolled {
  background: rgba(10, 8, 7, 0.72);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
}

body.home-premium .nav-shell {
  background: rgba(14, 12, 10, 0.62);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: 28px;
  padding: 14px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.home-premium .nav-menu {
  position: static;
  width: auto;
  height: auto;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
  z-index: auto;
}

body.home-premium .nav-menu li .nav-link {
  opacity: 1;
  transform: none;
  font-size: 0.76rem;
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--text-primary) !important;
}

body.home-premium .nav-menu .nav-link.active,
body.home-premium .nav-menu .nav-link:hover {
  color: var(--gold) !important;
}

body.home-premium .nav-actions {
  gap: 10px;
}

body.home-premium .btn {
  border-radius: 999px;
  clip-path: none;
}

body.home-premium .btn-primary {
  background: linear-gradient(145deg, #e3c180, #bf9348);
}

body.home-premium .btn-outline {
  border-color: rgba(var(--gold-rgb), 0.7);
}

body.home-premium .cinematic-hero {
  min-height: 100vh;
  padding-top: 130px;
}

body.home-premium .hero-bg {
  filter: brightness(0.2) saturate(0.92);
}

body.home-premium .hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(9, 8, 7, 0.95) 0%,
    rgba(9, 8, 7, 0.35) 46%,
    rgba(9, 8, 7, 0.88) 100%
  );
}

body.home-premium .hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  grid-template-areas:
    "content stat"
    "counter stat";
  align-items: end;
  gap: 24px 40px;
  position: relative;
}

body.home-premium .hero-content {
  grid-area: content;
  padding: 0;
}

body.home-premium .hero-badge {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  display: inline-flex;
  letter-spacing: 3px;
  background: rgba(10, 8, 7, 0.5);
}

body.home-premium .hero-title {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 1;
  max-width: 12ch;
}

body.home-premium .hero-title .accent {
  font-family: var(--font-accent);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-style: normal;
  letter-spacing: 1px;
}

body.home-premium .hero-desc {
  max-width: 54ch;
  color: rgba(245, 238, 225, 0.8);
}

body.home-premium .hero-btns {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 16px;
  align-items: center;
}

body.home-premium .hero-btns .btn {
  min-width: 210px;
  justify-content: center;
}

body.home-premium .hero-btns .btn:last-child {
  grid-column: 1 / -1;
  width: max-content;
  min-width: 180px;
}

body.home-premium .hero-scroll {
  left: auto;
  right: 6%;
  bottom: 34px;
  opacity: 0.82;
}

body.home-premium .hero-scroll:hover {
  opacity: 1;
}

body.home-premium .hero-float-card {
  grid-area: stat;
  position: relative;
  right: auto;
  top: auto;
  justify-self: end;
  align-self: center;
  background: rgba(20, 16, 13, 0.58);
  border: 1px solid rgba(var(--gold-rgb), 0.36);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: none;
}

body.home-premium .hero-card-lower {
  grid-area: counter;
  position: relative;
  left: auto;
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  padding: 20px 26px;
  border-radius: 18px;
  border: 1px solid rgba(var(--gold-rgb), 0.26);
  background: rgba(12, 10, 8, 0.52);
  backdrop-filter: blur(10px);
}

body.home-premium .section {
  padding: 96px 0;
}

body.home-premium .hero-card-lower span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.home-premium .hero-card-lower strong {
  font-size: 1.1rem;
  color: var(--gold);
}

body.home-premium .floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

body.home-premium .orb-a {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(217, 179, 106, 0.4) 0%,
    transparent 70%
  );
  top: 12%;
  right: 4%;
  animation: orbDriftA 9s ease-in-out infinite;
}

body.home-premium .orb-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(145, 52, 31, 0.34) 0%,
    transparent 74%
  );
  bottom: -6%;
  left: -6%;
  animation: orbDriftB 11s ease-in-out infinite;
}

@keyframes orbDriftA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-24px, 16px);
  }
}

@keyframes orbDriftB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -12px);
  }
}

body.home-premium .luxe-menu {
  overflow: hidden;
}

body.home-premium .luxe-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 48px;
}

body.home-premium .menu-luxe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.home-premium .menu-luxe-card {
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  background: #100d0b;
}

body.home-premium .menu-luxe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

body.home-premium .menu-luxe-card:hover img {
  transform: scale(1.08);
}

body.home-premium .menu-luxe-meta {
  position: absolute;
  inset: auto 20px 20px 20px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(9, 8, 7, 0.62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
}

body.home-premium .menu-luxe-meta span {
  font-size: 0.64rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

body.home-premium .menu-luxe-meta h3 {
  margin: 8px 0;
  font-size: 1.5rem;
}

body.home-premium .menu-luxe-meta p {
  color: #e1d5c5;
  font-size: 0.84rem;
  margin-bottom: 6px;
}

body.home-premium .menu-luxe-meta strong {
  color: var(--gold);
  font-size: 1.4rem;
}

body.home-premium .luxe-about .about-creative-grid {
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

body.home-premium .luxe-about .about-content {
  position: relative;
  margin-top: -70px;
  background: rgba(16, 13, 11, 0.7);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 22px;
  padding: 38px;
  backdrop-filter: blur(10px);
}

body.home-premium .luxe-gallery .gallery-controls {
  display: flex;
  gap: 10px;
}

body.home-premium .luxe-gallery .gallery-shift {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  background: rgba(15, 12, 10, 0.7);
  color: var(--gold);
  transition: all 0.35s ease;
}

body.home-premium .luxe-gallery .gallery-shift:hover {
  background: var(--gold);
  color: #0d0a07;
  transform: translateY(-3px);
}

body.home-premium .gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 24vw);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

body.home-premium .gallery-rail::-webkit-scrollbar {
  height: 8px;
}

body.home-premium .gallery-rail::-webkit-scrollbar-thumb {
  background: rgba(var(--gold-rgb), 0.3);
  border-radius: 999px;
}

body.home-premium .gallery-panel {
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background: #120f0d;
}

body.home-premium .gallery-panel.tall {
  min-height: 280px;
}

body.home-premium .gallery-panel.wide {
  grid-column: span 1;
  min-width: auto;
}

body.home-premium .gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

body.home-premium .gallery-panel:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

body.home-premium .luxe-reservation {
  position: relative;
}

body.home-premium .luxe-reservation::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -80px;
  top: 30px;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

body.home-premium .reservation-form-wrapper,
body.home-premium .contact-form-wrapper {
  background: rgba(16, 13, 11, 0.72);
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  border-radius: 24px;
}

body.home-premium .form-control {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(var(--gold-rgb), 0.22);
}

body.home-premium .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.13);
}

body.home-premium .luxe-contact {
  padding-top: 36px;
}

body.home-premium .experience-band {
  padding-top: 72px;
}

body.home-premium .testimonial-cinematic {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: #090705;
}

body.home-premium .testimonial-backdrop {
  position: absolute;
  inset: 0;
}

body.home-premium .testimonial-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.35);
}

body.home-premium .testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 5, 4, 0.36) 0%,
    rgba(6, 5, 4, 0.86) 100%
  );
}

body.home-premium .testimonial-cinematic .container {
  position: relative;
  z-index: 2;
}

body.home-premium .testimonial-head {
  text-align: center;
  margin-bottom: 38px;
}

body.home-premium .testimonial-cinematic-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 170px;
  grid-template-areas: "left bubble right";
  align-items: center;
  gap: 30px;
}

body.home-premium .testimonial-stat {
  text-align: center;
  color: #f4e9d9;
}

body.home-premium .testimonial-stat strong {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

body.home-premium .testimonial-stat span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e5d2b6;
}

body.home-premium .testimonial-stat-left {
  grid-area: left;
}

body.home-premium .testimonial-stat-right {
  grid-area: right;
}

body.home-premium .testimonial-bubble {
  grid-area: bubble;
  position: relative;
  padding: 46px 48px 34px;
  border-radius: 120px;
  border: 1px solid rgba(var(--gold-rgb), 0.7);
  background: linear-gradient(
    160deg,
    rgba(23, 17, 12, 0.82) 0%,
    rgba(15, 11, 8, 0.74) 100%
  );
  backdrop-filter: blur(6px);
  text-align: center;
}

body.home-premium .testimonial-cinematic-swiper {
  overflow: hidden;
}

/* Fallback layout so slides remain visible even if Swiper CSS has loading issues */
body.home-premium .testimonial-cinematic-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

body.home-premium .testimonial-cinematic-swiper .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.home-premium .testimonial-bubble p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  line-height: 1.85;
  color: #f8f1e6;
}

body.home-premium .testimonial-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 32px 0 14px;
}

body.home-premium .testimonial-person img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(var(--gold-rgb), 0.8);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  margin-bottom: 12px;
}

body.home-premium .testimonial-bubble h4 {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

body.home-premium .testimonial-cinematic-pagination {
  position: static;
  margin-top: 12px;
}

body.home-premium .testimonial-cinematic-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

body.home-premium
  .testimonial-cinematic-pagination
  .swiper-pagination-bullet-active {
  background: var(--gold);
}

body.home-premium .journal-highlight {
  padding-top: 78px;
}

body.home-premium .luxe-footer {
  margin-top: 40px;
  padding-top: 96px;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(var(--gold-rgb), 0.15),
      transparent 44%
    ),
    linear-gradient(180deg, #0d0b08 0%, #090705 100%);
}

body.home-premium .luxe-footer .footer-light {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  width: min(88vw, 760px);
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.25) 0%,
    rgba(var(--gold-rgb), 0) 74%
  );
  filter: blur(16px);
}

body.home-premium .footer-grid {
  position: relative;
}

body.home-premium .footer-grid::before {
  display: none;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body.home-premium .back-to-top {
  background: rgba(17, 14, 12, 0.8);
}

@media (max-width: 1024px) {
  body.home-premium .hero-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "stat"
      "counter";
    gap: 30px;
  }

  body.home-premium .hero-float-card {
    width: min(100%, 360px);
    justify-self: start;
  }

  body.home-premium .hero-card-lower {
    width: 100%;
  }

  body.home-premium .luxe-about .about-content {
    margin-top: 0;
  }

  body.home-premium .gallery-rail {
    grid-auto-columns: minmax(240px, 64vw);
  }

  body.home-premium .testimonial-cinematic-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left right"
      "bubble bubble";
    gap: 22px;
  }

  body.home-premium .testimonial-bubble {
    border-radius: 76px;
    padding: 36px 30px 28px;
  }

  body.home-premium .menu-luxe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.home-premium .nav-shell {
    border-radius: 18px;
  }

  body.home-premium .hamburger {
    display: flex;
  }

  body.home-premium .nav-menu {
    position: fixed;
    top: 90px;
    left: auto;
    right: 16px;
    width: min(82vw, 320px);
    height: auto;
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    border-radius: 14px;
    background: rgba(11, 9, 8, 0.96);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.home-premium .nav-menu.active {
    display: flex;
  }

  body.home-premium .nav-menu li .nav-link {
    font-size: 0.82rem;
    letter-spacing: 2px;
  }

  body.home-premium .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  body.home-premium .cinematic-hero {
    padding-top: 118px;
  }

  body.home-premium .hero-btns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.home-premium .hero-btns .btn,
  body.home-premium .hero-btns .btn:last-child {
    width: 100%;
    min-width: 0;
  }

  body.home-premium .hero-scroll {
    display: none;
  }

  body.home-premium .hero-title {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  body.home-premium .hero-title .accent {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  body.home-premium .luxe-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home-premium .menu-luxe-card {
    height: 440px;
  }

  body.home-premium .menu-luxe-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.home-premium .testimonial-cinematic {
    padding: 74px 0;
  }

  body.home-premium .testimonial-cinematic-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "bubble"
      "left"
      "right";
  }

  body.home-premium .testimonial-bubble {
    border-radius: 38px;
    padding: 30px 20px 24px;
  }

  body.home-premium .testimonial-cinematic-swiper .swiper-slide {
    min-height: auto;
  }

  body.home-premium .testimonial-bubble p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  body.home-premium .testimonial-person {
    margin: 22px 0 10px;
  }

  body.home-premium .testimonial-person img {
    width: 60px;
    height: 60px;
  }

  body.home-premium .testimonial-stat span {
    letter-spacing: 2px;
  }

  body.home-premium .gallery-panel.wide {
    min-width: auto;
    grid-column: span 1;
  }
}

@media (max-width: 520px) {
  body.home-premium .nav-shell {
    padding: 12px 14px;
  }

  body.home-premium .nav-logo {
    font-size: 1.2rem;
  }

  body.home-premium .hero-btns {
    width: 100%;
  }

  body.home-premium .hero-badge {
    letter-spacing: 2px;
    padding: 7px 12px;
  }

  body.home-premium .hero-card-lower {
    padding: 16px 18px;
  }

  body.home-premium .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   INTERIOR PREMIUM PAGES
   ============================================ */
body.interior-premium {
  --bg-primary: #0b0907;
  --bg-secondary: #14100d;
  --bg-card: #17120f;
  --text-primary: #f5eee1;
  --text-secondary: #b7aa96;
  --text-muted: #8b7f6d;
  --gold: #d9b36a;
  --gold-light: #e6c788;
  --gold-dark: #9a7330;
  --gold-rgb: 217, 179, 106;
  --border-color: rgba(217, 179, 106, 0.12);
  --border-color-strong: rgba(217, 179, 106, 0.35);
  --glass-bg: rgba(19, 15, 12, 0.66);
  --glass-border: rgba(255, 214, 145, 0.2);
  --font-heading: "Cinzel", serif;
  --font-body: "Manrope", sans-serif;
  --font-accent: "Great Vibes", cursive;
  cursor: auto;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(217, 179, 106, 0.13) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(125, 41, 24, 0.2) 0%,
      transparent 44%
    ),
    linear-gradient(120deg, #0b0907 0%, #13100d 55%, #0b0907 100%);
}

body.interior-premium a,
body.interior-premium button,
body.interior-premium input,
body.interior-premium select,
body.interior-premium textarea {
  cursor: pointer;
}

body.interior-premium .container {
  max-width: 1320px;
}

body.interior-premium .navbar {
  padding: 18px 0;
}

body.interior-premium .navbar.scrolled {
  background: rgba(10, 8, 7, 0.72);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
}

body.interior-premium .nav-shell {
  background: rgba(14, 12, 10, 0.62);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: 28px;
  padding: 14px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.interior-premium .nav-menu {
  position: static;
  width: auto;
  height: auto;
  background: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

body.interior-premium .nav-menu .nav-link {
  opacity: 1;
  transform: none;
  font-size: 0.76rem;
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--text-primary) !important;
}

body.interior-premium .nav-menu .nav-link.active,
body.interior-premium .nav-menu .nav-link:hover {
  color: var(--gold) !important;
}

body.interior-premium .btn {
  border-radius: 999px;
  clip-path: none;
}

body.interior-premium .btn-primary {
  background: linear-gradient(145deg, #e3c180, #bf9348);
}

body.interior-premium .interior-hero {
  height: 72vh;
  min-height: 500px;
}

body.interior-premium .interior-hero .page-hero-bg {
  filter: brightness(0.24) saturate(0.84);
}

body.interior-premium .interior-hero .page-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 7, 6, 0.32) 0%,
    rgba(8, 7, 6, 0.9) 100%
  );
}

body.interior-premium .section {
  position: relative;
  padding: 92px 0;
}

body.interior-premium .section::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.11),
    transparent 72%
  );
  right: -60px;
  top: 10%;
  pointer-events: none;
}

body.interior-premium .story-content,
body.interior-premium .contact-form-wrapper,
body.interior-premium .reservation-form-wrapper {
  background: rgba(16, 13, 11, 0.72);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

body.interior-premium .story-content {
  padding: 34px;
}

body.interior-premium .form-control {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(var(--gold-rgb), 0.22);
}

body.interior-premium .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.13);
}

body.interior-premium .luxe-footer {
  margin-top: 40px;
  padding-top: 96px;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(var(--gold-rgb), 0.15),
      transparent 44%
    ),
    linear-gradient(180deg, #0d0b08 0%, #090705 100%);
}

body.interior-premium .luxe-footer .footer-light {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  width: min(88vw, 760px);
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.25) 0%,
    rgba(var(--gold-rgb), 0) 74%
  );
  filter: blur(16px);
}

body.interior-premium .footer-grid {
  position: relative;
}

body.interior-premium .footer-grid::before {
  display: none;
}

body.interior-premium .back-to-top {
  background: rgba(17, 14, 12, 0.8);
}

@media (max-width: 900px) {
  body.interior-premium .hamburger {
    display: flex;
  }

  body.interior-premium .nav-menu {
    position: fixed;
    top: 90px;
    left: auto;
    right: 16px;
    width: min(82vw, 320px);
    height: auto;
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    border-radius: 14px;
    background: rgba(11, 9, 8, 0.96);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.interior-premium .nav-menu.active {
    display: flex;
  }

  body.interior-premium .nav-cta {
    display: none;
  }
}

/* ============================================
   EXTENDED CONTENT SECTIONS
   ============================================ */
.experience-grid,
.timeline-grid,
.flight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card,
.timeline-card,
.flight-card {
  padding: 30px 26px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background: rgba(16, 13, 11, 0.66);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.experience-card:hover,
.timeline-card:hover,
.flight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-rgb), 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.experience-card h3,
.timeline-card h3,
.flight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.experience-card p,
.timeline-card p,
.flight-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.experience-card span,
.timeline-card span,
.flight-card strong {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline-card span {
  display: inline-block;
  margin-bottom: 10px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.award-item {
  padding: 34px 20px;
  text-align: center;
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: 18px;
  background: rgba(14, 12, 10, 0.65);
}

.award-item strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.award-item span {
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 28px;
}

.journal-content {
  padding: 34px;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  background: rgba(16, 13, 11, 0.66);
  border-radius: 20px;
}

.journal-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.24);
}

.journal-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.pairings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.pairing-list {
  display: grid;
  gap: 14px;
}

.pairing-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(16, 13, 11, 0.6);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
}

.pairing-list li span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.pairing-list li strong {
  font-size: 0.86rem;
  color: var(--gold);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  border-radius: 14px;
  background: rgba(16, 13, 11, 0.64);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.84rem;
}

/* Menu Book Layout */
.menu-book-section {
  padding-top: 88px;
}

.menu-book-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(14, 11, 10, 0.92) 0%,
      rgba(19, 15, 12, 0.96) 50%,
      rgba(14, 11, 10, 0.92) 100%
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(var(--gold-rgb), 0.12),
      transparent 46%
    );
}

.menu-book-shell + .menu-book-shell {
  margin-top: 30px;
}

.menu-book-shell::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(var(--gold-rgb), 0.2);
  display: none;
}

.menu-book-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  opacity: 0.9;
  pointer-events: none;
}

.menu-book-corner.corner-tl {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}
.menu-book-corner.corner-tr {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
}
.menu-book-corner.corner-bl {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
}
.menu-book-corner.corner-br {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.menu-book-column {
  padding: 34px 28px;
  display: grid;
  gap: 34px;
}

.menu-book-column.left {
  border-right: 1px solid rgba(var(--gold-rgb), 0.14);
}

.menu-zigzag {
  grid-column: 1 / -1;
}

.menu-zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 250px;
}

.menu-zigzag-row:first-child {
  border-top: none;
}

.menu-zigzag-row .menu-book-category {
  padding: 34px 28px;
  align-self: center;
}

.menu-zigzag-photo {
  align-self: center;
  justify-self: end;
}

.menu-zigzag-row.reverse .menu-book-category {
  grid-column: 2;
}

.menu-zigzag-row.reverse .menu-zigzag-photo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.menu-book-category h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.menu-book-list {
  display: grid;
  gap: 14px;
}

.menu-book-list article h4 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.menu-book-list article h4 span {
  color: var(--gold);
  font-size: 0.75rem;
  white-space: nowrap;
}

.menu-book-list article p {
  font-size: 0.76rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 95%;
}

.menu-book-photo {
  margin: 0;
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  overflow: hidden;
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(var(--gold-rgb), 0.08);
}

.menu-book-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-book-photo.circular {
  width: 64%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
}

.menu-book-photo.oval {
  width: 74%;
  aspect-ratio: 1.08 / 0.9;
  border-radius: 999px;
  justify-self: end;
}

.menu-book-photo.rectangular {
  width: 68%;
  aspect-ratio: 1.3 / 0.9;
  border-radius: 8px;
  justify-self: end;
}

@media (max-width: 1024px) {
  body.page-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-about .about-team-grid,
  body.page-about .about-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.page-about .about-numbers-wrap {
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
  }

  body.page-about .story-grid {
    gap: 30px;
  }

  .menu-book-shell {
    grid-template-columns: 1fr;
  }

  .menu-book-shell::before,
  .menu-book-column.left {
    border-right: none;
    display: none;
  }

  .menu-book-column {
    padding: 28px 22px;
  }

  .menu-zigzag-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .menu-zigzag-row .menu-book-category {
    padding: 28px 22px;
  }

  .menu-zigzag-row.reverse .menu-book-category {
    grid-column: auto;
  }

  .menu-zigzag-photo,
  .menu-zigzag-row.reverse .menu-zigzag-photo {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .menu-book-photo.circular,
  .menu-book-photo.oval,
  .menu-book-photo.rectangular {
    width: 100%;
    justify-self: stretch;
  }

  .experience-grid,
  .timeline-grid,
  .flight-grid,
  .awards-grid,
  .journal-grid,
  .pairings-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pairings-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 82px 0;
  }

  body.page-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  body.page-gallery .gallery-item img {
    aspect-ratio: 4 / 3;
  }

  body.page-about .about-team-grid,
  body.page-about .about-highlight-grid,
  body.page-about .about-numbers-wrap {
    grid-template-columns: 1fr;
  }

  body.page-about .story-image img {
    min-height: 340px;
  }

  body.page-about .story-float-chip {
    left: 12px;
    right: 12px;
    text-align: center;
  }

  body.page-about .about-highlight-item {
    border-radius: 12px;
  }

  .menu-book-category h3 {
    font-size: 1.7rem;
  }

  .menu-book-list article h4 {
    font-size: 0.74rem;
  }

  .experience-grid,
  .timeline-grid,
  .flight-grid,
  .awards-grid,
  .journal-grid,
  .pairings-grid {
    grid-template-columns: 1fr;
  }

  .pairing-list li {
    flex-direction: column;
  }
}

/* ============================================
   FINAL RESPONSIVE STABILITY PASS
   ============================================ */
@media (max-width: 1100px) {
  .container {
    padding: 0 24px;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  body.home-premium .hero-stage {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.home-premium .hero-float-card {
    display: none;
  }

  body.home-premium .testimonial-cinematic-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.home-premium .testimonial-stat {
    display: none;
  }

  body.home-premium .menu-luxe-grid,
  body.home-premium .experience-grid,
  body.home-premium .about-creative-grid,
  body.home-premium .contact-grid {
    grid-template-columns: 1fr;
  }

  body.home-premium .contact-grid {
    gap: 32px;
  }

  body.home-premium .gallery-panel.wide {
    min-width: auto;
  }
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .section {
    padding: 76px 0;
  }

  .navbar {
    padding: 14px 0;
  }

  .nav-logo {
    font-size: 1.2rem;
    gap: 10px;
  }

  .navbar .brand-logo-img,
  .footer .brand-logo-img {
    width: 56px;
    height: 56px;
  }

  .hero-title,
  body.home-premium .hero-title {
    font-size: clamp(2rem, 8vw, 2.9rem);
    line-height: 1.08;
  }

  .hero-desc,
  body.home-premium .hero-desc {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .hero-btns,
  body.home-premium .hero-btns {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-btns .btn,
  body.home-premium .hero-btns .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero-scroll,
  body.home-premium .hero-scroll {
    display: none;
  }

  body.home-premium .gallery-rail {
    gap: 12px;
  }

  body.home-premium .gallery-panel,
  body.home-premium .gallery-panel.wide,
  body.home-premium .gallery-panel.tall {
    min-width: 280px;
    min-height: 220px;
  }

  .contact-info-cards,
  body.page-contact .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .form-row,
  body.page-contact .form-row {
    grid-template-columns: 1fr;
  }

  /* Mobile-only refresh: About + Testimonial (homepage) */
  body.home-premium .luxe-about {
    padding-top: 20px;
  }

  body.home-premium .luxe-about .about-creative-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: auto;
  }

  body.home-premium .luxe-about .about-visual {
    order: 2;
    padding-right: 0;
    margin-bottom: 0;
  }

  body.home-premium .luxe-about .about-img-main img {
    height: clamp(260px, 52vw, 360px);
  }

  body.home-premium .luxe-about .about-img-float {
    display: none;
  }

  body.home-premium .luxe-about .about-experience-badge {
    top: auto;
    bottom: 12px;
    right: 12px;
    padding: 14px 16px;
  }

  body.home-premium .luxe-about .about-experience-badge .number {
    font-size: 2rem;
  }

  body.home-premium .luxe-about .about-content {
    order: 1;
    margin-top: 0;
    padding: 24px 18px;
    border-radius: 16px;
  }

  body.home-premium .luxe-about .about-content p {
    font-size: 0.86rem;
    line-height: 1.8;
  }

  body.home-premium .luxe-about .about-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
  }

  body.home-premium .testimonial-cinematic {
    padding: 64px 0;
  }

  body.home-premium .testimonial-head {
    margin-bottom: 24px;
  }

  body.home-premium .testimonial-bubble {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
  }

  body.home-premium .testimonial-cinematic-swiper {
    overflow: visible;
  }

  body.home-premium .testimonial-cinematic-swiper .swiper-wrapper {
    display: block !important;
    transform: none !important;
  }

  body.home-premium .testimonial-cinematic-swiper .swiper-slide {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 14px;
    padding: 18px 14px;
    border-radius: 16px;
    border: 1px solid rgba(var(--gold-rgb), 0.45);
    background: linear-gradient(
      160deg,
      rgba(23, 17, 12, 0.9) 0%,
      rgba(15, 11, 8, 0.88) 100%
    );
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  }

  body.home-premium .testimonial-cinematic-swiper .swiper-slide:last-child {
    margin-bottom: 0;
  }

  body.home-premium .testimonial-bubble p {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.72;
    text-align: left;
  }

  body.home-premium .testimonial-person {
    margin: 16px 0 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  body.home-premium .testimonial-person img {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  body.home-premium .testimonial-bubble h4 {
    font-size: 0.72rem;
    letter-spacing: 1.4px;
    text-align: left;
  }

  body.home-premium .testimonial-cinematic-pagination {
    display: none;
  }

  .platform-ratings {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  body.interior-premium .interior-hero {
    height: 52vh;
    min-height: 350px;
  }

  body.page-menu .menu-book-section.section {
    padding-top: 34px;
    padding-bottom: 62px;
  }

  body.page-menu .menu-book-shell + .menu-book-shell {
    margin-top: 18px;
  }

  .footer {
    padding-top: 84px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand,
  .footer-col {
    text-align: center;
  }

  .footer-grid .footer-col:nth-child(2) {
    justify-self: start;
    text-align: left;
  }

  .footer-grid .footer-col:nth-child(3) {
    justify-self: end;
    text-align: right;
  }

  .footer-brand .nav-logo {
    justify-content: center;
    margin: 0 auto 14px;
  }

  .footer-brand p {
    margin: 0 auto 18px;
    max-width: 38ch;
    font-size: 0.8rem;
    line-height: 1.7;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col h4 {
    margin-bottom: 12px;
  }

  .footer-col ul li {
    margin-bottom: 7px;
  }

  .footer-hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .footer-hours li span {
    display: block;
  }

  .footer-hours li span:first-child {
    flex: 0 0 auto;
    min-width: 52px;
  }

  .footer-hours li span:last-child {
    flex: 1;
    text-align: right;
  }

  .platform-rating-card {
    padding: 11px 14px;
    border-radius: 12px;
  }

  .platform-rating-card h5 {
    font-size: 0.68rem;
    margin-bottom: 5px;
  }

  .platform-rating-card strong {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .platform-rating-card span {
    font-size: 0.74rem;
  }

  .footer-bottom {
    padding: 14px 0 10px;
  }

  .footer-bottom p {
    max-width: 52ch;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .page-hero {
    min-height: 260px;
  }

  .contact-map iframe {
    height: 220px;
  }

  body.interior-premium .interior-hero {
    height: 48vh;
    min-height: 300px;
  }

  body.page-menu .menu-book-section.section {
    padding-top: 24px;
    padding-bottom: 52px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px 14px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid .footer-col:nth-child(2) h4,
  .footer-grid .footer-col:nth-child(3) h4 {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .footer-grid .footer-col:nth-child(2) ul li a,
  .footer-grid .footer-col:nth-child(3) .footer-hours li {
    font-size: 0.75rem;
  }

  .footer-hours li {
    gap: 8px;
  }

  .footer-hours li span:first-child {
    min-width: 48px;
  }

  body.home-premium .luxe-about .about-content {
    padding: 20px 14px;
  }

  body.home-premium .luxe-about .about-experience-badge {
    padding: 12px 12px;
  }

  body.home-premium .luxe-about .about-experience-badge .number {
    font-size: 1.7rem;
  }

  body.home-premium .testimonial-cinematic {
    padding: 56px 0;
  }

  body.home-premium .testimonial-cinematic-swiper .swiper-slide {
    padding: 16px 12px;
    border-radius: 14px;
  }

  body.home-premium .testimonial-bubble p {
    font-size: 0.84rem;
    line-height: 1.68;
  }

  body.home-premium .testimonial-bubble h4 {
    font-size: 0.68rem;
    letter-spacing: 1.1px;
  }

  .footer {
    padding-top: 76px;
  }

  .navbar .brand-logo-img,
  .footer .brand-logo-img {
    width: 50px;
    height: 50px;
  }

  .footer-brand .nav-logo span {
    font-size: 1rem;
    letter-spacing: 0.4px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.76rem;
    line-height: 1.65;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .platform-rating-card {
    padding: 10px 12px;
  }

  .footer-bottom {
    padding-top: 12px;
  }

  .footer-bottom p {
    font-size: 0.74rem;
    line-height: 1.65;
  }
}

/* Touch devices: disable custom cursor behavior for better usability */
@media (hover: none), (pointer: coarse) {
  body,
  a,
  button,
  input,
  select,
  textarea {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none !important;
  }
}

/* AOS fallback: prevent hidden content when animation library fails to load. */
body.aos-fallback-visible [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

/* Final mobile footer layout override */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-areas:
      "about about"
      "quick contact"
      "hours ratings" !important;
    gap: 14px !important;
    align-items: stretch !important;
  }

  .footer-grid .footer-col,
  .footer-grid .footer-brand {
    justify-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .footer-about {
    grid-area: about !important;
  }

  .footer-quick-links {
    grid-area: quick !important;
  }

  .footer-contact-col {
    grid-area: contact !important;
  }

  .footer-hours-col {
    grid-area: hours !important;
  }

  .footer-ratings-col {
    grid-area: ratings !important;
  }

  .footer-quick-links,
  .footer-contact-col,
  .footer-hours-col,
  .footer-ratings-col {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    padding: 14px !important;
  }

  .footer-quick-links,
  .footer-contact-col {
    min-height: 0 !important;
  }

  .footer-quick-links ul,
  .footer-contact {
    flex: 1 1 auto;
  }

  .footer-quick-links ul li a {
    display: block;
    padding-left: 22px;
  }

  .footer-contact li {
    display: grid;
    grid-template-columns: 14px 1fr;
    column-gap: 8px;
    align-items: start;
  }

  .footer-contact li i {
    width: 14px;
    margin-top: 2px;
  }

  .footer-contact li span,
  .footer-contact li a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-brand,
  .footer-col {
    text-align: left !important;
  }

  .footer-about {
    text-align: center !important;
  }

  .footer-about .nav-logo {
    justify-content: center !important;
    margin: 0 auto 12px !important;
  }

  .footer-about p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .footer-about .footer-social {
    justify-content: center !important;
  }

  .footer-quick-links ul {
    display: block !important;
  }

  .footer-ratings-col .platform-ratings {
    grid-template-columns: 1fr !important;
    margin: 0 !important;
    height: 100% !important;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-areas:
      "about about"
      "quick contact"
      "hours ratings" !important;
  }
}
