/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&f[]=clash-display@400,500,600,700&display=swap');

/* === CSS VARIABLES === */
:root {
  --bg-primary: #0E0D0C;
  --bg-card: #181715;
  --cream: #F5EFE6;
  --gold: #D4A373;
  --gold-glow: rgba(212, 163, 115, 0.25);
  --muted: #A8A29E;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.08);
  --text-primary: #F5EFE6;
  --text-secondary: #A8A29E;
  --radius-card: 28px;
  --radius-sm: 16px;
  --radius-full: 999px;
  --transition-premium: all 0.5s cubic-bezier(.19, 1, .22, 1);
  --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-headline: 'Clash Display', 'General Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gradient-card: linear-gradient(135deg, #181715, #101010);
  --gradient-gold: linear-gradient(135deg, #D4A373, #B8860B);
  --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(212, 163, 115, 0.15);
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-primary);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

input, textarea {
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* === GRAIN OVERLAY === */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.06), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* === LOADING SCREEN === */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

.loader-text {
  font-family: var(--font-headline);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === FLOATING NAVIGATION === */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 92%;
  max-width: 1280px;
  transition: transform 0.5s cubic-bezier(.19, 1, .22, 1), opacity 0.5s ease;
}

.nav.hidden {
  transform: translateX(-50%) translateY(-120%);
  opacity: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(24, 23, 21, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.nav-logo {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  transition: var(--transition-premium);
}

.nav-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.btn-reserve {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-premium);
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.3);
}

.btn-reserve:hover {
  box-shadow: 0 0 50px rgba(212, 163, 115, 0.5);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition-premium);
}

/* === SECTION BASE === */
.section {
  padding: 140px 0;
  position: relative;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

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

.hero-ambient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-ambient.left {
  top: -200px;
  left: -100px;
  background: var(--gold);
}

.hero-ambient.right {
  bottom: -200px;
  right: -100px;
  background: #8B6914;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 163, 115, 0.3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-premium);
  box-shadow: 0 0 40px rgba(212, 163, 115, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(212, 163, 115, 0.5);
  transform: translateY(-3px);
}

.btn-secondary {
  padding: 16px 36px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  transition: var(--transition-premium);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 8s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: rgba(24, 23, 21, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-card.one {
  top: 10%;
  left: -40px;
  animation-delay: 0s;
}

.floating-card.two {
  bottom: 15%;
  right: -30px;
  animation-delay: 1.5s;
}

.floating-card.three {
  top: 50%;
  right: -20px;
  animation-delay: 3s;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.floating-card-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.floating-card-text strong {
  display: block;
  color: var(--cream);
  font-size: 14px;
}

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

/* === SIGNATURE DISH === */
.signature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.signature-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.signature-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 8s ease, filter 0.5s ease;
}

.signature-image:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.signature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 163, 115, 0.1), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.signature-image:hover::after {
  opacity: 1;
}

.chef-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(24, 23, 21, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chef-badge-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chef-badge-text {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.chef-badge-text strong {
  display: block;
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.signature-info .section-label { margin-bottom: 12px; }

.signature-info .section-title {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}

.signature-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.signature-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.ingredient-tag {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(212, 163, 115, 0.08);
  border: 1px solid rgba(212, 163, 115, 0.15);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.signature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.signature-price {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.signature-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

/* === MENU SECTION === */
.menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-header .section-subtitle {
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-premium);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
  font-weight: 600;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-premium);
  position: relative;
}

.menu-card:hover {
  border-color: rgba(212, 163, 115, 0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.menu-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.19, 1, .22, 1);
}

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

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 13, 12, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu-card:hover .menu-card-overlay {
  opacity: 1;
}

.menu-card-overlay-text {
  font-size: 12px;
  color: var(--cream);
  line-height: 1.5;
}

.menu-card-body {
  padding: 24px;
}

.menu-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.menu-card-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-calories {
  font-size: 11px;
  color: var(--muted);
}

.menu-card-price {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.menu-card-add {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.1);
  border: 1px solid rgba(212, 163, 115, 0.2);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-premium);
}

.menu-card-add:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* === HIGHLIGHTS GRID (Home Page) === */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.highlight-card {
  display: block;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-premium);
  text-decoration: none;
}

.highlight-card:hover {
  border-color: rgba(212, 163, 115, 0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.highlight-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.highlight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.19, 1, .22, 1);
}

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

.highlight-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 12, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.highlight-card:hover .highlight-card-overlay {
  opacity: 1;
}

.highlight-card-arrow {
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
}

.highlight-card-body {
  padding: 20px;
  text-align: center;
}

.highlight-card-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.highlight-card-body h3 {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 6px;
}

.highlight-card-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* === STORY SECTION === */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-portrait {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.story-portrait img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.story-quote-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  max-width: 260px;
}

.story-quote-badge .quote-mark {
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.story-quote-badge p {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

.story-content .section-label { margin-bottom: 12px; }

.story-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
  position: relative;
}

.story-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, rgba(212, 163, 115, 0.3), transparent);
  border-radius: 50%;
}

.story-signature {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--gold);
  font-style: italic;
}

/* === GALLERY SECTION === */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
}

.gallery-filter {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-premium);
}

.gallery-filter:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.contact-gallery {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.19, 1, .22, 1);
}

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

.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.gallery-view-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === EXPERIENCE SECTION === */
.experience {
  position: relative;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.experience-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 13, 12, 0.95), rgba(14, 13, 12, 0.6));
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(24, 23, 21, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(24, 23, 21, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition-premium);
}

.experience-feature:hover {
  border-color: rgba(212, 163, 115, 0.3);
  background: rgba(24, 23, 21, 0.8);
}

.experience-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 163, 115, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.experience-feature-text h4 {
  font-family: var(--font-headline);
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 4px;
}

.experience-feature-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* === TESTIMONIAL SECTION === */
.testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 360px;
  background: rgba(24, 23, 21, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  scroll-snap-align: start;
  transition: var(--transition-premium);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--cream);
}

.testimonial-role {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-favorite {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(212, 163, 115, 0.08);
  font-size: 11px;
  color: var(--gold);
}

/* === RESERVATION SECTION === */
.reservation-box {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.reservation-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 163, 115, 0.04), transparent 60%);
  pointer-events: none;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.reservation-info .section-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reservation-form .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 14px;
  transition: var(--transition-premium);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.1);
}

.form-group input::placeholder {
  color: rgba(168, 162, 158, 0.5);
}

.btn-submit {
  padding: 16px 36px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-premium);
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.25);
}

.btn-submit:hover {
  box-shadow: 0 0 50px rgba(212, 163, 115, 0.5);
  transform: translateY(-3px);
}

/* === RESERVATION MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 12, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(.19, 1, .22, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.modal-title {
  font-family: var(--font-headline);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
}

.modal-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-close {
  padding: 14px 36px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-premium);
}

.modal-close:hover {
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.4);
}

/* === FOOTER === */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-headline);
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition-premium);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* === MOBILE BOTTOM NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(24, 23, 21, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px 24px;
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--muted);
  transition: color 0.3s ease;
}

.mobile-nav a.active {
  color: var(--gold);
}

.mobile-nav-icon {
  font-size: 20px;
}

/* === NOTIFICATION TOAST === */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10001;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(.19, 1, .22, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.active {
  transform: translateX(0);
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.toast-text {
  font-size: 13px;
  color: var(--cream);
}

/* === REVEAL ANIMATION BASE === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.19, 1, .22, 1), transform 0.8s cubic-bezier(.19, 1, .22, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.19, 1, .22, 1), transform 0.8s cubic-bezier(.19, 1, .22, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(.19, 1, .22, 1), transform 0.8s cubic-bezier(.19, 1, .22, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === SPICE PARTICLES === */
.spice-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* === PAGE HEADER (Multi-page) === */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary), rgba(14, 13, 12, 0.4));
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 163, 115, 0.3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-header-title {
  font-family: var(--font-headline);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 16px;
}

.page-header-title em {
  font-style: italic;
  color: var(--gold);
}

.page-header-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Page Content Section */
.page-section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .page-header {
    min-height: 35vh;
    padding-top: 100px;
  }

  .page-section {
    padding: 60px 0;
  }
}

/* === SPICE PARTICLES ANIMATION === */

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: spiceFloat 4s ease-in-out infinite;
}

@keyframes spiceFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-60px) scale(1.5); }
}
